id
stringlengths 4
10
| text
stringlengths 4
2.14M
| source
stringclasses 2
values | created
timestamp[s]date 2001-05-16 21:05:09
2025-01-01 03:38:30
| added
stringdate 2025-04-01 04:05:38
2025-04-01 07:14:06
| metadata
dict |
---|---|---|---|---|---|
1708738832 | Is the remotemoe tunnel down?
I have been getting the error message 'This page isn't working' for more than five days 😭. Am I doing something wrong, or is the remotemoe tunnel down?
See https://github.com/fasmide/remotemoe/issues/19
| gharchive/issue | 2023-05-13T20:57:30 | 2025-04-01T06:38:39.173816 | {
"authors": [
"camenduru",
"fasmide"
],
"repo": "fasmide/remotemoe",
"url": "https://github.com/fasmide/remotemoe/issues/21",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
575137480 | fix AWD_LSTM not contiguous bug
Error: rnn: hx is not contiguous
This error happens when
bidir=True
bs decrease
run on gpu
The 1 and 2 cause self.hidden[l][0][:,:bs] be not contiguous, and with 3 the error happens.
Fix it by adding contiguous() after self.hidden[l][0][:,:bs] and add a test that can reproduce this error with cuda flag.
Thanks a lot for fixing!
| gharchive/pull-request | 2020-03-04T04:57:16 | 2025-04-01T06:38:39.193280 | {
"authors": [
"cwza",
"sgugger"
],
"repo": "fastai/fastai2",
"url": "https://github.com/fastai/fastai2/pull/141",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
731530577 | Is there a way to have custom javascript in the rendered HTML for a blog post?
I have a blog post with Altair visualization made from Jupyter Notebook as usual. However, I want to add some custom JavaScript to it.
Inside the Jupyter notebook, you have to run the cell with the JavaScript every time you open it to see its effects, even though the rest of the interactivity of the Altair chart works without executing any cell. Because of this behavior, just publishing the jupyter notebook with the JavaScript code would probably not have any effect (I haven't actually tested it).
Similar to https://github.com/fastai/fastpages/pull/171 I want to have fastpages add a little JavaScript code in the rendered HTML for one of the posts, so that the already existing HTML for the charts are modified a little.
Is there a way to achieve this?
This is example of how custom javascript is injected into fastpages: https://github.com/fastai/fastpages/blob/master/_includes/custom-head.html
This requires you to customize fastpages and learn about how the internals work a bit more.
@hamelsmu That helped a lot and I just got it working. I think it's actually better to have custom scripts enabled via Jekyll.
great!
| gharchive/issue | 2020-10-28T15:07:49 | 2025-04-01T06:38:39.196656 | {
"authors": [
"armsp",
"hamelsmu"
],
"repo": "fastai/fastpages",
"url": "https://github.com/fastai/fastpages/issues/442",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
793445003 | Automatically generate a sitemap
I want to add my blog to the Google search engine, I need to generate a sitemap of the blog.
So can you add a feature that automatically generate a sitemap?
thanks. try this https://github.com/jekyll/jekyll-sitemap
thanks. try this https://github.com/jekyll/jekyll-sitemap
| gharchive/issue | 2021-01-25T14:48:39 | 2025-04-01T06:38:39.198486 | {
"authors": [
"hamelsmu",
"spiritLHL"
],
"repo": "fastai/fastpages",
"url": "https://github.com/fastai/fastpages/issues/493",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
2291692472 | fastapi dev runs stuck
Privileged issue
[X] I'm @tiangolo or he asked me directly to create an issue here.
Issue Content
The first time I ran fastapi dev, there was no problem, but I encountered a code error. Then after I modified the code and saved it, a WARNING: WatchFiles detected changes in 'tool/index.py'. Reloading... then got stuck and could not exit.
Any updates on this @kingcwt? facing the same issue!
Could be related to: https://github.com/encode/uvicorn/issues/2000
I currently have a slightly different issue from yours @kingcwt but it's still an issue with fastapi cli (dev and run)
The Code
The Error
do not use the fastapi dev to run your application just use uvicorn instead, i do not face any issues with uvicorn
I tryied to reproduce it, but without success.
But sometimes I get the same problem running uvicorn with --reload in cmder/windows. I think it is related to uvicorn instead of fastapi
I'm having the same issue here on windows 10.
I think this is related: https://www.reddit.com/r/FastAPI/comments/13oynf6/keeps_old_routes_after_changing_cache_problem/
It is like fastapi keeps an old version of the code cached somewhere. Even if I force kill fastpi and restart it, it loads an old version of my code.
It works (for a while) if I change port.
I think uvicorn dev server is better as of now. As we are not getting any updates about the Fast API cli. Its important to note that this may be fixed in near future. It happens a lot with Fast API server. So you have to kill the terminal and open a new one to re-run the project. Its painful.
@Sarmad426 Yes, you are right i am also facing the same issue I tried with both the commands such as
fast API dev filename
or
if name == "main":
uvicorn.run("main:app", host="127.0.0.1", port=8000, reload=True)
Sometimes it stuck you have to forcefully close the server but still, the port is running on the cache. So you have to run the server again on a different port.
Running into a similar issue. I can I kill the the process with ctrl+c, but I cannot run on the same port. Attempting to run on the same port prints out the message like everything is working fine, but trying to access /docs spins forever. Switching to a new port works fine.
in pycharm if you use the "run" method to run the project then it tends to hand after reloading. if you task manager kill python it reloads again. something definately fishy there.
if you just do uvicorn --reload in terminal it tends to work better but still a massive PITA on windows :( easier to just not run it with reload
win11, py3.12, pycharm
can confirm. win 11.
issue present at least month.
WARNING: WatchFiles detected changes in 'config.py'. Reloading... and its stuck. No pycharm, vscode + venv, server command started by hand in terminal (❯ fastapi dev webserver.py --port 8080)
I wonder if this would still happen with uvicorn's --timeout-graceful-shutdown option. Using fastapi dev, you have to set it using an environment variable UVICORN_TIMEOUT_GRACEFUL_SHUTDOWN=5.
I have been getting this same problem whether uvicorn main:app --reload or fastapi dev method launching from powershell. (no pycharm here)
Win11.
VSCode
Python 3.12.6
FastAPI 0.115.0
Uvicorn 0.31.0
Resorting to Task Manager (Ctrl+Shift+Esc) and killing python tasks as Ctrl+C often won't quit server and closing powershell window and launching another doesn't seem to kill it either.
Installed fastapi using "fastapi[standard]" and also removed and tried just installing separately fastapi and uvicorn
Based on this thread #2000 just to test tried downgrading just uvicorn to 0.22 with no difference then to 0.21 (0.21.1) and sure enough it stops being stuck and reloads in a second?
WARNING: StatReload detected changes in 'api.py'. Reloading...
INFO: Started server process [9192]
INFO: Waiting for application startup.
INFO: Application startup complete.
I am also facing this issue recently with FastAPI reloading.
When we start the server, it works fine, and the APIs are functioning correctly.
However, when we make changes to the code and save it, the FastAPI server does not respond when the API is hit again, and the FastAPI server page shows the reload icon for a long time.
Windows stuff, I see, using WSL2 never encountered this issue.
For me the problem was avast scanning the app before allowing it to execute thus taking a long time. Disabled avast and suddenly it was working well
I am facing a similar issue using Uvicorn. When I make changes to the code and save it, Uvicorn reloads, showing the message 'Application shutdown completed.' After that, the APIs stop responding, and the terminal becomes unresponsive. Even pressing Ctrl+C doesn't work
I had the same problem with PyCharm FastAPI. When introducing a change, it used to get stuck on reload. (most likely couldn't kill the current process.) But I could resolve it by just using the terminal and running
uvicorn main:app --reload
It then worked like a charm.
I noticed that no matter what I do in Run/Debug Configuration of PyCharm, it wont be fixed there. I.E. if I choose Uvicorn in Run/Debug Config, I would still have the same problem. For me it works only when I lunch the server from terminal using Uvicorn.
I had same problem, fastapi dev got stuck. Then after i killed the terminal and started again, the schemas in the docs got stucks, it won't be updated even i modify the model schemas, it will works again when you start dev server with different port.
how fix it>
backto uvicorn ==0.20.0, this v can work.
backto uvicorn ==0.20.0, this v can work.
I have tried this method too, but the issue persists.
| gharchive/issue | 2024-05-13T02:50:34 | 2025-04-01T06:38:39.216335 | {
"authors": [
"3to1null",
"AIdjis",
"AdmWinther",
"Jkrox",
"Omachonu-prosper",
"RasmusN",
"Sarmad426",
"WilliamStam",
"ankit-brijwasi",
"arslanahmad768",
"atomicjarrod",
"ceb10n",
"killjoy1221",
"kingcwt",
"linpan",
"mavic111",
"pmsmanishchauhan",
"qodzero",
"rutexd",
"thecouchcoder"
],
"repo": "fastapi/fastapi",
"url": "https://github.com/fastapi/fastapi/issues/11573",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1813880675 | Fix ValidationExceptions missing type annotations after v0.100.0
Type information got lost from ValidationExceptions after v0.100.0. This PR brings them back. ErrorDetails is used as is from Pydantic V2. With V1 its compatible with Pydantic V1 .errors().
Related https://github.com/tiangolo/fastapi/discussions/9907
Checking the conversation in the discussion to understand the use case, it seems the use case would be solved by using a custom exception, that would be much simpler and independent of FastAPI internals. :nerd_face:
Given that, I'll pass on this one, but thanks for the interest! :coffee:
@tiangolo why the errors() can not be properly typed when the class is documented https://fastapi.tiangolo.com/tutorial/handling-errors/#override-request-validation-exceptions ?
| gharchive/pull-request | 2023-07-20T12:24:10 | 2025-04-01T06:38:39.220243 | {
"authors": [
"MarkusSintonen",
"tiangolo"
],
"repo": "fastapi/fastapi",
"url": "https://github.com/fastapi/fastapi/pull/9916",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2725763804 | Connect functionalities from mesher and elements to plotter
This PR will connect functionalities from mesher and elements, and use PyVista to provide visual aid.
For reference, here is my playground script (for now).
import fastfem.mesh as m
import fastfem.plotter as p
import numpy as np
nh = 10
nv = 10
hl = 3
vl = 3
mesh = m.create_a_rectangle_mesh(
horizontal_length=hl,
vertical_length=vl,
nodes_in_horizontal_direction=nh,
nodes_in_vertical_direction=nv,
element_type="triangle",
file_name=None,
)
# Domains:
bottom_boundary = mesh["bottom_boundary"]
right_boundary = mesh["right_boundary"]
top_boundary = mesh["top_boundary"]
left_boundary = mesh["left_boundary"]
rectangle = mesh["surface"]
visualizer = p.VisualMesh(mesh)
visualizer.plot_mesh()
# Time
time_steps = 240
temperatures = np.zeros((time_steps, nv, nh))
# Dummy data
left_right_temp = 15
top_temp = 10
bottom_temp = 25
for t in range(time_steps):
for i in range(nv):
for j in range(nh):
x = j / (nh - 1) * hl
y = i / (nv - 1) * vl
if j == 0 or j == nh - 1:
temperatures[t, i, j] = left_right_temp
elif i == 0:
temperatures[t, i, j] = bottom_temp
elif i == nv - 1:
temperatures[t, i, j] = top_temp
else:
temperatures[t, i, j] = 20 + 20 * np.sin(2 * np.pi * x / hl) * \
np.cos(2 * np.pi * y / vl) * \
np.sin(np.pi * t / time_steps)
visualizer.animate_mesh(30, time_steps, temperatures)
Hi @sacha-escudier, I rebased this branch to main. There is an issue related to our API Reference in docs.
If you run
hatch run docs:serve
you will get this error:
WARNING - griffe: fastfem/plotter/mesh_visual.py:13: No type or annotation for parameter 'mesh'
WARNING - griffe: fastfem/plotter/mesh_visual.py:16: No type or annotation for returned value 1
That's why docs workflow fail currently.
Could you add all the type hints until there aren't any error in docs?
@sinaatalay type issue should be fixed now.
| gharchive/pull-request | 2024-12-09T02:07:17 | 2025-04-01T06:38:39.228954 | {
"authors": [
"sacha-escudier",
"sinaatalay"
],
"repo": "fastfem/fastfem",
"url": "https://github.com/fastfem/fastfem/pull/38",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1089837772 | Renamed to process-warning
Signed-off-by: Matteo Collina hello@matteocollina.com
Fixes #43
Checklist
[ ] run npm run test and npm run benchmark
[ ] tests and/or benchmarks are included
[ ] documentation is changed or added
[ ] commit message and code follows the Developer's Certification of Origin
and the Code of conduct
I'll bump the major and deprecate the previous module once this lands.
| gharchive/pull-request | 2021-12-28T11:48:50 | 2025-04-01T06:38:39.254833 | {
"authors": [
"mcollina"
],
"repo": "fastify/process-warning",
"url": "https://github.com/fastify/process-warning/pull/45",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
310450838 | If the bot doesn't have push access, we crash. Maybe we should be friendly?
[2018-04-02 18:20:55] DEBUG GitRepo: Not setup yet, sleeping (time before timeout: 300.0) https://github.com/fastlane/ci
Thread terminated with exception: git '--git-dir=/Users/liebowitz/.fastlane/ci/fastlane-ci-config/.git' '--work-tree=/Users/liebowitz/.fastlane/ci/fastlane-ci-config' push 'origin' 'master' 2>&1:remote: Permission to fastlane/ci-config-heroku.git denied to fastlanebot.
fatal: unable to access 'https://github.com/fastlane/ci-config-heroku/': The requested URL returned error: 403
[2018-04-02 18:20:55] DEBUG GitRepo: Starting commit_changes! https://github.com/fastlane/ci-config-heroku for taquitos@gmail.com
/Users/liebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/git-1.3.0/lib/git/lib.rb:937:in command' /Users/liebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/git-1.3.0/lib/git/lib.rb:742:in push'
/Users/liebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/git-1.3.0/lib/git/base.rb:329:in push' /Users/liebowitz/dev/ci/app/shared/models/git_repo.rb:396:in block in push'
/Users/liebowitz/dev/ci/app/shared/models/git_repo.rb:320:in perform_block' /Users/liebowitz/dev/ci/app/shared/models/git_repo.rb:391:in push'
/Users/liebowitz/dev/ci/app/shared/models/git_repo.rb:384:in block in commit_changes!' /Users/liebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/bundler/gems/TaskQueue-5b3f459be5c4/lib/queue_worker.rb:82:in block in process'
[2018-04-02 18:20:55] DEBUG GitRepo: Using Clone User credentials with taquitos@gmail.com as author information on https://github.com/fastlane/ci-config-heroku
bundler: failed to load command: rackup (/Users/liebowitz/.rbenv/versions/2.3.3/bin/rackup)
Git::GitExecuteError: git '--git-dir=/Users/liebowitz/.fastlane/ci/fastlane-ci-config/.git' '--work-tree=/Users/liebowitz/.fastlane/ci/fastlane-ci-config' push 'origin' 'master' 2>&1:remote: Permission to fastlane/ci-config-heroku.git denied to fastlanebot.
fatal: unable to access 'https://github.com/fastlane/ci-config-heroku/': The requested URL returned error: 403
/Users/liebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/git-1.3.0/lib/git/lib.rb:937:in command' /Users/liebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/git-1.3.0/lib/git/lib.rb:742:in push'
/Users/liebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/git-1.3.0/lib/git/base.rb:329:in push' /Users/liebowitz/dev/ci/app/shared/models/git_repo.rb:396:in block in push'
/Users/liebowitz/dev/ci/app/shared/models/git_repo.rb:320:in perform_block' /Users/liebowitz/dev/ci/app/shared/models/git_repo.rb:391:in push'
/Users/liebowitz/dev/ci/app/shared/models/git_repo.rb:384:in block in commit_changes!' /Users/liebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/bundler/gems/TaskQueue-5b3f459be5c4/lib/queue_worker.rb:82:in block in process'
We actually now post a notification 🎉
| gharchive/issue | 2018-04-02T10:25:30 | 2025-04-01T06:38:39.262529 | {
"authors": [
"taquitos"
],
"repo": "fastlane/ci",
"url": "https://github.com/fastlane/ci/issues/499",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
314459950 | Builds are failing due to missing dependencies that exist in gemfile
build http://mydoghatestechnology.com/projects_erb/32903571-271e-4c87-9b32-11df3c82d5aa/builds/461
failed because of a missing gem that is referenced. Locally, the build works fine. It also works fine on the build machine if I bundle install there in a terminal and run be fastlane rspec_me
So I think our Bundler environment isolation isn't working as expected, or something else is going on.
# Logfile created on 2018-04-15 15:45:55 -0700 by logger.rb/56438
[15:45:55]: Driving the lane 'rspec_me' 🚀
[15:45:55]: ----------------------------------
[15:45:55]: --- Step: cd ..;bundle install ---
[15:45:55]: ----------------------------------
[15:45:55]: $ cd ..;bundle install
[15:45:55]: ▸ Running `bundle install` with bundler 1.16.1
[15:45:55]: ▸ Found no changes, using resolution from the lockfile
[15:45:55]: ▸ Using rake 12.3.1
[15:45:55]: ▸ 0: rake (12.3.1) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/rake-12.3.1.gemspec
[15:45:55]: ▸ Using CFPropertyList 3.0.0
[15:45:55]: ▸ 0: CFPropertyList (3.0.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/CFPropertyList-3.0.0.gemspec
[15:45:55]: ▸ Using abstract_type 0.0.7
[15:45:55]: ▸ 0: abstract_type (0.0.7) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/abstract_type-0.0.7.gemspec
[15:45:55]: ▸ Using ice_nine 0.11.2
[15:45:55]: ▸ 0: ice_nine (0.11.2) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/ice_nine-0.11.2.gemspec
[15:45:55]: ▸ Using thread_safe 0.3.6
[15:45:55]: ▸ 0: thread_safe (0.3.6) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/thread_safe-0.3.6.gemspec
[15:45:55]: ▸ Using memoizable 0.4.2
[15:45:55]: ▸ 0: memoizable (0.4.2) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/memoizable-0.4.2.gemspec
[15:45:55]: ▸ Using adamantium 0.2.0
[15:45:55]: ▸ 0: adamantium (0.2.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/adamantium-0.2.0.gemspec
[15:45:55]: ▸ Using public_suffix 2.0.5
[15:45:55]: ▸ 0: public_suffix (2.0.5) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/public_suffix-2.0.5.gemspec
[15:45:55]: ▸ Using addressable 2.5.2
[15:45:55]: ▸ 0: addressable (2.5.2) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/addressable-2.5.2.gemspec
[15:45:55]: ▸ Using ast 2.4.0
[15:45:55]: ▸ 0: ast (2.4.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/ast-2.4.0.gemspec
[15:45:55]: ▸ Using atomos 0.1.2
[15:45:55]: ▸ 0: atomos (0.1.2) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/atomos-0.1.2.gemspec
[15:45:55]: ▸ Using babosa 1.0.2
[15:45:55]: ▸ 0: babosa (1.0.2) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/babosa-1.0.2.gemspec
[15:45:55]: ▸ Using backports 3.11.1
[15:45:55]: ▸ 0: backports (3.11.1) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/backports-3.11.1.gemspec
[15:45:55]: ▸ Using bcrypt 3.1.11
[15:45:55]: ▸ 0: bcrypt (3.1.11) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/bcrypt-3.1.11.gemspec
[15:45:55]: ▸ Using bundler 1.16.1
[15:45:55]: ▸ 0: bundler (1.16.1) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/bundler-1.16.1.gemspec
[15:45:55]: ▸ Using byebug 10.0.2
[15:45:55]: ▸ 0: byebug (10.0.2) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/byebug-10.0.2.gemspec
[15:45:55]: ▸ Using claide 1.0.2
[15:45:55]: ▸ 0: claide (1.0.2) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/claide-1.0.2.gemspec
[15:45:55]: ▸ Using coderay 1.1.2
[15:45:55]: ▸ 0: coderay (1.1.2) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/coderay-1.1.2.gemspec
[15:45:55]: ▸ Using colored 1.2
[15:45:55]: ▸ 0: colored (1.2) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/colored-1.2.gemspec
[15:45:55]: ▸ Using colored2 3.1.2
[15:45:55]: ▸ 0: colored2 (3.1.2) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/colored2-3.1.2.gemspec
[15:45:55]: ▸ Using highline 1.7.10
[15:45:55]: ▸ 0: highline (1.7.10) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/highline-1.7.10.gemspec
[15:45:55]: ▸ Using commander-fastlane 4.4.6
[15:45:55]: ▸ 0: commander-fastlane (4.4.6) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/commander-fastlane-4.4.6.gemspec
[15:45:55]: ▸ Using equalizer 0.0.11
[15:45:55]: ▸ 0: equalizer (0.0.11) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/equalizer-0.0.11.gemspec
[15:45:55]: ▸ Using concord 0.1.5
[15:45:55]: ▸ 0: concord (0.1.5) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/concord-0.1.5.gemspec
[15:45:55]: ▸ Using json 2.1.0
[15:45:55]: ▸ 0: json (2.1.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/json-2.1.0.gemspec
[15:45:55]: ▸ Using docile 1.1.5
[15:45:55]: ▸ 0: docile (1.1.5) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/docile-1.1.5.gemspec
[15:45:55]: ▸ Using simplecov-html 0.10.2
[15:45:55]: ▸ 0: simplecov-html (0.10.2) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/simplecov-html-0.10.2.gemspec
[15:45:55]: ▸ Using simplecov 0.14.1
[15:45:55]: ▸ 0: simplecov (0.14.1) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/simplecov-0.14.1.gemspec
[15:45:55]: ▸ Using tins 1.16.3
[15:45:55]: ▸ 0: tins (1.16.3) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/tins-1.16.3.gemspec
[15:45:55]: ▸ Using term-ansicolor 1.6.0
[15:45:55]: ▸ 0: term-ansicolor (1.6.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/term-ansicolor-1.6.0.gemspec
[15:45:55]: ▸ Using thor 0.19.4
[15:45:55]: ▸ 0: thor (0.19.4) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/thor-0.19.4.gemspec
[15:45:55]: ▸ Using coveralls 0.8.21
[15:45:55]: ▸ 0: coveralls (0.8.21) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/coveralls-0.8.21.gemspec
[15:45:55]: ▸ Using daemons 1.2.6
[15:45:55]: ▸ 0: daemons (1.2.6) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/daemons-1.2.6.gemspec
[15:45:55]: ▸ Using declarative 0.0.10
[15:45:55]: ▸ 0: declarative (0.0.10) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/declarative-0.0.10.gemspec
[15:45:55]: ▸ Using declarative-option 0.1.0
[15:45:55]: ▸ 0: declarative-option (0.1.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/declarative-option-0.1.0.gemspec
[15:45:55]: ▸ Using diff-lcs 1.3
[15:45:55]: ▸ 0: diff-lcs (1.3) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/diff-lcs-1.3.gemspec
[15:45:55]: ▸ Using digest-crc 0.4.1
[15:45:55]: ▸ 0: digest-crc (0.4.1) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/digest-crc-0.4.1.gemspec
[15:45:55]: ▸ Using unf_ext 0.0.7.5
[15:45:55]: ▸ 0: unf_ext (0.0.7.5) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/unf_ext-0.0.7.5.gemspec
[15:45:55]: ▸ Using unf 0.1.4
[15:45:55]: ▸ 0: unf (0.1.4) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/unf-0.1.4.gemspec
[15:45:55]: ▸ Using domain_name 0.5.20170404
[15:45:55]: ▸ 0: domain_name (0.5.20170404) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/domain_name-0.5.20170404.gemspec
[15:45:55]: ▸ Using dotenv 2.2.1
[15:45:55]: ▸ 0: dotenv (2.2.1) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/dotenv-2.2.1.gemspec
[15:45:55]: ▸ Using equatable 0.5.0
[15:45:55]: ▸ 0: equatable (0.5.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/equatable-0.5.0.gemspec
[15:45:55]: ▸ Using tzinfo 1.2.5
[15:45:55]: ▸ 0: tzinfo (1.2.5) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/tzinfo-1.2.5.gemspec
[15:45:55]: ▸ Using et-orbi 1.1.0
[15:45:55]: ▸ 0: et-orbi (1.1.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/et-orbi-1.1.0.gemspec
[15:45:55]: ▸ Using eventmachine 1.2.5
[15:45:55]: ▸ 0: eventmachine (1.2.5) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/eventmachine-1.2.5.gemspec
[15:45:55]: ▸ Using excon 0.62.0
[15:45:55]: ▸ 0: excon (0.62.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/excon-0.62.0.gemspec
[15:45:55]: ▸ Using multipart-post 2.0.0
[15:45:55]: ▸ 0: multipart-post (2.0.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/multipart-post-2.0.0.gemspec
[15:45:55]: ▸ Using faraday 0.14.0
[15:45:55]: ▸ 0: faraday (0.14.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/faraday-0.14.0.gemspec
[15:45:55]: ▸ Using http-cookie 1.0.3
[15:45:55]: ▸ 0: http-cookie (1.0.3) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/http-cookie-1.0.3.gemspec
[15:45:55]: ▸ Using faraday-cookie_jar 0.0.6
[15:45:55]: ▸ 0: faraday-cookie_jar (0.0.6) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/faraday-cookie_jar-0.0.6.gemspec
[15:45:55]: ▸ Using faraday-http-cache 2.0.0
[15:45:55]: ▸ 0: faraday-http-cache (2.0.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/faraday-http-cache-2.0.0.gemspec
[15:45:55]: ▸ Using faraday_middleware 0.12.2
[15:45:55]: ▸ 0: faraday_middleware (0.12.2) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/faraday_middleware-0.12.2.gemspec
[15:45:55]: ▸ Using parser 2.4.0.2
[15:45:55]: ▸ 0: parser (2.4.0.2) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/parser-2.4.0.2.gemspec
[15:45:55]: ▸ Using procto 0.0.3
[15:45:55]: ▸ 0: procto (0.0.3) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/procto-0.0.3.gemspec
[15:45:55]: ▸ Using unparser 0.2.7
[15:45:55]: ▸ 0: unparser (0.2.7) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/unparser-0.2.7.gemspec
[15:45:55]: ▸ Using fastfile-parser 0.0.0 from https://github.com/fastlane/fastfile-parser (at master@a9707d8)
[15:45:55]: ▸ 0: fastfile-parser (0.0.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/bundler/gems/fastfile-parser-a9707d87eb6b/fastfile-parser.gemspec
[15:45:55]: ▸ Using fastimage 2.1.1
[15:45:55]: ▸ 0: fastimage (2.1.1) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/fastimage-2.1.1.gemspec
[15:45:55]: ▸ Using gh_inspector 1.1.3
[15:45:55]: ▸ 0: gh_inspector (1.1.3) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/gh_inspector-1.1.3.gemspec
[15:45:55]: ▸ Using jwt 2.1.0
[15:45:55]: ▸ 0: jwt (2.1.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/jwt-2.1.0.gemspec
[15:45:55]: ▸ Using little-plugger 1.1.4
[15:45:55]: ▸ 0: little-plugger (1.1.4) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/little-plugger-1.1.4.gemspec
[15:45:55]: ▸ Using multi_json 1.13.1
[15:45:55]: ▸ 0: multi_json (1.13.1) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/multi_json-1.13.1.gemspec
[15:45:55]: ▸ Using logging 2.2.2
[15:45:55]: ▸ 0: logging (2.2.2) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/logging-2.2.2.gemspec
[15:45:55]: ▸ Using memoist 0.16.0
[15:45:55]: ▸ 0: memoist (0.16.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/memoist-0.16.0.gemspec
[15:45:55]: ▸ Using os 0.9.6
[15:45:55]: ▸ 0: os (0.9.6) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/os-0.9.6.gemspec
[15:45:55]: ▸ Using signet 0.8.1
[15:45:55]: ▸ 0: signet (0.8.1) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/signet-0.8.1.gemspec
[15:45:55]: ▸ Using googleauth 0.6.2
[15:45:55]: ▸ 0: googleauth (0.6.2) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/googleauth-0.6.2.gemspec
[15:45:55]: ▸ Using httpclient 2.8.3
[15:45:55]: ▸ 0: httpclient (2.8.3) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/httpclient-2.8.3.gemspec
[15:45:55]: ▸ Using mime-types-data 3.2016.0521
[15:45:55]: ▸ 0: mime-types-data (3.2016.0521) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/mime-types-data-3.2016.0521.gemspec
[15:45:55]: ▸ Using mime-types 3.1
[15:45:55]: ▸ 0: mime-types (3.1) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/mime-types-3.1.gemspec
[15:45:55]: ▸ Using uber 0.1.0
[15:45:55]: ▸ 0: uber (0.1.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/uber-0.1.0.gemspec
[15:45:55]: ▸ Using representable 3.0.4
[15:45:55]: ▸ 0: representable (3.0.4) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/representable-3.0.4.gemspec
[15:45:55]: ▸ Using retriable 3.1.1
[15:45:55]: ▸ 0: retriable (3.1.1) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/retriable-3.1.1.gemspec
[15:45:55]: ▸ Using google-api-client 0.13.6
[15:45:55]: ▸ 0: google-api-client (0.13.6) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/google-api-client-0.13.6.gemspec
[15:45:55]: ▸ Using mini_magick 4.5.1
[15:45:55]: ▸ 0: mini_magick (4.5.1) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/mini_magick-4.5.1.gemspec
[15:45:55]: ▸ Using multi_xml 0.6.0
[15:45:55]: ▸ 0: multi_xml (0.6.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/multi_xml-0.6.0.gemspec
[15:45:55]: ▸ Using plist 3.4.0
[15:45:55]: ▸ 0: plist (3.4.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/plist-3.4.0.gemspec
[15:45:55]: ▸ Using rubyzip 1.2.1
[15:45:55]: ▸ 0: rubyzip (1.2.1) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/rubyzip-1.2.1.gemspec
[15:45:56]: ▸ Using security 0.1.3
[15:45:56]: ▸ 0: security (0.1.3) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/security-0.1.3.gemspec
[15:45:56]: ▸ Using naturally 2.1.0
[15:45:56]: ▸ 0: naturally (2.1.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/naturally-2.1.0.gemspec
[15:45:56]: ▸ Using simctl 1.6.3
[15:45:56]: ▸ 0: simctl (1.6.3) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/simctl-1.6.3.gemspec
[15:45:56]: ▸ Using slack-notifier 2.3.2
[15:45:56]: ▸ 0: slack-notifier (2.3.2) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/slack-notifier-2.3.2.gemspec
[15:45:56]: ▸ Using terminal-notifier 1.8.0
[15:45:56]: ▸ 0: terminal-notifier (1.8.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/terminal-notifier-1.8.0.gemspec
[15:45:56]: ▸ Using unicode-display_width 1.3.0
[15:45:56]: ▸ 0: unicode-display_width (1.3.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/unicode-display_width-1.3.0.gemspec
[15:45:56]: ▸ Using terminal-table 1.8.0
[15:45:56]: ▸ 0: terminal-table (1.8.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/terminal-table-1.8.0.gemspec
[15:45:56]: ▸ Using tty-screen 0.6.4
[15:45:56]: ▸ 0: tty-screen (0.6.4) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/tty-screen-0.6.4.gemspec
[15:45:56]: ▸ Using tty-cursor 0.5.0
[15:45:56]: ▸ 0: tty-cursor (0.5.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/tty-cursor-0.5.0.gemspec
[15:45:56]: ▸ Using tty-spinner 0.8.0
[15:45:56]: ▸ 0: tty-spinner (0.8.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/tty-spinner-0.8.0.gemspec
[15:45:56]: ▸ Using word_wrap 1.0.0
[15:45:56]: ▸ 0: word_wrap (1.0.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/word_wrap-1.0.0.gemspec
[15:45:56]: ▸ Using nanaimo 0.2.5
[15:45:56]: ▸ 0: nanaimo (0.2.5) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/nanaimo-0.2.5.gemspec
[15:45:56]: ▸ Using xcodeproj 1.5.7
[15:45:56]: ▸ 0: xcodeproj (1.5.7) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/xcodeproj-1.5.7.gemspec
[15:45:56]: ▸ Using rouge 2.0.7
[15:45:56]: ▸ 0: rouge (2.0.7) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/rouge-2.0.7.gemspec
[15:45:56]: ▸ Using xcpretty 0.2.8
[15:45:56]: ▸ 0: xcpretty (0.2.8) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/xcpretty-0.2.8.gemspec
[15:45:56]: ▸ Using xcpretty-travis-formatter 1.0.0
[15:45:56]: ▸ 0: xcpretty-travis-formatter (1.0.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/xcpretty-travis-formatter-1.0.0.gemspec
[15:45:56]: ▸ Using fastlane 2.89.0 from https://github.com/fastlane/fastlane (at master@c579921)
[15:45:56]: ▸ 0: fastlane (2.89.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/bundler/gems/fastlane-c579921dcf7a/fastlane.gemspec
[15:45:56]: ▸ Using websocket-extensions 0.1.3
[15:45:56]: ▸ 0: websocket-extensions (0.1.3) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/websocket-extensions-0.1.3.gemspec
[15:45:56]: ▸ Using websocket-driver 0.7.0
[15:45:56]: ▸ 0: websocket-driver (0.7.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/websocket-driver-0.7.0.gemspec
[15:45:56]: ▸ Using faye-websocket 0.10.7
[15:45:56]: ▸ 0: faye-websocket (0.10.7) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/faye-websocket-0.10.7.gemspec
[15:45:56]: ▸ Using git 1.3.0
[15:45:56]: ▸ 0: git (1.3.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/git-1.3.0.gemspec
[15:45:56]: ▸ Using google-cloud-env 1.0.1
[15:45:56]: ▸ 0: google-cloud-env (1.0.1) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/google-cloud-env-1.0.1.gemspec
[15:45:56]: ▸ Using google-cloud-core 1.2.0
[15:45:56]: ▸ 0: google-cloud-core (1.2.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/google-cloud-core-1.2.0.gemspec
[15:45:56]: ▸ Using google-cloud-storage 1.5.0
[15:45:56]: ▸ 0: google-cloud-storage (1.5.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/google-cloud-storage-1.5.0.gemspec
[15:45:56]: ▸ Using method_source 0.9.0
[15:45:56]: ▸ 0: method_source (0.9.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/method_source-0.9.0.gemspec
[15:45:56]: ▸ Using mustermann 1.0.2
[15:45:56]: ▸ 0: mustermann (1.0.2) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/mustermann-1.0.2.gemspec
[15:45:56]: ▸ Using sawyer 0.8.1
[15:45:56]: ▸ 0: sawyer (0.8.1) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/sawyer-0.8.1.gemspec
[15:45:56]: ▸ Using octokit 4.8.0
[15:45:56]: ▸ 0: octokit (4.8.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/octokit-4.8.0.gemspec
[15:45:56]: ▸ Using parallel 1.12.1
[15:45:56]: ▸ 0: parallel (1.12.1) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/parallel-1.12.1.gemspec
[15:45:56]: ▸ Using tty-color 0.4.2
[15:45:56]: ▸ 0: tty-color (0.4.2) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/tty-color-0.4.2.gemspec
[15:45:56]: ▸ Using pastel 0.7.2
[15:45:56]: ▸ 0: pastel (0.7.2) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/pastel-0.7.2.gemspec
[15:45:56]: ▸ Using powerpack 0.1.1
[15:45:56]: ▸ 0: powerpack (0.1.1) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/powerpack-0.1.1.gemspec
[15:45:56]: ▸ Using pry 0.11.3
[15:45:56]: ▸ 0: pry (0.11.3) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/pry-0.11.3.gemspec
[15:45:56]: ▸ Using pry-byebug 3.6.0
[15:45:56]: ▸ 0: pry-byebug (3.6.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/pry-byebug-3.6.0.gemspec
[15:45:56]: ▸ Using rack 2.0.4
[15:45:56]: ▸ 0: rack (2.0.4) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/rack-2.0.4.gemspec
[15:45:56]: ▸ Using rack-protection 2.0.1
[15:45:56]: ▸ 0: rack-protection (2.0.1) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/rack-protection-2.0.1.gemspec
[15:45:56]: ▸ Using rack-test 1.0.0
[15:45:56]: ▸ 0: rack-test (1.0.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/rack-test-1.0.0.gemspec
[15:45:56]: ▸ Using rainbow 3.0.0
[15:45:56]: ▸ 0: rainbow (3.0.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/rainbow-3.0.0.gemspec
[15:45:56]: ▸ Using rspec-support 3.7.1
[15:45:56]: ▸ 0: rspec-support (3.7.1) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/rspec-support-3.7.1.gemspec
[15:45:56]: ▸ Using rspec-core 3.7.1
[15:45:56]: ▸ 0: rspec-core (3.7.1) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/rspec-core-3.7.1.gemspec
[15:45:56]: ▸ Using rspec-expectations 3.7.0
[15:45:56]: ▸ 0: rspec-expectations (3.7.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/rspec-expectations-3.7.0.gemspec
[15:45:56]: ▸ Using rspec-mocks 3.7.0
[15:45:56]: ▸ 0: rspec-mocks (3.7.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/rspec-mocks-3.7.0.gemspec
[15:45:56]: ▸ Using rspec 3.7.0
[15:45:56]: ▸ 0: rspec (3.7.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/rspec-3.7.0.gemspec
[15:45:56]: ▸ Using ruby-progressbar 1.9.0
[15:45:56]: ▸ 0: ruby-progressbar (1.9.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/ruby-progressbar-1.9.0.gemspec
[15:45:56]: ▸ Using rubocop 0.52.1
[15:45:56]: ▸ 0: rubocop (0.52.1) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/rubocop-0.52.1.gemspec
[15:45:56]: ▸ Using rufus-scheduler 3.4.2
[15:45:56]: ▸ 0: rufus-scheduler (3.4.2) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/rufus-scheduler-3.4.2.gemspec
[15:45:56]: ▸ Using tilt 2.0.8
[15:45:56]: ▸ 0: tilt (2.0.8) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/tilt-2.0.8.gemspec
[15:45:56]: ▸ Using sinatra 2.0.1
[15:45:56]: ▸ 0: sinatra (2.0.1) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/sinatra-2.0.1.gemspec
[15:45:56]: ▸ Using sinatra-contrib 2.0.1
[15:45:56]: ▸ 0: sinatra-contrib (2.0.1) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/sinatra-contrib-2.0.1.gemspec
[15:45:56]: ▸ Using taskqueue 0.0.0 from https://github.com/fastlane/TaskQueue (at master@5b3f459)
[15:45:56]: ▸ 0: taskqueue (0.0.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/bundler/gems/TaskQueue-5b3f459be5c4/taskqueue.gemspec
[15:45:56]: ▸ Using thin 1.7.2
[15:45:56]: ▸ 0: thin (1.7.2) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/thin-1.7.2.gemspec
[15:45:56]: ▸ Using tty-command 0.7.0
[15:45:56]: ▸ 0: tty-command (0.7.0) from /Users/jliebowitz/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/specifications/tty-command-0.7.0.gemspec
[15:45:56]: ▸ Bundle complete! 23 Gemfile dependencies, 129 gems now installed.
[15:45:56]: ▸ Use `bundle info [gemname]` to see where a bundled gem is installed.
[15:45:56]: -------------------------------------
[15:45:56]: --- Step: cd ..;bundle exec rspec ---
[15:45:56]: -------------------------------------
[15:45:56]: $ cd ..;bundle exec rspec
[15:45:57]: ▸ warning: parser/current is loading parser/ruby23, which recognizes
[15:45:57]: ▸ warning: 2.3.5-compliant syntax, but you are running 2.3.3.
[15:45:57]: ▸ warning: please see https://github.com/whitequark/parser#compatibility-with-ruby-mri.
[15:45:57]: ▸ [Coveralls] Set up the SimpleCov formatter.
[15:45:57]: ▸ [Coveralls] Using SimpleCov's default settings.
[15:45:59]: ▸ An error occurred while loading ./spec/dashboard_controller_spec.rb.
[15:45:59]: ▸ Failure/Error: require [1;31m"sinatra/flash[1;31m"
[15:45:59]: ▸
[15:45:59]: ▸ LoadError:
[15:45:59]: ▸ cannot load such file -- sinatra/flash
[15:45:59]: ▸ # ./app/shared/controller_base.rb:4:in `require'
[15:45:59]: ▸ # ./app/shared/controller_base.rb:4:in `'
[15:45:59]: ▸ # ./app/shared/authenticated_controller_base.rb:2:in `require_relative'
[15:45:59]: ▸ # ./app/shared/authenticated_controller_base.rb:2:in `'
[15:45:59]: ▸ # ./app/features/dashboard/dashboard_controller.rb:1:in `require_relative'
[15:45:59]: ▸ # ./app/features/dashboard/dashboard_controller.rb:1:in `'
[15:45:59]: ▸ # ./spec/dashboard_controller_spec.rb:2:in `require'
[15:45:59]: ▸ # ./spec/dashboard_controller_spec.rb:2:in `'
[15:45:59]: ▸ An error occurred while loading ./spec/notification_controller_spec.rb.
[15:45:59]: ▸ Failure/Error: require [1;31m"sinatra/flash[1;31m"
[15:45:59]: ▸
[15:45:59]: ▸ LoadError:
[15:45:59]: ▸ cannot load such file -- sinatra/flash
[15:45:59]: ▸ # ./app/shared/controller_base.rb:4:in `require'
[15:45:59]: ▸ # ./app/shared/controller_base.rb:4:in `'
[15:45:59]: ▸ # ./app/shared/authenticated_controller_base.rb:2:in `require_relative'
[15:45:59]: ▸ # ./app/shared/authenticated_controller_base.rb:2:in `'
[15:45:59]: ▸ # ./app/features/notifications/notifications_controller.rb:1:in `require_relative'
[15:45:59]: ▸ # ./app/features/notifications/notifications_controller.rb:1:in `'
[15:45:59]: ▸ # ./spec/notification_controller_spec.rb:2:in `require'
[15:45:59]: ▸ # ./spec/notification_controller_spec.rb:2:in `'
[15:45:59]: ▸ Finished in 0.0004 seconds (files took 2.9 seconds to load)
[15:45:59]: ▸ 0 examples, 0 failures, 2 errors occurred outside of examples
[15:45:59]: ▸ [Coveralls] Submitting to https://coveralls.io/api/v1
[15:46:00]: ▸ [Coveralls] Job #461.1
[15:46:00]: ▸ [Coveralls] [4mhttps://coveralls.io/jobs/35630153
[15:46:00]: ▸ Coverage is at 37.33%.
[15:46:00]: ▸ Coverage report sent to Coveralls.
[15:46:01]: Lane Context:
[15:46:01]: {:PLATFORM_NAME=>nil, :LANE_NAME=>"rspec_me"}
[15:46:01]: Exit status of command 'cd ..;bundle exec rspec' was 1 instead of 0.
warning: parser/current is loading parser/ruby23, which recognizes
warning: 2.3.5-compliant syntax, but you are running 2.3.3.
warning: please see https://github.com/whitequark/parser#compatibility-with-ruby-mri.
[Coveralls] Set up the SimpleCov formatter.
[Coveralls] Using SimpleCov's default settings.
An error occurred while loading ./spec/dashboard_controller_spec.rb.
Failure/Error: require [1;31m"sinatra/flash[1;31m"
LoadError:
cannot load such file -- sinatra/flash
# ./app/shared/controller_base.rb:4:in `require'
# ./app/shared/controller_base.rb:4:in `'
# ./app/shared/authenticated_controller_base.rb:2:in `require_relative'
# ./app/shared/authenticated_controller_base.rb:2:in `'
# ./app/features/dashboard/dashboard_controller.rb:1:in `require_relative'
# ./app/features/dashboard/dashboard_controller.rb:1:in `'
# ./spec/dashboard_controller_spec.rb:2:in `require'
# ./spec/dashboard_controller_spec.rb:2:in `'
An error occurred while loading ./spec/notification_controller_spec.rb.
Failure/Error: require [1;31m"sinatra/flash[1;31m"
LoadError:
cannot load such file -- sinatra/flash
# ./app/shared/controller_base.rb:4:in `require'
# ./app/shared/controller_base.rb:4:in `'
# ./app/shared/authenticated_controller_base.rb:2:in `require_relative'
# ./app/shared/authenticated_controller_base.rb:2:in `'
# ./app/features/notifications/notifications_controller.rb:1:in `require_relative'
# ./app/features/notifications/notifications_controller.rb:1:in `'
# ./spec/notification_controller_spec.rb:2:in `require'
# ./spec/notification_controller_spec.rb:2:in `'
Finished in 0.0004 seconds (files took 2.9 seconds to load)
0 examples, 0 failures, 2 errors occurred outside of examples
[Coveralls] Submitting to https://coveralls.io/api/v1
[Coveralls] Job #461.1
[Coveralls] [4mhttps://coveralls.io/jobs/35630153
Coverage is at 37.33%.
Coverage report sent to Coveralls.
[15:46:01]: fastlane finished with errors
[15:46:01]: Exit status of command 'cd ..;bundle exec rspec' was 1 instead of 0.
warning: parser/current is loading parser/ruby23, which recognizes
warning: 2.3.5-compliant syntax, but you are running 2.3.3.
warning: please see https://github.com/whitequark/parser#compatibility-with-ruby-mri.
[Coveralls] Set up the SimpleCov formatter.
[Coveralls] Using SimpleCov's default settings.
An error occurred while loading ./spec/dashboard_controller_spec.rb.
Failure/Error: require [1;31m"sinatra/flash[1;31m"
LoadError:
cannot load such file -- sinatra/flash
# ./app/shared/controller_base.rb:4:in `require'
# ./app/shared/controller_base.rb:4:in `'
# ./app/shared/authenticated_controller_base.rb:2:in `require_relative'
# ./app/shared/authenticated_controller_base.rb:2:in `'
# ./app/features/dashboard/dashboard_controller.rb:1:in `require_relative'
# ./app/features/dashboard/dashboard_controller.rb:1:in `'
# ./spec/dashboard_controller_spec.rb:2:in `require'
# ./spec/dashboard_controller_spec.rb:2:in `'
An error occurred while loading ./spec/notification_controller_spec.rb.
Failure/Error: require [1;31m"sinatra/flash[1;31m"
LoadError:
cannot load such file -- sinatra/flash
# ./app/shared/controller_base.rb:4:in `require'
# ./app/shared/controller_base.rb:4:in `'
# ./app/shared/authenticated_controller_base.rb:2:in `require_relative'
# ./app/shared/authenticated_controller_base.rb:2:in `'
# ./app/features/notifications/notifications_controller.rb:1:in `require_relative'
# ./app/features/notifications/notifications_controller.rb:1:in `'
# ./spec/notification_controller_spec.rb:2:in `require'
# ./spec/notification_controller_spec.rb:2:in `'
Finished in 0.0004 seconds (files took 2.9 seconds to load)
0 examples, 0 failures, 2 errors occurred outside of examples
[Coveralls] Submitting to https://coveralls.io/api/v1
[Coveralls] Job #461.1
[Coveralls] [4mhttps://coveralls.io/jobs/35630153
Coverage is at 37.33%.
Coverage report sent to Coveralls.
As I made the PR with the Bundler isolation, I'm trying to trace the issue here.
| gharchive/issue | 2018-04-15T22:49:35 | 2025-04-01T06:38:39.272558 | {
"authors": [
"minuscorp",
"taquitos"
],
"repo": "fastlane/ci",
"url": "https://github.com/fastlane/ci/issues/674",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
434768570 | latest_testflight_build_number returns always 0
Using this code on Fastfile:
build_number = latest_testflight_build_number(
version: 2.3.1,
team_id: XXXXXXX,
initial_build_number: 0
)
Always I get build number 0.
[14:32:08]: --------------------------------------------
[14:32:08]: --- Step: latest_testflight_build_number ---
[14:32:08]: --------------------------------------------
[14:32:09]: Login to App Store Connect XXXXXXXXXXXXXX
[14:32:11]: Login successful
[14:32:12]: Fetching the latest build number for version 2.3.1
[14:32:13]: Latest upload for version 2.3.1 is build: 0
I'm using version 2.119.0 of Fastlane.
With the same code, it worked until a few weeks ago. Since then it always fails with the same result.
The result is the same with or without any active builds numbers on Testflight.
Checklist
[x] I read the similar issues. Closed as solved, but i have not exactly the same issue.
[x] Change the version number.
[x] Try on another project with the same Fastfile.
Please upgrade to the latest version of fastlane and report if you still have issues. The Testflight stuff was greatly rewritten there because Apple changed a lot on their side, so it is expected that you have to use fastlane 2.120.0.
Hey @UPCman, could you please check if this problem still exists with a current release of fastlane? We tried to fix a lot of these "error 410 gone" errors, and now need your feedback if this covered yours as well. Thanks!
I update my fastlane to v2.120.0 and the issue is solved.
Thanks!!
@janpio happening also on 2.121.1
Awesome 🥇 All credit goes to @joshdholtz who did a great job fixing this mess.
| gharchive/issue | 2019-04-18T13:23:25 | 2025-04-01T06:38:39.279284 | {
"authors": [
"UPCman",
"jakubpetrik",
"janpio"
],
"repo": "fastlane/fastlane",
"url": "https://github.com/fastlane/fastlane/issues/14621",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
507575764 | firebase_app_distribution plugin doesn't work in macOS Catalina
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
I'd like to try to use firebase_app_distribution plugin with Fastlane.
So I executed fastlane add_plugin firebase_app_distribution and use with fastlane firebase_app_distribution command.
But, failed with error.
Command executed
fastlane add_plugin firebase_app_distribution
[✔] 🚀
[11:11:34]: fastlane detected a Gemfile in the current directory
[11:11:34]: however it seems like you don't use `bundle exec`
[11:11:34]: to launch fastlane faster, please use
[11:11:34]:
[11:11:34]: $ bundle exec fastlane add_plugin firebase_app_distribution
[11:11:34]:
[11:11:34]: Get started using a Gemfile for fastlane https://docs.fastlane.tools/getting-started/ios/setup/#use-a-gemfile
[11:11:35]: Plugin 'fastlane-plugin-firebase_app_distribution' was added to './fastlane/Pluginfile'
[11:11:35]: Make sure to commit your Gemfile, Gemfile.lock and Pluginfile to version control
Installing plugin dependencies...
Successfully installed plugins
Complete output when running fastlane, including the stack trace and command used
fastlane firebase_app_distribution
[✔] 🚀
[11:12:46]: fastlane detected a Gemfile in the current directory
[11:12:46]: however it seems like you don't use `bundle exec`
[11:12:46]: to launch fastlane faster, please use
[11:12:46]:
[11:12:46]: $ bundle exec fastlane firebase_app_distribution
[11:12:46]:
[11:12:46]: Get started using a Gemfile for fastlane https://docs.fastlane.tools/getting-started/ios/setup/#use-a-gemfile
[11:12:47]: Error loading plugin 'fastlane-plugin-firebase_app_distribution': cannot load such file -- fastlane/plugin/firebase_app_distribution
[11:12:47]: It seems like you wanted to load some plugins, however they couldn't be loaded
[11:12:47]: Please follow the troubleshooting guide: https://docs.fastlane.tools/plugins/plugins-troubleshooting/
+-------------------------------------------+-----------+------------------+
| Used plugins |
+-------------------------------------------+-----------+------------------+
| Plugin | Version | Action |
+-------------------------------------------+-----------+------------------+
| fastlane-plugin-firebase_app_distribution | undefined | No actions found |
+-------------------------------------------+-----------+------------------+
[11:12:47]: ----------------------------------------
[11:12:47]: --- Step: Verifying fastlane version ---
[11:12:47]: ----------------------------------------
[11:12:47]: Your fastlane version 2.134.0 matches the minimum requirement of 2.119.0 ✅
[11:12:47]: ------------------------------
[11:12:47]: --- Step: default_platform ---
[11:12:47]: ------------------------------
+------------------+-----+
| Lane Context |
+------------------+-----+
| DEFAULT_PLATFORM | ios |
+------------------+-----+
[11:12:47]: Could not find lane 'ios firebase_app_distribution'. Available lanes: ios version, ios deploy, ios test, ios beta, ios release, ios dsyms
+------+----------------------------+-------------+
| fastlane summary |
+------+----------------------------+-------------+
| Step | Action | Time (in s) |
+------+----------------------------+-------------+
| 1 | Verifying fastlane version | 0 |
| 2 | default_platform | 0 |
+------+----------------------------+-------------+
Looking for related GitHub issues on fastlane/fastlane...
➡️ Malformed version number string undefined
https://github.com/fastlane/fastlane/issues/14663 [closed] 1 💬
23 Jun 2019
➡️ Sign in with the app-specific password you generated
https://github.com/fastlane/fastlane/issues/7380 [closed] 5 💬
22 Aug 2017
🔗 You can ⌘ + double-click on links to open them directly in your browser.
Traceback (most recent call last):
20: from /usr/local/bin/fastlane:23:in `'
19: from /usr/local/bin/fastlane:23:in `load'
18: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/bin/fastlane:23:in `'
17: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/cli_tools_distributor.rb:119:in `take_off'
16: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/commands_generator.rb:41:in `start'
15: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/commands_generator.rb:349:in `run'
14: from /Library/Ruby/Gems/2.6.0/gems/commander-fastlane-4.4.6/lib/commander/delegates.rb:15:in `run!'
13: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb:76:in `run!'
12: from /Library/Ruby/Gems/2.6.0/gems/commander-fastlane-4.4.6/lib/commander/runner.rb:476:in `run_active_command'
11: from /Library/Ruby/Gems/2.6.0/gems/commander-fastlane-4.4.6/lib/commander/command.rb:153:in `run'
10: from /Library/Ruby/Gems/2.6.0/gems/commander-fastlane-4.4.6/lib/commander/command.rb:178:in `call'
9: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/commands_generator.rb:108:in `block (2 levels) in run'
8: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/command_line_handler.rb:36:in `handle'
7: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/lane_manager.rb:76:in `cruise_lane'
6: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/lane_manager_base.rb:20:in `finish_fastlane'
5: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/plugins/plugin_update_manager.rb:26:in `show_update_status'
4: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/plugins/plugin_update_manager.rb:26:in `each'
3: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/plugins/plugin_update_manager.rb:29:in `block in show_update_status'
2: from /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/version.rb:203:in `new'
1: from /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/version.rb:203:in `new'
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/version.rb:212:in `initialize': Malformed version number string undefined (ArgumentError)
20: from /usr/local/bin/fastlane:23:in `'
19: from /usr/local/bin/fastlane:23:in `load'
18: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/bin/fastlane:23:in `'
17: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/cli_tools_distributor.rb:119:in `take_off'
16: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/commands_generator.rb:41:in `start'
15: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/commands_generator.rb:349:in `run'
14: from /Library/Ruby/Gems/2.6.0/gems/commander-fastlane-4.4.6/lib/commander/delegates.rb:15:in `run!'
13: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb:76:in `run!'
12: from /Library/Ruby/Gems/2.6.0/gems/commander-fastlane-4.4.6/lib/commander/runner.rb:476:in `run_active_command'
11: from /Library/Ruby/Gems/2.6.0/gems/commander-fastlane-4.4.6/lib/commander/command.rb:153:in `run'
10: from /Library/Ruby/Gems/2.6.0/gems/commander-fastlane-4.4.6/lib/commander/command.rb:178:in `call'
9: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/commands_generator.rb:108:in `block (2 levels) in run'
8: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/command_line_handler.rb:36:in `handle'
7: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/lane_manager.rb:76:in `cruise_lane'
6: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/lane_manager_base.rb:20:in `finish_fastlane'
5: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/plugins/plugin_update_manager.rb:26:in `show_update_status'
4: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/plugins/plugin_update_manager.rb:26:in `each'
3: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/plugins/plugin_update_manager.rb:29:in `block in show_update_status'
2: from /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/version.rb:203:in `new'
1: from /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/version.rb:203:in `new'
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/version.rb:212:in `initialize': [!] Malformed version number string undefined (ArgumentError)
11: from /usr/local/bin/fastlane:23:in `'
10: from /usr/local/bin/fastlane:23:in `load'
9: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/bin/fastlane:23:in `'
8: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/cli_tools_distributor.rb:119:in `take_off'
7: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/commands_generator.rb:53:in `start'
6: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/commands_generator.rb:43:in `ensure in start'
5: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/plugins/plugin_update_manager.rb:26:in `show_update_status'
4: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/plugins/plugin_update_manager.rb:26:in `each'
3: from /Library/Ruby/Gems/2.6.0/gems/fastlane-2.134.0/fastlane/lib/fastlane/plugins/plugin_update_manager.rb:29:in `block in show_update_status'
2: from /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/version.rb:203:in `new'
1: from /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/version.rb:203:in `new'
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/version.rb:212:in `initialize': Malformed version number string undefined (ArgumentError)
Environment
🚫 fastlane environment 🚫
Stack
Key
Value
OS
10.15
Ruby
2.6.3
Bundler?
false
Git
git version 2.21.0
Installation Source
/usr/local/bin/fastlane
Host
Mac OS X 10.15 (19A583)
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.0
System Locale
Error
No Locale with UTF8 found 🚫
fastlane files:
`./fastlane/Fastfile`
# Customise this file, documentation can be found here:
# https://github.com/fastlane/fastlane/tree/master/fastlane/docs
# All available actions: https://docs.fastlane.tools/actions
# can also be listed using the `fastlane actions` command
# Change the syntax highlighting to Ruby
# All lines starting with a # are ignored when running `fastlane`
# If you want to automatically update fastlane if a new version is available:
# update_fastlane
# This is the minimum version number required.
# Update this, if you use features of a newer version
fastlane_version "2.119.0"
appVersion = "3.0.0"
xcodeproj = "Type.xcodeproj"
buildNumber = `git log --oneline | wc -l`.strip
default_platform :ios
platform :ios do
before_all do
# ENV["SLACK_URL"] = "https://hooks.slack.com/services/..."
#cocoapods
#carthage
end
lane :version do |options|
version_number = options[:version] || appVersion
increment_version_number(version_number: version_number, xcodeproj: xcodeproj)
increment_build_number(build_number: buildNumber, xcodeproj: xcodeproj)
end
lane :deploy do |options|
commit_message = `git log --format=%B -n 1 HEAD`.strip
ipa_path = options[:ipa_path]
app_id = options[:app_id] || "1:22804013810:ios:ee16d150e1ffecd2"
groups = options[:groups] || "開発者"
firebase_cli_path = options[:firebase_cli_path] || "/usr/local/lib/node_modules/firebase-tools/lib/bin/firebase.js"
firebase_app_distribution(
app: app_id,
groups: groups,
release_notes: commit_message,
ipa_path: ipa_path,
firebase_cli_path: firebase_cli_path
)
end
desc "Runs all the tests"
lane :test do
scan
end
desc "Submit a new Beta Build to Apple TestFlight"
desc "This will also make sure the profile is up to date"
lane :beta do
# match(type: "appstore") # more information: https://codesigning.guide
gym(scheme: "Type") # Build your app - more options available
pilot
# sh "your_script.sh"
# You can also use other beta testing services here (run `fastlane actions`)
end
desc "Deploy a new version to the App Store"
lane :release do
# match(type: "appstore")
# snapshot
# gym(scheme: "Type") # Build your app - more options available
deliver(force: true)
# frameit
end
lane :dsyms do |options|
version_number = options[:version] || get_info_plist_value(path: 'Type/Info.plist', key: "CFBundleShortVersionString")
app_identifier = "me.fromkk.Type"
download_dsyms(
version: version_number,
app_identifier: app_identifier
)
upload_symbols_to_crashlytics(
gsp_path: "Type/Resources/GoogleService-Info.plist"
)
clean_build_artifacts
end
# You can define as many lanes as you want
after_all do |lane|
# This block is called, only if the executed lane was successful
# slack(
# message: "Successfully deployed new App Update."
# )
end
error do |lane, exception|
# slack(
# message: exception.message,
# success: false
# )
end
end
# More information about multiple platforms in fastlane: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Platforms.md
# All available actions: https://docs.fastlane.tools/actions
# fastlane reports which actions are used. No personal data is recorded.
# Learn more at https://github.com/fastlane/fastlane#metrics
`./fastlane/Appfile`
app_identifier "me.fromkk.Type" # The bundle identifier of your app
apple_id "iueokakkun@gmail.com" # Your Apple email address
team_id "K84E4S7G4C" # Developer Portal Team ID
# you can even provide different app identifiers, Apple IDs and team names per lane:
# More information: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Appfile.md
fastlane gems
Gem
Version
Update-Status
fastlane
2.134.0
✅ Up-To-Date
Loaded fastlane plugins:
Plugin
Version
Update-Status
fastlane-plugin-badge
1.3.0
✅ Up-To-Date
Loaded gems
Gem
Version
did_you_mean
1.3.0
slack-notifier
2.3.2
atomos
0.1.3
claide
1.0.3
colored2
3.1.2
nanaimo
0.2.6
xcodeproj
1.12.0
rouge
2.0.7
xcpretty
0.3.0
terminal-notifier
2.0.0
unicode-display_width
1.6.0
terminal-table
1.8.0
plist
3.5.0
public_suffix
2.0.5
addressable
2.7.0
multipart-post
2.0.0
word_wrap
1.0.0
tty-screen
0.7.0
tty-cursor
0.7.0
tty-spinner
0.9.1
babosa
1.0.3
colored
1.2
highline
1.7.10
commander-fastlane
4.4.6
excon
0.67.0
unf_ext
0.0.7.6
unf
0.1.4
domain_name
0.5.20190701
http-cookie
1.0.3
faraday-cookie_jar
0.0.6
faraday
0.17.0
faraday_middleware
0.13.1
fastimage
2.1.7
gh_inspector
1.1.3
mini_magick
4.9.5
multi_xml
0.6.0
rubyzip
1.3.0
security
0.1.3
xcpretty-travis-formatter
1.0.0
dotenv
2.7.5
bundler
2.0.2
naturally
2.2.0
simctl
1.6.6
jwt
2.1.0
uber
0.1.0
declarative
0.0.10
declarative-option
0.1.0
representable
3.0.4
retriable
3.1.2
mime-types
3.3
memoist
0.16.0
os
1.0.1
googleauth
0.6.7
httpclient
2.8.3
google-api-client
0.23.9
digest-crc
0.4.1
google-cloud-storage
1.16.0
emoji_regex
1.0.1
CFPropertyList
3.0.1
json
2.2.0
mime-types-data
3.2019.1009
multi_json
1.14.1
signet
0.12.0
google-cloud-env
1.2.1
google-cloud-core
1.3.2
forwardable
1.2.0
logger
1.3.0
stringio
0.0.2
ipaddr
1.2.2
openssl
2.1.2
ostruct
0.1.0
strscan
1.0.0
date
2.0.0
fileutils
1.1.0
etc
1.0.1
io-console
0.4.7
zlib
1.0.0
libxml-ruby
3.1.0
rexml
3.1.9
psych
3.1.0
mutex_m
0.1.0
curb
0.9.10
badge
0.11.0
fastlane-plugin-badge
1.3.0
generated on: 2019-10-16
I've faced with identical issue on Ubuntu 18.04.1. Plugin installed, but can't be loaded.
Looks like the fastlane firebase_app_distribution or fastlane env commands has not enough privileges to get access to plugin. Try to run command as Administrator.
Did you search for previous issues about this plugin?
Did you post this at the plugin's Github repo?
I'm having the same issue on Mojave
I'm also having the same issue on Mojave
Upgrade ruby to 2.5.5 will work
https://github.com/fastlane-community/fastlane-plugin-firebase_app_distribution/issues/15
You need to edit Fastfile like in the docs
https://firebase.google.com/docs/app-distribution/ios/distribute-fastlane
@fromkk Heyyy 👋 The command should be fastlane run firebase_app_distribution (not fastlane firebase_app_distribution ). The run is important 😇
In my case the error was resolved after using
sudo fastlane firebase_app_distribution
Also mu custom lane to distribute app via firebase need to start with sudo
sudo fastlane my_custom_distribution_lane
Looks like files in firebase_app_distribution plugin have incorrect permissions, 640 by default. This can be fixed with
sudo chmod -R a+r /Library/Ruby/Gems/2.6.0/gems/fastlane-plugin-firebase_app_distribution-0.1.4
so you don't need to run fastlane itself with sudo
@gkhloptov thank you, changing permissions helped me.
Hi sir gkhloptov! I can't update my rubygems into updated I'm currently using 2.3.7.
This error message that I got whenever I tried to update gems
ERROR: While executing gem ... (Gem::FilePermissionError)
You don't have write permissions for the /Library/Ruby/Gems/2.3.0 directory.
| gharchive/issue | 2019-10-16T02:30:24 | 2025-04-01T06:38:39.327629 | {
"authors": [
"AlexParfenjuk",
"Peretz30",
"derpoliuk",
"drayan85",
"fromkk",
"gkhloptov",
"herald25santos",
"janpio",
"joshdholtz",
"michzio",
"timMorrill"
],
"repo": "fastlane/fastlane",
"url": "https://github.com/fastlane/fastlane/issues/15506",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
539662167 | Exit Status 70. But rewriting the -exportArchive plist does something.
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
Using fastlane to automate builds generated from Unity3D into testflight. I am not using my own certificate/provisioning profile since this is for a client (his personal account, not company). So he sent me the .p12 and .mobileprovisioning.
I can distribuite it OK using XCode 11.0 directly.
But when using fastlane I get the infamous:
+ xcodebuild -exportArchive -exportOptionsPlist /var/folders/43/934fh5xn7ybbq17dhjvc7qk000008b/T/gym_config20191218-68019-9q8o9z.plist -archivePath '/Users/Shared/Jenkins/Library/Developer/Xcode/Archives/2019-12-18/wrld 2019-12-18 12.37.54.xcarchive' -exportPath /var/folders/43/934fh5xn7ybbq17dhjvc7qk000008b/T/gym_output20191218-68019-1m5pzng
2019-12-18 12:43:30.674 xcodebuild[69223:318216] [MT] IDEDistribution: -[IDEDistributionLogging _createLoggingBundleAtPath:]: Created bundle at path '/var/folders/43/934fh5xn7ybbq17dhjvc7qk000008b/T/Unity-iPhone_2019-12-18_12-43-30.673.xcdistributionlogs'.
error: exportArchive: "wrld.app" requires a provisioning profile.
Error Domain=IDEProvisioningErrorDomain Code=9 ""wrld.app" requires a provisioning profile." UserInfo={IDEDistributionIssueSeverity=3, NSLocalizedDescription="wrld.app" requires a provisioning profile., NSLocalizedRecoverySuggestion=Add a profile to the "provisioningProfiles" dictionary in your Export Options property list.}
** EXPORT FAILED **
[12:43:31]: Exit status: 70
[12:43:31]: No provisioning profile provided
[12:43:31]: Make sure to pass a valid provisioning for each required target
[12:43:31]: Check out the docs on how to fix this: https://docs.fastlane.tools/actions/gym/#export-options
There is a plot twist.
If I simply execute manually the xcodebuild -exportArchive [...] command afterward, it still fails. But if then I open the plist it is pointing at which contains
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>method</key>
<string>app-store</string>
<key>provisioningProfiles</key>
<dict>
<key>com.XXXXXXXX.wlrd</key>
<string>Luca Mefisto</string>
</dict>
<key>signingStyle</key>
<string>manual</string>
<key>teamID</key>
<string>RXXXXXXXXA</string>
</dict>
</plist>
Removed everything and pasted this other version that I modified manually once, although it looks pretty much the same (note that if I simply remove the top xml line it still fails... I can only make it work if I replace everything)
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>method</key>
<string>app-store</string>
<key>provisioningProfiles</key>
<dict>
<key>com.XXXXXXXX.wrld</key>
<string>Luca Mefisto</string>
</dict>
<key>signingStyle</key>
<string>manual</string>
<key>teamID</key>
<string>RXXXXXXXXA</string>
</dict>
</plist>
Then I get:
Copying this file manually
Mac-mini:joeboyle jenkins$ vi /var/folders/43/934fh5xn7ybbq17dhjvc7qk000008b/T/gym_config20191218-72360-3epuey.plist
Manually pasting into this one
Mac-mini:joeboyle jenkins$ vi /var/folders/43/934fh5xn7ybbq17dhjvc7qk000008b/T/gym_config20191218-74350-10oeug0.plist
Mac-mini:joeboyle jenkins$ xcodebuild -exportArchive -exportOptionsPlist /var/folders/43/934fh5xn7ybbq17dhjvc7qk000008b/T/gym_config20191218-74350-10oeug0.plist -archivePath '/Users/Shared/Jenkins/Library/Developer/Xcode/Archives/2019-12-18/wrld 2019-12-18 13.30.19.xcarchive' -exportPath /var/folders/43/934fh5xn7ybbq17dhjvc7qk000008b/T/gym_output20191218-74350-1tikyo9
2019-12-18 13:40:37.401 xcodebuild[75963:350134] [MT] IDEDistribution: -[IDEDistributionLogging _createLoggingBundleAtPath:]: Created bundle at path '/var/folders/43/934fh5xn7ybbq17dhjvc7qk000008b/T/Unity-iPhone_2019-12-18_13-40-37.400.xcdistributionlogs'.
Exported Unity-iPhone to: /var/folders/43/934fh5xn7ybbq17dhjvc7qk000008b/T/gym_output20191218-74350-1tikyo9
** EXPORT SUCCEEDED **
Command executed
##Fastfile
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>method</key>
<string>app-store</string>
<key>provisioningProfiles</key>
<dict>
<key>com.XXXXXXXX.wrld</key>
<string>Luca Mefisto</string>
</dict>
<key>signingStyle</key>
<string>manual</string>
<key>teamID</key>
<string>RXXXXXXXXA</string>
</dict>
</plist>
fastlane ios beta
Complete output when running fastlane, including the stack trace and command used
fastlane ios beta
[✔] 🚀
[13:30:11]: Get started using a Gemfile for fastlane https://docs.fastlane.tools/getting-started/ios/setup/#use-a-gemfile
[13:30:13]: ------------------------------
[13:30:13]: --- Step: default_platform ---
[13:30:13]: ------------------------------
[13:30:13]: Driving the lane 'ios beta' 🚀
[13:30:13]: -----------------
[13:30:13]: --- Step: gym ---
[13:30:13]: -----------------
[13:30:13]: $ xcodebuild -showBuildSettings -scheme Unity-iPhone -project ./Unity-iPhone.xcodeproj
[13:30:16]: Command timed out after 3 seconds on try 1 of 4, trying again with a 6 second timeout...
[13:30:19]: Detected provisioning profile mapping: {:"com.XXXXXX.wlrd"=>"Luca Mefisto"}
+-------------------------------------------------------------+-------------------------------------------------------------------+
| Summary for gym 2.137.0 |
+-------------------------------------------------------------+-------------------------------------------------------------------+
| scheme | Unity-iPhone |
| export_method | app-store |
| export_options.signingStyle | manual |
| export_options.teamID | RXXXXXXXXA|
| export_options.provisioningProfiles.com.jXXXXXXt.wlrd | Luca Mefisto |
| project | ./Unity-iPhone.xcodeproj |
| destination | generic/platform=iOS |
| output_name | wrld |
| build_path | /Users/Shared/Jenkins/Library/Developer/Xcode/Archives/2019-12-18 |
| clean | false |
| output_directory | . |
| silent | false |
| skip_package_ipa | false |
| result_bundle | false |
| buildlog_path | ~/Library/Logs/gym |
| skip_profile_detection | false |
| xcode_path | /Applications/Xcode.app |
+-------------------------------------------------------------+-------------------------------------------------------------------+
[13:30:19]: $ set -o pipefail && xcodebuild -scheme Unity-iPhone -project ./Unity-iPhone.xcodeproj -destination 'generic/platform=iOS' -archivePath /Users/Shared/Jenkins/Library/Developer/Xcode/Archives/2019-12-18/wrld\ 2019-12-18\ 13.30.19.xcarchive archive | tee /Users/Shared/Jenkins/Library/Logs/gym/wrld-Unity-iPhone.log | xcpretty
[13:30:21]: ▸ Copying /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Data
[13:30:22]: ▸ Compiling LaunchScreen-iPhone.xib
[13:30:25]: ▸ Compiling LaunchScreen-iPad.xib
[13:30:27]: ▸ Processing Info.plist
[13:30:27]: ▸ User-supplied CFBundleIdentifier value 'com.joeboyle.arkit.wrld' in the Info.plist must be the same as the PRODUCT_BUNDLE_IDENTIFIER build setting value ''. (in target 'Unity-iPhone' from project 'Unity-iPhone')
[13:30:27]: ▸ 'UILaunchImages' has been deprecated, use launch storyboards instead. (in target 'Unity-iPhone' from project 'Unity-iPhone')
[13:30:28]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Classes/Unity/UnityInterface.h:148:36: 'UILocalNotification' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationRequest [-Wdeprecated-declarations]
[13:30:28]: ▸ void UnitySendLocalNotification(UILocalNotification* notification);
[13:30:28]: ▸ ^
[13:30:29]: ▸ Precompiling /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Classes/Prefix.pch
[13:30:29]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Classes/Unity/UnityInterface.h:148:36: 'UILocalNotification' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationRequest [-Wdeprecated-declarations]
[13:30:29]: ▸ void UnitySendLocalNotification(UILocalNotification* notification);
[13:30:29]: ▸ ^
[13:30:29]: ▸ Compiling UnresolvedVirtualCallStubs.cpp
[13:30:30]: ▸ Compiling UnityICallRegistration.cpp
[13:30:30]: ▸ Compiling UnityClassRegistration.cpp
[13:30:30]: ▸ Compiling RegisterMonoModules.cpp
[13:30:30]: ▸ Compiling RegisterFeatures.cpp
[13:30:30]: ▸ Compiling InternalProfiler.cpp
[13:30:30]: ▸ Compiling Il2CppTypeDefinitions.cpp
[13:30:38]: ▸ Compiling Il2CppReversePInvokeWrapperTable.cpp
[13:30:38]: ▸ Compiling StoreReview.m
[13:30:38]: ▸ Compiling main.mm
[13:30:38]: ▸ Compiling iPhone_Sensors.mm
[13:30:38]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Classes/iPhone_Sensors.mm:516:42: 'GCGamepad' is deprecated: first deprecated in iOS 10.0 [-Wdeprecated-declarations]
[13:30:38]: ▸ static void ReportJoystickBasic(int idx, GCGamepad* gamepad)
[13:30:38]: ▸ ^
[13:30:38]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Classes/iPhone_Sensors.mm:641:26: 'gamepad' is deprecated: first deprecated in iOS 10.0 [-Wdeprecated-declarations]
[13:30:38]: ▸ else if ([controller gamepad] != nil)
[13:30:38]: ▸ ^
[13:30:38]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Classes/iPhone_Sensors.mm:642:46: 'gamepad' is deprecated: first deprecated in iOS 10.0 [-Wdeprecated-declarations]
[13:30:38]: ▸ ReportJoystickBasic(idx, [controller gamepad]);
[13:30:38]: ▸ ^
[13:30:38]: ▸ Compiling WWWConnection.mm
[13:30:38]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Classes/Unity/WWWConnection.mm:223:27: implicit conversion loses integer precision: 'NSInteger' (aka 'long') to 'unsigned int' [-Wshorten-64-to-32]
[13:30:38]: ▸ transmitted = [_outputStream write: bytes maxLength: dataSize];
[13:30:38]: ▸ ^
[13:30:38]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Classes/Unity/WWWConnection.mm:398:52: 'initWithRequest:delegate:startImmediately:' is deprecated: first deprecated in iOS 9.0 - Use NSURLSession (see NSURLSession.h) [-Wdeprecated-declarations]
[13:30:38]: ▸ delegate.connection = [[NSURLConnection alloc] initWithRequest: request delegate: delegate startImmediately: NO];
[13:30:38]: ▸ ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[13:30:38]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Classes/Unity/WWWConnection.mm:374:40: implicit conversion loses integer precision: 'CFIndex' (aka 'long') to 'unsigned int' [-Wshorten-64-to-32]
[13:30:38]: ▸ unsigned transmitted = CFWriteStreamWrite(writeStream, (UInt8*)bytes, dataSize);
[13:30:38]: ▸ ^
[13:30:38]: ▸ Compiling VideoPlayer.mm
[13:30:38]: ▸ Compiling UnityViewControllerListener.mm
[13:30:38]: ▸ Compiling UnityViewControllerBase.mm
[13:30:38]: ▸ Compiling UnityViewControllerBase+tvOS.mm
[13:30:38]: ▸ Compiling UnityViewControllerBase+iOS.mm
[13:30:38]: ▸ Compiling UnityView.mm
[13:30:38]: ▸ Compiling UnityView+tvOS.mm
[13:30:38]: ▸ Compiling UnityView+iOS.mm
[13:30:38]: ▸ Compiling UnityView+Keyboard.mm
[13:30:38]: ▸ Compiling UnityReplayKit_Scripting.mm
[13:30:38]: ▸ Compiling UnityReplayKit.mm
[13:30:38]: ▸ Compiling UnityAppController.mm
[13:30:38]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Classes/UnityAppController.mm:182:78: 'UILocalNotification' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationRequest [-Wdeprecated-declarations]
[13:30:38]: ▸ - (void)application:(UIApplication*)application didReceiveLocalNotification:(UILocalNotification*)notification
[13:30:38]: ▸ ~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[13:30:38]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Classes/UnityAppController.mm:182:1: implementing deprecated method [-Wdeprecated-implementations]
[13:30:38]: ▸ - (void)application:(UIApplication*)application didReceiveLocalNotification:(UILocalNotification*)notification
[13:30:38]: ▸ ^
[13:30:38]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Classes/UnityAppController.mm:252:9: 'UILocalNotification' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationRequest [-Wdeprecated-declarations]
[13:30:38]: ▸ if (UILocalNotification* notification = [launchOptions objectForKey: UIApplicationLaunchOptionsLocalNotificationKey])
[13:30:38]: ▸ ^
[13:30:38]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Classes/UnityAppController.mm:252:74: 'UIApplicationLaunchOptionsLocalNotificationKey' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's -[UNUserNotificationCenterDelegate didReceiveNotificationResponse:withCompletionHandler:] [-Wdeprecated-declarations]
[13:30:38]: ▸ if (UILocalNotification* notification = [launchOptions objectForKey: UIApplicationLaunchOptionsLocalNotificationKey])
[13:30:38]: ▸ ^
[13:30:38]: ▸ Compiling UnityAppController+ViewHandling.mm
[13:30:38]: ▸ Compiling UnityAppController+UnityInterface.mm
[13:30:38]: ▸ Compiling UnityAppController+Rendering.mm
[13:30:38]: ▸ Compiling UnityAdsUnityWrapper.mm
[13:30:38]: ▸ Compiling SplashScreen.mm
[13:30:38]: ▸ Compiling RenderPluginDelegate.mm
[13:30:38]: ▸ Compiling OrientationSupport.mm
[13:30:38]: ▸ Compiling OnDemandResources.mm
[13:30:38]: ▸ Compiling MetalHelper.mm
[13:30:38]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Classes/Unity/MetalHelper.mm:96:9: 'OSAtomicCompareAndSwap32Barrier' is deprecated: first deprecated in iOS 10.0 - Use std::atomic_compare_exchange_strong() from instead [-Wdeprecated-declarations]
[13:30:38]: ▸ OSAtomicCompareAndSwap32Barrier(surface->bufferChanged, 0, &surface->bufferChanged);
[13:30:38]: ▸ ^
[13:30:38]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Classes/Unity/MetalHelper.mm:100:13: 'OSAtomicCompareAndSwap32Barrier' is deprecated: first deprecated in iOS 10.0 - Use std::atomic_compare_exchange_strong() from instead [-Wdeprecated-declarations]
[13:30:38]: ▸ OSAtomicCompareAndSwap32Barrier(surface->bufferCompleted[i], -1, &surface->bufferCompleted[i]);
[13:30:38]: ▸ ^
[13:30:38]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Classes/Unity/MetalHelper.mm:86:28: implicit conversion loses integer precision: 'MTLPixelFormat' to 'unsigned int' [-Wshorten-64-to-32]
[13:30:38]: ▸ surface->colorFormat = colorFormat;
[13:30:38]: ▸ ^
[13:30:38]: ▸ Compiling LifeCycleListener.mm
[13:30:38]: ▸ Compiling Keyboard.mm
[13:30:38]: ▸ Compiling Il2CppOptions.cpp
[13:30:38]: ▸ Compiling Il2CppMethodPointerTable.cpp
[13:30:38]: ▸ Compiling Il2CppMetadataUsage.cpp
[13:30:38]: ▸ Compiling Il2CppMetadataRegistration.cpp
[13:30:38]: ▸ Compiling Il2CppInvokerTable.cpp
[13:30:57]: ▸ Compiling Il2CppInteropDataTable.cpp
[13:30:57]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Classes/Native/Il2CppInteropDataTable.cpp:1406:26: 'extern' variable has an initializer [-Wextern-initializer]
[13:30:57]: ▸ extern Il2CppInteropData g_Il2CppInteropData[419] =
[13:30:57]: ▸ ~ ^~~~~~~~~~~
[13:30:57]: ▸ Compiling Il2CppGenericMethodTable.cpp
[13:30:57]: ▸ Compiling Il2CppGenericMethodPointerTable.cpp
[13:30:57]: ▸ Compiling Il2CppGenericMethodDefinitions.cpp
[13:30:57]: ▸ Compiling Il2CppGenericInstDefinitions.cpp
[13:30:57]: ▸ Compiling Il2CppGenericComDefinitions0.cpp
[13:30:57]: ▸ Compiling Il2CppGenericClassTable.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_9Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_8Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_7Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_6Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_5Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_57Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_56Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_55Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_54Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_53Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_52Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_51Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_50Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_4Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_49Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_48Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_47Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_46Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_45Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_44Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_43Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_42Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_41Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_40Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_3Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_39Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_38Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_37Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_36Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_35Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_34Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_33Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_32Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_31Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_30Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_2Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_29Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_28Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_27Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_26Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_25Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_24Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_23Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_22Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_21Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_20Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_1Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_19Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_18Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_17Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_16Table.cpp
[13:30:57]: ▸ Compiling Il2CppCompilerCalculateTypeValues_15Table.cpp
[13:30:58]: ▸ Compiling Il2CppCompilerCalculateTypeValues_14Table.cpp
[13:30:58]: ▸ Compiling Il2CppCompilerCalculateTypeValues_13Table.cpp
[13:30:58]: ▸ Compiling Il2CppCompilerCalculateTypeValues_12Table.cpp
[13:30:58]: ▸ Compiling Il2CppCompilerCalculateTypeValues_11Table.cpp
[13:30:59]: ▸ Compiling Il2CppCompilerCalculateTypeValues_10Table.cpp
[13:30:59]: ▸ Compiling Il2CppCompilerCalculateTypeValues_0Table.cpp
[13:30:59]: ▸ Compiling Il2CppCompilerCalculateTypeValuesTable.cpp
[13:30:59]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Classes/Native/Il2CppCompilerCalculateTypeValuesTable.cpp:3853:23: 'extern' variable has an initializer [-Wextern-initializer]
[13:30:59]: ▸ extern const int32_t* g_FieldOffsetTable[5706] =
[13:30:59]: ▸ ^
[13:30:59]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Classes/Native/Il2CppCompilerCalculateTypeValuesTable.cpp:15268:41: 'extern' variable has an initializer [-Wextern-initializer]
[13:30:59]: ▸ extern const Il2CppTypeDefinitionSizes* g_Il2CppTypeDefinitionSizesTable[5706] =
[13:30:59]: ▸ ^
[13:31:00]: ▸ Compiling Il2CppCodeRegistration.cpp
[13:31:00]: ▸ Compiling Il2CppAttributes.cpp
[13:31:21]: ▸ Compiling GlesHelper.mm
[13:31:21]: ▸ Compiling GenericMethods7.cpp
[13:31:21]: ▸ Compiling GenericMethods6.cpp
[13:31:21]: ▸ Compiling GenericMethods5.cpp
[13:31:21]: ▸ Compiling GenericMethods4.cpp
[13:31:21]: ▸ Compiling GenericMethods3.cpp
[13:31:21]: ▸ Compiling GenericMethods2.cpp
[13:31:21]: ▸ Compiling GenericMethods1.cpp
[13:31:21]: ▸ Compiling GenericMethods0.cpp
[13:31:21]: ▸ Compiling FullScreenVideoPlayer.mm
[13:31:21]: ▸ Compiling Filesystem.mm
[13:31:21]: ▸ Compiling EAGLContextHelper.mm
[13:31:21]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Classes/Unity/EAGLContextHelper.mm:21:44: implicit conversion loses integer precision: 'EAGLRenderingAPI' to 'const int' [-Wshorten-64-to-32]
[13:31:21]: ▸ const int targetApi = parent ? parent.API : api;
[13:31:21]: ▸ ^
[13:31:21]: ▸ Compiling DisplayManager.mm
[13:31:21]: ▸ Compiling DeviceSettings.mm
[13:31:21]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Classes/Unity/DeviceSettings.mm:281:1: control may reach end of non-void function [-Wreturn-type]
[13:31:21]: ▸ }
[13:31:21]: ▸ ~~~~~~~~~ ^~~~~~~~~~
[13:31:21]: ▸ Compiling CrashReporter.mm
[13:31:21]: ▸ Compiling Clipper.m
[13:31:21]: ▸ Compiling CameraCapture.mm
[13:31:21]: ▸ Compiling CVTextureCache.mm
[13:31:21]: ▸ Compiling CMVideoSampling.mm
[13:31:21]: ▸ Compiling Bulk_netstandard_0.cpp
[13:31:21]: ▸ Compiling Bulk_mscorlib_9.cpp
[13:31:28]: ▸ Compiling Bulk_mscorlib_8.cpp
[13:31:28]: ▸ Compiling Bulk_mscorlib_7.cpp
[13:31:28]: ▸ Compiling Bulk_mscorlib_6.cpp
[13:31:30]: ▸ Compiling Bulk_mscorlib_5.cpp
[13:31:36]: ▸ Compiling Bulk_mscorlib_4.cpp
[13:31:36]: ▸ Compiling Bulk_mscorlib_3.cpp
[13:31:36]: ▸ Compiling Bulk_mscorlib_20.cpp
[13:31:36]: ▸ Compiling Bulk_mscorlib_2.cpp
[13:31:42]: ▸ Compiling Bulk_mscorlib_19.cpp
[13:31:43]: ▸ Compiling Bulk_mscorlib_18.cpp
[13:31:43]: ▸ Compiling Bulk_mscorlib_17.cpp
[13:31:44]: ▸ Compiling Bulk_mscorlib_16.cpp
[13:31:49]: ▸ Compiling Bulk_mscorlib_15.cpp
[13:31:51]: ▸ Compiling Bulk_mscorlib_14.cpp
[13:31:52]: ▸ Compiling Bulk_mscorlib_13.cpp
[13:31:54]: ▸ Compiling Bulk_mscorlib_12.cpp
[13:31:58]: ▸ Compiling Bulk_mscorlib_11.cpp
[13:32:00]: ▸ Compiling Bulk_mscorlib_10.cpp
[13:32:00]: ▸ Compiling Bulk_mscorlib_1.cpp
[13:32:03]: ▸ Compiling Bulk_mscorlib_0.cpp
[13:32:08]: ▸ Compiling Bulk_UnityEngine_0.cpp
[13:32:08]: ▸ Compiling Bulk_UnityEngine.UnityWebRequestTextureModule_0.cpp
[13:32:08]: ▸ Compiling Bulk_UnityEngine.UnityWebRequestModule_0.cpp
[13:32:08]: ▸ Compiling Bulk_UnityEngine.UnityAnalyticsModule_0.cpp
[13:32:08]: ▸ Compiling Bulk_UnityEngine.UI_3.cpp
[13:32:08]: ▸ Compiling Bulk_UnityEngine.UI_2.cpp
[13:32:11]: ▸ Compiling Bulk_UnityEngine.UI_1.cpp
[13:32:11]: ▸ Compiling Bulk_UnityEngine.UI_0.cpp
[13:32:12]: ▸ Compiling Bulk_UnityEngine.UIModule_0.cpp
[13:32:12]: ▸ Compiling Bulk_UnityEngine.TextRenderingModule_0.cpp
[13:32:12]: ▸ Compiling Bulk_UnityEngine.SharedInternalsModule_0.cpp
[13:32:12]: ▸ Compiling Bulk_UnityEngine.PhysicsModule_0.cpp
[13:32:12]: ▸ Compiling Bulk_UnityEngine.Physics2DModule_0.cpp
[13:32:12]: ▸ Compiling Bulk_UnityEngine.ParticleSystemModule_0.cpp
[13:32:13]: ▸ Compiling Bulk_UnityEngine.JSONSerializeModule_0.cpp
[13:32:13]: ▸ Compiling Bulk_UnityEngine.ImageConversionModule_0.cpp
[13:32:13]: ▸ Compiling Bulk_UnityEngine.IMGUIModule_0.cpp
[13:32:17]: ▸ Compiling Bulk_UnityEngine.GameCenterModule_0.cpp
[13:32:17]: ▸ Compiling Bulk_UnityEngine.CoreModule_2.cpp
[13:32:17]: ▸ Compiling Bulk_UnityEngine.CoreModule_1.cpp
[13:32:21]: ▸ Compiling Bulk_UnityEngine.CoreModule_0.cpp
[13:32:23]: ▸ Compiling Bulk_UnityEngine.AudioModule_0.cpp
[13:32:23]: ▸ Compiling Bulk_UnityEngine.AnimationModule_0.cpp
[13:32:23]: ▸ Compiling Bulk_Unity.TextMeshPro_3.cpp
[13:32:28]: ▸ Compiling Bulk_Unity.TextMeshPro_2.cpp
[13:32:32]: ▸ Compiling Bulk_Unity.TextMeshPro_1.cpp
[13:32:34]: ▸ Compiling Bulk_Unity.TextMeshPro_0.cpp
[13:32:34]: ▸ Compiling Bulk_System_9.cpp
[13:32:34]: ▸ Compiling Bulk_System_8.cpp
[13:32:37]: ▸ Compiling Bulk_System_7.cpp
[13:32:40]: ▸ Compiling Bulk_System_6.cpp
[13:32:40]: ▸ Compiling Bulk_System_5.cpp
[13:32:44]: ▸ Compiling Bulk_System_4.cpp
[13:32:45]: ▸ Compiling Bulk_System_3.cpp
[13:32:49]: ▸ Compiling Bulk_System_2.cpp
[13:32:49]: ▸ Compiling Bulk_System_1.cpp
[13:32:52]: ▸ Compiling Bulk_System_0.cpp
[13:32:53]: ▸ Compiling Bulk_System.Xml_9.cpp
[13:32:59]: ▸ Compiling Bulk_System.Xml_8.cpp
[13:32:59]: ▸ Compiling Bulk_System.Xml_7.cpp
[13:33:03]: ▸ Compiling Bulk_System.Xml_6.cpp
[13:33:03]: ▸ Compiling Bulk_System.Xml_5.cpp
[13:33:08]: ▸ Compiling Bulk_System.Xml_4.cpp
[13:33:09]: ▸ Compiling Bulk_System.Xml_3.cpp
[13:33:16]: ▸ Compiling Bulk_System.Xml_2.cpp
[13:33:16]: ▸ Compiling Bulk_System.Xml_14.cpp
[13:33:16]: ▸ Compiling Bulk_System.Xml_13.cpp
[13:33:18]: ▸ Compiling Bulk_System.Xml_12.cpp
[13:33:24]: ▸ Compiling Bulk_System.Xml_11.cpp
[13:33:24]: ▸ Compiling Bulk_System.Xml_10.cpp
[13:33:25]: ▸ Compiling Bulk_System.Xml_1.cpp
[13:33:29]: ▸ Compiling Bulk_System.Xml_0.cpp
[13:33:29]: ▸ Compiling Bulk_System.Xml.Linq_0.cpp
[13:33:29]: ▸ Compiling Bulk_System.Runtime.Serialization_0.cpp
[13:33:29]: ▸ Compiling Bulk_System.Numerics_0.cpp
[13:33:30]: ▸ Compiling Bulk_System.Net.Http_0.cpp
[13:33:35]: ▸ Compiling Bulk_System.IO.Compression_0.cpp
[13:33:35]: ▸ Compiling Bulk_System.Globalization.Extensions_0.cpp
[13:33:35]: ▸ Compiling Bulk_System.Diagnostics.StackTrace_0.cpp
[13:33:35]: ▸ Compiling Bulk_System.Data_7.cpp
[13:33:37]: ▸ Compiling Bulk_System.Data_6.cpp
[13:33:42]: ▸ Compiling Bulk_System.Data_5.cpp
[13:33:42]: ▸ Compiling Bulk_System.Data_4.cpp
[13:33:44]: ▸ Compiling Bulk_System.Data_3.cpp
[13:33:49]: ▸ Compiling Bulk_System.Data_2.cpp
[13:33:49]: ▸ Compiling Bulk_System.Data_1.cpp
[13:33:52]: ▸ Compiling Bulk_System.Data_0.cpp
[13:33:55]: ▸ Compiling Bulk_System.Core_0.cpp
[13:33:55]: ▸ Compiling Bulk_System.Configuration_0.cpp
[13:33:55]: ▸ Compiling Bulk_Newtonsoft.Json_3.cpp
[13:33:59]: ▸ Compiling Bulk_Newtonsoft.Json_2.cpp
[13:34:00]: ▸ Compiling Bulk_Newtonsoft.Json_1.cpp
[13:34:02]: ▸ Compiling Bulk_Newtonsoft.Json_0.cpp
[13:34:05]: ▸ Compiling Bulk_Mono.Security_1.cpp
[13:34:05]: ▸ Compiling Bulk_Mono.Security_0.cpp
[13:34:09]: ▸ Compiling Bulk_Generics_9.cpp
[13:34:10]: ▸ Compiling Bulk_Generics_8.cpp
[13:34:10]: ▸ Compiling Bulk_Generics_7.cpp
[13:34:13]: ▸ Compiling Bulk_Generics_6.cpp
[13:34:18]: ▸ Compiling Bulk_Generics_5.cpp
[13:34:18]: ▸ Compiling Bulk_Generics_4.cpp
[13:34:19]: ▸ Compiling Bulk_Generics_3.cpp
[13:34:20]: ▸ Compiling Bulk_Generics_26.cpp
[13:34:25]: ▸ Compiling Bulk_Generics_25.cpp
[13:34:26]: ▸ Compiling Bulk_Generics_24.cpp
[13:34:29]: ▸ Compiling Bulk_Generics_23.cpp
[13:34:29]: ▸ Compiling Bulk_Generics_22.cpp
[13:34:35]: ▸ Compiling Bulk_Generics_21.cpp
[13:34:36]: ▸ Compiling Bulk_Generics_20.cpp
[13:34:38]: ▸ Compiling Bulk_Generics_2.cpp
[13:34:38]: ▸ Compiling Bulk_Generics_19.cpp
[13:34:44]: ▸ Compiling Bulk_Generics_18.cpp
[13:34:44]: ▸ Compiling Bulk_Generics_17.cpp
[13:34:45]: ▸ Compiling Bulk_Generics_16.cpp
[13:34:46]: ▸ Compiling Bulk_Generics_15.cpp
[13:34:52]: ▸ Compiling Bulk_Generics_14.cpp
[13:34:52]: ▸ Compiling Bulk_Generics_13.cpp
[13:34:53]: ▸ Compiling Bulk_Generics_12.cpp
[13:34:57]: ▸ Compiling Bulk_Generics_11.cpp
[13:35:01]: ▸ Compiling Bulk_Generics_10.cpp
[13:35:01]: ▸ Compiling Bulk_Generics_1.cpp
[13:35:01]: ▸ Compiling Bulk_Generics_0.cpp
[13:35:07]: ▸ Compiling Bulk_GLTFSerialization_1.cpp
[13:35:07]: ▸ Compiling Bulk_GLTFSerialization_0.cpp
[13:35:09]: ▸ Compiling Bulk_DOTween_0.cpp
[13:35:09]: ▸ Compiling Bulk_Assembly-CSharp_9.cpp
[13:35:09]: ▸ Compiling Bulk_Assembly-CSharp_8.cpp
[13:35:13]: ▸ Compiling Bulk_Assembly-CSharp_7.cpp
[13:35:16]: ▸ Compiling Bulk_Assembly-CSharp_6.cpp
[13:35:17]: ▸ Compiling Bulk_Assembly-CSharp_5.cpp
[13:35:17]: ▸ Compiling Bulk_Assembly-CSharp_4.cpp
[13:35:22]: ▸ Compiling Bulk_Assembly-CSharp_3.cpp
[13:35:26]: ▸ Compiling Bulk_Assembly-CSharp_2.cpp
[13:35:26]: ▸ Compiling Bulk_Assembly-CSharp_1.cpp
[13:35:26]: ▸ Compiling Bulk_Assembly-CSharp_0.cpp
[13:35:30]: ▸ Compiling AppDelegateListener.mm
[13:35:30]: ▸ Compiling ActivityIndicator.mm
[13:35:30]: ▸ Compiling AVCapture.mm
[13:35:30]: ▸ Compiling ARWorldMap.mm
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h:292:10: 'ARImageAnchor' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ if ([ARImageAnchor class])
[13:35:30]: ▸ ^
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h:306:37: 'ARWorldMap' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ featuresSupported &= (bool)[ARWorldMap class];
[13:35:30]: ▸ ^~~~~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h:308:37: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ featuresSupported &= (bool)[ARReferenceObject class];
[13:35:30]: ▸ ^~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h:315:10: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ if ([ARReferenceObject class])
[13:35:30]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h:406:16: 'ARPlaneDetectionVertical' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ ret |= ARPlaneDetectionVertical;
[13:35:30]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.mm:21:5: 'ARWorldMap' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ ARWorldMap* worldMap = (__bridge ARWorldMap*)worldMapPtr;
[13:35:30]: ▸ ^~~~~~~~~~~~~~~~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.mm:21:38: 'ARWorldMap' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ ARWorldMap* worldMap = (__bridge ARWorldMap*)worldMapPtr;
[13:35:30]: ▸ ^~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.mm:45:5: 'ARWorldMap' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ ARWorldMap* worldMap = [NSKeyedUnarchiver unarchiveObjectWithData:wmdata];
[13:35:30]: ▸ ^~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.mm:52:5: 'ARWorldMap' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ ARWorldMap* worldMap = (__bridge ARWorldMap*)worldMapPtr;
[13:35:30]: ▸ ^~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.mm:52:38: 'ARWorldMap' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ ARWorldMap* worldMap = (__bridge ARWorldMap*)worldMapPtr;
[13:35:30]: ▸ ^~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.mm:59:5: 'ARWorldMap' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ ARWorldMap* worldMap = (__bridge ARWorldMap*)worldMapPtr;
[13:35:30]: ▸ ^~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.mm:59:38: 'ARWorldMap' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ ARWorldMap* worldMap = (__bridge ARWorldMap*)worldMapPtr;
[13:35:30]: ▸ ^~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.mm:69:5: 'ARWorldMap' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ ARWorldMap* worldMap = [NSKeyedUnarchiver unarchiveObjectWithData:wmdata];
[13:35:30]: ▸ ^~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.mm:79:5: 'ARWorldMap' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ ARWorldMap* worldMap = (__bridge ARWorldMap*)worldMapPtr;
[13:35:30]: ▸ ^~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.mm:79:38: 'ARWorldMap' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ ARWorldMap* worldMap = (__bridge ARWorldMap*)worldMapPtr;
[13:35:30]: ▸ ^~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.mm:93:5: 'ARWorldMap' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ ARWorldMap* worldMap = (__bridge ARWorldMap*)worldMapPtr;
[13:35:30]: ▸ ^~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.mm:93:38: 'ARWorldMap' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ ARWorldMap* worldMap = (__bridge ARWorldMap*)worldMapPtr;
[13:35:30]: ▸ ^~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.mm:107:5: 'ARWorldMap' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ ARWorldMap* worldMap = (__bridge ARWorldMap*)worldMapPtr;
[13:35:30]: ▸ ^~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.mm:107:38: 'ARWorldMap' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ ARWorldMap* worldMap = (__bridge ARWorldMap*)worldMapPtr;
[13:35:30]: ▸ ^~~~~~~~~~
[13:35:30]: ▸ Compiling ARSessionNative.mm
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h:292:10: 'ARImageAnchor' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ if ([ARImageAnchor class])
[13:35:30]: ▸ ^~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h:306:37: 'ARWorldMap' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ featuresSupported &= (bool)[ARWorldMap class];
[13:35:30]: ▸ ^~~~~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h:308:37: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ featuresSupported &= (bool)[ARReferenceObject class];
[13:35:30]: ▸ ^~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h:315:10: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ if ([ARReferenceObject class])
[13:35:30]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h:406:16: 'ARPlaneDetectionVertical' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ ret |= ARPlaneDetectionVertical;
[13:35:30]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:62:94: 'ARWorldMappingStatus' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ static inline UnityARWorldMappingStatus GetUnityARWorldMappingStatusFromARWorldMappingStatus(ARWorldMappingStatus worldMappingStatus)
[13:35:30]: ▸ ^~~~~~~~~~~~~~~~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:80:15: 'AREnvironmentTexturing' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ static inline AREnvironmentTexturing GetAREnvironmentTexturingFromUnityAREnvironmentTexturing(UnityAREnvironmentTexturing& unityEnvTexturing)
[13:35:30]: ▸ ^
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:102:21: 'setMaximumNumberOfTrackedImages:' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ appleConfig.maximumNumberOfTrackedImages = unityConfig.maximumNumberOfTrackedImages;
[13:35:30]: ▸ ^
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:106:21: 'setAutoFocusEnabled:' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ appleConfig.autoFocusEnabled = (BOOL) unityConfig.enableAutoFocus;
[13:35:30]: ▸ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:109:49: 'ARVideoFormat' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ appleConfig.videoFormat = (__bridge ARVideoFormat*) unityConfig.ptrVideoFormat;
[13:35:30]: ▸ ^~~~~~~~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:109:25: 'setVideoFormat:' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ appleConfig.videoFormat = (__bridge ARVideoFormat*) unityConfig.ptrVideoFormat;
[13:35:30]: ▸ ^~~~~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:115:49: 'ARWorldMap' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ appleConfig.initialWorldMap = (__bridge ARWorldMap*)unityConfig.ptrWorldMap;
[13:35:30]: ▸ ^~~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:115:21: 'setInitialWorldMap:' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ appleConfig.initialWorldMap = (__bridge ARWorldMap*)unityConfig.ptrWorldMap;
[13:35:30]: ▸ ^~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:116:21: 'setEnvironmentTexturing:' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ appleConfig.environmentTexturing = GetAREnvironmentTexturingFromUnityAREnvironmentTexturing(unityConfig.environmentTexturing);
[13:35:30]: ▸ ^~~~~~~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:146:90: 'ARPlaneGeometry' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ inline void UnityARPlaneGeometryFromARPlaneGeometry(UnityARPlaneGeometry& planeGeometry, ARPlaneGeometry arPlaneGeometry)
[13:35:30]: ▸ ^~~~~~~~~~~~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:173:88: 'geometry' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ UnityARPlaneGeometryFromARPlaneGeometry(anchorData.planeGeometry, nativeAnchor.geometry);
[13:35:30]: ▸ ^
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:238:92: 'ARImageAnchor' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ inline void UnityARImageAnchorDataFromARImageAnchorPtr(UnityARImageAnchorData& anchorData, ARImageAnchor nativeAnchor)
[13:35:30]: ▸ ^~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:400:55: 'ARImageAnchor' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ UnityARImageAnchorDataFromARImageAnchorPtr(data, (ARImageAnchor*)anchor);
[13:35:30]: ▸ ^
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:407:55: 'ARImageAnchor' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ UnityARImageAnchorDataFromARImageAnchorPtr(data, (ARImageAnchor*)anchor);
[13:35:30]: ▸ ^~~~~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:414:55: 'ARImageAnchor' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ UnityARImageAnchorDataFromARImageAnchorPtr(data, (ARImageAnchor*)anchor);
[13:35:30]: ▸ ^~~~~~~~~~~~~
[13:35:30]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:500:103: 'worldMappingStatus' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:30]: ▸ unityARCamera.worldMappingStatus = GetUnityARWorldMappingStatusFromARWorldMappingStatus(frame.worldMappingStatus);
[13:35:30]: ▸ ^~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:792:84: 'ARImageAnchor' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ [nativeSession->_classToCallbackMap setObject:imageAnchorCallbacks forKey:[ARImageAnchor class]];
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:842:36: incompatible pointer types assigning to 'NSMutableSet<ARReferenceObject > ' from 'NSSet<ARReferenceObject > ' [-Wincompatible-pointer-types]
[13:35:31]: ▸ referenceObjects = dynamicReferenceObjects;
[13:35:31]: ▸ ^~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:820:15: 'ARReferenceImage' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ NSSet<ARReferenceImage > referenceImages = [ARReferenceImage referenceImagesInGroupNamed:strResourceGroup bundle:nil];
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:820:55: 'ARReferenceImage' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ NSSet<ARReferenceImage > referenceImages = [ARReferenceImage referenceImagesInGroupNamed:strResourceGroup bundle:nil];
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:821:16: 'setDetectionImages:' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ config.detectionImages = referenceImages;
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:826:22: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ NSMutableSet<ARReferenceObject > referenceObjects = nullptr;
[13:35:31]: ▸ ^~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:830:58: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ [referenceObjects setByAddingObjectsFromSet:[ARReferenceObject referenceObjectsInGroupNamed:strResourceGroup bundle:nil]];
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:835:19: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ NSSet<ARReferenceObject > dynamicReferenceObjects = (__bridge NSSet<ARReferenceObject > )unityConfig.ptrDynamicReferenceObjects;
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:835:83: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ NSSet<ARReferenceObject > dynamicReferenceObjects = (__bridge NSSet<ARReferenceObject > )unityConfig.ptrDynamicReferenceObjects;
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:846:16: 'setDetectionObjects:' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ config.detectionObjects = referenceObjects;
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:958:28: 'setWorldOrigin:' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ [session->_session setWorldOrigin:arWorldMatrix];
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:1093:13: 'ARVideoFormat' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ for(ARVideoFormat arVideoFormat in ARWorldTrackingConfiguration.supportedVideoFormats)
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:1093:74: 'supportedVideoFormats' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ for(ARVideoFormat arVideoFormat in ARWorldTrackingConfiguration.supportedVideoFormats)
[13:35:31]: ▸ ^~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:1099:43: implicit conversion loses integer precision: 'NSInteger' (aka 'long') to 'int' [-Wshorten-64-to-32]
[13:35:31]: ▸ videoFormat.framesPerSecond = arVideoFormat.framesPerSecond;
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:1122:1: control reaches end of non-void function [-Wreturn-type]
[13:35:31]: ▸ }
[13:35:31]: ▸ ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:1155:30: 'getCurrentWorldMapWithCompletionHandler:' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ [nativeSession->_session getCurrentWorldMapWithCompletionHandler:^(ARWorldMap worldMap, NSError error)
[13:35:31]: ▸ ^
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:1155:72: 'ARWorldMap' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ [nativeSession->_session getCurrentWorldMapWithCompletionHandler:^(ARWorldMap worldMap, NSError error)
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:1184:30: 'createReferenceObjectWithTransform:center:extent:completionHandler:' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ [nativeSession->_session createReferenceObjectWithTransform:transform center:center extent:extent completionHandler:^(ARReferenceObject * referenceObject, NSError * error)
[13:35:31]: ▸ ^~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:1184:123: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ [nativeSession->_session createReferenceObjectWithTransform:transform center:center extent:extent completionHandler:^(ARReferenceObject * referenceObject, NSError * error)
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm:1195:10: 'AREnvironmentProbeAnchor' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ if ([AREnvironmentProbeAnchor class])
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ Compiling ARPointCloud.mm
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h:292:10: 'ARImageAnchor' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ if ([ARImageAnchor class])
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h:306:37: 'ARWorldMap' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ featuresSupported &= (bool)[ARWorldMap class];
[13:35:31]: ▸ ^~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h:308:37: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ featuresSupported &= (bool)[ARReferenceObject class];
[13:35:31]: ▸ ^~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h:315:10: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ if ([ARReferenceObject class])
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h:406:16: 'ARPlaneDetectionVertical' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ ret |= ARPlaneDetectionVertical;
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARPointCloud.mm:18:12: implicit conversion loses integer precision: 'NSUInteger' (aka 'unsigned long') to 'int' [-Wshorten-64-to-32]
[13:35:31]: ▸ return [pointCloud count];
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~~~~~~~~
[13:35:31]: ▸ Compiling ARKitNativeObjectDetection.mm
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h:308:37: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ ^~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h:315:10: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ if ([ARReferenceObject class])
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h:406:16: 'ARPlaneDetectionVertical' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ ret |= ARPlaneDetectionVertical;
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ 'ARObjectAnchor' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:39:136: 'ARObjectScanningConfiguration' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ inline void GetARSessionConfigurationFromARKitObjectScanningSessionConfiguration(ARKitObjectScanningSessionConfiguration& unityConfig, ARObjectScanningConfiguration appleConfig)
[13:35:31]: ▸ ^
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:68:57: 'ARObjectAnchor' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ UnityARObjectAnchorDataFromARObjectAnchorPtr(data, (ARObjectAnchor)anchor);
[13:35:31]: ▸ ^
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:99:85: 'ARObjectAnchor' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ [nativeSession->_classToCallbackMap setObject:objectAnchorCallbacks forKey:[ARObjectAnchor class]];
[13:35:31]: ▸ ^~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:109:12: 'ARObjectScanningConfiguration' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ return ARObjectScanningConfiguration.isSupported;
[13:35:31]: ▸ ^~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:115:5: 'ARObjectScanningConfiguration' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ ARObjectScanningConfiguration config = [ARObjectScanningConfiguration new];
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:142:5: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ ARReferenceObject referenceObject = (__bridge ARReferenceObject)ptr;
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:142:52: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ ARReferenceObject referenceObject = (__bridge ARReferenceObject)ptr;
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:158:5: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ ARReferenceObject referenceObject = (__bridge ARReferenceObject)referenceObjectPtr;
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:158:52:
[13:35:31]: ▸ 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:182:5: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ ARReferenceObject referenceObject = [NSKeyedUnarchiver unarchiveObjectWithData:rodata];
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:195:5:
[13:35:31]: ▸ 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:222:5: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ ARReferenceObject referenceObject = [NSKeyedUnarchiver unarchiveObjectWithData:rodata];
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:232:5: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ ARReferenceObject referenceObject = (__bridge ARReferenceObject*)ptr;
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:246:5:
[13:35:31]: ▸ 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:246:52: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ ARReferenceObject* referenceObject = (__bridge ARReferenceObject*)ptr;
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:260:5: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:260:52:
[13:35:31]: ▸ 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:269:5: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ ARReferenceObject* referenceObject = (__bridge ARReferenceObject*)ptr;
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:269:52: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ ARReferenceObject* referenceObject = (__bridge ARReferenceObject*)ptr;
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:294:18: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ NSMutableSet<ARReferenceObject*> referenceObjectsSet = [[NSMutableSet<ARReferenceObject> alloc] init];
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:294:76: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ NSMutableSet<ARReferenceObject*> referenceObjectsSet = [[NSMutableSet<ARReferenceObject> alloc] init];
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:300:18: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ NSMutableSet<ARReferenceObject*> referenceObjectsSet = (__bridge NSMutableSet<ARReferenceObject> )roSet;
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:300:84:
[13:35:31]: ▸ 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:301:5:
[13:35:31]: ▸ 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm:301:46:
[13:35:31]: ▸ 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ Compiling AREnvironmentProbe.mm
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h:292:10: 'ARImageAnchor' is only available on iOS 11.3 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ if ([ARImageAnchor class])
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h:308:37:
[13:35:31]: ▸ 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ ^~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h:315:10: 'ARReferenceObject' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ if ([ARReferenceObject class])
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~
[13:35:31]: ▸ ⚠️ /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle/Libraries/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/AREnvironmentProbe.mm:113:77: 'AREnvironmentProbeAnchor' is only available on iOS 12.0 or newer [-Wunguarded-availability-new]
[13:35:31]: ▸ UnityAREnvironmentProbeAnchorDataFromAREnvironmentProbeAnchorPtr(data, (AREnvironmentProbeAnchor)anchor);
[13:35:31]: ▸ ^~~~~~~~~~~~~~~~~~~~~~~~
[13:35:31]: ▸ Linking wrld
[13:35:37]: ▸ Generating 'wrld.app.dSYM'
[13:35:54]: ▸ Running script 'Run Script'
[13:35:56]: ▸ Touching wrld.app (in target 'Unity-iPhone' from project 'Unity-iPhone')
[13:35:57]: ▸ Archive Succeeded
[13:35:57]: Generated plist file with the following values:
[13:35:57]: ▸ -----------------------------------------
[13:35:57]: ▸ {
[13:35:57]: ▸ "signingStyle": "manual",
[13:35:57]: ▸ "teamID": "RXXXXXXXXA",
[13:35:57]: ▸ "provisioningProfiles": {
[13:35:57]: ▸ "com.XXXXXX.wlrd": "Luca Mefisto"
[13:35:57]: ▸ },
[13:35:57]: ▸ "method": "app-store"
[13:35:57]: ▸ }
[13:35:57]: ▸ -----------------------------------------
[13:35:57]: $ /usr/bin/xcrun /Library/Ruby/Gems/2.3.0/gems/fastlane-2.137.0/gym/lib/assets/wrap_xcodebuild/xcbuild-safe.sh -exportArchive -exportOptionsPlist '/var/folders/43/934fh5xn7ybbq17dhjvc7qk000008b/T/gym_config20191218-74350-10oeug0.plist' -archivePath /Users/Shared/Jenkins/Library/Developer/Xcode/Archives/2019-12-18/wrld\ 2019-12-18\ 13.30.19.xcarchive -exportPath '/var/folders/43/934fh5xn7ybbq17dhjvc7qk000008b/T/gym_output20191218-74350-1tikyo9'
xcodebuild -exportArchive -exportOptionsPlist /var/folders/43/934fh5xn7ybbq17dhjvc7qk000008b/T/gym_config20191218-74350-10oeug0.plist -archivePath '/Users/Shared/Jenkins/Library/Developer/Xcode/Archives/2019-12-18/wrld 2019-12-18 13.30.19.xcarchive' -exportPath /var/folders/43/934fh5xn7ybbq17dhjvc7qk000008b/T/gym_output20191218-74350-1tikyo9
2019-12-18 13:35:58.007 xcodebuild[75486:347077] [MT] IDEDistribution: -[IDEDistributionLogging _createLoggingBundleAtPath:]: Created bundle at path '/var/folders/43/934fh5xn7ybbq17dhjvc7qk000008b/T/Unity-iPhone_2019-12-18_13-35-58.006.xcdistributionlogs'.
error: exportArchive: "wrld.app" requires a provisioning profile.
Error Domain=IDEProvisioningErrorDomain Code=9 ""wrld.app" requires a provisioning profile." UserInfo={IDEDistributionIssueSeverity=3, NSLocalizedDescription="wrld.app" requires a provisioning profile., NSLocalizedRecoverySuggestion=Add a profile to the "provisioningProfiles" dictionary in your Export Options property list.}
** EXPORT FAILED **
[13:35:58]: Exit status: 70
[13:35:58]: No provisioning profile provided
[13:35:58]: Make sure to pass a valid provisioning for each required target
[13:35:58]: Check out the docs on how to fix this: https://docs.fastlane.tools/actions/gym/#export-options
+---------------+-------------------------+
| Build environment |
+---------------+-------------------------+
| xcode_path | /Applications/Xcode.app |
| gym_version | 2.137.0 |
| export_method | app-store |
| sdk | iPhoneOS13.0.sdk |
+---------------+-------------------------+
[13:35:58]: ▸ Touch /Users/Shared/Jenkins/Library/Developer/Xcode/DerivedData/Unity-iPhone-brfpbvtvkeekdsffhbfwvorceqej/Build/Intermediates.noindex/ArchiveIntermediates/Unity-iPhone/InstallationBuildProductsLocation/Applications/wrld.app (in target 'Unity-iPhone' from project 'Unity-iPhone')
[13:35:58]: ▸ cd /Users/Shared/Jenkins/Home/workspace/SpatialFirst_Testflight/iOS/joeboyle
[13:35:58]: ▸ /usr/bin/touch -c /Users/Shared/Jenkins/Library/Developer/Xcode/DerivedData/Unity-iPhone-brfpbvtvkeekdsffhbfwvorceqej/Build/Intermediates.noindex/ArchiveIntermediates/Unity-iPhone/InstallationBuildProductsLocation/Applications/wrld.app
[13:35:58]: ▸ ** ARCHIVE SUCCEEDED **
[13:35:58]:
[13:35:58]: ⬆️ Check out the few lines of raw xcodebuild output above for potential hints on how to solve this error
[13:35:58]: 📋 For the complete and more detailed error log, check the full log at:
[13:35:58]: 📋 /Users/Shared/Jenkins/Library/Logs/gym/wrld-Unity-iPhone.log
[13:35:58]:
[13:35:58]: Looks like fastlane ran into a build/archive error with your project
[13:35:58]: It's hard to tell what's causing the error, so we wrote some guides on how
[13:35:58]: to troubleshoot build and signing issues: https://docs.fastlane.tools/codesigning/getting-started/
[13:35:58]: Before submitting an issue on GitHub, please follow the guide above and make
[13:35:58]: sure your project is set up correctly.
[13:35:58]: fastlane uses xcodebuild commands to generate your binary, you can see the
[13:35:58]: the full commands printed out in yellow in the above log.
[13:35:58]: Make sure to inspect the output above, as usually you'll find more error information there
[13:35:58]:
+------------------+----------+
| Lane Context |
+------------------+----------+
| DEFAULT_PLATFORM | ios |
| PLATFORM_NAME | ios |
| LANE_NAME | ios beta |
+------------------+----------+
[13:35:58]: Error packaging up the application
+------+------------------+-------------+
| fastlane summary |
+------+------------------+-------------+
| Step | Action | Time (in s) |
+------+------------------+-------------+
| 1 | default_platform | 0 |
| 💥 | gym | 344 |
+------+------------------+-------------+
[13:35:58]: fastlane finished with errors
[!] Error packaging up the application
Environment
✅ fastlane environment ✅
Stack
Key
Value
OS
10.14.6
Ruby
2.3.7
Bundler?
false
Git
git version 2.21.0 (Apple Git-122)
Installation Source
/usr/local/bin/fastlane
Host
Mac OS X 10.14.6 (18G2022)
Ruby Lib Dir
/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib
OpenSSL Version
LibreSSL 2.6.5
Is contained
false
Is homebrew
false
Is installed via Fabric.app
false
Xcode Path
/Applications/Xcode.app/Contents/Developer/
Xcode Version
11.0
System Locale
Variable
Value
LANG
en_GB.UTF-8
✅
LC_ALL
LANGUAGE
fastlane files:
`./fastlane/Fastfile`
# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
# https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
# https://docs.fastlane.tools/plugins/available-plugins
#
# Uncomment the line if you want fastlane to automatically update itself
# update_fastlane
default_platform(:ios)
platform :ios do
desc "Push a new beta build to TestFlight"
lane :beta do
gym(
scheme: 'Unity-iPhone',
export_method: 'app-store',
export_options: {
signingStyle:"manual",
teamID:"RXXXXXXXXXA",
provisioningProfiles: {
"com.XXXXXXXXX.wlrd"=>"Luca Mefisto"
}
})
upload_to_testflight(skip_waiting_for_build_processing: false)
end
end
`./fastlane/Appfile`
app_identifier("com.XXXXXXXX.wrld") # The bundle identifier of your app
apple_id("luca.m.conesa@gmail.com") # Your Apple email address
itc_team_id("1XXXXXXX6") # App Store Connect Team ID
team_id("RXXXXXXXXA") # Developer Portal Team ID
# For more information about the Appfile, see:
# https://docs.fastlane.tools/advanced/#appfile
fastlane gems
Gem
Version
Update-Status
fastlane
2.137.0
✅ Up-To-Date
Loaded fastlane plugins:
No plugins Loaded
Loaded gems
Gem
Version
did_you_mean
1.0.0
slack-notifier
2.3.2
rouge
2.0.7
xcpretty
0.3.0
terminal-notifier
2.0.0
terminal-table
1.8.0
plist
3.5.0
public_suffix
2.0.5
addressable
2.6.0
multipart-post
2.0.0
word_wrap
1.0.0
babosa
1.0.2
colored
1.2
highline
1.7.10
commander-fastlane
4.4.6
http-cookie
1.0.3
faraday-cookie_jar
0.0.6
faraday
0.17.1
faraday_middleware
0.13.1
fastimage
2.1.5
mini_magick
4.9.5
multi_xml
0.6.0
rubyzip
1.3.0
security
0.1.3
xcpretty-travis-formatter
1.0.0
bundler
2.0.1
naturally
2.2.0
simctl
1.6.5
jwt
2.1.0
uber
0.1.0
declarative
0.0.10
declarative-option
0.1.0
representable
3.0.4
retriable
3.1.2
mime-types
3.2.2
multi_json
1.13.1
signet
0.11.0
memoist
0.16.0
googleauth
0.6.7
httpclient
2.8.3
google-api-client
0.23.9
google-cloud-core
1.3.0
digest-crc
0.4.1
google-cloud-storage
1.16.0
emoji_regex
1.0.1
tty-cursor
0.7.0
tty-spinner
0.9.1
tty-screen
0.7.0
json
2.2.0
io-console
0.4.5
excon
0.65.0
CFPropertyList
3.0.0
libxml-ruby
2.9.0
atomos
0.1.3
claide
1.0.2
colored2
3.1.2
nanaimo
0.2.6
xcodeproj
1.11.0
unf
0.1.4
domain_name
0.5.20190701
unicode-display_width
1.6.0
os
1.0.1
psych
2.1.0.1
mime-types-data
3.2019.0331
generated on: 2019-12-18
I somehow "narrowed" down the problem and worked around it (but still would love to understand why it happens).
Instead of passing a export_options dictionary. I am passing an entire .plist like the ones above. After fiddling with it I discovered that the problem is the entry:
<key>com.XXXXXXXX.wrld</key>
Simply deleting it and writting it again manually allows the plist to work.
Maybe a weird character? It uses all normal characters really so not sure what is going on (but has 3 dots, com.something.somethingelse.wrld.
| gharchive/issue | 2019-12-18T12:51:56 | 2025-04-01T06:38:39.639031 | {
"authors": [
"MephestoKhaan"
],
"repo": "fastlane/fastlane",
"url": "https://github.com/fastlane/fastlane/issues/15813",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
212406041 | undefined local variable or method `cert' for #Sigh::Runner:...
New Issue Checklist
[yes] Updated fastlane to the latest version
[no] I have read the Contribution Guidelines
Issue Description
Complete output when running fastlane, including the stack trace and command used
You can use: --capture_output as the last commandline argument to get that collected for you
$ fastlane sigh --development
+-------------------------------------+-------------------------------------+
| Summary for sigh 2.19.2 |
+-------------------------------------+-------------------------------------+
| development | true |
| adhoc | false |
| skip_install | false |
| force | false |
| app_identifier | com.infobip.mobilemessaging.example |
| team_id | T6U248P7YM |
| ignore_profiles_with_different_name | false |
| skip_fetch_profiles | false |
| skip_certificate_verification | false |
| platform | ios |
+-------------------------------------+-------------------------------------+
[11:51:44]: To not be asked about this value, you can specify it using 'username'
Your Apple ID Username: kadochnikov.andr@gmail.com
[11:51:51]: Starting login with user 'kadochnikov.andr@gmail.com'
[11:51:54]: Successfully logged in
[11:51:54]: Fetching profiles...
[11:51:55]: Verifying certificates...
Looking for related GitHub issues on fastlane/fastlane...
➡️ undefined local variable or method `cert' for #<Sigh::Runner:...>
https://github.com/fastlane/fastlane/issues/8456 [open] 0 💬
17 minutes ago
➡️ undefined method `[]=' for nil:NilClass for sigh manage
https://github.com/fastlane/fastlane/issues/6751 [closed] 15 💬
4 weeks ago
➡️ Undefined method `fetch` for nil:NilClass (NoMethodError) again?
https://github.com/fastlane/fastlane/issues/7307 [closed] 4 💬
3 weeks ago
and 34 more at: https://github.com/fastlane/fastlane/search?q=undefined%20%60cert'%20for%20Sigh::Runner&type=Issues&utf8=✓
🔗 You can ⌘ + double-click on links to open them directly in your browser.
/usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.19.2/sigh/lib/sigh/runner.rb:126:in `block (2 levels) in fetch_profiles': [!] undefined local variable or method `cert' for #<Sigh::Runner:0x007f8caaa520b0> (NameError)
from /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.19.2/sigh/lib/sigh/runner.rb:119:in `each'
from /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.19.2/sigh/lib/sigh/runner.rb:119:in `block in fetch_profiles'
from /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.19.2/sigh/lib/sigh/runner.rb:101:in `each'
from /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.19.2/sigh/lib/sigh/runner.rb:101:in `find_all'
from /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.19.2/sigh/lib/sigh/runner.rb:101:in `fetch_profiles'
from /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.19.2/sigh/lib/sigh/runner.rb:20:in `run'
from /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.19.2/sigh/lib/sigh/manager.rb:7:in `start'
from /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.19.2/sigh/lib/sigh/commands_generator.rb:55:in `block (2 levels) in run'
from /usr/local/lib/ruby/gems/2.3.0/gems/commander-4.4.3/lib/commander/command.rb:178:in `call'
from /usr/local/lib/ruby/gems/2.3.0/gems/commander-4.4.3/lib/commander/command.rb:153:in `run'
from /usr/local/lib/ruby/gems/2.3.0/gems/commander-4.4.3/lib/commander/runner.rb:446:in `run_active_command'
from /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.19.2/fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb:38:in `run!'
from /usr/local/lib/ruby/gems/2.3.0/gems/commander-4.4.3/lib/commander/delegates.rb:15:in `run!'
from /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.19.2/sigh/lib/sigh/commands_generator.rb:123:in `run'
from /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.19.2/sigh/lib/sigh/commands_generator.rb:11:in `start'
from /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.19.2/fastlane/lib/fastlane/cli_tools_distributor.rb:51:in `take_off'
from /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.19.2/bin/fastlane:15:in `<top (required)>'
from /usr/local/bin/fastlane:23:in `load'
from /usr/local/bin/fastlane:23:in `<main>'
Environment
Please run fastlane env and copy the output below. This will help us help you :+1:
If you used --capture_output option please remove this block - as it is already included there.
🚫 fastlane environment 🚫
Stack
Key
Value
OS
10.11.5
Ruby
2.3.1
Bundler?
false
Git
git version 2.10.1 (Apple Git-78)
Installation Source
/usr/local/bin/fastlane
Host
Mac OS X 10.11.5 (15F34)
Ruby Lib Dir
/usr/local/Cellar/ruby/2.3.1_2/lib
OpenSSL Version
OpenSSL 1.0.2j 26 Sep 2016
Is contained
false
Is homebrew
false
Is installed via Fabric.app
false
Xcode Path
/Applications/Xcode.app/Contents/Developer/
Xcode Version
8.2.1
System Locale
Error
No Locale with UTF8 found 🚫
fastlane gems
Gem
Version
Update-Status
fastlane
2.19.2
✅ Up-To-Date
Loaded fastlane plugins:
Plugin
Version
Update-Status
fastlane-plugin-wait_xcrun
0.1.1
✅ Up-To-Date
Loaded gems
Gem
Version
did_you_mean
1.0.0
slack-notifier
1.5.1
claide
1.0.1
colored
1.2
nanaimo
0.2.3
xcodeproj
1.4.2
rouge
1.11.1
xcpretty
0.2.4
terminal-notifier
1.7.1
unicode-display_width
1.1.3
terminal-table
1.7.3
plist
3.2.0
public_suffix
2.0.5
addressable
2.5.0
multipart-post
2.0.0
word_wrap
1.0.0
tty-screen
0.5.0
babosa
1.0.2
highline
1.7.8
commander
4.4.3
faraday
0.11.0
http-cookie
1.0.3
faraday-cookie_jar
0.0.6
gh_inspector
1.0.3
mini_magick
4.5.1
multi_json
1.12.1
multi_xml
0.6.0
security
0.1.3
xcpretty-travis-formatter
0.0.4
bundler
1.13.5
json
2.0.3
io-console
0.4.5
excon
0.55.0
rubyzip
1.2.1
fastlane-plugin-wait_xcrun
0.1.1
generated on: 2017-03-07
the commit that broke things:
https://github.com/fastlane/fastlane/commit/1e7b08032d9e030c998cf65c7fc7256beb6ce5fa
this PR https://github.com/fastlane/fastlane/pull/8394 @joshdholtz can you have a look ? looks like cert is not defined in this case.
@kas-kad i prepared a PR: https://github.com/fastlane/fastlane/pull/8457 could you give it a try?
@hjanuschka
now it's better
+-------------------------------------+-------------------------------------+
| Summary for sigh 2.19.2 |
+-------------------------------------+-------------------------------------+
| development | true |
| adhoc | false |
| skip_install | false |
| force | false |
| app_identifier | com.infobip.mobilemessaging.example |
| team_id | T6U248P7YM |
| ignore_profiles_with_different_name | false |
| skip_fetch_profiles | false |
| skip_certificate_verification | false |
| platform | ios |
+-------------------------------------+-------------------------------------+
[12:26:28]: To not be asked about this value, you can specify it using 'username'
Your Apple ID Username: kadochnikov.andr@gmail.com
[12:26:35]: Starting login with user 'kadochnikov.andr@gmail.com'
[12:26:40]: Successfully logged in
[12:26:40]: Fetching profiles...
[12:26:41]: Verifying certificates...
[12:26:48]: Certificate for Provisioning Profile 'Mobile Messaging Example - Development' not available locally: D8HLFR9G6T, skipping this one...
[12:26:48]: Certificate for Provisioning Profile 'Mobile Messaging Example - Development' not available locally: 62NRV5PBES, skipping this one...
[12:26:49]: Certificate for Provisioning Profile 'Mobile Messaging Example - Development' not available locally: 528498GTG5, skipping this one...
[12:26:49]: Certificate for Provisioning Profile 'Mobile Messaging Example - Development' not available locally: E345RE9WRX, skipping this one...
[12:26:49]: Certificate for Provisioning Profile 'Mobile Messaging Example - Development' not available locally: U5VVSCF3TG, skipping this one...
[12:26:50]: Certificate for Provisioning Profile 'Mobile Messaging Example - Development' not available locally: 2GG4P54QQK, skipping this one...
[12:26:53]: Cannot download cert X4XHH93295 - Couldn't download certificate, got this instead: {"responseId"=>"80def118-52ef-472f-9695-20b6fde1efc5", "resultCode"=>7100, "resultString"=>"Certificate 'X4XHH93295' not found", "userString"=>"There is no certificate with ID 'X4XHH93295' on this team.", "creationTimestamp"=>"2017-03-07T12:26:53Z", "protocolVersion"=>"QH65B2", "userLocale"=>"en_US", "requestUrl"=>"https://developer.apple.com/services-account/QH65B2/account/ios/certificate/downloadCertificateContent.action", "httpCode"=>200}
[12:26:54]: Cannot download cert H29YDV5Z7X - Couldn't download certificate, got this instead: {"responseId"=>"e6a769ec-6e96-4048-9a3c-8aadd09b2926", "resultCode"=>7100, "resultString"=>"Certificate 'H29YDV5Z7X' not found", "userString"=>"There is no certificate with ID 'H29YDV5Z7X' on this team.", "creationTimestamp"=>"2017-03-07T12:26:54Z", "protocolVersion"=>"QH65B2", "userLocale"=>"en_US", "requestUrl"=>"https://developer.apple.com/services-account/QH65B2/account/ios/certificate/downloadCertificateContent.action", "httpCode"=>200}
[12:26:57]: Certificate for Provisioning Profile 'com.infobip.mobilemessaging.example Development' not available locally: D8HLFR9G6T, skipping this one...
[12:26:57]: Certificate for Provisioning Profile 'com.infobip.mobilemessaging.example Development' not available locally: 62NRV5PBES, skipping this one...
[12:26:58]: Certificate for Provisioning Profile 'com.infobip.mobilemessaging.example Development' not available locally: 528498GTG5, skipping this one...
[12:26:58]: Certificate for Provisioning Profile 'com.infobip.mobilemessaging.example Development' not available locally: E345RE9WRX, skipping this one...
[12:26:58]: Found 1 matching profile(s)
[12:26:58]: Downloading provisioning profile...
[12:27:01]: Successfully downloaded provisioning profile...
[12:27:01]: Installing provisioning profile...
@kas-kad many thx for your help - working on adding a spec for the PR
This should be resolved now 👍 Thanks everybody
| gharchive/issue | 2017-03-07T11:32:43 | 2025-04-01T06:38:39.671392 | {
"authors": [
"KrauseFx",
"hjanuschka",
"kas-kad"
],
"repo": "fastlane/fastlane",
"url": "https://github.com/fastlane/fastlane/issues/8456",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
217653275 | Resolves failure when deliver() called with name: argument and name.txt exists in locale-based metadata.
Checklist
[x] I've run bundle exec rspec from the root directory to see all new and existing tests pass
[x] I've followed the fastlane code style and run bundle exec rubocop -a to ensure the code style is valid
[x] I've read the Contribution Guidelines
[x] I've updated the documentation if necessary.
Description
Resolves an issue that prevents fastlane from submitting to AppStore. Specifically, when metadata/[language]/name.txt exists AND a name is passed to deliver(), fastlane errors with 'string not matched'. Other scenarios may also reproduce this error, but this is mine.
Motivation and Context
In load_from_filesystem() in upload_metadata.rb, the line options[key][language] ||= File.read(path) attempts to assign the value of a file to the options[key][language] variable. But if options[key] already exists, then the prior line, options[key] ||= {}, never gets executed and options[key] is not an object, thus failing with the error 'string not matched'. There is no doubt a more elegant way to resolve this issue, but this worked for me.
https://github.com/fastlane/fastlane/issues/8482
This change was required in order to deliver my app to the AppStore.
I signed it.
Hey @parleer, thanks for the PR. Please update the PR title to describe what this PR changes
I'm not sure why the circleci tests are failing. Appears unrelated to my code change?
Hey @parleer thanks for submitting this PR and apologies for the long time since a response. I was wondering if you could take a look at https://github.com/fastlane/fastlane/pull/9337 and see if it solves some of the same problems you were having? We have made a couple other changes to how languages are handled recently too. Let us know if this is still a PR you are trying to get through and maybe it should be rebased on #9337 when that gets merged in? Thanks! 🚀
David, the latest fastlane 2.38.1 appears to be working for my specific
issue. I do see the following error in the log, but it appears to be
working.
[11:49:30]: Activating language en-US...
[11:50:03]: Error with provided 'name'. Must be a hash, the key being the
language.
[11:50:03]: Uploading metadata to iTunes Connect
[11:50:05]: Successfully uploaded set of metadata to iTunes Connect
[11:50:07]: Uploading binary to iTunes Connect
[11:50:07]: Going to upload updated app to iTunes Connect
On Tue, Jun 13, 2017 at 11:05 AM, David Ohayon notifications@github.com
wrote:
Hey @parleer https://github.com/parleer thanks for submitting this PR
and apologies for the long time since a response. I was wondering if you
could take a look at #9337
https://github.com/fastlane/fastlane/pull/9337 and see if it solves
some of the same problems you were having? We have made a couple other
changes to how languages are handled recently too. Let us know if this is
still a PR you are trying to get through and maybe it should be rebased on
#9337 https://github.com/fastlane/fastlane/pull/9337 when that gets
merged in? Thanks! 🚀
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/fastlane/fastlane/pull/8688#issuecomment-308166385,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AAHbd84srUWVUP3F2e93IYAnZg4Agpawks5sDrM0gaJpZM4MsBk6
.
Hey @parleer thanks again for the PR! I am going to close this for now as it seems like some other changes fixed your issue. Let us know if there is anything else we can do to help or if there are any other changes you would want to submit 😄 🐙 🚀 !
| gharchive/pull-request | 2017-03-28T18:36:03 | 2025-04-01T06:38:39.684199 | {
"authors": [
"KrauseFx",
"ohayon",
"parleer"
],
"repo": "fastlane/fastlane",
"url": "https://github.com/fastlane/fastlane/pull/8688",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1511757754 | How to add custom js like adding custom css
How to add custom js like adding custom css
you cannot add custom js.
ok thank you
| gharchive/issue | 2022-12-27T12:28:44 | 2025-04-01T06:38:39.699992 | {
"authors": [
"fatih-yavuz",
"mohanshetty"
],
"repo": "fatih-yavuz/links.dev",
"url": "https://github.com/fatih-yavuz/links.dev/issues/112",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
666418194 | Can't add visualization to Canvas
Hello, I tested the plugin(v1.9.1) for kibana 7.8 and i want add my document table to canvas, but when i search elements dont return results
Visualize:
Canvas:
Hi,
Honestly, I didn’t tried this feature yet.
If you add a standard data table, does it work fine?
Yes it works with standard kibana visualizations, i don't know if is necessary a tag that enable discover it in canvas tab.
Well, it seems that something special is required so that a visualization can be added in canvas (given your tests).
For now, I don’t know what, but I will ask the question to kibana team.
Good news: enhanced table v1.10.0 is out with this issue fixed for Kibana 7.9+ and more enhancements!
https://github.com/fbaligand/kibana-enhanced-table/releases/tag/v1.10.0
| gharchive/issue | 2020-07-27T16:18:52 | 2025-04-01T06:38:39.735466 | {
"authors": [
"JackCloudman",
"fbaligand"
],
"repo": "fbaligand/kibana-enhanced-table",
"url": "https://github.com/fbaligand/kibana-enhanced-table/issues/123",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
153902110 | keras crashing when using convolutions
hi all,
recently updated to theano 0.9 and cudnn v5, things broke. downgraded 0.8.2 and things were moderately working again ( I could import theano... ). But then I tried to run some things and ran into the issue pasted below. I pull the master branch from keras and it still happens. I tried it with a lasagne mnist example, and it doesn't happen. I haven't tried downloading theano or cudnn yet.
(DL)cogniton [examples] $ python imdb_cnn.py
Using Theano backend.
Using gpu device 0: GeForce GTX 980 (CNMeM is disabled, cuDNN 5004)
Loading data...
Downloading data from https://s3.amazonaws.com/text-datasets/imdb.pkl
33218560/33213513 [==============================] - 1s
20000 train sequences
5000 test sequences
Pad sequences (samples x time)
X_train shape: (20000, 400)
X_test shape: (5000, 400)
Build model...
Traceback (most recent call last):
File "imdb_cnn.py", line 84, in <module>
validation_data=(X_test, y_test))
File "/home/cogniton/research/code/keras/keras/models.py", line 405, in fit
sample_weight=sample_weight)
File "/home/cogniton/research/code/keras/keras/engine/training.py", line 996, in fit
self._make_test_function()
File "/home/cogniton/research/code/keras/keras/engine/training.py", line 676, in _make_test_function
**self._function_kwargs)
File "/home/cogniton/research/code/keras/keras/backend/theano_backend.py", line 517, in function
return Function(inputs, outputs, updates=updates, **kwargs)
File "/home/cogniton/research/code/keras/keras/backend/theano_backend.py", line 503, in __init__
**kwargs)
File "/home/cogniton/anaconda/envs/DL/lib/python2.7/site-packages/theano/compile/function.py", line 320, in function
output_keys=output_keys)
File "/home/cogniton/anaconda/envs/DL/lib/python2.7/site-packages/theano/compile/pfunc.py", line 479, in pfunc
output_keys=output_keys)
File "/home/cogniton/anaconda/envs/DL/lib/python2.7/site-packages/theano/compile/function_module.py", line 1777, in orig_func
tion
defaults)
File "/home/cogniton/anaconda/envs/DL/lib/python2.7/site-packages/theano/compile/function_module.py", line 1641, in create
input_storage=input_storage_lists, storage_map=storage_map)
File "/home/cogniton/anaconda/envs/DL/lib/python2.7/site-packages/theano/gof/link.py", line 690, in make_thunk
storage_map=storage_map)[:3]
File "/home/cogniton/anaconda/envs/DL/lib/python2.7/site-packages/theano/gof/vm.py", line 1003, in make_all
no_recycling))
File "/home/cogniton/anaconda/envs/DL/lib/python2.7/site-packages/theano/sandbox/cuda/__init__.py", line 256, in make_thunk
compute_map, no_recycling)
File "/home/cogniton/anaconda/envs/DL/lib/python2.7/site-packages/theano/gof/op.py", line 970, in make_thunk
no_recycling)
File "/home/cogniton/anaconda/envs/DL/lib/python2.7/site-packages/theano/gof/op.py", line 879, in make_c_thunk
output_storage=node_output_storage)
File "/home/cogniton/anaconda/envs/DL/lib/python2.7/site-packages/theano/gof/cc.py", line 1200, in make_thunk
keep_lock=keep_lock)
File "/home/cogniton/anaconda/envs/DL/lib/python2.7/site-packages/theano/gof/cc.py", line 1143, in __compile__
keep_lock=keep_lock)
File "/home/cogniton/anaconda/envs/DL/lib/python2.7/site-packages/theano/gof/cc.py", line 1595, in cthunk_factory
key=key, lnk=self, keep_lock=keep_lock)
File "/home/cogniton/anaconda/envs/DL/lib/python2.7/site-packages/theano/gof/cmodule.py", line 1142, in module_from_key
module = lnk.compile_cmodule(location)
File "/home/cogniton/anaconda/envs/DL/lib/python2.7/site-packages/theano/gof/cc.py", line 1506, in compile_cmodule
preargs=preargs)
File "/home/cogniton/anaconda/envs/DL/lib/python2.7/site-packages/theano/sandbox/cuda/nvcc_compiler.py", line 410, in compile
_str
return dlimport(lib_filename)
File "/home/cogniton/anaconda/envs/DL/lib/python2.7/site-packages/theano/gof/cmodule.py", line 299, in dlimport
rval = __import__(module_name, {}, {}, [module_name])
RuntimeError: ('The following error happened while compiling the node', GpuDnnConv{algo='small', inplace=True}(GpuContiguous.0,
GpuContiguous.0, GpuAllocEmpty.0, GpuDnnConvDesc{border_mode='valid', subsample=(1, 1), conv_mode='conv', precision='float32'}
.0, Constant{1.0}, Constant{0.0}), '\n', 'could not create cuDNN handle: CUDNN_STATUS_NOT_INITIALIZED', "[GpuDnnConv{algo='smal
l', inplace=True}(<CudaNdarrayType(float32, (False, False, False, True))>, <CudaNdarrayType(float32, 4D)>, <CudaNdarrayType(flo
at32, 4D)>, <CDataType{cudnnConvolutionDescriptor_t}>, Constant{1.0}, Constant{0.0})]")
Fixed the issue. The bug was due to drivers.
B.
Can you tell more? I have see a few report of this, it could help other.
Can you tell what your GPU was, what is the driver version you had problems
and which one worked well?
On Tue, May 10, 2016 at 5:54 AM, Brian McMahan notifications@github.com
wrote:
Fixed the issue. The bug was due to drivers.
B.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub
https://github.com/fchollet/keras/issues/2678#issuecomment-218111540
@braingineer I also have weird errors because I updated the drivers (see Theano/Theano#4495). Do you have a working solution to this bug?
short version:
I have a gtx 980
originally (last year) started with linux display drivers then upgraded to cuda 7.0
yesterday, upgraded to cudnn v5 and cudnn v5 assumes cuda 7.5
tried to then upgrade cuda to 7.5
if cuda 7.5 got mucked for any reason, it creates issues
assuming the cuda 7.5 install not being exactly what cudnn v5 expects, my only (desperate last attempt) solution was to completely wipe the os and reinstall to 7.5 from a fresh install
uninstalling cuda drivers to get a fresh install seems to be problematic (according to cuda forum posts)
longer version:
The only reported case I could find for CUDNN_STATUS_NOT_INITIALIZED was here: https://github.com/karpathy/neuraltalk2/issues/57
So that lead me to believe I had the wrong cuda version. It turns out cuDNN is for 7.5 or later. cuDNN v5 Release Candidate (RC) (April, 2016), for CUDA 7.5 and later.. So, I tried to upgrade. This lead to some other issues because installing the cuda 7.5 install script wasn't quite working.
For me, most of the difficulty stemmed from a crappy attempt to get ethereum working and even before that, having originally installed the drivers specific to my card (the display drivers) rather than the cuda drivers. The internet (and accumulating frustrating experiences) pointed at having to just completely wipe the OS and reinstall because of residual traces of the drivers. (which, it wasn't so bad because I have a separate partition for the os contents..).
Hope that helps.
| gharchive/issue | 2016-05-10T00:56:36 | 2025-04-01T06:38:39.766448 | {
"authors": [
"braingineer",
"nouiz",
"tboquet"
],
"repo": "fchollet/keras",
"url": "https://github.com/fchollet/keras/issues/2678",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
97986456 | Hessian-free optimization?
Just probing here a little bit to see if there was an interest for a Hessian-free optimizer, as e.g. in theano-hf by boulanni. Don't know the Keras code much yet, but I'd like to get some input if that's doable in a reasonable amount of time...
It would definitely be possible to add it as an Optimizer (see keras/optimizers.py).
It's not a priority, since HF has been shown to underperform RMSprop and Adagrad, while being more computationally intensive.
Oh OK, wasn't aware of that... can you point me to a paper etc. with some benchmarks etc?
Can't find any paper, but what I would recommend you do is simply to implement it in Keras (should be quick to adapt boulanni's code) and benchmark it (time and accuracy) against other optimizers. Then you can answer the question without having to rely on what I remember reading about.
The fact is, nobody uses Hessian-Free optimization. If there was any advantage to it, everybody would be using it.
Just a FYI to everybody seeing this: a paper by Sutskever et al discusses Heassian-free vs. momentum methods here:
http://machinelearning.wustl.edu/mlpapers/paper_files/icml2013_sutskever13.pdf
Quote: "Momentum-accelerated SGD, despite being a firstorder
approach, is capable of accelerating directions
of low-curvature just like an approximate Newton
method such as HF. Our experiments support the idea
that this is important, as we observed that the use of
stronger momentum (as determined by µ) had a dramatic
e↵ect on optimization performance, particularly
for the RNNs. Moreover, we showed that HF can be
viewed as a first-order method, and as a generalization
of NAG in particular, and that it already derives some
of its benefits through a momentum-like mechanism."
So yeah, probably Hessian-free is not very useful...
For what it's worth (responding to an old thread) the above quote by @harpone does not establish the conclusion. Actually the 2013 ICML paper quoted above demonstrates that careful use of momentum methods almost closes the gap in performance that existed between HF-based methods and other first-order methods. That is, as of 2013, the HF-based methods of Martens + Sutskever were still better than the momentum methods employed in the 2013 paper. (at least for a number of important tasks, esp. training SRNs)
Perhaps the conversation subsequently evolved to the point that HF-based methods no longer tops after the advent of Adam and others. But that requires more reading. Perhaps I will find the paper Chollet refers to about Adagrad and RMSprop as I read further.
I also have a need for a HF optimizer for estimating RNN parameters. I have played around with various first order optimizers but I am seeing too much noise, I was wondering if anyone has build a HF optimizer for Keras yet or whether I need to build one from scratch. I am currently looking at the Optimizer class to figure out what needs to be done.
| gharchive/issue | 2015-07-29T17:24:10 | 2025-04-01T06:38:39.773490 | {
"authors": [
"fchollet",
"geminatea",
"harpone",
"quantlearn"
],
"repo": "fchollet/keras",
"url": "https://github.com/fchollet/keras/issues/460",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
182903734 | Return decay from get_config of all optimizers
This commit adds the decay strength to the config dicts of all optimizers where it was not present.
LGTM, thanks
| gharchive/pull-request | 2016-10-13T21:19:31 | 2025-04-01T06:38:39.774668 | {
"authors": [
"fchollet",
"jayanthkoushik"
],
"repo": "fchollet/keras",
"url": "https://github.com/fchollet/keras/pull/4052",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
146089426 | Add link headers to versioned resources
Resolves both:
https://jira.duraspace.org/browse/FCREPO-1975 and
https://jira.duraspace.org/browse/FCREPO-1974
It seems that most of this involves adding headers using javax.servlet. When the response is generated, though, we are using javax.ws.rs.
This certainly works, but I wonder why we wouldn't just use JAX-RS for everything? That would mean using the JAX-RS API such as ok(...).header(...).header(...).build() rather than relying on changing the state of the internal servletResponse field.
That is a good point, however, this PR is actually a very minor change to FedoraVersions with some refactoring of the location of existing private and protected methods. I definitely think there would be value in re-examining/refactoring our use of JAX-RS.
I'm OK with using the servlet-api as is currently the case. I'm more noting the fact that we should evaluate our use of JAX-RS along the lines of this much neglected ticket that has my name on it: https://jira.duraspace.org/browse/FCREPO-1664
Merged via 15a0b2687156498a1c4722abe182fcdca9dde154
| gharchive/pull-request | 2016-04-05T19:38:33 | 2025-04-01T06:38:39.782880 | {
"authors": [
"acoburn",
"awoods"
],
"repo": "fcrepo4/fcrepo4",
"url": "https://github.com/fcrepo4/fcrepo4/pull/1015",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
227553565 | airsdk compress swf not be used
all fws
Can you explain more?
adobe air sdk 25
setting optimize bytecode =true.not use.
my proj get swf 3M size.
and i addtional compiler options -compress=true,
i get swf 1M size.
This setting only works in release mode.
@matrix3d This issue can be considered solved?
| gharchive/issue | 2017-05-10T02:53:24 | 2025-04-01T06:38:39.792304 | {
"authors": [
"Neverbirth",
"SlavaRa",
"matrix3d"
],
"repo": "fdorg/flashdevelop",
"url": "https://github.com/fdorg/flashdevelop/issues/1625",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
223557521 | Comment:Step-Basic-Real-time
The link is invalid for server code:
https://github.com/feathersjs/feathers-docs/blob/master/examples/step/01/WebSocket/1.js
The link that worked for me was:
https://github.com/feathersjs/feathers-docs/blob/master/examples/step/01/websocket/1.js
Thanks for the catch! There's a PR waiting to fix this.
On Sat, Apr 22, 2017 at 7:09 AM, Damian Phillips-king <
notifications@github.com> wrote:
The link is invalid for server code:
https://github.com/feathersjs/feathers-docs/blob/master/
examples/step/01/WebSocket/1.js
The link that worked for me was:
https://github.com/feathersjs/feathers-docs/blob/master/
examples/step/01/websocket/1.js
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
https://github.com/feathersjs/feathers-guide/issues/9, or mute the
thread
https://github.com/notifications/unsubscribe-auth/ABezn4t0Q-nvDVJCWqkzOu6D66rKqgjyks5ryd_TgaJpZM4NFDYH
.
| gharchive/issue | 2017-04-22T11:09:07 | 2025-04-01T06:38:39.840796 | {
"authors": [
"eddyystop",
"imdpk"
],
"repo": "feathersjs/feathers-guide",
"url": "https://github.com/feathersjs/feathers-guide/issues/9",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
1361439000 | Gateway detection and support for internal payments within a Mint
Enable gateways to detect payments internal to a mint, and resolve these without paying itself (the gateway) over the LN network.
To detecting internal payments when attempting to pay an invoice (outgoing contract), the gateway uses the invoice hash to requests for any existing offer from the gateway. Existence of such an offer indicates that the payment is internal to a gateway, otherwise gateway should treat this invoice as a normal external route.
On detecting an internal payment from an invoice, the gateway attempts to buys the offer and then proceeds to request a decryption of the preimage from the offer it bought. With decrypted preimage, the gateway proceeds to claim the original outgoing contract, thereby collecting fees for it's work facilitating this internal payment.
Additional:
If a gateway does not get a decrypted preimage after paying the offer, it can proceed to claw back funds from the offer
Closes #461, Closes #486
Codecov Report
Merging #495 (477a1c8) into master (2a02caa) will decrease coverage by 0.12%.
The diff coverage is 51.68%.
@@ Coverage Diff @@
## master #495 +/- ##
==========================================
- Coverage 72.74% 72.62% -0.13%
==========================================
Files 83 83
Lines 10637 10862 +225
==========================================
+ Hits 7738 7888 +150
- Misses 2899 2974 +75
Impacted Files
Coverage Δ
ln-gateway/src/ln.rs
0.00% <0.00%> (ø)
ln-gateway/src/lib.rs
38.36% <44.44%> (-3.07%)
:arrow_down:
client/client-lib/src/lib.rs
86.13% <68.42%> (-2.16%)
:arrow_down:
fedimint-api/src/db/mem_impl.rs
84.48% <0.00%> (-2.19%)
:arrow_down:
fedimint/src/consensus/mod.rs
92.90% <0.00%> (-2.03%)
:arrow_down:
client/client-lib/src/mint/mod.rs
81.64% <0.00%> (-0.95%)
:arrow_down:
modules/fedimint-mint/src/lib.rs
90.38% <0.00%> (-0.37%)
:arrow_down:
fedimint/src/net/peers.rs
92.68% <0.00%> (-0.23%)
:arrow_down:
... and 9 more
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.
On our group call list week didn't we agree to have the gateway do it all?
It seems here everything is happening in the client?
Doing it all in the client is very straightforward: When the /pay_invoice method is exercised, check if you can buy the preimage from the federation before doing any RPC calls with your lightning node.
It seems here that internal payment detection is happening in the client? I don't think this is necessary.
I'm currently doing this within the Gateway client, which I believe runs as a core part of the gateway right? I may not have fully understood the boundaries of client apps!
@okjodom We should probably have an integration test for this, I could help you modify the test fixtures to create one.
@okjodom We should probably have an integration test for this, I could help you modify the test fixtures to create one.
Excellent! IMO the biggest gaps I came across with the fixtures as they are is that
GatewayTest has a public user : UserTest that has been sufficient for validating sends through gateway, but now we need two users independent and a gateway?
I'm not sure how to associate an invoice from LightningTest with a receiving UserTest so we can simulate a 3-step hop between user to gateway to user, in validating an internal payment
Possibly other gaps I haven't realized. I'd love to pair program at your next availability to add tests
This is my attempt at internal routing btw, not tested yet, just wanted to see how I'd architect it: bf083967c83c85abf6aa570681730577790891cd
This is my attempt at internal routing btw, not tested yet, just wanted to see how I'd architect it: 11c451ffedb675651b1c5c4099faf436fa9243b6
EDIT: I got more of an appreciation for some of the choices you made btw 😄 it's a hard-ish problem to do it elegantly
😎 I hope we learn more to do solve it better with future iterations.
This is my attempt at internal routing btw, not tested yet, just wanted to see how I'd architect it: 11c451ffedb675651b1c5c4099faf436fa9243b6
EDIT: I got more of an appreciation for some of the choices you made btw 😄 it's a hard-ish problem to do it elegantly
@elsirion , your proposal works nearly out of box! I adopted most of it, leaving out the fallback where you would attempt routing as external if routing as internal payment failed. My primary reasoning is that it's better to just fail early because cln would still fail us in self-payment scenario.
The utils are not necessary if we don't need the fallback behavior.
Much cleaner!
Just for completeness from yesterday's chat:
The use case for fallback is: someone has a private channel with our LN node and thus adds it as a routing hint. When they want to receive it looks like a federation-internal payment but isn't and CLN would succeed routing it.
Closing current PR in favor of #533
| gharchive/pull-request | 2022-09-05T05:53:36 | 2025-04-01T06:38:39.902239 | {
"authors": [
"codecov-commenter",
"elsirion",
"jkitman",
"justinmoon",
"okjodom"
],
"repo": "fedimint/fedimint",
"url": "https://github.com/fedimint/fedimint/pull/495",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
217576762 | Bump fh-wfm-workflow-angular version
Related to https://github.com/feedhenry-raincatcher/raincatcher-workflow-angular/pull/4
Outdated. Closing
| gharchive/pull-request | 2017-03-28T14:21:48 | 2025-04-01T06:38:39.931551 | {
"authors": [
"nialldonnellyfh",
"wtrocki"
],
"repo": "feedhenry-raincatcher/raincatcher-demo-mobile",
"url": "https://github.com/feedhenry-raincatcher/raincatcher-demo-mobile/pull/50",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
364500859 | Upgrade version of fh-sync-js
Jira link(s)
https://issues.jboss.org/browse/RHMAP-20023
What
Update version of fh-sync-js to 1.3.2
Version bump to 3.0.10
Changelog update
Why
To pull in this fix: https://github.com/feedhenry/fh-sync-js/pull/45
/restest
retest this
| gharchive/pull-request | 2018-09-27T14:21:34 | 2025-04-01T06:38:39.933852 | {
"authors": [
"camilamacedo86",
"shannon"
],
"repo": "feedhenry/fh-js-sdk",
"url": "https://github.com/feedhenry/fh-js-sdk/pull/286",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
} |
622375772 | Completion popup should not move with the cursor, but stay with the beginning of the completed text
In most cases the completion does its best to not move with the cursor. However, due to some limitations in the editor it may not always be the case
| gharchive/issue | 2020-05-21T09:33:23 | 2025-04-01T06:38:39.937391 | {
"authors": [
"girba",
"syrel"
],
"repo": "feenkcom/gtoolkit",
"url": "https://github.com/feenkcom/gtoolkit/issues/1069",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
293045525 | 这个软件如何安装呢?
我往在readme里注明下:GOPATH的设置,如何安装
你可以直接先go get github.com/feilengcui008/tcplayer,然后进入cmd目录go build
| gharchive/issue | 2018-01-31T06:29:12 | 2025-04-01T06:38:39.957489 | {
"authors": [
"feilengcui008",
"leafonsword"
],
"repo": "feilengcui008/tcplayer",
"url": "https://github.com/feilengcui008/tcplayer/issues/2",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
130978536 | Page admin showing each extension twice, breaks admin page
We've just started setting up a FeinCMS based blog, but have encountered a small problem.
We set up the Page model in the normal way, and register a few extensions like this:
Page.register_extensions(
'feincms.module.extensions.datepublisher',
'feincms.module.page.extensions.excerpt',
'feincms.module.page.extensions.relatedpages',
)
The extensions appear to only be loaded once - that line of code is run once, no "AlreadyRegistered" exceptions, and the migrations all work fine which implies the model is being created properly.
However, the admin shows two tabs for each extension. The tabs contain the same content, but only one (non-deterministic) tab will work at any time, which means you have to enter data twice in the admin to be sure that it will save. Also some widgets in the repeated tabs just don't work, an example of this is the multiple selection widget for the "relatedpages" extension.
I don't know enough about FeinCMS to know where to even begin looking for what might be causing this. Does anyone have any ideas about what might be causing this, or even a good place to start looking?
Thanks for the report! Which version of FeinCMS and Django are you using?
Sounds like something that should be immediately fixed.
Hi, Django 1.9.1 and FeinCMS 1.11.4. I can test on 1.9.2 soon as well, but I don't remember anything in the release notes that would affect this.
Thanks! I'll have a look at this later today.
Does the browser Javascript Console show any errors?
@mjl Yes, when I use "relatedpages", I get the following error:
Uncaught TypeError: Cannot read property 'id' of null
window.SelectFilter.init @ SelectFilter2.js:24
(anonymous function) @ VM5379:1
This appears to be an issue with there being two of the same multiple selection widgets on the page, but I'm not certain.
It seems that for some reason the initialization of the selectbox is run twice.
SelectFilter2.js renames the old select box to <name>_old, therefore the element cannot be found anymore, and that's the reason for the JavaScript error above. Probably Django's addEvent is run twice:
First when parsing the HTML
Afterwards when reinserting the HTML when building the tabbed interface (https://github.com/feincms/feincms/blob/master/feincms/static/feincms/item_editor.js#L398) — @mjl we should probably not reinsert the HTML, but instead reinsert the DOM nodes directly with $.fn.append or node.appendChild...
... unfortunately I still can't reproduce the problem with extension tabs appearing twice.
It seems that for some reason the initialization of the selectbox is run twice.
I've seen that message in the console for quite some while, it doesn't appear to be harmful though. More a red herring I'm afraid.
Some more info that might help... We override item_editor.html to add a conditional on whether there are translations available, since we a) don't use translations, and b) raise template syntax errors on any missing template variables, however this doesn't appear to make a difference (I've tried not overriding it, and we still have the issue).
If I modify relatedpages.py to call add_extension_options twice I get the same problem. But why should relatedpages.Extension.handle_modeladmin and friends be called twice?
Ok, I think I'm getting closer to finding the issue. I haven't confirmed this yet, but:
FeinCMS registers the Page with the default admin site, however we use a custom admin site instance. When autodiscover is on for admin modules, Django reads in FeinCMS's admin.py and causes the registration to happen to the default site, which we don't use. Our own registering to our custom admin site is then a second load, which is causing the extensions to be loaded twice.
I'm not sure what the solution here is. We are trying to disable autodiscover as we don't want it, but I guess the ultimate aim for FeinCMS would be to support custom admin sites, with and without autodiscover.
Great! Is there a reason why you can't just set FEINCMS_USE_PAGE_ADMIN = False in your settings?
This would of course still mean that FeinCMS pages cannot be used in more than one admin site at the same time...
Ah, that looks perfect! We hadn't seen that in the documentation. Thanks!
It's not even mentioned in the page documentation, only under settings. Does it work?
@danpalmer Does it work for you now? If yes we should document this, and also document FEINCMS_USE_PAGE_ADMIN.
The TypeError above is fixed in https://github.com/feincms/feincms/commit/ed973ac9c3ccbfca5c8b8bbc11e02c68d9978933.
Some documentation has been added in https://github.com/feincms/feincms/commit/94ffa872ac0a3addca8a8f8b26860b96f66826bd#diff-3fd23e085e479501733d484b109d838aR91
Closing this issue. @danpalmer Please reopen if things do not work for you. Thanks!
| gharchive/issue | 2016-02-03T10:10:07 | 2025-04-01T06:38:39.969692 | {
"authors": [
"danpalmer",
"matthiask",
"mjl"
],
"repo": "feincms/feincms",
"url": "https://github.com/feincms/feincms/issues/620",
"license": "bsd-3-clause",
"license_type": "permissive",
"license_source": "bigquery"
} |
990092087 | Failed to resolve: com.github.felHR85:UsbSerial:6.1.0 when move to Artic Fox
Hi,
I upgrade to Artic Fox 2020.3.1 Patch2 (built Aug 26, 2021)
the error resolving UsbSerial appears:
Failed to resolve: com.github.felHR85:UsbSerial:6.1.0
Project Gradle:
buildscript {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.2"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.30"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
and Module Gradle:
plugins {
id 'com.android.application'
id 'kotlin-android'
}
android {
compileSdk 30
defaultConfig {
applicationId "com.jcastano.testserialport_1"
minSdk 29
targetSdk 30
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
implementation 'androidx.core:core-ktx:1.6.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.0'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation 'com.github.felHR85:UsbSerial:6.1.0'
}
Regards
Facing same issue in Android Studio Arctic Fox | 2020.3.1 Patch 3
@felHR85 can you please help us here.
The config bellow works for me.
in root build.gradle:
buildscript {
...
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
...
}
in settings.gradle:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
in module build.gradle:
dependencies {
implementation 'com.github.felHR85:UsbSerial:6.1.0'
}
| gharchive/issue | 2021-09-07T15:13:49 | 2025-04-01T06:38:39.981038 | {
"authors": [
"UnisonControls",
"farmisen",
"jorgeEA3HKZ"
],
"repo": "felHR85/UsbSerial",
"url": "https://github.com/felHR85/UsbSerial/issues/339",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1456635950 | error: expose_camera_stream_source - Integration
Hi There
Trying to implement this and get my TUYA cam in grigate :)
when i update my configuration.yaml i get thoe below error at restart.
First i just pasted "expose_camera_stream_source:" into the end of my config ...thats not working.
then "expose_camera_stream_source: camera.denver_shc_150" ...thats not working.
so i am a bit usunre what i am doing wrong?
Failed to restart Home Assistant
The system cannot restart because the configuration is not valid: Integration error: expose_camera_stream_source - Integration 'expose_camera_stream_source' not found.
Install from HACS
Restart HA
Add expose_camera_stream_source: in your configuration.yaml (do not add anything else)
Restart HA
Can you double check you followed these steps?
First i just pasted "expose_camera_stream_source:" into the end of my config ...thats not working.
If it continues to fail here, let me know what exactly is not working. Check your HA logs for hints.
the issue is that i cant restart HA after update of config.
i bet that i am doing something wrong it just says:
Failed to restart Home Assistant
The system cannot restart because the configuration is not valid: Integration error: expose_camera_stream_source - Integration 'expose_camera_stream_source' not found.
Are you sure you restarted HA after installing from HACS?
Oh, of course, remove expose_camera_stream_source: from your configuration.yaml if you have added it before restarting after installing with HACS.
ok sorry about that!
it seems that it where NOT isntalled even though i where sure that i installed it.
Thank you!
Weird. Anyway, let me know if you managed to add your Tuya camera to Frigate after all. :)
so folowing the guide: https://github.com/felipecrs/hass-expose-camera-stream-source
I guess that the ip...is the IP of my homeassistant installation keeping the port as that is the port of the RTSP stream that you create?
in my case my home assistant in running on 192.168.0.24 i guess i could be using "homeassistant.local"
so it should be as below?
frigate.yml
my_camera:
ffmpeg:
inputs:
- path: rtsp://192.168.0.24:8554/my_camera
Your example seems correct to me. I'm not sure if homeassistant.local would work, feel free to test though.
ill give it a try if /when all is working
i got Frigate running though the feed is just green.
Sanity check:
should i be able in like VLC player to open:
rtsp://192.168.0.24:8554/camera.denver_shc_150
"camera.denver_shc_150" is the entity name i HA
Yes you should be able to view the RTSP link in VLC first. But the URL should have the name of the stream you configured in go2rtc, not the name of the HA camera. Unless you configured the name in go2rtc to be exactly equal the name in HA.
go2rtc.yaml
streams:
my_camera:
- echo:bash /config/custom_components/expose_camera_stream_source/get_stream.sh camera.denver_sho_110
So in thise case it will be:
rtsp://192.168.0.24:8554/my_camera
Correct.
Em sáb., 19 de nov. de 2022 18:23, tommymogensen @.***>
escreveu:
go2rtc.yaml
streams:
my_camera:
echo:bash
/config/custom_components/expose_camera_stream_source/get_stream.sh
camera.denver_sho_110
So in thise case it will be:
rtsp://192.168.0.24:8554/my_camera
—
Reply to this email directly, view it on GitHub
https://github.com/felipecrs/hass-expose-camera-stream-source/issues/1#issuecomment-1320972623,
or unsubscribe
https://github.com/notifications/unsubscribe-auth/AHBWMEJOMTO4OS7K5DYVEG3WJFAODANCNFSM6AAAAAASFO5XVE
.
You are receiving this because you commented.Message ID:
@.***
com>
i got it working in frigate now!
How do i send you a beer?
Hahaha. Great! I'm happy it worked for you!
If you can star the repo that would be already awesome. Thanks!
| gharchive/issue | 2022-11-19T19:47:29 | 2025-04-01T06:38:39.998174 | {
"authors": [
"felipecrs",
"tommymogensen"
],
"repo": "felipecrs/hass-expose-camera-stream-source",
"url": "https://github.com/felipecrs/hass-expose-camera-stream-source/issues/1",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
266227558 | Re: Issue #10
Contribution to issue #11
Hello, friend!
@aadityakhare can you describe a little bit what you are adding? Thank you so much and good Hacktoberfesting!
Well, I'd been working on a repository to add algorithms in 3 languages: C, Java, Python.
some of them are not in all 3 languages.
My addition has algorithms on the following:
Searching and sorting (Binary, Radix, Selection, Shell, etc.
Math (Armstrong no., tower of Hanoi, Integration, etc.)
Cryptography ciphers (atbash, vigenere, etc.)
Robotic Locomotion (PID, a*)
@aadityakhare that is awesome! C is a powerful beast, we love it here at my college.
I'm still a newbie to cryptography myself, what was your study strategy? Textbooks, internet resources? Have you used it in real world problems?
Thanks for the pull-request, I'll definitely take a look at the code. 👍
@felipecustodio Yeah I love C too. Since my majors is Electronics and Communication, my resources for studying anything including cryptography in coding were mainly from the internet. Study strategy: never just read up on a concept and leave it there, do implement it and see how it works, what it does. I hunt for problems on sites like hackerrank and codechef and implemt it there.
| gharchive/pull-request | 2017-10-17T18:16:51 | 2025-04-01T06:38:40.002070 | {
"authors": [
"aadityakhare",
"felipecustodio"
],
"repo": "felipecustodio/algorithms",
"url": "https://github.com/felipecustodio/algorithms/pull/13",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
1801556810 | Testing and Debugging - Backend and Frontend
Test the backend routes using a tool like Postman to ensure they handle CRUD operations correctly. Test the frontend components and services to verify their integration with the backend API. Debug and fix any issues or errors that arise during testing.
Branch: feature/testing
Branch: bugfix/debugging-issues
| gharchive/issue | 2023-07-12T18:39:38 | 2025-04-01T06:38:40.009125 | {
"authors": [
"felipesud"
],
"repo": "felipesud/temple-finder-app",
"url": "https://github.com/felipesud/temple-finder-app/issues/5",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
116399108 | R interpreter for zeppelin
Hello Felix,
I saw your talk on youtube about SparkR + Zeppelin at the Seattle Spark meetup and I wanted to inquire how you set up the R interpreter for zeppelin. Is it officially supported in Zeppelin-0.5 or 0.6?
Let me know.
Thanks,
Daniel
Hello!
R interpreter is not currently merged to a Zeppelin release yet.
You are welcome to join the Zeppelin community for discussions/questions/requests: http://zeppelin.incubator.apache.org/community.html
@felixcheung Seriously?
I just watched the youtube video, Felix. Wow. Really, just wow.
@elbamos I'm not sure what you are saying, but you are welcome to talk to me directly, since you have my contacts.
@felixcheung Well, it looks like you took code that you didn't write -- where you had threatened to (falsely) claim the code was stolen from you, unless you were listed as a developer, even though you hadn't done any work -- and passed it off toward the user group as though it were your own.
@felixcheung
No Felix, you are lying. You passed off my code as your own to the user's group. And now you are trying to cover it up. This belongs in your repo for discussion because you are the wrongdoer.
Since you have been trying to delete comments, here's one of the key ones:
@felixcheung Well, it looks like you took code that you didn't write -- where you had threatened to (falsely) claim the code was stolen from you, unless you were listed as a developer, even though you hadn't done any work -- and passed it off toward the user group as though it were your own.
To clarify, my implementation is completely my own and has been made available on day-1 as documented on my slides in my fork on github. I have not made a PR and do not plan to update it further.
The Zeppelin community is welcome to follow up on the best implementation and discuss as I've pointed out above.
Thanks, more community contribution is welcome!
@felixcheung That's a lie Felix. You never wrote a working interpreter.
Your code never implemented the "interpret" function. It was an empty shell that said it was an interpreter but actually did absolutely nothing.
You demanded to participate with me when you saw how much progress I'd made. Then, when you failed to make any contribution at all or do even the slightest work, and I told you I would make the PR without you, you threatened to claim the code was stolen unless I credited you as the author.
And since you were caught, you've been going around doing demos passing off the code I wrote as your own. Then, when people try to go to your git and they can't get the code working, you've been ignoring them or making up excuses.
| gharchive/issue | 2015-11-11T19:00:59 | 2025-04-01T06:38:40.022732 | {
"authors": [
"Emaasit",
"elbamos",
"felixcheung"
],
"repo": "felixcheung/vagrant-projects",
"url": "https://github.com/felixcheung/vagrant-projects/issues/3",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
} |
420055091 | GPUFluidApp.obj : error LNK2019: unresolved external symbol
Hi, I've just started to use Cinder, and thanks for the project, it works pretty fine on my Mac.
But, I have some trouble with the PC version.
I'm using VS 2015. After debugging, I got errors like:
Do you know how to fix this? Thanks!
I havent tried it on windows yet but have you definitely added the .cpp files to visual studio project so they compile? It looks like it cant find the GPUFluid class / implementation which means they probably havent been added to the VS solution.
hey im trying to compile this on linux but i got this
build] FAILED: Debug/GPU-Fluid/GPU-Fluid [build] : && /usr/bin/c++ -g -rdynamic CMakeFiles/GPU-Fluid.dir/home/jacos/Cinder/sketches/GPU-Fluid/src/GPUFluidApp.cpp.o -o Debug/GPU-Fluid/GPU-Fluid /home/jacos/Cinder/lib/linux/x86_64/ogl/Debug/libcinder.a -lGL -lGLU -lSM -lICE -lX11 -lXext -lXcursor -lXinerama -lXrandr -lXi -lz -lcurl -lfontconfig -lpulse -lmpg123 -lsndfile -lgobject-2.0 -lglib-2.0 -lgstreamer-1.0 -lgstbase-1.0 -lgstapp-1.0 -lgstvideo-1.0 -lgstgl-1.0 -ldl -lpthread && : [build] /usr/bin/ld: /usr/bin/ld: DWARF error: could not find variable specification at offset 6232a [build] CMakeFiles/GPU-Fluid.dir/home/jacos/Cinder/sketches/GPU-Fluid/src/GPUFluidApp.cpp.o: in functionGPUFluidApp::update()':
[build] /home/jacos/Cinder/sketches/GPU-Fluid/src/GPUFluidApp.cpp:81: undefined reference to GPUFluid::step()' [build] /usr/bin/ld: CMakeFiles/GPU-Fluid.dir/home/jacos/Cinder/sketches/GPU-Fluid/src/GPUFluidApp.cpp.o: in function GPUFluid::splatRgb(glm::vec<2, float, (glm::qualifier)0>, cinder::ColorAT, float)':
[build] /home/jacos/Cinder/sketches/GPU-Fluid/src/GPUFluid.h:25: undefined reference to GPUFluid::splatFbo(std::shared_ptr<cinder::gl::Fbo>&, glm::vec<2, float, (glm::qualifier)0>, glm::vec<4, float, (glm::qualifier)0>, float)' [build] /usr/bin/ld: CMakeFiles/GPU-Fluid.dir/home/jacos/Cinder/sketches/GPU-Fluid/src/GPUFluidApp.cpp.o: in function GPUFluid::splatVelocity(glm::vec<2, float, (glm::qualifier)0>, glm::vec<2, float, (glm::qualifier)0>, float)':
[build] /home/jacos/Cinder/sketches/GPU-Fluid/src/GPUFluid.h:26: undefined reference to GPUFluid::splatFbo(std::shared_ptr<cinder::gl::Fbo>&, glm::vec<2, float, (glm::qualifier)0>, glm::vec<4, float, (glm::qualifier)0>, float)' [build] /usr/bin/ld: CMakeFiles/GPU-Fluid.dir/home/jacos/Cinder/sketches/GPU-Fluid/src/GPUFluidApp.cpp.o: in function void __gnu_cxx::new_allocator::construct<GPUFluid, glm::vec<2, int, (glm::qualifier)0> const&, float>(GPUFluid*, glm::vec<2, int, (glm::qualifier)0> const&, float&&)':
[build] /usr/include/c++/10.2.0/ext/new_allocator.h:150: undefined reference to GPUFluid::GPUFluid(glm::vec<2, int, (glm::qualifier)0>, float)' [build] collect2: error: ld returned 1 exit status
any idea what it is
@cyrstem Hi there. I eventually switched back to mac system and it worked. I failed to solve anything in the end. Sorry.
@AliceLeon @felixfaire fun fact that took way to long to figure it out ........ if you just copy the full class GPUFluid to GPUFluidApp.cpp and delete the other 2 files it compiles on linux and windows
| gharchive/issue | 2019-03-12T15:36:31 | 2025-04-01T06:38:40.029761 | {
"authors": [
"AliceLeon",
"cyrstem",
"felixfaire"
],
"repo": "felixfaire/GPU-Fluid",
"url": "https://github.com/felixfaire/GPU-Fluid/issues/1",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
489808472 | Get id of value
How can iget selected id from autocomplete_textfield ?
This id my code :
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
import 'User.dart';
import 'dart:convert';
import 'package:autocomplete_textfield/autocomplete_textfield.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State {
AutoCompleteTextField searchTextField;
GlobalKey<AutoCompleteTextFieldState> key = new GlobalKey();
static List users = new List();
bool loading = true;
//https://jsonplaceholder.typicode.com/users
void getUser() async {
try {
final response =
await http.get("https://jsonplaceholder.typicode.com/users");
if (response.statusCode == 200) {
users = loadUser(response.body);
setState(() {
loading = false;
});
} else {
print("Error!");
}
} catch (e) {
print("Error!");
}
}
static List loadUser(String jsonString) {
final parsed = json.decode(jsonString).cast<Map<String, dynamic>>();
return parsed.map((json) => User.fromJson(json)).toList();
}
@override
void initState() {
getUser();
// TODO: implement initState
super.initState();
}
Widget row(User user) {
return Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
user.name,
style: TextStyle(fontSize: 16.0),
),
SizedBox(
width: 10.0,
),
Text(
user.email,
style: TextStyle(fontSize: 16.0),
),
],
);
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Column(
mainAxisAlignment: MainAxisAlignment.start,
children: [
loading
? CircularProgressIndicator()
: searchTextField = AutoCompleteTextField(
key: key,
clearOnSubmit: false,
suggestions: users,
style: TextStyle(color: Colors.black, fontSize: 16.0),
decoration: InputDecoration(
contentPadding: EdgeInsets.all(8.0),
hintText: "Search box",
hintStyle: TextStyle(color: Colors.blueAccent),
),
itemFilter: (item, query) {
return item.name
.toLowerCase()
.startsWith(query.toLowerCase());
},
itemSorter: (a, b) {
return a.name.compareTo(b.name);
},
itemSubmitted: (item) {
setState(() {
searchTextField.textField.controller.text = item.name;
});
},
itemBuilder: (context, item) {
return row(item);
},
),
Text(searchTextField.textField.controller.text)
],
),
);
}
}
| gharchive/issue | 2019-09-05T14:37:39 | 2025-04-01T06:38:40.045952 | {
"authors": [
"hossein-hbb"
],
"repo": "felixlucien/flutter-autocomplete-textfield",
"url": "https://github.com/felixlucien/flutter-autocomplete-textfield/issues/55",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1457298803 | [Bug]: Google Chat (Hangout chat) Text input focus lost
Preflight Checklist
[X] I have read the Contributing Guidelines for this project.
[X] I agree to follow the Code of Conduct that this project adheres to.
[X] I have searched the issue tracker for a feature request that matches the one I want to file, without success.
Ferdium Version
6.2.0
Recipe Name
hangoutschat
Recipe Version
1.6.0
Last Known working version of the recipe
n/a
Steps to reproduce
Open any char window
The focus remain on editor box for a second and then focus is lost.
Expected Behavior
Focus should remain on text input.
Actual Behavior
Focus is lost
Screenshots
Not applicable
Additional Information
No response
Same thing with Teams
| gharchive/issue | 2022-11-21T04:38:17 | 2025-04-01T06:38:40.066039 | {
"authors": [
"bassmanitram",
"build3r"
],
"repo": "ferdium/ferdium-recipes",
"url": "https://github.com/ferdium/ferdium-recipes/issues/242",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1694767056 | Skype & Discord icon update
Pre-flight Checklist
Please ensure you've completed all of the following.
[x] I have read the Contributing Guidelines for this project.
[x] I agree to follow the Code of Conduct that this project adheres to.
Description of Change
Updated the Skype and Discord logos to their current forms.
Hi @Arthur-Huan thanks for the PR. In order for the change to be pushed to users, the version of the recipe in their corresponding package.json need to be increased (by adding 1 to the patch number for each of them).
| gharchive/pull-request | 2023-05-03T20:33:00 | 2025-04-01T06:38:40.068850 | {
"authors": [
"Alphrag",
"Arthur-Huan"
],
"repo": "ferdium/ferdium-recipes",
"url": "https://github.com/ferdium/ferdium-recipes/pull/350",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
894243604 | Duodecimals functions
Complete
src>>fermulerpy>>elementary>>duodecimals.py
no need
| gharchive/issue | 2021-05-18T10:47:29 | 2025-04-01T06:38:40.076494 | {
"authors": [
"MAG-BOSS"
],
"repo": "fermulerpy/fermulerpy",
"url": "https://github.com/fermulerpy/fermulerpy/issues/36",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1599373302 | CI/deploy for search index (data.json)
@karthik2804 and I were discussing the following pain point: Currently, this website's search index (static/data.json) needs to be updated in each applicable PR (any PRs updating documentation content, no matter how small, are applicable). There is a command to do so (npm run build-index) and a note/reminder on the PR template, but it is still an extra step for contributors -- not to mention it introduces the common scenario of merge conflicts occuring to in-flight PRs as others are merged in.
Therefore, we'd like to find a solution where CI/automation does this chore work in the background, removing the need for contributor PRs to update this file (and eliminating the frequent merge conflict potential).
In brainstorming with @karthik2804, these are the top candidates that seemed preferable to some other scenarios discussed.
Context
Currently, the website itself is published to bindle as a Spin app after cloning this repo at a configured branch and/or commit. The live website consists of a spin up --bindle-id command using the published bindle ID.
Publish/deploy from OCI registry reference
Added below, bumped up to top potential candidate (bonus: dogfoods Spin's newly-added OCI reference support):
On every push to main, an automation agent (eg GH action) would clone the repo and run npm run build-index, then publish the website (Spin app) to an OCI registry (obvious choice: ghcr.io/fermyon/developer) via spin registry push. We'd remove Bindle from the equation and the website Nomad job would be updated to run from the pushed image reference, eg spin up -f ghcr.io/fermyon/developer:<tag>. As the search index is commited in the form of an image, we'd .gitignore the file.
Considerations: To achieve parity with current deployment workflows, which allow for deploying from arbitrary branches/commits on the fermyon origin, we'd perhaps want to add publishing of images on PRs (again just for branches on the fermyon org). Or, we could decide that ad hoc/out-of-band publishing by those with access to this repo's container registry is sufficient prior to non-main deploys. For the default website image, we could use a mutable tag like latest that would be updated on every push to main. Alternatively, we could follow the convention of using unique/"immutable" tags but would want to look into storage costs and/or automated cleanup.
Alternative:
Deploy website from branch other than main
This retains current behavior of tracking the search index in git, albeit via a different branch from main.
On every push to main, an automation agent (eg GH action) would clone the repo and run npm run build-index. To avoid churn from then having the agent push to main again (if so, we'd have one automation commit paired with every contributor commit to main), automation would push its changes to a separate branch, say, deploy (where static/data.json will still be tracked by git, as opposed to on main where we'd .gitignore it).
The website would then be deployed from the deploy branch, similar in spirit to the classic gh-pages approach. The deploy action would be updated to watch push events to this branch and the publish/website jobs would be updated similarly.
Thoughts/feedback @tpmccallum, others?
You know what, @karthik2804, we could also have the GH action publish the site to an OCI registry (obvious choice: ghcr.io/fermyon/developer) and then we could just remove bindle from the mix and update the website Nomad job to run from the reference, eg spin up -f ghcr.io/fermyon/developer:<tag>. We wouldn't need a separate deploy branch as the data.json changes would only be committed in the form of said image.
That sounds like a good idea to me @vdice.
Thanks @karthik2804, I updated the original issue description w/ the OCI approach. Added a note around your question (out-of-band) around deploying arbitrary branches/commits and potential storage costs of accrued OCI tags -- good points to raise.
I would love to see this. data.json is one of the banes of my life.
Is the "Deploy website from branch other than main" approach able to be implemented in the short term to trial?
I really like this idea.
@vdice @karthik2804 is there anything you need from me; testing/usage?
I think implementing a solution to the data.json file conflicts would be epic.
@tpmccallum I can revise https://github.com/fermyon/developer/pull/423 to allow deployments from branches other than main (which is possible today using the bindle-based approach, so it would be maintaining feature parity).
Apologies for having the draft PR sit so long. To utilize GHCR, which is the most convenient container registry for this purpose, it being provided/paired to this self-same repo, we need a future release of the spin cli with its oci client updated (primarily to get concurrent pushes and pulls, so we don't time out attempting to push this Developer website app, what with its many layers of static assets). @karthik2804 and I were talking about this today, actually, and we should be good to update the cli to use our fork of this oci library (see https://github.com/fermyon/oci-distribution).
Alternatively, we could utilize fermyon's DockerHub account and move this forward. This would take a bit more config (eg passing in credentials for signing in to the registry) but certainly do-able.
While we mull over the preferred registry approach, I can update the draft PR with the changes mentioned in the first paragraph above...
| gharchive/issue | 2023-02-24T22:59:31 | 2025-04-01T06:38:40.089348 | {
"authors": [
"itowlson",
"karthik2804",
"tpmccallum",
"vdice"
],
"repo": "fermyon/developer",
"url": "https://github.com/fermyon/developer/issues/369",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1612901318 | Verify developer docs subdomain
Signed-off-by: tpmccallum tim.mccallum@fermyon.com
Fixed by https://github.com/fermyon/developer/pull/426
| gharchive/pull-request | 2023-03-07T07:41:25 | 2025-04-01T06:38:40.091250 | {
"authors": [
"tpmccallum"
],
"repo": "fermyon/developer",
"url": "https://github.com/fermyon/developer/pull/426",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1370890142 | Question on (error) logging
I have a catch clause:
catch (Exception ex)
{
// TODO: how to log this properly? (Console?)
exception = ex.ToString();
}
https://github.com/christophwille/SpinHello/blob/27ee9a28351866fd167ed10039829ba6b8e704eb/src/Handler/Handler.cs#L84
I remember the comparison to CGI with error console out; does this apply/work in .NET that way too?
Console.WriteLine works — Spin captures both standard output and standard error and sends them to log files in ~/.spin/<application-name>/logs/.
You can also run spin up --follow-all to get the logs directly.
Ok, so basically one more thing to properly wrap to be to unit test "Did it log error conditions properly?" Maybe I can reuse ConsoleLogger/ILogger.
My idea with doing a standard ILogger didn't fly, I documenting it here if someone else has the same idea:
var loggerFactory = LoggerFactory.Create(builder =>
{
builder.AddFilter("spin", LogLevel.Debug)
.AddConsole();
});
Logger = loggerFactory.CreateLogger("spin");
Unhandled Exception:
System.TypeInitializationException: The type initializer for 'SpinHello.Handler' threw an exception.
---> System.PlatformNotSupportedException: Operation is not supported on this platform.
at System.Threading.Thread.ThrowIfNoThreadStart()
at System.Threading.Thread.Start(Boolean captureContext)
at System.Threading.Thread.Start()
at Microsoft.Extensions.Logging.Console.ConsoleLoggerProcessor..ctor()
at Microsoft.Extensions.Logging.Console.ConsoleLoggerProvider..ctor(IOptionsMonitor`1 options, IEnumerable`1 formatters)
at System.Reflection.RuntimeConstructorInfo.InvokeNonEmitUnsafe(Object obj, IntPtr* byrefParameters, Span`1 argsForTemporaryMonoSupport, BindingFlags invokeAttr)
at System.Reflection.ConstructorInvoker.InvokeUnsafe(Object obj, IntPtr* args, Span`1 argsForTemporaryMonoSupport, BindingFlags invokeAttr)
at System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitConstructor(ConstructorCallSite constructorCallSite, RuntimeResolverContext context)
at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2[[Microsoft.Extensions.DependencyInjection.ServiceLookup.RuntimeResolverContext, Microsoft.Extensions.DependencyInjection, Version=6.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60],[System.Object, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].VisitCallSiteMain(ServiceCallSite callSite, RuntimeResolverContext argument)
at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitRootCache(ServiceCallSite callSite, RuntimeResolverContext context)
at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2[[Microsoft.Extensions.DependencyInjection.ServiceLookup.RuntimeResolverContext, Microsoft.Extensions.DependencyInjection, Version=6.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60],[System.Object, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].VisitCallSite(ServiceCallSite callSite, RuntimeResolverContext argument)
at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitIEnumerable(IEnumerableCallSite enumerableCallSite, RuntimeResolverContext context)
at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2[[Microsoft.Extensions.DependencyInjection.ServiceLookup.RuntimeResolverContext, Microsoft.Extensions.DependencyInjection, Version=6.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60],[System.Object, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].VisitCallSiteMain(ServiceCallSite callSite, RuntimeResolverContext argument)
at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitRootCache(ServiceCallSite callSite, RuntimeResolverContext context)
at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2[[Microsoft.Extensions.DependencyInjection.ServiceLookup.RuntimeResolverContext, Microsoft.Extensions.DependencyInjection, Version=6.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60],[System.Object, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].VisitCallSite(ServiceCallSite callSite, RuntimeResolverContext argument)
at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitConstructor(ConstructorCallSite constructorCallSite, RuntimeResolverContext context)
at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2[[Microsoft.Extensions.DependencyInjection.ServiceLookup.RuntimeResolverContext, Microsoft.Extensions.DependencyInjection, Version=6.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60],[System.Object, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].VisitCallSiteMain(ServiceCallSite callSite, RuntimeResolverContext argument)
at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitRootCache(ServiceCallSite callSite, RuntimeResolverContext context)
at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2[[Microsoft.Extensions.DependencyInjection.ServiceLookup.RuntimeResolverContext, Microsoft.Extensions.DependencyInjection, Version=6.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60],[System.Object, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].VisitCallSite(ServiceCallSite callSite, RuntimeResolverContext argument)
at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope)
at Microsoft.Extensions.DependencyInjection.ServiceProvider.CreateServiceAccessor(Type serviceType)
at System.Collections.Concurrent.ConcurrentDictionary`2[[System.Type, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Func`2[[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope, Microsoft.Extensions.DependencyInjection, Version=6.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60],[System.Object, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].GetOrAdd(Type key, Func`2 valueFactory)
at Microsoft.Extensions.DependencyInjection.ServiceProvider.GetService(Type serviceType, ServiceProviderEngineScope serviceProviderEngineScope)
at Microsoft.Extensions.DependencyInjection.ServiceProvider.GetService(Type serviceType)
at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetService[ILoggerFactory](IServiceProvider provider)
at Microsoft.Extensions.Logging.LoggerFactory.Create(Action`1 configure)
at SpinHello.Handler..cctor()
--- End of inner exception stack trace ---
I added logging like this https://github.com/christophwille/SpinHello/blob/abef0de9810abe2894f1906e5dd740e672f19b34/src/Handler/Handler.cs#L98 (implemented via https://github.com/christophwille/SpinHello/blob/abef0de9810abe2894f1906e5dd740e672f19b34/src/Handler/SpinLogger.cs). That also allows me to mock the thing.
Thanks for working through this and taking the time to document your solutions - really appreciate it!
| gharchive/issue | 2022-09-13T05:45:52 | 2025-04-01T06:38:40.097062 | {
"authors": [
"christophwille",
"itowlson",
"radu-matei"
],
"repo": "fermyon/spin-dotnet-sdk",
"url": "https://github.com/fermyon/spin-dotnet-sdk/issues/39",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1268838213 | Update Headers Env Routes Integration Test to use Rust SDK.
Following up on #534 for #216, this updates the headers-env-routes-test test binary used by spin's integrations.
Signed-off-by: elias elias.jm.garcia@gmail.com
Realizing I jumped the gun because the integration is now failing. I probably won't have the time to sit down and correct the test behavior until tomorrow night or Tuesday (so apologies on my part) but my debugging seems to indicate that I entirely failed to insert the headers??? :upside_down_face:
Hi @ejmg, thank you for your help in updating tests to use the SDK. We've now closed out the issue tracking these updates (https://github.com/fermyon/spin/issues/216) and so I'll close this Draft PR. (Thanks for laying the groundwork in this PR as well!)
| gharchive/pull-request | 2022-06-13T03:10:34 | 2025-04-01T06:38:40.100596 | {
"authors": [
"ejmg",
"vdice"
],
"repo": "fermyon/spin",
"url": "https://github.com/fermyon/spin/pull/565",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
2354048463 | feat(apps): add password hasher app
Adds a password hasher app with toggles for cpu (iterations), mem usage, password value and sleep
Ok, sounds like we're fine to get this in as-is and tweak/tune as needed.
| gharchive/pull-request | 2024-06-14T20:31:12 | 2025-04-01T06:38:40.101689 | {
"authors": [
"vdice"
],
"repo": "fermyon/spinkube-performance",
"url": "https://github.com/fermyon/spinkube-performance/pull/70",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
2283368009 | fix: treat multipart form as form
adds a more robust way to parse and check media types (case-insensitive, and aware of parameters, i.e. charset=utf-8)
updates parseFileUploadRequest to check if the media type is a multipart formdata rather than isFile=true
@abvthecity looks like an ete test is failing, otherwise this looks great
| gharchive/pull-request | 2024-05-07T13:34:25 | 2025-04-01T06:38:40.103031 | {
"authors": [
"abvthecity",
"dsinghvi"
],
"repo": "fern-api/fern",
"url": "https://github.com/fern-api/fern/pull/3553",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
126051944 | function expression vs statement
I was wondering about folks preference in regards to expression vs statements.
Clearly it's important to understand the differences between the two in regards hoisting and also the use cases of each but there are often times where either could be used.
I can't find a recommendation - is there a guideline or for this in standardjs?
I see there's the "Enforce Function Style (func-style)" rule in ES Lint. I don't think I'm suggesting this be implemented but it would be nice to have an official line on the preferred approach.
Many thanks
Dave
Could you post some example code? Probably easier to self-parse and understand what you're referring to?
Hi Daniel,
Thanks for your reply.
I'm generally referring to 'private' helper type functions that don't have value outside of their enclosing function. Take the save function below.
Here a function expression or declaration would suffice. For consistency, which one should I opt for?
/*
* Example adding a comment with an optional replyToId
*/
function addComment (body, inReplyToId, callback) {
// Define the save function with a function declaration
function save (comment) {
comment.save(function (err) {
if (err) {
callback(err)
}
callback(null, comment)
})
}
// The above function could have been a function expression...
// var save = function (comment) {
// comment.save(function (err) {
// if (err) {
// callback(err)
// }
// callback(null, comment)
// })
// }
if (inReplyToId) {
Comment.findById(inReplyTo, function (err, doc) {
if (err) {
callback(err)
}
save(new Comment({ body: body, inReplyTo: doc.id }))
})
} else {
save(new Comment({ body: body }))
}
}
Hope this helps
Dave
I personally opt for function save, but I don't think there is a hard-rule for this in standard.
Maybe there should be.
@feross ?
xo has one. I don't mind it.
Likewise I have opted for function save () {...} in the past. This is the also the advice from Crockford.
More recently I have noticed people using var save = function () {...} quite a lot.
While I don't have a strong preference, I would like to see some consistency within code base/across teams.
More recently though I have noticed people using var save = function () {...} a lot more.
Probably because you have to use that syntax if you are using context capturing lambdas:
var save = () => {}
I use arrow functions with callbacks or when I need to preserve context.
I'm not sure this holds true anymore, since it seems most engines have improved this by now... But it used to be that the following would give you worse stack traces:
// Anonymous function
const foo = function () {}
// Could be fixed by giving it a name
const foo = function foo () {}
With babel the default behavior seems to be to name the function:
Function declarations are preferred.
Function declarations have more intuitive hoisting behavior, i.e. you can use the function anywhere that's in-scope. With function expressions, only the variable is hoisted, so you can only use the function after the line where the assignment occurs.
Just tried enabling func-style to enforce function declarations, while making an exception for arrow function expressions, and got this result:
# tests 427
# pass 331
# fail 96
Full output: https://gist.github.com/feross/0d57fdddde82f55d618a
It's a high number, so leaning toward not enabling this. Much as I like it. Maybe if we do standard-strict?
For documentation, here's the rule I tested with:
"func-style": [2, "declaration", { "allowArrowFunctions": true }]
@feross how about V6? I think it is a reasonable enough change and absolutely in the spirit of our existing rules.
@dcousens Agreed, but it's quite a bit of breakage (22% of the ecosystem).
@feross its also a break that could probably be resolved with a regex expression.
%sno/var \(\.\+\) = function \.\*(/function \1 (/gc
closing - we can move discussion of potential "next gen" or big breaking rule to the standard-strict issue: https://github.com/feross/standard/issues/382
| gharchive/issue | 2016-01-11T22:29:10 | 2025-04-01T06:38:40.115000 | {
"authors": [
"cesarandreu",
"davidjamesstone",
"dcousens",
"feross",
"rstacruz"
],
"repo": "feross/standard",
"url": "https://github.com/feross/standard/issues/381",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
303476914 | Republish with updated NPM
The version of module which is currently published in npm registry appears to be affected by this npm bug:
https://github.com/npm/npm/issues/16734
Which prevents the application using this module (indirectly) from being deployed on Amazon AWS:
https://github.com/aws/aws-cli/issues/2639
Republishing the module using newer (or stable) version of npm should resolve the issue.
Installed the latest Node.js LTS and npm and republished. Hope this fixes the issue for you.
node -v
v8.10.0
npm -v
5.7.1
Published as 3.1.5.
| gharchive/issue | 2018-03-08T13:20:49 | 2025-04-01T06:38:40.118262 | {
"authors": [
"feross",
"sunrize531"
],
"repo": "feross/typedarray-to-buffer",
"url": "https://github.com/feross/typedarray-to-buffer/issues/14",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
2531932153 | Create issue templates
Add issue templates, see https://github.com/Skullians/ferrumc/issues/new/choose for a demo.
I approve
sick
| gharchive/pull-request | 2024-09-17T19:26:21 | 2025-04-01T06:38:40.119588 | {
"authors": [
"Skullians",
"Sweattypalms"
],
"repo": "ferrumc-rs/ferrumc",
"url": "https://github.com/ferrumc-rs/ferrumc/pull/50",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1632276401 | 🛑 Documentation is down
In 476912a, Documentation ($DOCUMENTATION) was down:
HTTP code: 0
Response time: 0 ms
Resolved: Documentation is back up in 89ad6ad.
| gharchive/issue | 2023-03-20T14:53:26 | 2025-04-01T06:38:40.121663 | {
"authors": [
"ferry-watchdog"
],
"repo": "ferry-develops/status-page",
"url": "https://github.com/ferry-develops/status-page/issues/10",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
290316373 | Error when starting
Platform (Hardware/OS):
Unbuntu 16
Node version:
8.9.4
MagicMirror version:
2.2.2
Module version:
Lastest Master
Description of the issue:
when starting it intializes then goes right to ERROR
When run in debug: true it says undefined.
I ran the command line and my mic is 0.....
Not sure what's undefined but I've tried the mic at 0 and 1......still get ERROR
Not sure how I missed that. Thanks, homie.
hi fewieden, i tried the two commands:
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
sudo ldconfig
but nothing showed up. i check the file directory and i cant seem to find any ldconfig file (also in hidden mode). it is missing somewhere?
It starts from initializing then ready choose a mode and immediately goes to ERROR, i checked the error.log it shows 1 1 1 1 1 1 ...
| gharchive/issue | 2018-01-21T23:27:18 | 2025-04-01T06:38:40.135403 | {
"authors": [
"adbeem",
"cowboysdude",
"mikeb8319"
],
"repo": "fewieden/MMM-voice",
"url": "https://github.com/fewieden/MMM-voice/issues/20",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
167512761 | 使用setCotent出错
ueditor编辑器bug建议修复:
版本:1.4.3.3和1.4.3.2都有此bug
错误:ueditor.all.js:7320 Uncaught TypeError: Cannot set property 'innerHTML' of undefined
备注:onload的事件中调用setContent设置内容时出错,但是onClick事件中调用setContent设置内容时又是正常的,真实奇葩的bug,请求修复!
我也是,后来这样就没报错了。
ue.ready(function(){ue.setContent(v);});
| gharchive/issue | 2016-07-26T03:19:11 | 2025-04-01T06:38:40.160431 | {
"authors": [
"iamziyue",
"zhang1096646030"
],
"repo": "fex-team/ueditor",
"url": "https://github.com/fex-team/ueditor/issues/2951",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
100029714 | Markdown interpretation caching
Now every time an article gets loaded, its markdown content is compiled to html, and this makes the page flickers for a moment just after the click.
Possible solutions:
Compile the markdown to html on app loading, and cache everything (client side). Downside: long app loading time.
"Memoize" the markdown compilation, so compiling it only the first time and caching the result (client side). Downside: still flickering.
Compile everything server side. Downside: there's the possibility of having to send two copies of the data (one with html, and one without - for searching)
Is this really necessary?
| gharchive/issue | 2015-08-10T10:26:51 | 2025-04-01T06:38:40.162306 | {
"authors": [
"ff-"
],
"repo": "ff-/markiki",
"url": "https://github.com/ff-/markiki/issues/4",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
642314222 | Auto detection of Noise and servers spitting the same stuff at u
say we are doing enum I see this so much a host would spit nonsense back at us
cart [Status: 200, Size: 49144, Words: 2617, Lines: 11]
partner [Status: 200, Size: 49144, Words: 2617, Lines: 11]
tv [Status: 200, Size: 49144, Words: 2617, Lines: 11]
demo [Status: 200, Size: 49144, Words: 2617, Lines: 11]
employment [Status: 200, Size: 49144, Words: 2617, Lines: 11]
trans [Status: 200, Size: 49144, Words: 2617, Lines: 11]
board [Status: 200, Size: 49144, Words: 2617, Lines: 11]
local [Status: 200, Size: 49144, Words: 2617, Lines: 11]
45 [Status: 200, Size: 49144, Words: 2617, Lines: 11]
if it was python i know what i would do but go i do not do that
if its a 200 status code and the size is the same as well as the words and the size and status code alone could be used as a moc noise reducer could u consider adding this?
or say host is responding with the same content for all 200's seems like a fake response or firewall or something or if its does what did i miss lol
Manually detect what are "fake positives" or "noisy", stop ffuf and run again with more calibration:
ffuf -acc local
It will fetch local, then add this to filtering config.
Yeah, if you are ok with the preconfigured requests (some random strings etc.), you can use -ac as well.
I'm closing this issue as I feel that it's resolved, in case you disagree, let me know and I'll open it again to continue the discussion.
| gharchive/issue | 2020-06-20T05:37:50 | 2025-04-01T06:38:40.171807 | {
"authors": [
"bsysop",
"devcoinfet",
"joohoi"
],
"repo": "ffuf/ffuf",
"url": "https://github.com/ffuf/ffuf/issues/256",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2412132934 | [US02] Recuperar senha
Descrição
Eu, como Cuidador, desejo recuperar minha senha para que eu possa fazer login na plataforma, caso perca o acesso a senha cadastrada.
Nessa tarefa, deve haver um botão de esqueci minha senha na tela de login, ao clicar neste botão o usuário é encaminhado para uma tela onde informará seu email para que receba um link. Ao clicar neste link será encaminhado para uma tela onde será possível cadastrar a nova senha.
Pré-requisitos
#53
Critérios de Aceitacao
[ ] Deve haver a opção "Esqueci minha senha" na tela de login.
[ ] Ao clicar no botão "Esqueci minha senha", o usuário deve ser redirecionado para uma tela onde poderá informar seu email.
[ ] A tela de recuperação de senha deve incluir um campo para o usuário inserir seu email.
[ ] Deve haver um botão "Enviar" na tela de recuperação de senha.
[ ] Se o campo de email estiver vazio ou não contiver um formato de email válido, uma mensagem de erro apropriada deve ser exibida (ex: "Por favor, insira um email válido").
[ ] Ao inserir um email válido e clicar em "Enviar", o sistema deve enviar um email para o endereço fornecido.
[ ] O email deve conter um link para a página de redefinição de senha.
[ ] A tela de redefinição de senha deve incluir campos para "Nova Senha" e "Confirmar Nova Senha".
[ ] Os campos de senha devem seguir a política de segurança (ex: mínimo de 8 caracteres, pelo menos uma letra maiúscula, uma minúscula, um número e um caractere especial).
[ ] Deve haver um botão "Redefinir Senha".
[ ] Se a validação for bem-sucedida, a nova senha deve ser salva e o usuário deve ser notificado com uma mensagem de confirmação (ex: "Sua senha foi redefinida com sucesso").
[ ] Se houver erros na validação, mensagens de erro apropriadas devem ser exibidas.
Protótipo
Tela inicial
A tela de cadastro de nova senha será adicionada no protótipo
Adicionar a sincronizaçao do user
Refatorar o banco pra ficar igual o banco do serviço de user
Fazer estratégia de login (logar de fato)
| gharchive/issue | 2024-07-16T22:18:30 | 2025-04-01T06:38:40.190838 | {
"authors": [
"AmandaNbr"
],
"repo": "fga-eps-mds/2024-1-GEROcuidado-Doc",
"url": "https://github.com/fga-eps-mds/2024-1-GEROcuidado-Doc/issues/52",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
314362981 | TS62 - Inconsistência na especialização do usuário
Concertar bug na especialização do usuário.
Sobre o que fizemos:
Precisávamos impedir a múltipla especialização de um usuário em todas as models. Pra resolver isso nós adicionamos um novo atributo na model_user que é um bool falso por padrão, um contador inicializado em 0 que continua 0 se o user base não tem especializações e aumenta 1 pra cada especialização (mas isso não vai ocorrer). E sobrescrevemos o método def clean() que é um validador do django: ele checa o contador citado anteriormente e atribui falso pro bool se ele for 0, true se for 1 e erro se >1.
Nas models especializadas adicionamos um post_delete (na verdade foi o Sconetto) que após uma especialização ser deletada ele seta o user base dessa especialização pra ter o valor de has_specialization (o bool que adicionamos) de volta pra False.
O que deveria acontecer:
Ao criar um usuário especializado o has_specializations vai para True. Ao deletá-lo o has_specializations deveria voltar para False.
O que está acontecendo:
Está inconsistente então vamos por model:
Na doctor ele muda o has_specialization para True na criação mas não volta pra False na deleção.
Na employee ele muda o has_specialization para True na criação mas não volta pra False na deleção.
Na patient e no responsible ele NÃO muda o has_specialization para True na criação, o que faz o user ainda ser listado como possível usuário a ser especializado. Porém se você tentar reespecializar esse user você não consegue ( o que é um bom sinal). Ao excluir o bool continua falso mas você pode especializar o user base novamente (ou seja, comportamento correto).
O que deve ser alterado:
Doctor & employee: fazer o bool ir para false na deleção.
Patient & Responsible: fazer o bool ir para true na criação.
Observações:
~Doctor & employee tiveram o método delete sobrescrito, mas o Patient & Responsible não. Isso é algo que pode indicar o caminho por onde ir.~
update:consegui fazer model Patient e Responsible setarem o bool pra True, mas eles não retornam pra false na exclusão (estão iguais doctor e employee agora). Pra fazer isso é só adicionar
| gharchive/issue | 2018-04-14T21:22:51 | 2025-04-01T06:38:40.198797 | {
"authors": [
"ebmm01",
"marimendes"
],
"repo": "fga-gpp-mds/2018.1-Dr-Down",
"url": "https://github.com/fga-gpp-mds/2018.1-Dr-Down/issues/135",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
383184583 | Animated in wkwebview does not rotate
under certain circumstances,Animated in wkwebview does not rotate
@theodorejb Oh man, I am using a very old version. It doesn't even have a version. Just: Copyright (c) 2011-2013 Felix Gnass. I am also using the jquery.spin.js as well. This is for an old project started in 2013... I have this spinner everywhere. I really don't want to refactor. Can you think of anything I could try to fix it?
@fgnass @theodorejb I am looking to upgrade to the latest https://spin.js.org/spin.umd.js, but I would love to use the old jquery.spin.js interface...
Any thoughts on how I might modify the old jquery interface to work with the new spin.umd.js? Right now its throwing and error: Error: Spin.js not present
/**
* Copyright (c) 2011-2013 Felix Gnass
* Licensed under the MIT license
*/
/*
Basic Usage:
============
$('#el').spin(); // Creates a default Spinner using the text color of #el.
$('#el').spin({ ... }); // Creates a Spinner using the provided options.
$('#el').spin(false); // Stops and removes the spinner.
Using Presets:
==============
$('#el').spin('small'); // Creates a 'small' Spinner using the text color of #el.
$('#el').spin('large', '#fff'); // Creates a 'large' white Spinner.
Adding a custom preset:
=======================
$.fn.spin.presets.flower = {
lines: 9
length: 10
width: 20
radius: 0
}
$('#el').spin('flower', 'red');
*/
(function(factory) {
if (typeof exports == 'object') {
// CommonJS
factory(require('jquery'), require('spin'))
}
else if (typeof define == 'function' && define.amd) {
// AMD, register as anonymous module
define(['jquery', 'spin'], factory)
}
else {
// Browser globals
if (!window.Spinner) throw new Error('Spin.js not present')
factory(window.jQuery, window.Spinner)
}
}(function($, Spinner) {
$.fn.spin = function(opts, color) {
return this.each(function() {
var $this = $(this),
data = $this.data();
if (data.spinner) {
data.spinner.stop();
delete data.spinner;
}
if (opts !== false) {
opts = $.extend(
{ color: color || $this.css('color') },
$.fn.spin.presets[opts] || opts
)
data.spinner = new Spinner(opts).spin(this)
}
})
}
$.fn.spin.presets = {
tiny: { lines: 8, length: 2, width: 2, radius: 3 },
small: { lines: 8, length: 4, width: 3, radius: 5 },
large: { lines: 10, length: 8, width: 4, radius: 8 }
}
}));
@benmcmaster I think you would have to replace window.Spinner with window.Spin.Spinner.
@theodorejb Ah cool. Thanks! I actually ended up just setting window.Spinner = Spinnerin spin.js and everything worked perfectly.
| gharchive/issue | 2018-11-21T15:57:54 | 2025-04-01T06:38:40.204157 | {
"authors": [
"benmcmaster",
"elandTong",
"theodorejb"
],
"repo": "fgnass/spin.js",
"url": "https://github.com/fgnass/spin.js/issues/365",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
123375679 | Swimlane filters not working consistenly in (Board, List or Gantt Views)
Hello,
I may have found a bug. I have stood up kanboard on a Ubuntu 14.04 LTS box with postgres as my database backend. While working on some tasks with my team I found that I was not able to isolate tasks by swimlanes in any of the views consistently. Below our examples of the filters I used.
Did Not Work
status:open swimlane:"Relocation and Consolidation Project"
Worked
status:open swimlane:"*Management Tasks" - Worked
status:open swimlane:default
After further review there appears to be some type of string limit on the length of the swimline filter. Also, I currently have 9 Swimlanes and growing on the board this issue was discovered.
Thank You
maybe related. on a fresh install, created private project, created two tasks (with a start and other with due date). i closed one task. then to show it, filter by "closed tasks". then "clear filter".
if i then navigate to list or gant, it somehow re-applies some filter. It took some time, and selecting other filters before it started showing task and working again.
ps. love the amazing software, kuddos.
| gharchive/issue | 2015-12-21T22:53:24 | 2025-04-01T06:38:40.215710 | {
"authors": [
"GDmac",
"seancarson"
],
"repo": "fguillot/kanboard",
"url": "https://github.com/fguillot/kanboard/issues/1582",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
1425760637 | adding start to budgeting
We will definitely need help from Sandy etc. to make sure we aren't summarizing this incorrectly and to make it more understandable to people who are less familiar with grant language.
I pulled some directly from the websites and I find it a bit confusing still, but at least this gives people something to review.
@cansavvy this is interesting... the url page is blank yet it says there is a broken url
@cansavvy this is interesting... the url page is blank yet it says there is a broken url
It’s telling me ‘no broken urls’ in the comment above.
@cansavvy this is interesting... the url page is blank yet it says there is a broken url
It’s telling me ‘no broken urls’ in the comment above.
huh ok I guess it just didn't refresh that for me - I made an issue about this in the reports repo
I guess maybe we would just want to tell people to refresh then
| gharchive/pull-request | 2022-10-27T14:45:29 | 2025-04-01T06:38:40.218714 | {
"authors": [
"cansavvy",
"carriewright11"
],
"repo": "fhdsl/NIH_Data_Sharing",
"url": "https://github.com/fhdsl/NIH_Data_Sharing/pull/23",
"license": "CC-BY-4.0",
"license_type": "permissive",
"license_source": "github-api"
} |
2099082000 | Feature Request: Shortened URL
I'd like to see an option to have a shorter URL, basically a hash of the nevent1, similar to PasteBin.
So in paralel to the https://njump.me/nevent1qqs... scheme maybe something like https://njump.me/s/YA9FX4
This option would also enable to direct someone to the note or stuff by phone, for example.
Love njump, helps easing the path to Nostr, keep up the good work!
You mean people say these characters with their voice over a phone? Have you ever done that?
I don't think it's good for njump to integrate link shortening, it's important to keep the URL paths common, and if any njump goes down, we can easily get information about the event via the URL path. Short links are good for humans to read and dictate, but they can lead to Link Rot that can't be remedied later.
Here is a njump nevent link rendering from telegram:
The first 40% real estate is gibberish. I support at the least an option to for gibberish reduction.
cc @dtonon
Here's an implementation by nostr dev @jinglescode https://github.com/jinglescode/nostr-url-shortener
just add a GET request
GET https://w3.do/get?url=<url>
For example: https://w3.do/get?url=https://github.com/jinglescode/nostr-url-shortener
Here is a njump nevent link rendering from telegram:
The first 40% real estate is gibberish. I support at the least an option to for gibberish reduction.
cc @dtonon
So the Instant View if Telegram is not enabled?
That means the 'Open Graph' tags are missing.
Will make an Issue for that.
I agree with @cxplay.
The first 40% real estate is gibberish.
This gibberish is necessary to avoid making event retrieval too complex or fragile.
If someone really needs a short url, they can use a layer 2 such as w3.do, also based on Nostr.
I agree with @cxplay
I also agree
| gharchive/issue | 2024-01-24T20:51:13 | 2025-04-01T06:38:40.238810 | {
"authors": [
"alltheseas",
"cxplay",
"dtonon",
"fiatjaf",
"henkvantijen",
"jinglescode"
],
"repo": "fiatjaf/njump",
"url": "https://github.com/fiatjaf/njump/issues/34",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2402259109 | Tracing UI with hackadoo "Spans"
The goal of this PR is to massage the existing MizuTrace model into something that also contains spans, and can ultimately render a UI like this:
Took data modeling inspo from Otel conventions as well as the open PR on the rust side of things to ingest otel traces
Summary
TODO
There are some improvements possible like for instance limiting the response that is being displayed atop the request details and making some other sections collapsible
yes yes - very good catch. i just made the summary response section have a max height and be scroll-auto
| gharchive/pull-request | 2024-07-11T05:06:54 | 2025-04-01T06:38:40.241317 | {
"authors": [
"brettimus"
],
"repo": "fiberplane/fpx",
"url": "https://github.com/fiberplane/fpx/pull/67",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2382606762 | No jsx/tsx files found - despite using a valid include glob:
So i get the following error when trying to run npx figma connect
npx figma connect
No jsx/tsx files found. Please update the include/exclude globs in your config file and try again.
Please raise any bugs or feedback at https://github.com/figma/code-connect/issues.
Code Connect CLI version - 1.0.1
Operating system - MACOS 14.5 (23F79)
code connect config file (packages/react/figma.config.json):
{
"codeConnect": {
"include": ["src/**/*.figma.tsx"],
"exclude": [],
"paths": {
"@/*": ["./src/*"]
}
}
}
ts config file:
{
"extends": "@repo/ts-config/react-library.json",
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@/*": ["./src/*"]
}
},
"include": [
"src",
"../../externalTypeOverides.d.ts",
"./index.d.ts",
"jest-setup.ts"
],
"exclude": ["dist", "build", "node_modules"]
}
test code connect file:
// packages/react/src/components/Clickable/Buttons/Button.figma.tsx
import { figma } from "@figma/code-connect";
import { Button } from "@/components/Clickable/Buttons";
figma.connect(
Button,
"https://www.figma.com/design/oHsoXoDsvnhjlbpzSIbHvU/BIOME?node-id=3158-32243&m=dev",
{
props: {
children: figma.string("Any ReactNode content"),
variant: figma.enum("Variant", {
Primary: "primary",
"Primary/Fatal": "primary/fatal",
"Primary/Inverse": "primary/inverse",
Secondary: "secondary",
"Secondary/Fatal": "secondary/fatal",
Tertiary: "tertiary",
"Tertiary/Inverse": "tertiary/inverse",
}),
},
example: () => {
return <Button>aciton</Button>;
},
},
);
Could someone help me understand what im doing wrong here? Or is this a bug?
turns out changing the include glob to:
"include": ["src/**/*.tsx"],
fixes the errors. 🤔
| gharchive/issue | 2024-07-01T01:36:42 | 2025-04-01T06:38:40.420234 | {
"authors": [
"glomotion"
],
"repo": "figma/code-connect",
"url": "https://github.com/figma/code-connect/issues/79",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1330001299 | Text, md file inside Resource directory throws error
Package
filament/filament
Package Version
2.0
Laravel Version
9
Livewire Version
2.10.6
PHP Version
8
Problem description
When i have some other files e.g. txt, md inside the resources directory it throws error. It should only include PHP files and ignore all other extensions.
Expected behavior
There should be no error
Steps to reproduce
Just add any text or md file inside Resources directory
Reproduction repository
Invalid
Relevant log output
ReflectionException:
Class "App\Filament\Resources\CompanyResource\RelationManagers\Readme.md" does not exist
at /Users/khanakia/D1/www/projects/gamerapp/gamer_laravel/vendor/filament/filament/src/FilamentServiceProvider.php:145
at ReflectionClass->__construct('App\\Filament\\Resources\\CompanyResource\\RelationManagers\\Readme.md')
(/Users/khanakia/D1/www/projects/gamerapp/gamer_laravel/vendor/filament/filament/src/FilamentServiceProvider.php:145)
at Filament\FilamentServiceProvider->registerComponents()
(/Users/khanakia/D1/www/projects/gamerapp/gamer_laravel/vendor/filament/filament/src/FilamentServiceProvider.php:81)
at Filament\FilamentServiceProvider->packageRegistered()
(/Users/khanakia/D1/www/projects/gamerapp/gamer_laravel/vendor/spatie/laravel-package-tools/src/PackageServiceProvider.php:36)
at Spatie\LaravelPackageTools\PackageServiceProvider->register()
(/Users/khanakia/D1/www/projects/gamerapp/gamer_laravel/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:686)
at Illuminate\Foundation\Application->register(object(FilamentServiceProvider))
(/Users/khanakia/D1/www/projects/gamerapp/gamer_laravel/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php:75)
at Illuminate\Foundation\ProviderRepository->load(array('Illuminate\\Auth\\AuthServiceProvider', 'Illuminate\\Broadcasting\\BroadcastServiceProvider', 'Illuminate\\Bus\\BusServiceProvider', 'Illuminate\\Cache\\CacheServiceProvider', 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', 'Illuminate\\Cookie\\CookieServiceProvider', 'Illuminate\\Database\\DatabaseServiceProvider', 'Illuminate\\Encryption\\EncryptionServiceProvider', 'Illuminate\\Filesystem\\FilesystemServiceProvider', 'Illuminate\\Foundation\\Providers\\FoundationServiceProvider', 'Illuminate\\Hashing\\HashServiceProvider', 'Illuminate\\Mail\\MailServiceProvider', 'Illuminate\\Notifications\\NotificationServiceProvider', 'Illuminate\\Pagination\\PaginationServiceProvider', 'Illuminate\\Pipeline\\PipelineServiceProvider', 'Illuminate\\Queue\\QueueServiceProvider', 'Illuminate\\Redis\\RedisServiceProvider', 'Illuminate\\Auth\\Passwords\\PasswordResetServiceProvider', 'Illuminate\\Session\\SessionServiceProvider', 'Illuminate\\Translation\\TranslationServiceProvider', 'Illuminate\\Validation\\ValidationServiceProvider', 'Illuminate\\View\\ViewServiceProvider', 'Akaunting\\Money\\Provider', 'Barryvdh\\Debugbar\\ServiceProvider', 'BladeUI\\Heroicons\\BladeHeroiconsServiceProvider', 'BladeUI\\Icons\\BladeIconsServiceProvider', 'Filament\\FilamentServiceProvider', 'Filament\\Forms\\FormsServiceProvider', 'Filament\\Notifications\\NotificationsServiceProvider', 'Filament\\Support\\SupportServiceProvider', 'Filament\\Tables\\TablesServiceProvider', 'Inertia\\ServiceProvider', 'Laravel\\Sail\\SailServiceProvider', 'Laravel\\Sanctum\\SanctumServiceProvider', 'Laravel\\Tinker\\TinkerServiceProvider', 'Livewire\\LivewireServiceProvider', 'Carbon\\Laravel\\ServiceProvider', 'NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider', 'Termwind\\Laravel\\TermwindServiceProvider', 'Spatie\\LaravelIgnition\\IgnitionServiceProvider', 'Spatie\\Permission\\PermissionServiceProvider', 'App\\Providers\\AppServiceProvider', 'App\\Providers\\AuthServiceProvider', 'App\\Providers\\EventServiceProvider', 'App\\Providers\\RouteServiceProvider', 'Spatie\\Permission\\PermissionServiceProvider', 'Barryvdh\\Debugbar\\ServiceProvider'))
(/Users/khanakia/D1/www/projects/gamerapp/gamer_laravel/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:663)
at Illuminate\Foundation\Application->registerConfiguredProviders()
(/Users/khanakia/D1/www/projects/gamerapp/gamer_laravel/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterProviders.php:17)
at Illuminate\Foundation\Bootstrap\RegisterProviders->bootstrap(object(Application))
(/Users/khanakia/D1/www/projects/gamerapp/gamer_laravel/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:239)
at Illuminate\Foundation\Application->bootstrapWith(array('Illuminate\\Foundation\\Bootstrap\\LoadEnvironmentVariables', 'Illuminate\\Foundation\\Bootstrap\\LoadConfiguration', 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'Illuminate\\Foundation\\Bootstrap\\RegisterFacades', 'Illuminate\\Foundation\\Bootstrap\\RegisterProviders', 'Illuminate\\Foundation\\Bootstrap\\BootProviders'))
(/Users/khanakia/D1/www/projects/gamerapp/gamer_laravel/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:153)
at Illuminate\Foundation\Http\Kernel->bootstrap()
(/Users/khanakia/D1/www/projects/gamerapp/gamer_laravel/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:137)
at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
(/Users/khanakia/D1/www/projects/gamerapp/gamer_laravel/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:111)
at Illuminate\Foundation\Http\Kernel->handle(object(Request))
(/Users/khanakia/D1/www/projects/gamerapp/gamer_laravel/public/index.php:52)
at require_once('/Users/khanakia/D1/www/projects/gamerapp/gamer_laravel/public/index.php')
(/Users/khanakia/D1/www/projects/gamerapp/gamer_laravel/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php:16)
@danharrin the issue is within in the main repo so there is no need to create a reproduction repo.
All you have to do is create any non-PHP files e.g README.md under app/Filamnet/Resources directory. that's all
| gharchive/issue | 2022-08-05T14:18:41 | 2025-04-01T06:38:40.435003 | {
"authors": [
"khanakia"
],
"repo": "filamentphp/filament",
"url": "https://github.com/filamentphp/filament/issues/3395",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1590664203 | Custom Action File Upload - Cannot read properties of null (reading '__livewire')
Package
filament/filament
Package Version
v2.0
Laravel Version
v9.19
Livewire Version
No response
PHP Version
PHP 8.0.27
Problem description
The problem is that whenever I tried to upload a csv file using my custom ImportService by calling it inside the action() in my FileUpload, it shows the error below:
Uncaught (in promise) TypeError: Cannot read properties of null (reading '__livewire')
Here is my custom action to import CSV:
Actions\Action::make('Import Student')
->action(fn ($data) => (new ImportService())->import($data['csv']))
->form([
FileUpload::make('csv')
->acceptedFileTypes(['text/csv', 'application/csv'])
->directory('upload-attachments')
])
My Service:
<?php
namespace App\Services;
use App\Imports\StudentImport;
use Illuminate\Support\Facades\Storage;
class ImportService
{
public function import($file)
{
$filePath = "public/$file";
$import = new StudentImport();
$import->import(storage_path("app/$filePath"));
Storage::disk('public')->delete($file);
}
}
My Laravel excel import:
<?php
namespace App\Imports;
use App\Models\Student;
use Maatwebsite\Excel\Concerns\ToModel;
use Maatwebsite\Excel\Concerns\Importable;
use Maatwebsite\Excel\Concerns\SkipsFailures;
use Maatwebsite\Excel\Concerns\SkipsOnFailure;
use Maatwebsite\Excel\Concerns\WithHeadingRow;
use Maatwebsite\Excel\Concerns\WithValidation;
class StudentImport implements ToModel, SkipsOnFailure, WithValidation, WithHeadingRow
{
use SkipsFailures, Importable;
/**
* @param array $row
*
* @return \Illuminate\Database\Eloquent\Model|null
*/
public function model(array $row)
{
return new Student([
'lrn' => $row['lrn'],
'student_no' => $row['student_no'],
'email' => $row['email'],
'first_name' => $row['first_name'],
'middle_name' => $row['middle_name'],
'last_name' => $row['last_name'],
'suffix' => $row['suffix'],
'birthday' => $row['birthday']
]);
}
public function rules(): array
{
return [
'lrn' => 'required|digits:12|min:12|max:12|unique:students,lrn',
'student_no' => 'required|unique:students,student_no',
'email' => 'required|email|unique:students,email',
'first_name' => 'required|string',
'middle_name' => 'required|string',
'last_name' => 'required|string',
'suffix' => 'nullable|string',
'birthday' => 'required|date'
];
}
}
Expected behavior
I can upload the file successfully and see the records in my table so I can say that it's sucess.
Steps to reproduce
Clone my the Reproduction repository:
https://github.com/199ocero/filament-school
And just:
composer install
Reproduction repository
https://github.com/199ocero/filament-school
Relevant log output
Uncaught (in promise) TypeError: Cannot read properties of null (reading '__livewire')
at SupportAlpine.js:53:36
at Object.get (module.esm.js:398:16)
at Object.get (module.esm.js:308:14)
at getUploadedFileUrlsUsing (eval at r (module.esm.js:471:14), <anonymous>:13:17)
at Proxy.<anonymous> (module.esm.js:23921:40)
at c (module.esm.js:2:1)
at Generator.<anonymous> (module.esm.js:2:1)
at Generator.next (module.esm.js:2:1)
at Ic (module.esm.js:2:1)
at a (module.esm.js:2:1)
We're using the filament/forms package to generate custom forms on a Laravel application and we meet the exact same issue.
If the form contains a file upload field/component, at submission, the same console error message appears. The file is uploaded but it polutes our sentry log with the same error message.
Also having this issue. I have a Table component, which has 2 forms (create and edit). In this forms, I upload images.
When I edit a model and I upload and store an image, I get this:
SupportAlpine.js:49 Alpine: Cannot reference "$wire" outside a Livewire component.
(anonymous) @ SupportAlpine.js:49
get @ module.esm.59f83f7d.js:1
get @ module.esm.59f83f7d.js:1
getUploadedFileUrlsUsing @ VM2658:13
getUploadedFileUrls @ module.esm.59f83f7d.js:227
getFiles @ module.esm.59f83f7d.js:227
(anonymous) @ module.esm.59f83f7d.js:227
(anonymous) @ module.esm.59f83f7d.js:5
SupportAlpine.js:53 Uncaught (in promise) TypeError: Cannot read properties of null (reading '__livewire')
at SupportAlpine.js:53:36
at Object.get (module.esm.59f83f7d.js:1:4836)
at Object.get (module.esm.59f83f7d.js:1:3594)
at getOptionsUsing (eval at <anonymous> (module.esm.59f83f7d.js:5:653), <anonymous>:12:29)
at Proxy.getOptions (module.esm.59f83f7d.js:294:3695)
at Proxy.getChoices (module.esm.59f83f7d.js:294:3515)
at module.esm.59f83f7d.js:294:3135
at module.esm.59f83f7d.js:5:22761
Not much we can do about this, it's an Alpine-Livewire communication bug. We will revisit this thread when Livewire v3 is released to see if it is fixed by the new version.
I'm getting the same error
I'm using table and form builder components. I have a table that has parent - child relationships. I have created a select box and listed its parents data. It is working as expected. And it shows no error at first click.
But somehow when I close the modal and open another one , It shows the error below.
Got the same error.
Fixed by Livewire v3.
| gharchive/issue | 2023-02-19T12:08:15 | 2025-04-01T06:38:40.444571 | {
"authors": [
"199ocero",
"chieh12lee",
"danharrin",
"ericmp33",
"jlambe",
"n1crack"
],
"repo": "filamentphp/filament",
"url": "https://github.com/filamentphp/filament/issues/5737",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1830124620 | Table Action triggered before form
Package
filament/tables
Package Version
v3.0.0-beta25
Laravel Version
v10.16.1
Livewire Version
v3.0.0-beta.5
PHP Version
PHP 8.2.7
Problem description
When defining a closure action within the Table Action definition, it is called correctly after submitting the form. But if I reference the function with a string - it calls the action before the form is shown.
Result : Unable to resolve dependency [Parameter #1 [ array $data ]]
Expected behavior
The form should show before the action is called. The data of the form passed to the action function
Steps to reproduce
(The commented variations work correctly)
Filament\Tables\Actions\Action::make('Payment')
->button()
// ->action(fn(Attendance $attendance, array $data) => dd($data))
// ->action(function(Attendance $attendance, array $data) {
// dd($data);
// })
->action('payment')
->form([
TextInput::make('amount')
->numeric()
->required(),
public function payment(Attendance $attendance, array $data)
{
dd($data);
}
Reproduction repository
https://github.com/mrgla55/filament-testing
Relevant log output
No response
Hey, where in the docs does it say this is supported? Because it isn't, as far as I know
Ok. Just checked the docs, its always Closures, but the action function is defined to accept string
public function action(Closure | string | null $action): static
I had used the string previously in v2 to separate the action logic from the action definition
Okay, we have actually changed it in v3 so that the string gets fed directly into the wire:click, which is something you couldn't do before. And that explains why the modal doesn't open, because we can't intercept it. To do what you want to accomplish, try ->action(Closure::fromCallable([$this, 'payment']))
| gharchive/issue | 2023-07-31T22:09:54 | 2025-04-01T06:38:40.451840 | {
"authors": [
"danharrin",
"mrgla55"
],
"repo": "filamentphp/filament",
"url": "https://github.com/filamentphp/filament/issues/7324",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1977631505 | RelationManager toggaleable() with many columns renders offscreen.
Package
filament/filament
Package Version
3.0
Laravel Version
10.10
Livewire Version
3.0
PHP Version
8.1
Problem description
When using a relation manager with many columns that use toggleable(), the widget draw sometimes renders vertically off the screen and is unusable. It appears to only be an issue when the widget button is close the the bottom of the page so it tries to render the draw upward and off screen.
Expected behavior
Either:
The top of the draw should never go above the top of the page (or the bottom of the header if using the ->topNavigation()
If the panel is taller than the viewport, split into multiple columns.
Allow for the toggles to appear in a modal window with multiple columns.
Steps to reproduce
Download the repo
Change directory to the root
Create a sail/docker instance: ./vendor/bin/sail up -d
Start docker: ./vendor/bin/sail start
Install the composer dependencies: ./vendor/bin/sail composer install
Install the NPM dependencies: ./vendor/bin/sail npm install
Run the builder: ./vendor/bin/sail npm run build
Create database: ./vendor/bin/sail artisan migrate:fresh --seed
In your browser go to http://localhost/admin
Log in with 'admin@none.com' 'password'
navigate to http://localhost/admin/roles/1/edit
Click the toggle columns button on the relation manager. NOTE: This will work correctly as there are many records int eh relation
navigate to http://localhost/admin/roles/2/edit
Click the toggle columns button on the relation manager. NOTE: This will show the breakage as there are few records but many columns. The toggle columns button will not snap to it's lower position and the top controls are inaccessable.
Reproduction repository
git@github.com:uqjohart/filamentphp-issue-9468.git
Relevant log output
No response
I have updated this ticket with a repo
git@github.com:uqjohart/filamentphp-issue-9468.git
| gharchive/issue | 2023-11-05T04:46:58 | 2025-04-01T06:38:40.460257 | {
"authors": [
"uqjohart"
],
"repo": "filamentphp/filament",
"url": "https://github.com/filamentphp/filament/issues/9468",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2009527444 | Select does not save null values when options no longer exist
Package
filament/filament
Package Version
v^3.0-stable
Laravel Version
v10.10
Livewire Version
v3.0
PHP Version
PHP 8.1.0
Problem description
If the Select has options and the user has saved the form with an option selected, the data is submitted to the database - as expected.
If the Select no longer has any options i.e. an empty state with the placeholder "Select an option", this should save a null value back to the database but it doesn't.
It still has the data saved in the db that existed before. Even though the Select is empty, it does not override this to return to null.
Expected behavior
Values should save as null when no options exist.
Steps to reproduce
Steps to recreate
Must be using MySQL 8.0 or greater due to nullable json column.
Clone this repo
composer install
Clone .env.example, set up your database creds
php artisan migrate
php artisan make:filament-user
Login at /admin/login
Go to Post resource
Create a post with all fields filled in - Title, Body, Category, Author
Check database has all these fields
Go to App\Filament\Resources\PostResource
Remove select options so you are left with:
Forms\Components\Select::make('category')
->options([]),
and
Forms\Components\Select::make('author')
->options([]),
Now go back to the post you created at /admin/posts/1/edit
Check no options exist in either select
Save resource
See that the database values have not changed for category and the author json.
This is not expected behaviour. If values no longer exist this should save the fields as null, just as when a user selects the placeholder manually.
Reproduction repository
https://github.com/joshembling/filament-select-bug
Relevant log output
No response
This isn't the desired behaviour IMO. It could result in data loss, if the options failed to load from the server for whatever reason. If you want this behaviour, you should implement it in an observer, shouldn't be too bad.
how to implement that observer? I'm running into the same issue
| gharchive/issue | 2023-11-24T10:58:30 | 2025-04-01T06:38:40.468300 | {
"authors": [
"danharrin",
"joshembling",
"maurorepuesto"
],
"repo": "filamentphp/filament",
"url": "https://github.com/filamentphp/filament/issues/9841",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1822809563 | Toggle column - Empty tooltip fix and theme tooltip color when theme is changed
Empty tooltip fix and theme tooltip color when theme is changed
[x] Changes have been thoroughly tested to not break existing functionality.
[x] New functionality has been documented or existing documentation has been updated to reflect changes.
[x] Visual changes are explained in the PR description using a screenshot/recording of before and after.
Thanks for the PR, @leandrocfe.
The toggle column is one of the final components I'm still revamping.
Someone brought up the empty tooltip issue just a couple hours ago. I would have fixed it with the revamp (as I had for other columns), but decided to apply a quick fix on 3.x already. This hasn't been released yet. Since you made this PR from 3.x, are you sure the issue is still present?
Regarding the theming issue, could you elaborate on that?
Other components are using a similar approach, and I've thoroughly tested switching themes.
Hey @zepfietje, since we have a validation message:
https://github.com/filamentphp/filament/assets/3833889/deaacf87-7fff-4552-b896-8494aa8f53f3
This is the suggestion to fix it
@theme-changed.window="
if (error) {
error.theme = $event.detail
}
"
Glad it's fixed!
| gharchive/pull-request | 2023-07-26T16:54:39 | 2025-04-01T06:38:40.472285 | {
"authors": [
"leandrocfe",
"zepfietje"
],
"repo": "filamentphp/filament",
"url": "https://github.com/filamentphp/filament/pull/7232",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1493911030 | Auto-generate Python client from our swagger.json
This is a sub-task of https://github.com/filecoin-project/bacalhau/pull/1383
Duplicate of https://github.com/filecoin-project/bacalhau/issues/1481
| gharchive/issue | 2022-12-13T10:21:44 | 2025-04-01T06:38:40.491045 | {
"authors": [
"enricorotundo"
],
"repo": "filecoin-project/bacalhau",
"url": "https://github.com/filecoin-project/bacalhau/issues/1502",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
2021615095 | Bug: Can't pin OneDrive Desktop to favorites
Description
I keep my dekstop in the cloud on OneDrive. I can pin any folder in my OneDrive to my favourites except my desktop, so I have managed to recreate every link from my Quick Access list in Windows Explorer in Files, all except the desktop, but I've no idea why
Steps To Reproduce
Go to OneDrive
Right click the Desktop icon
Select 'Add to Favourites'
Requirements
Make OneDrive Dektop folder pinnable to Favourites
Files Version
3.0.8.0
Windows Version
10.0.22621.2715
Log File
debug.log
Thanks for the report, I've added this to the project board.
@KristianJ79 does it work if you pin it in File Explorer?
@KristianJ79 does it work if you pin it in File Explorer?
Hi @yaira2 You mean the Windows native File Explorer?
Yes it does.
Does it display in Files?
@yaira2 Yes. I can navigate to the folder and open it/access all the files etc. It just won't pin to the favourites bar no matter how many times I try!
I meant does it show in favorites in Files if you pin it in File Explorer?
@yaira2 Ah, I see what you mean, apologies. Yes, it's already pinned in File Explorer
@yaira2 No, that's the whole issue. It's pinned to Quick Access in Windows Explorer but won't pin to favourites in Files. I can navigate to and interact with the folder, I just can't pin it.
@yaira2 I don't know if someone has fixed the bug, but when I opened my laptop today, my Desktop icon is now magically pinned to favourites! Shall I close the matter or wait for someone else to confirm?
We recently released v3.0.15 so while we didn't specifically include a fix for this issue, it may have been fixed by another change.
| gharchive/issue | 2023-12-01T21:36:12 | 2025-04-01T06:38:40.724898 | {
"authors": [
"Josh65-2201",
"KristianJ79",
"yaira2"
],
"repo": "files-community/Files",
"url": "https://github.com/files-community/Files/issues/14136",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
449950328 | makePictureTree does not support CNAME
https://github.com/filestack/adaptive/blob/18602bbaf8c5c4de6e57d3525c92a49c1d5a598d/src/tree.ts#L288
I couldn't find a way in the documentation to pass a CNAME value to replace the default URL "https://cdn.filestackcontent.com"
Hi,
I just released a new version in which PictureOptions can get 'cname'.
https://github.com/filestack/adaptive#custom-cname
Thanks, Andrzej. It works perfectly.
| gharchive/issue | 2019-05-29T18:12:56 | 2025-04-01T06:38:40.727329 | {
"authors": [
"AndrzejSala",
"davidlima88"
],
"repo": "filestack/adaptive",
"url": "https://github.com/filestack/adaptive/issues/15",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
290093119 | Add support for Filestack storage aliases
So I can do something like: picture('src://my-storage-alias/file-name.png';
Closed in d0cd2709b6c8bf3b482dd5874ac3cad411a975c0
| gharchive/issue | 2018-01-19T20:10:06 | 2025-04-01T06:38:40.728310 | {
"authors": [
"AndrzejSala",
"velveteer"
],
"repo": "filestack/adaptive",
"url": "https://github.com/filestack/adaptive/issues/2",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
669585885 | More meaningful error messages
Except for simple pure JSON syntax errors, there are no meaningful error messages; in many cases all we get is a JsonLdError exception and a stack.
Exemple:
JsonLd.expand( inatdir + "test-jmv.json").context(inatdir + "test.context.jsonld").get com.apicatalog.jsonld.api.JsonLdError at com.apicatalog.jsonld.expansion.ObjectExpansion1314.expand(ObjectExpansion1314.java:170) at com.apicatalog.jsonld.expansion.ObjectExpansion.expand(ObjectExpansion.java:120) at com.apicatalog.jsonld.expansion.Expansion.compute(Expansion.java:123) at com.apicatalog.jsonld.expansion.ArrayExpansion.expand(ArrayExpansion.java:101) at com.apicatalog.jsonld.expansion.Expansion.compute(Expansion.java:114) at com.apicatalog.jsonld.expansion.ObjectExpansion1314.expand(ObjectExpansion1314.java:339) at com.apicatalog.jsonld.expansion.ObjectExpansion.expand(ObjectExpansion.java:120) at com.apicatalog.jsonld.expansion.Expansion.compute(Expansion.java:123) at com.apicatalog.jsonld.processor.ExpansionProcessor.expand(ExpansionProcessor.java:140) at com.apicatalog.jsonld.processor.ExpansionProcessor.expand(ExpansionProcessor.java:62) at com.apicatalog.jsonld.api.impl.ExpansionApi.get(ExpansionApi.java:148) ... 36 elided
The JSON data : test-jmv.json
{ "results" : [ {
"id" : "54141546",
"place_ids" : [ 97391, 108692 ],
"map_scale" : null,
"tags" : [],
"captive" : false,
"identifications_some_agree" : false,
"geoprivacy" : null,
"uri" : "https://www.inaturalist.org/observations/54141546",
"quality_grade" : "needs_id",
"taxon" : null,
"site_id" : 1,
"reviewed_by" : [],
"description" : "Aucune fleur ou fruit, glauque, très drageonnant, pas plus de 40 cm, dans une prairie sèche rarement fauchée",
"user" : {
"id" : 3295956,
"name" : "Jean-Marc Vanel",
"icon" : "https://static.inaturalist.org/attachments/users/icons/3295956/thumb.jpg?1594113662"
},
"created_at" : "2020-07-24T12:03:34+02:00",
"total_results" : 1,
"per_page" : 1
} ] }
The context: test.context.jsonld
{
"@context": {
"results" : "@graph" ,
"id": "@id",
"uri": "@id"
} }
The URL prefix:
String inatdir = "file:///home/jmv/src/rdf-convert/inaturalist.org/" ;
NOTE: removing in context the line "id": "@id", removes the error .
Hi,
JsonLdError has getCode() getter which returns JsonLdErrorCode.COLLIDING_KEYWORDS in your case.
The context:
"@context": {
"results" : "@graph" ,
"id": "@id",
"uri": "@id"
} }
is not valid JSON-LD context.
The error codes are described in JsonLdErrorCode and are defined by JSON-LD 1.1 specification
Indeed COLLIDING_KEYWORDS is a meaningful message !
I did not see it by the default message, neither with Java nor with Scala .
I have 2 suggestions:
provide a toString() method on JsonLdError that prints getCode()
provide line number
With Scala I use this in the REPL to see the error :
var err = Try { JsonLd.toRdf( inatdir + "observation.jmv.json" ) .
context( inatdir + "test.context.jsonld") .get }
err match { case Failure(e) => e.asInstanceOf[JsonLdError] . getCode
case Success(s) => s }
It's hard to provide line numbers, but it could be possible to return JsonPath. I've created a new issue #71 to address that.
| gharchive/issue | 2020-07-31T08:57:54 | 2025-04-01T06:38:40.735825 | {
"authors": [
"filip26",
"jmvanel"
],
"repo": "filip26/titanium-json-ld",
"url": "https://github.com/filip26/titanium-json-ld/issues/59",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
718987772 | Unable to find asterix cat098 in data items cache
any way to skip the Categories that are not found?
Sure, should be fixed in a minute .. :-)
Thanks for the feedback !
| gharchive/issue | 2020-10-12T02:12:14 | 2025-04-01T06:38:40.737127 | {
"authors": [
"acebelowzero",
"filipjonckers"
],
"repo": "filipjonckers/asterix4py",
"url": "https://github.com/filipjonckers/asterix4py/issues/3",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
654956111 | Instead of scraping, just load a yaml file from GitHub Directly
Pros of this:
faster response times
will probably break less
Cons:
literally none
The Czech Republic YAML sits here: https://github.com/lauripiispanen/github-top/blob/master/_data/locations/czech_republic.yml
Now I have to find a YAML parser for Python, bruh
OK, pyyaml will do the job.
Stuff for future me to read about:
https://stackabuse.com/reading-and-writing-yaml-to-a-file-in-python/
https://pypi.org/project/PyYAML/
| gharchive/issue | 2020-07-10T18:21:38 | 2025-04-01T06:38:40.749163 | {
"authors": [
"filiptronicek"
],
"repo": "filiptronicek/commits-top-api",
"url": "https://github.com/filiptronicek/commits-top-api/issues/1",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
257483567 | Feature/readme
Updated the readme,md to reflect the 0.13.0 release. The content is very straight to the point, but I think it should cover the essence of what the user can do with the current release. You are of course free to make any changes or reject this completely:) No hard feelings :)
sorry I somehow missed it!
No problem
| gharchive/pull-request | 2017-09-13T18:48:34 | 2025-04-01T06:38:40.750765 | {
"authors": [
"filipw",
"seesharper"
],
"repo": "filipw/dotnet-script",
"url": "https://github.com/filipw/dotnet-script/pull/126",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
204150347 | Only returning [statusCode] => 200
Something odd is happening on my site. Seems that I can only get an api response of 200. Even on something as simple as an InventoryTest. I am using the ENV_PROD and can confirm that my status changes to 401 if I change the consumerId = so I would assume that I'm authenticating.
But something as simple as:
$inventory = $client->get([
'sku' => '1010868', // required
]);
echo 'inventory: '; print_r($inventory);
... should give me the quantity in stock of that (known) sku. Any thoughts here...?
Yes that should return some data, can you share what the output of that script is?
| gharchive/issue | 2017-01-30T22:33:05 | 2025-04-01T06:38:40.752382 | {
"authors": [
"fillup",
"solasus"
],
"repo": "fillup/walmart-partner-api-sdk-php",
"url": "https://github.com/fillup/walmart-partner-api-sdk-php/issues/40",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
80705297 | finch-json4s missing from central repository
Thanks for the great work of Finch! Is there a reason why finch-json4s is not published on the central repository? Adding it to any SBT project currently give resolution error. It is not on snapshot Sonatype repository either. It would be really great to have this particular artifact published. Thanks!
Should be in Maven Central now. Thanks @dszeto!
| gharchive/issue | 2015-05-25T23:30:14 | 2025-04-01T06:38:40.756845 | {
"authors": [
"dszeto",
"vkostyukov"
],
"repo": "finagle/finch",
"url": "https://github.com/finagle/finch/issues/275",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1852418630 | Compile fail when enable cxx-interop
hi, finagolfin, when using the swift android sdk add adding the flag -enable-experimental-cxx-interop, compile will fail.
command: $SWIFT_PATH/swift build --destination $SWIFT_TOOLCHAIN/android-aarch64.json
output:
Building for debugging...
error: link command failed with exit code 1 (use -v to see invocation)
ld.lld: error: unable to find library -lswiftCxx
ld.lld: error: unable to find library -lswiftstd
ld.lld: error: unable to find library -lswiftCxx
ld.lld: error: unable to find library -lswiftstd
clang-14: error: linker command failed with exit code 1 (use -v to see invocation)
[7/8] Linking FooModule
sample code: https://github.com/woxiang04/FooModule/blob/8b557db14984fc7e01f2f06ab2f09aa54725657d/FooModule.zip
First thank you for the work to make swift works on Android!
And about the compile failure, do you mean that you just disable the C++ Interop ability because of the significant holes?
It is still there and partially works, but as those failing or disabled tests show, doesn't always work. That libswiftCxx.a library is there in my native Swift toolchain, but not any swiftstd library, not sure what's going on there.
You could take a look at the currently failing C++ Interop tests in that CI log I linked, see what flags it is using, and try to replicate with your own setup, though it is possible that without those two libraries installed in my SDK, it just won't work.
Wow, the android CI works again, Thanks!
will the changes be merged into 5.9?
No, most of those test changes that I amended in my pull were introduced lately in trunk 5.10 anyway, so those problems don't exist in the 5.9 branch.
OK, got it
| gharchive/issue | 2023-08-16T02:48:27 | 2025-04-01T06:38:40.762359 | {
"authors": [
"finagolfin",
"woxiang04"
],
"repo": "finagolfin/swift-android-sdk",
"url": "https://github.com/finagolfin/swift-android-sdk/issues/118",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
313423346 | Add typescript definition file and test
Added typescript definition file and respective test by manually copying from the flow types
Added typescript cheking script at package-scripts.js for testing
I was hoping someone would come along and do this. 👍
Forgot to add the definition file to dist folder, hold on :no_mouth:
Published in v1.2.0.
| gharchive/pull-request | 2018-04-11T17:44:39 | 2025-04-01T06:38:40.764613 | {
"authors": [
"CarlosBonetti",
"erikras"
],
"repo": "final-form/final-form-calculate",
"url": "https://github.com/final-form/final-form-calculate/pull/12",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1571688225 | Begin merging FCXCtrlCustomLuaWindow into FCMCtrlCustomLuaWindow
This PR starts the process of reducing the number of FCX mixins as discussed in #399 and simplifying and reducing mixin code. I'll be doing it in a number of stages.
This code looks okay to me, but somewhere along the line FCXCustomLuaWindow has lost its ability to remember its position. I am looking at, e.g., transpose_by_step.lua and it no longer remembers its window position when you open it the next time.
Actually, on further testing, it appears that this PR is what introduced the defect that causes window position not to be remembered.
This should be fixed now.
| gharchive/pull-request | 2023-02-06T00:29:51 | 2025-04-01T06:38:40.781598 | {
"authors": [
"ThistleSifter",
"rpatters1"
],
"repo": "finale-lua/lua-scripts",
"url": "https://github.com/finale-lua/lua-scripts/pull/430",
"license": "CC0-1.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1372358996 | Remove role from user
Added changes related to remove role from user.
@serialcoder13 This pr is ready to be merged. Converted from blocking to non-blocking queries when interacting with db.
Corrected the message Resource service file to handle exceptions.
| gharchive/pull-request | 2022-09-14T05:34:05 | 2025-04-01T06:38:40.786798 | {
"authors": [
"Surendhar1997"
],
"repo": "fincity-india/nocode-saas",
"url": "https://github.com/fincity-india/nocode-saas/pull/11",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2204590979 | Move drawFunction and updateFunction to methods on Sprite class
Callbacks that give the sprite pointer aren't really usable, it would be better to make them methods on the Sprite class that you can override. Will need to keep a (weak?) reference to the sprite somewhere globally to call the right update method.
requires making sprite open (#11)
Attribute 'weak' cannot be used in embedded Swift 🙁
| gharchive/issue | 2024-03-24T22:32:44 | 2025-04-01T06:38:40.796902 | {
"authors": [
"finnvoor"
],
"repo": "finnvoor/PlaydateKit",
"url": "https://github.com/finnvoor/PlaydateKit/issues/20",
"license": "CC0-1.0",
"license_type": "permissive",
"license_source": "github-api"
} |
2534673573 | Bugfixes: FDC3 2.0 Conformance OSFF 2024
v2.0/advanced/fdc3.findIntent.ts: Fixed the displayName for Intent.sharedTestingIntent2 and Intent.sharedTestingIntent1 to 'Shared Testing Intent 2' and 'Shared Testing Intent 1', respectively.
v2.0/advanced/fdc3.raiseIntent.ts: Suggesting adding a brief delay of ~300ms at line 118 after the context listeners are added, and before broadcasting the context to private channel, to ensure the Desktop Agent has sufficient time to initialize everything properly.
Manual Tests: The TestTimeout of 20,000ms seemed insufficient for fdc3ResolveAmbiguousContextTargetMultiInstance_2_0 and fdc3ResolveAmbiguousIntentTargetMultiInstance_2_0. These tests open four applications, then trigger a UI resolver app, which waits for user input before resolving. Given the dependency on user action, suggesting that the timeout should be extended.
Thanks @jupnit - you'll need to go through the EasyCLA workflow above. If you have any issues with this, reach out to help@finos.org and they'll assist.
v2.0/advanced/fdc3.raiseIntent.ts: Suggesting adding a brief delay of ~300ms at line 118 after the context listeners are added, and before broadcasting the context to private channel, to ensure the Desktop Agent has sufficient time to initialize everything properly.
A Desktop Agent implementation should ensure that is not required. addContextListener and addIntentlistener are async functions that should not resolve until the Desktop Agent has done the required setup. However, this ridiculous implementation causes a race as the 'receiveContext' function is both setting up the listener and then resolving when it receives something. The steps should be separated to ensure correct control flow rather than tacking in sleeps to work around the race.
In short, I agree there is a problem here - but it needs to be solved with a deeper refactor to fix the terrible code.
Thanks for pointing out the flaw @jupnit
Hi @kriswest,
We're probably on the same page on this - the conformance framework as-is is straining to do its job, and is a rats-nest of promises and race conditions.
The forthcoming 2.2 conformance pack offers us an opportunity to wipe the slate clean and sort all this out properly.
If reworking the test implementations then a guiding principle should be NOT mixing async/await with manual promise declarations/nested promises. Even if done correctly it creates unnecessary cognitive complexity.
Looking at it, this implementation is inside out. The test timeout and resolution in the handler should be set up outside the util function in teh main part of the test, while the util should be a simple async fn that awaits creating the channel, adds the listener, then broadcasts the message. Perhaps just dump the utils.
The forthcoming 2.2 conformance pack offers us an opportunity to wipe the slate clean and sort all this out properly.
Agreed, the longer I stare at it the more convinced I am that we should start over from the test definitions and write something both comprehensible and maintainable.
EasyCLA
Thanks @jupnit - you'll need to go through the EasyCLA workflow above. If you have any issues with this, reach out to help@finos.org and they'll assist.
@robmoffat The authorization was granted.
| gharchive/pull-request | 2024-09-18T20:34:09 | 2025-04-01T06:38:40.804067 | {
"authors": [
"jupnit",
"kriswest",
"robmoffat"
],
"repo": "finos/FDC3-conformance-framework",
"url": "https://github.com/finos/FDC3-conformance-framework/pull/260",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1902690789 | [SDK] remove unnecessary radius and border styles
Problem/Concern
We can remove these from the border atom b/c the values are calculated in the css and figma:
--radius-0
--radius-2 | calc(var(--radius-1) * 2) | Radius x 2
--radius-3 | calc(var(--radius-1) * 3) | Radius x 3
--radius-4 | calc(var(--radius-1) * 4) | Radius x 4
--radius-5 | calc(var(--radius-1) * 5) | Radius x 5
--radius-6 | calc(var(--radius-1) * 6) | Radius x 6
--radius-7 | calc(var(--radius-1) * 7) | Radius x 7
--radius-8 | calc(var(--radius-1) * 8) | Radius x 8
--radius-9 | calc(var(--radius-1) * 9) | Radius x 9
--radius-10 | calc(var(--radius-1) * 10) | Radius x 10
--radius-quarter | calc(var(--radius-1) / 4) | Radius / 4
--radius-half | calc(var(--radius-1) / 2) | Radius / 2
--border-0
--border-2 | calc(var(--border-1) * 2) | Border x 2
--border-3 | calc(var(--border-1) * 3) | Border x 3
--border-4 | calc(var(--border-1) * 4)
link to problem content
Proposed Solution
Lise, if we do all of these calculations in the CSS and Figma, then how is
that going to work for a use case in which they use only the SDK to
generate automated output?
On Tue, Sep 19, 2023 at 6:38 AM lwnoble @.***> wrote:
Assigned #585
https://github.com/discoverfinancial/a11y-theme-builder/issues/585 to
@smithbk https://github.com/smithbk.
—
Reply to this email directly, view it on GitHub
https://github.com/discoverfinancial/a11y-theme-builder/issues/585#event-10408790716,
or unsubscribe
https://github.com/notifications/unsubscribe-auth/ACJFZQPPZJKKCQFUMIWCDDDX3FY2HANCNFSM6AAAAAA46CZ5VQ
.
You are receiving this because you were assigned.Message ID:
<discoverfinancial/a11y-theme-builder/issue/585/issue_event/10408790716@
github.com>
Fixed in latest code per @lwnoble and @smithbk
| gharchive/issue | 2023-09-19T10:38:16 | 2025-04-01T06:38:40.814376 | {
"authors": [
"aaronreed708",
"lwnoble",
"smithbk"
],
"repo": "finos/a11y-theme-builder",
"url": "https://github.com/finos/a11y-theme-builder/issues/585",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
2384456615 | Issue855. Make Main Landing Page Responsive and Add Hamburger Menu for Mobile View .
This pull request enhances the responsiveness of the main landing page by introducing a hamburger menu for mobile devices. The following changes have been implemented:
Added Hamburger Menu:
Introduced a hamburger menu icon that appears on screens with a width of 768px or less.
The hamburger menu provides easy navigation on mobile devices by collapsing the side navigation into a drawer.
CSS Media Queries:
Utilized CSS media queries to ensure the hamburger menu icon is only displayed on mobile devices.
Adjusted styles for various elements to improve their layout and presentation on smaller screens.
Conditional Rendering in React:
Updated the React component to conditionally render the hamburger menu based on the screen size.
Added state management to handle the opening and closing of the hamburger menu drawer.
Styling Adjustments:
Ensured that the header remains sticky and spans the full width of the page.
Centered the main content on the page and provided adequate padding for a better user experience on all devices.
Now it looks like this :
Here is an unexpected behavior that I notice with your PR. The error reporting seems to be gone when the user changes the hex value to something invalid. Is this intentional?
Some more unexpected behavior. The left nav is gone from the design system page and there is no hamburger icon with which to slide it out.
The purple banner no longer stretches the whole application. Is this intentional?
Fixed the width of the purple banner .
@AradhyaDixit18 . What @aaronreed708 is requesting is for you to apply prettier formatting once so that there isn't much confusion while reading the code. Sudden Spaces and jumps make the code look a bit confusing due to code quality issues :)
| gharchive/pull-request | 2024-07-01T18:15:45 | 2025-04-01T06:38:40.820608 | {
"authors": [
"AradhyaDixit18",
"Sweetdevil144",
"aaronreed708"
],
"repo": "finos/a11y-theme-builder",
"url": "https://github.com/finos/a11y-theme-builder/pull/949",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1657283782 | 2023-04-17 - KDB Project Call Meeting Agenda
Date
Monday, April 17, 2023 - 9:30am ET / 2:30pm UK
// Second Monday of every month
Attendees
Fullname
Affiliation
GitHub Username
Meeting notices
FINOS Project leads are responsible for observing the FINOS guidelines for running project meetings. Project maintainers can find additional resources in the FINOS Maintainers Cheatsheet.
All participants in FINOS project meetings are subject to the LF Antitrust Policy, the FINOS Community Code of Conduct and all other FINOS policies.
FINOS meetings involve participation by industry competitors, and it is the intention of FINOS and the Linux Foundation to conduct all of its activities in accordance with applicable antitrust and competition laws. It is therefore extremely important that attendees adhere to meeting agendas, and be aware of, and not participate in, any activities that are prohibited under applicable US state, federal or foreign antitrust and competition laws. Please contact legal@finos.org with any questions.
FINOS project meetings may be recorded for use solely by the FINOS team for administration purposes. In very limited instances, and with explicit approval, recordings may be made more widely available.
Agenda
(5 min) Convene, roll call, welcome new people.
[ ] Display FINOS Antitrust Policy summary slide
[ ] Review Meeting Notices (see above)
(5 min) Approve previous meeting minutes.
(10 min) Updates on Anaconda.
Anything in the pipeline KX would like to share?
Any discussions with other FINOS teams in the meantime?
(10 min) Module loader interoperability.
Would be good to get a sense of what the KX module loader under KX Insights looks like at a high level.
See if there's a way to support it using dep.q.
Namespace discussions.
(10 min) PyKX / verbose.q
Curious to learn more about the naming conventions on the Python end of PyKX.
See if those can be made available under q.
(10 min) Looking at the getData API.
https://code.kx.com/insights/1.3/microservices/data-access/getData.html
Discuss intended use cases.
aj / wj examples?
(5 min) AOB, Q&A, Adjourn.
Decisions Made
Decision 1
Decision 2
...
Action Items
Action 1
Action 2
...
WebEx info
Webex
https://finos.webex.com/finos/j.php?MTID=me61719ca3c3295a7cc76762d78392bc3
Dial-in and Project Materials
US: +1-415-655-0003 US Toll
UK: +44-20319-88141 UK Toll
Access code: 2704 417 0390
GitHub Repos:
https://github.com/finos/kdb
https://github.com/finos/kdb-studio
Wiki Page:
https://finosfoundation.atlassian.net/wiki/spaces/DT/pages/329383945/kdb+Project
KDB Metrics on FINOS
https://metrics.finos.org/goto/033b15c80f0d08cab70f40f4358932f6
Hello 👋🏻
Hi all
hi
Some areas where there is reference to q or some overloading:
References to q - https://code.kx.com/pykx/1.4/api/q/q.html
IPC connection generation - https://code.kx.com/pykx/1.4/api/ipc.html#pykx.ipc.QConnection
Query functionality - https://code.kx.com/pykx/1.4/api/query.html
FINOS Hackathon at BMO
https://github.com/finos/community/discussions
https://www.finos.org/hosted-events/2023-05-03-finos-hackathon-bmo
hi
| gharchive/issue | 2023-04-06T11:56:23 | 2025-04-01T06:38:40.840801 | {
"authors": [
"adavies42",
"alvin-c-shih",
"cmccarthy1",
"jonnypress",
"mcleo-d"
],
"repo": "finos/kdb",
"url": "https://github.com/finos/kdb/issues/90",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
143694450 | В проекте Profiler нет core.dll cjson.dll
В проекте Profiler нет core.dll cjson.dll
они значатся не в референсах а в папке
lua\clibs\socket
где взять и для чего это необходимо
https://github.com/finsight/QuikSharp/tree/master/src/QuikSharp/lua/clibs
| gharchive/issue | 2016-03-26T11:48:08 | 2025-04-01T06:38:40.842680 | {
"authors": [
"buybackoff",
"sadersa"
],
"repo": "finsight/QuikSharp",
"url": "https://github.com/finsight/QuikSharp/issues/49",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
} |
55822881 | smt run crashes when hostname is missing from /etc/hosts
I have the following error only on one of the machines where I want to use sumatra and this is the only one running 2.7.
(gen)dedan@quesada ~/projects/smt_test $ smt run --main=smt_test.py test.param
Python could not be found. Please supply the path to the /home/dedan/.virtualenvs/env2/bin/python executable.
Multiple versions found, using /home/dedan/.virtualenvs/gen/bin/python. If you wish to use a different version, please specify it explicitly
Traceback (most recent call last):
File "/home/dedan/.virtualenvs/gen/bin/smt", line 33, in
main(sys.argv[2:])
File "/home/dedan/.virtualenvs/gen/lib/python2.7/site-packages/sumatra/commands.py", line 254, in run
launch_mode=launch_mode)
File "/home/dedan/.virtualenvs/gen/lib/python2.7/site-packages/sumatra/projects.py", line 144, in launch
launch_mode, label, reason)
File "/home/dedan/.virtualenvs/gen/lib/python2.7/site-packages/sumatra/projects.py", line 135, in new_record
record.register(working_copy)
File "/home/dedan/.virtualenvs/gen/lib/python2.7/site-packages/sumatra/records.py", line 71, in register
self.platforms = self.launch_mode.get_platform_information()
File "/home/dedan/.virtualenvs/gen/lib/python2.7/site-packages/sumatra/launch.py", line 117, in get_platform_information
ip_addr=socket.gethostbyname(network_name),
socket.gaierror: [Errno -2] Name or service not known
When I print the network_name from line 117 it gives me "quesada" which is the name of the host.
Imported from Bitbucket issue 67, created by apdavison on 04-29-2011 at 15:20, last modified: 06-23-2011 at 20:18
need to handle the socket.gaierror exception. Could either wimp out and set ip_addr = 127.0.0.1 or try one of the more elaborate methods described in http://stackoverflow.com/questions/166506/finding-local-ip-addresses-in-python
Trac comment by apdavison on 05-02-2011 at 12:30
Wimped out - see r255
Trac comment by apdavison on 06-23-2011 at 20:18
| gharchive/issue | 2015-01-28T22:05:43 | 2025-04-01T06:38:40.855018 | {
"authors": [
"apdavison"
],
"repo": "fipymigrate/sumatra",
"url": "https://github.com/fipymigrate/sumatra/issues/72",
"license": "BSD-2-Clause",
"license_type": "permissive",
"license_source": "github-api"
} |
234427840 | '403 Forbidden' for facebook photoURL in Ionic
Hi,
I can suddenly no longer load the profile images from the Facebook Auth provider in my Ionic app. I just get '403 Forbidden'. I have the 'cordova-whitelist-plugin' and have set < access origin="*"/> in my config.xml, and have not done any code changes. This worked before.
Can it be anything related to this library?
I'm able to get around the problem by fetching the image manually, so it doesn't seem to be a whitelist/content-security-policy issue.
$firebaseAuth().$onAuthStateChanged(function (user) {
if (user) {
user.providerData.forEach(function (profile) {
if (profile.providerId === "facebook.com") {
user.updateProfile({
photoURL : "https://graph.facebook.com/" + profile.uid + "/picture?height=200"
});
}
});
}
});
Thanks
Hi @remisture! We have a required issue template. I'm going to close this for now, but feel free to open with an issue that follows the template.
| gharchive/issue | 2017-06-08T06:52:25 | 2025-04-01T06:38:40.870335 | {
"authors": [
"davideast",
"remisture"
],
"repo": "firebase/angularfire",
"url": "https://github.com/firebase/angularfire/issues/935",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
168769890 | Remove all noImplicitAny warnings
The goal of this PR is to more strongly type all variables and arguments by setting the noImplicitAny Typescript configuration.
Changes are too big to review in detail, but I skimmed through and overall looks reasonable to me!
| gharchive/pull-request | 2016-08-02T00:01:18 | 2025-04-01T06:38:40.871333 | {
"authors": [
"mckoss",
"mikelehen"
],
"repo": "firebase/bolt",
"url": "https://github.com/firebase/bolt/pull/159",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1130818829 | Ability to configure outbound traffic via vpcConnector for IP whitelisting
[READ] Step 1: Are you in the right place?
Issues filed here should be about a feature request for a specific extension in this repository. To file a feature request that affects multiple extensions or the Firebase Extensions platform, please reach out to
Firebase support directly.
[REQUIRED] Step 2: Extension name
This feature request is for extension: firestore-send-email
What feature would you like to see?
I would like to be able to configure the extension with a static outbound IP vpcconnector setup such that I can use the more secure Google Workspace IP authentication feature.
How would you use it?
I would already have the VPC Connector set up before starting to configure the extension.
I would already have the Google Workspace Gmail Relay Configuration set to only accept connections from the matching outbound IP.
I would pass the name of my vpcConnector parameter and vpcConnectorEgressSettings during extension configuration steps.
@andreimarcut in case you still need a solution, it's possible. See my other comment for more details: https://github.com/firebase/extensions/issues/1040#issuecomment-1561745548
That's good to know, thanks for sharing.
| gharchive/issue | 2022-02-10T19:55:36 | 2025-04-01T06:38:40.875643 | {
"authors": [
"FBuervenich",
"andreimarcut"
],
"repo": "firebase/extensions",
"url": "https://github.com/firebase/extensions/issues/881",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1070502511 | fix(firestore-send-email): add smtp secret parameter
Problems
password isn't encoded correctly and could be compromised
email or password can be deconstructed incorrectly from URI when containing some special characters
possible problems with regex validation
Solution
Break the URI address into sections. Create new optional fields for typing the values for setting up an SMTP server with a hidden secret password.
Checklist
[x] add 4 optional fields in extensions.yaml. When SMTP_SERVER_HOST_AND_PORT is provided the SMTP_CONNECTION_URI won't be used that is also changed to optional. (this should provide a smooth update process)
[x] add new ENV variables in config and jest-config, emulator-param files
[x] add a setSmtpCredentials helper function for selecting the right mail config
[x] add logger error when you do NOT provide none of the configuration variables (SMTP_SERVER_HOST_AND_PORT or SMTP_CONNECTION_URI )
[x] add unit tests for setSmtpCredentials helper function
Under Consideration
making SMTP_SERVER_HOST_AND_PORT and SMTP_SERVER_SSL required to make user reconfigure extension on update and maybe remove previous SMTP_CONNECTION_URI field. We cannot make login and password required as we want still a possibility to send unauthed emails (I have tested it locally with port 25 and it worked with omitted user values).
combine SMTP_SERVER_HOST_AND_PORT with SMTP_SERVER_SSL connection and format for e.g. smtps:smtp.gmail.com:465
Tests
Update Engine
Installation and configuration of extension
Successful results
Extra tests
Old setup
New setup
Both setups (choose new recommended setup if SMTP connection and port filled)
Codecov Report
Merging #816 (ebffdd3) into next (641092c) will increase coverage by 0.26%.
The diff coverage is 66.67%.
@@ Coverage Diff @@
## next #816 +/- ##
==========================================
+ Coverage 50.19% 50.45% +0.26%
==========================================
Files 30 31 +1
Lines 1329 1348 +19
Branches 192 200 +8
==========================================
+ Hits 667 680 +13
- Misses 661 667 +6
Partials 1 1
Impacted Files
Coverage Δ
firestore-send-email/functions/src/index.ts
5.59% <14.29%> (+0.39%)
:arrow_up:
firestore-send-email/functions/src/logs.ts
54.06% <50.00%> (-0.23%)
:arrow_down:
firestore-send-email/functions/src/config.ts
100.00% <100.00%> (ø)
firestore-send-email/functions/src/helpers.ts
100.00% <100.00%> (ø)
@googlebot I consent.
closing in favor of: #840
| gharchive/pull-request | 2021-12-03T11:40:30 | 2025-04-01T06:38:40.894653 | {
"authors": [
"codecov-commenter",
"dackers86",
"posiek07"
],
"repo": "firebase/extensions",
"url": "https://github.com/firebase/extensions/pull/816",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1580946699 | feat(fcm): Set FCMOptions for MulticastMessage
Hello!
Currently it's impossible to set FCMOptions for MulticastMessage. While for example in Python admin SDK this is possible. And in Java admin SDK. This pull request fixes this.
CLA signed
Hello team, could you please tell when this will be released?
@lahirumaramba - any updates?
Guys, at least explain what prevents you from merging this?
LGTM But I'd like to ask for waiting until @lahirumaramba 's review
This would be nice to finally have in the package. @lahirumaramba can you please have a look at this minor change as it's only two lines of code and almost a year open?
@lahirumaramba kindly reminding 🙏
Thanks folks! This change will be included in the next release
Nice, many thanks!
| gharchive/pull-request | 2023-02-11T17:42:52 | 2025-04-01T06:38:40.898677 | {
"authors": [
"FZambia",
"chong-shao",
"lahirumaramba",
"sebastianbuechler"
],
"repo": "firebase/firebase-admin-go",
"url": "https://github.com/firebase/firebase-admin-go/pull/537",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
} |
443773465 | Unable to find Method com/google/firebase/remoteconfig/FirebaseRemoteConfig.setDefaults. Please verify the AAR which contains the com/google/firebase/remoteconfig/FirebaseRemoteConfig class is included in your app.
When i run sample code remote_config in quickstart-cpp-master repository, i caught "A/firebase: Unable to find Method com/google/firebase/remoteconfig/FirebaseRemoteConfig.setDefaults (signature '(ILjava/lang/String;)V', instance). Please verify the AAR which contains the com/google/firebase/remoteconfig/FirebaseRemoteConfig class is included in your app." error.
Anyone have idea to fix that ? Tks
Hi,
Typically that means that the Android dependencies are missing. Are you using the quickstart as is, or did you make any modifications to the build.gradle file? What version of the Firebase SDK are you using?
And could you share more of the logs, there might be something in them that can indicate the issue.
Detail about this bug:
System.err: java.lang.NoSuchMethodError: no non-static method "Lcom/google/firebase/remoteconfig/FirebaseRemoteConfig;.setDefaults(ILjava/lang/String;)V
A/firebase: Unable to find Method com/google/firebase/remoteconfig/FirebaseRemoteConfig.setDefaults (signature '(ILjava/lang/String;)V', instance). Please verify the AAR which contains the com/google/firebase/remoteconfig/FirebaseRemoteConfig class is included in your app.
Seem this bug just happen with Remote Config. I tested with Firebase Analytics, it's ok
It seems like you are in a bad state, but I'm not quite sure how. For some context, the newest version of the Remote Config library for Android removed that particular function. The 6.0.0 version of the C++ library also removed the reference to that function (it used to be here: https://github.com/firebase/firebase-cpp-sdk/blob/master/remote_config/src/remote_config_android.cc#L40)
It would seem that you are using a prior version of the C++ library that is still trying to reference old functions in the Android library, but you are also using the new version of the Android library, so it can't resolve them. Can you confirm that you are indeed using version 6.0.0 of the C++ SDK? Also, what are your Android dependencies being set as?
I upgraded to firebase_cpp_sdk_6.0.0 this bug is resolved, maybe i am used old sdk
| gharchive/issue | 2019-05-14T08:18:40 | 2025-04-01T06:38:40.906681 | {
"authors": [
"SuperSonicLLC",
"a-maurice"
],
"repo": "firebase/firebase-cpp-sdk",
"url": "https://github.com/firebase/firebase-cpp-sdk/issues/8",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
264135029 | Failed to subscribe to topic Error Domain=NSURLErrorDomain Code=-1200
[REQUIRED] : Describe the problem
Hi Team, With iOS 11 and XCode 9 we are getting below errors
Error 1
Failed to subscribe to topic Error Domain=NSURLErrorDomain Code=-1200 "An SSL error has occurred and a secure connection to the server cannot be made." UserInfo={_kCFStreamErrorCodeKey=-9802, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, NSUnderlyingError=0x1c0449f00 {Error Domain=kCFErrorDomainCFNetwork Code=-1200 "(null)" UserInfo={_kCFStreamPropertySSLClientCertificateState=0, _kCFNetworkCFStreamSSLErrorOriginalValue=-9802, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802}}, NSLocalizedDescription=An SSL error has occurred and a secure connection to the server cannot be made., NSErrorFailingURLKey=https://iid.googleapis.com/iid/register, NSErrorFailingURLStringKey=https://iid.googleapis.com/iid/register, _kCFStreamErrorDomainKey=3}
Error 2
TIC TCP Conn Failed [3:0x6040003627c0]: 3:-9802 Err(-9802)
2017-10-10 12:51:47.059149+0530 MyApp[11781:227385] NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802)
2017-10-10 12:51:47.059353+0530 MyApp[11781:227385] Task <91287390-CC8A-4F32-8403-929E95353B4B>.<1> HTTP load failed (error code: -1200 [3:-9802])
2017-10-10 12:51:47.060064+0530 MyApp[11781:227383] Task <91287390-CC8A-4F32-8403-929E95353B4B>.<1> finished with error - code: -1200
2017-10-10 12:52:39.286401+0530 MyApp[11781:228768] TIC Read Status [5:0x0]: 1:57
2017-10-10 12:52:39.286849+0530 MyApp[11781:228768] TIC Read Status [5:0x0]: 1:57
2017-10-10 12:52:43.375836+0530 MyApp[11781:228768] TIC Read Status [6:0x604000366540]: 1:57
2017-10-10 12:52:43.376470+0530 MyApp[11781:228768] TIC Read Status [6:0x604000366540]: 1:57
2017-10-10 12:52:43.377415+0530 MyApp[11781:228768] TIC Read Status [6:0x604000366540]: 1:57
2017-10-10 12:54:38.998920+0530 MyApp[11781:230845] TIC Read Status [2:0x600000361440]: 1:57
2017-10-10 12:54:38.999998+0530 MyApp[11781:230845] TIC Read Status [2:0x600000361440]: 1:57
2017-10-10 12:54:39.000339+0530 MyApp[11781:230845] TIC Read Status [2:0x600000361440]: 1:57
2017-10-10 13:09:16.756803+0530 MyApp[11781:246165] [Client] Discarding message for event 0 because of too many unprocessed messages
[REQUIRED] Step 2: Describe your environment
Xcode version: XCode 9
Firebase SDK version: Firebase (4.3.0),FirebaseAnalytics (4.0.4) ,FirebaseCore (4.0.8), FirebaseInstanceID (2.0.4) ,FirebaseMessaging (2.0.4)
Hmm, this looks like it was a temporary SSL issue. Is this happening all the time? If so, what location are you in? And do you have any restrictions on your network?
I'm getting this issue too..
Same error here, but different evironment:
Xcode Version: XCode 9
Firebase SDK version: FirebaseCore (4.0.11), FirebasePerformance (1.0.6), FirebaseAnalytics (4.0.5)
All firebase SDK were installed through CocoaPods:
Firebase/Core (4.6.0)
Firebase/Performance (4.6.0)
For those running into this issue, can you answer the questions rsattar posted above as well? Also, please post your error messages and make sure they don't differ from the original post.
I'm also getting this error also:
Xcode Version: Xcode 9.1
Firebase/Core (4.7.0) - FirebaseCore (4.0.12), FirebaseAnalytics (4.0.5), FirebaseMessaging (2.0.7)
Firebase/Messaging (4.7.0) - FirebaseMessaging (2.0.7)
All firebase SDK were installed through CocoaPods:
pod 'Firebase/Core'
pod 'Firebase/Messaging'
For rsattar's questions:
I'm in Idaho, USA
No restrictions on network
I've tried while connected to wifi with my local provider and through T-Mobile network
I am located in Lithuania and getting same error fro this request:
let query = ref.child("email").queryOrderedByKey().queryEqual(toValue: "info@info.lt")//.queryEqual(toValue: "info@info.lt", childKey: "email")
query.observe(.value) { (snapshot) in
print("\(snapshot.childrenCount)")
}
And here is an error:
2017-12-18 05:41:11.063674+0200 PL[1297:447036] [Firebase/Core][I-COR000020] Error posting to Clearcut: Error Domain=NSURLErrorDomain Code=-1200 "An SSL error has occurred and a secure connection to the server cannot be made." UserInfo={NSURLErrorFailingURLPeerTrustErrorKey=<SecTrustRef: 0x1d0305c40>, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802, NSErrorPeerCertificateChainKey=(
"<cert(0x14981fc00) s: *.googleapis.com i: Google Internet Authority G2>",
"<cert(0x14b00b200) s: Google Internet Authority G2 i: GeoTrust Global CA>",
"<cert(0x14b00ba00) s: GeoTrust Global CA i: Equifax Secure Certificate Authority>"
), NSUnderlyingError=0x1cc0448f0 {Error Domain=kCFErrorDomainCFNetwork Code=-1200 "(null)" UserInfo={_kCFStreamPropertySSLClientCertificateState=0, kCFStreamPropertySSLPeerTrust=<SecTrustRef: 0x1d0305c40>, _kCFNetworkCFStreamSSLErrorOriginalValue=-9802, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802, kCFStreamPropertySSLPeerCertificates=(
"<cert(0x14981fc00) s: *.googleapis.com i: Google Internet Authority G2>",
"<cert(0x14b00b200) s: Google Internet Authority G2 i: GeoTrust Global CA>",
"<cert(0x14b00ba00) s: GeoTrust Global CA i: Equifax Secure Certificate Authority>"
)}}, NSLocalizedDescription=An SSL error has occurred and a secure connection to the server cannot be made., NSErrorFailingURLKey=https://play.googleapis.com/log, NSErrorFailingURLStringKey=https://play.googleapis.com/log, NSErrorClientCertificateStateKey=0}, with Status Code: 0
@ramunasjurgilas looks like you were having a certificate mismatch, which is possibly an issue with your local internet.
@morganchen12 Sorry to say, but I do not agree with your comment.
I tried with mobile operator & the biggest internet provider in Lithuania. And result is the same.
Does it work if you test on a different device?
Thanks for quick responses.
It is not working from different device as well.
I want to notice one more thing. If problem exists on local internet provider then connection to & from Firebase Database should not work. Correct me if I am wrong. So setValue is working fine:
let dbRef = Database.database().reference()
dbRef.child("post").child("groupName").setValue("hello world1")
When diving deeper to the logs found this error:
2017-12-18 12:44:29.948270+0200 Playrooms[5972:462597] [BoringSSL] Function nw_protocol_boringssl_input_finished: line 1386 Peer disconnected during the middle of a handshake. Sending errSSLFatalAlert(-9802) alert
And here is one more error:
2017-12-18 12:44:29.952645+0200 Playrooms[5972:462597] TIC TCP Conn Failed [1:0x604000169540]: 3:-9802 Err(-9802)
Yeah, good point. Looks like only requests to one particular google API are failing. If you try manually setting the DNS like tspiva did, does the error go away?
I can not understand how changing Wi-Fi on my mac can solve problems on iPhone.
But any way I tried and without luck. Still the same result.
Set the DNS on your phone, not your mac.
Thanks for pointing. After these changes were made it is failing only on first execution (run of the app). And afterwards, when executing queryEqual queries no errors printed to console. But even when no error printed queryEqual returns null. In reality I am expecting not nil response. Using this code from bellow:
let dbRef = Database.database().reference()
dbRef.child("post").child("groupName").setValue("hello world1")
let postRef = dbRef.child("post")
print(postRef)
let query1 = postRef.queryEqual(toValue: "hello world1", childKey: "groupName")
query1.observe(.value) { (snapshot) in
print(snapshot)
}
I had the same problem. Enabling a personal hotspot on my iPhone and connecting my mac to the tethered wifi solved the problem. Just this error persists:
...
2017-12-28 10:39:58.362877+0100 MyApp[1645:645198] [] nw_connection_get_connected_socket 32 Connection has no connected handler
2017-12-28 10:39:58.363005+0100 MyApp[1645:645198] TCP Conn 0x106f61720 Failed : error 0:61 [61]
...
That's obviously just a temporary solution though. I'll edit this post as soon as I found out what exactly was causing the problem.
Hey all,
This issue hasn't been actionable for a while, so I'm going to close it for now. If you have any new debugging information, feel free to comment on the closed issue and I'll re-open it.
If you have the same error message but think it may be a separate bug, please file a new issue and I'll take a look.
I am having the same issue.
Environment:
Xcode Version 9.2
Swift 4.0.3
Firebase installed via CocoaPods
Same error here :
Xcode Version: XCode 9.2
[BoringSSL] Function nw_protocol_boringssl_input_finished: line 1386 Peer disconnected during the middle of a handshake. Sending errSSLFatalAlert(-9802) alert
2018-03-08 11:41:47.946673+0530 FirebaseCheck[31161:1161612] NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802)
2018-03-08 11:41:47.946815+0530 FirebaseCheck[31161:1161612] Task .<1> HTTP load failed (error code: -1200 [3:-9802])
2018-03-08 11:41:47.947166+0530 FirebaseCheck[31161:1161788] Task .<1> finished with error - code: -1200
2018-03-08 11:41:48.937575+0530 FirebaseCheck[31161:1161365] <Firebase/Network/ERROR> Encounter network error. Code, error: -1200, Error Domain=NSURLErrorDomain Code=-1200 "An SSL error has occurred and a secure connection to the server cannot be made." UserInfo={NSURLErrorFailingURLPeerTrustErrorKey=<SecTrustRef: 0x600000110ce0>, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802, NSErrorPeerCertificateChainKey=(
"<cert(0x7fe602036400) s: *.googleapis.com i: Google Internet Authority G3>",
"<cert(0x7fe60203b800) s: Google Internet Authority G3 i: GlobalSign>"
), NSUnderlyingError=0x60400044bac0 {Error Domain=kCFErrorDomainCFNetwork Code=-1200 "(null)" UserInfo={_kCFStreamPropertySSLClientCertificateState=0, kCFStreamPropertySSLPeerTrust=<SecTrustRef: 0x600000110ce0>, _kCFNetworkCFStreamSSLErrorOriginalValue=-9802, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802, kCFStreamPropertySSLPeerCertificates=(
"<cert(0x7fe602036400) s: *.googleapis.com i: Google Internet Authority G3>",
"<cert(0x7fe60203b800) s: Google Internet Authority G3 i: GlobalSign>"
)}}, NSLocalizedDescription=An SSL error has occurred and a secure connection to the server cannot be made., NSErrorFailingURLKey=https://play.googleapis.com/log, NSErrorFailingURLStringKey=https://play.googleapis.com/log, NSErrorClientCertificateStateKey=0}
2018-03-08 11:41:48.938206+0530 FirebaseCheck[31161:1161590] [Firebase/Core][I-NET901017] <Firebase/Network/ERROR> Encounter network error. Code, error: -1200, Error Domain=NSURLErrorDomain Code=-1200 "An SSL error has occurred and a secure connection to the server cannot be made." UserInfo={NSURLErrorFailingURLPeerTrustErrorKey=<SecTrustRef: 0x600000110ce0>, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802, NSErrorPeerCertificateChainKey=(
"<cert(0x7fe602036400) s: *.googleapis.com i: Google Internet Authority G3>",
"<cert(0x7fe60203b800) s: Google Internet Authority G3 i: GlobalSign>"
), NSUnderlyingError=0x60400044bac0 {Error Domain=kCFErrorDomainCFNetwork Code=-1200 "(null)" UserInfo={_kCFStreamPropertySSLClientCertificateState=0, kCFStreamPropertySSLPeerTrust=<SecTrustRef: 0x600000110ce0>, _kCFNetworkCFStreamSSLErrorOriginalValue=-9802, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802, kCFStreamPropertySSLPeerCertificates=(
"<cert(0x7fe602036400) s: *.googleapis.com i: Google Internet Authority G3>",
"<cert(0x7fe60203b800) s: Google Internet Authority G3 i: GlobalSign>"
)}}, NSLocalizedDescription=An SSL error has occurred and a secure connection to the server cannot be made., NSErrorFailingURLKey=https://play.googleapis.com/log, NSErrorFailingURLStringKey=https://play.googleapis.com/log, NSErrorClientCertificateStateKey=0}
2018-03-08 11:41:48.938 FirebaseCheck[31161] [Firebase/Core][I-NET901017] <Firebase/Network/ERROR> Encounter network error. Code, error: -1200, Error Domain=NSURLErrorDomain Code=-1200 "An SSL error has occurred and a secure connection to the server cannot be made." UserInfo={NSURLErrorFailingURLPeerTrustErrorKey=<SecTrustRef: 0x600000110ce0>, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802, NSErrorPeerCertificateChainKey=(
"<cert(0x7fe602036400) s: *.googleapis.com i: Google Internet Authority G3>",
"<cert(0x7fe60203b800) s: Google Internet Authority G3 i: GlobalSign>"
), NSUnderlyingError=0x60400044bac0 {Error Domain=kCFErrorDomainCFNetwork Code=-1200 "(null)" UserInfo={_kCFStreamPropertySSLClientCertificateState=0, kCFStreamPropertySSLPeerTrust=<SecTrustRef: 0x600000110ce0>, _kCFNetworkCFStreamSSLErrorOriginalValue=-9802, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802, kCFStreamPropertySSLPeerCertificates=(
"<cert(0x7fe602036400) s: *.googleapis.com i: Google Internet Authority G3>",
"<cert(0x7fe60203b800) s: Google Internet Authority G3 i: GlobalSign>"
)}}, NSLocalizedDescription=An SSL error has occurred and a secure connection to the server cannot be made., NSErrorFailingURLKey=https://play.googleapis.com/log, NSErrorFailingURLStringKey=https://play.googleapis.com/log, NSErrorClientCertificateStateKey=0}
2018-03-08 11:41:48.941242+0530 FirebaseCheck[31161:1161590] [Firebase/Core][I-COR000020] Error posting to Clearcut: Error Domain=NSURLErrorDomain Code=-1200 "An SSL error has occurred and a secure connection to the server cannot be made." UserInfo={NSURLErrorFailingURLPeerTrustErrorKey=<SecTrustRef: 0x600000110ce0>, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802, NSErrorPeerCertificateChainKey=(
"<cert(0x7fe602036400) s: *.googleapis.com i: Google Internet Authority G3>",
"<cert(0x7fe60203b800) s: Google Internet Authority G3 i: GlobalSign>"
), NSUnderlyingError=0x60400044bac0 {Error Domain=kCFErrorDomainCFNetwork Code=-1200 "(null)" UserInfo={_kCFStreamPropertySSLClientCertificateState=0, kCFStreamPropertySSLPeerTrust=<SecTrustRef: 0x600000110ce0>, _kCFNetworkCFStreamSSLErrorOriginalValue=-9802, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802, kCFStreamPropertySSLPeerCertificates=(
"<cert(0x7fe602036400) s: *.googleapis.com i: Google Internet Authority G3>",
"<cert(0x7fe60203b800) s: Google Internet Authority G3 i: GlobalSign>"
)}}, NSLocalizedDescription=An SSL error has occurred and a secure connection to the server cannot be made., NSErrorFailingURLKey=https://play.googleapis.com/log, NSErrorFailingURLStringKey=https://play.googleapis.com/log, NSErrorClientCertificateStateKey=0}, with Status Code: 0
2018-03-08 11:41:48.942 FirebaseCheck[31161] [Firebase/Core][I-COR000020] Error posting to Clearcut: Error Domain=NSURLErrorDomain Code=-1200 "An SSL error has occurred and a secure connection to the server cannot be made." UserInfo={NSURLErrorFailingURLPeerTrustErrorKey=<SecTrustRef: 0x600000110ce0>, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802, NSErrorPeerCertificateChainKey=(
"<cert(0x7fe602036400) s: *.googleapis.com i: Google Internet Authority G3>",
"<cert(0x7fe60203b800) s: Google Internet Authority G3 i: GlobalSign>"
), NSUnderlyingError=0x60400044bac0 {Error Domain=kCFErrorDomainCFNetwork Code=-1200 "(null)" UserInfo={_kCFStreamPropertySSLClientCertificateState=0, kCFStreamPropertySSLPeerTrust=<SecTrustRef: 0x600000110ce0>, _kCFNetworkCFStreamSSLErrorOriginalValue=-9802, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802, kCFStreamPropertySSLPeerCertificates=(
"<cert(0x7fe602036400) s: *.googleapis.com i: Google Internet Authority G3>",
"<cert(0x7fe60203b800) s: Google Internet Authority G3 i: GlobalSign>"
)}}, NSLocalizedDescription=An SSL error has occurred and a secure connection to the server cannot be made., NSErrorFailingURLKey=https://play.googleapis.com/log, NSErrorFailingURLStringKey=https://play.googleapis.com/log, NSErrorClientCertificateStateKey=0}, with Status Code: 0
I have added google API domains in Exception Domains in info.plist. it is
working fine
On Thu, Mar 8, 2018 at 2:39 PM, sivarajss notifications@github.com wrote:
Same error here :
Xcode Version: XCode 9.2
[BoringSSL] Function nw_protocol_boringssl_input_finished: line 1386 Peer
disconnected during the middle of a handshake. Sending
errSSLFatalAlert(-9802) alert
2018-03-08 11:41:47.946673+0530 FirebaseCheck[31161:1161612]
NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL,
-9802)
2018-03-08 11:41:47.946815+0530 FirebaseCheck[31161:1161612] Task .<1>
HTTP load failed (error code: -1200 [3:-9802])
2018-03-08 11:41:47.947166+0530 FirebaseCheck[31161:1161788] Task .<1>
finished with error - code: -1200
2018-03-08 11:41:48.937575+0530 FirebaseCheck[31161:1161365]
<Firebase/Network/ERROR> Encounter network error. Code, error: -1200, Error
Domain=NSURLErrorDomain Code=-1200 "An SSL error has occurred and a secure
connection to the server cannot be made." UserInfo={
NSURLErrorFailingURLPeerTrustErrorKey=<SecTrustRef: 0x600000110ce0>,
NSLocalizedRecoverySuggestion=Would you like to connect to the server
anyway?, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802,
NSErrorPeerCertificateChainKey=(
"<cert(0x7fe602036400) s: *.googleapis.com i: Google Internet Authority
G3>",
"<cert(0x7fe60203b800) s: Google Internet Authority G3 i: GlobalSign>"
), NSUnderlyingError=0x60400044bac0 {Error Domain=kCFErrorDomainCFNetwork
Code=-1200 "(null)" UserInfo={_kCFStreamPropertySSLClientCertificateState=0,
kCFStreamPropertySSLPeerTrust=<SecTrustRef: 0x600000110ce0>, _
kCFNetworkCFStreamSSLErrorOriginalValue=-9802,
_kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802,
kCFStreamPropertySSLPeerCertificates=(
"<cert(0x7fe602036400) s: *.googleapis.com i: Google Internet Authority
G3>",
"<cert(0x7fe60203b800) s: Google Internet Authority G3 i: GlobalSign>"
)}}, NSLocalizedDescription=An SSL error has occurred and a secure
connection to the server cannot be made., NSErrorFailingURLKey=https://
play.googleapis.com/log, NSErrorFailingURLStringKey=htt
ps://play.googleapis.com/log, NSErrorClientCertificateStateKey=0}
2018-03-08 11:41:48.938206+0530 FirebaseCheck[31161:1161590]
[Firebase/Core][I-NET901017] <Firebase/Network/ERROR> Encounter network
error. Code, error: -1200, Error Domain=NSURLErrorDomain Code=-1200 "An SSL
error has occurred and a secure connection to the server cannot be made."
UserInfo={NSURLErrorFailingURLPeerTrustErrorKey=<SecTrustRef:
0x600000110ce0>, NSLocalizedRecoverySuggestion=Would you like to connect
to the server anyway?, _kCFStreamErrorDomainKey=3,
_kCFStreamErrorCodeKey=-9802, NSErrorPeerCertificateChainKey=(
"<cert(0x7fe602036400) s: *.googleapis.com i: Google Internet Authority
G3>",
"<cert(0x7fe60203b800) s: Google Internet Authority G3 i: GlobalSign>"
), NSUnderlyingError=0x60400044bac0 {Error Domain=kCFErrorDomainCFNetwork
Code=-1200 "(null)" UserInfo={_kCFStreamPropertySSLClientCertificateState=0,
kCFStreamPropertySSLPeerTrust=<SecTrustRef: 0x600000110ce0>, _
kCFNetworkCFStreamSSLErrorOriginalValue=-9802,
_kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802,
kCFStreamPropertySSLPeerCertificates=(
"<cert(0x7fe602036400) s: *.googleapis.com i: Google Internet Authority
G3>",
"<cert(0x7fe60203b800) s: Google Internet Authority G3 i: GlobalSign>"
)}}, NSLocalizedDescription=An SSL error has occurred and a secure
connection to the server cannot be made., NSErrorFailingURLKey=https://
play.googleapis.com/log, NSErrorFailingURLStringKey=htt
ps://play.googleapis.com/log, NSErrorClientCertificateStateKey=0}
2018-03-08 11:41:48.938 FirebaseCheck[31161] [Firebase/Core][I-NET901017]
<Firebase/Network/ERROR> Encounter network error. Code, error: -1200, Error
Domain=NSURLErrorDomain Code=-1200 "An SSL error has occurred and a secure
connection to the server cannot be made." UserInfo={
NSURLErrorFailingURLPeerTrustErrorKey=<SecTrustRef: 0x600000110ce0>,
NSLocalizedRecoverySuggestion=Would you like to connect to the server
anyway?, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802,
NSErrorPeerCertificateChainKey=(
"<cert(0x7fe602036400) s: *.googleapis.com i: Google Internet Authority
G3>",
"<cert(0x7fe60203b800) s: Google Internet Authority G3 i: GlobalSign>"
), NSUnderlyingError=0x60400044bac0 {Error Domain=kCFErrorDomainCFNetwork
Code=-1200 "(null)" UserInfo={_kCFStreamPropertySSLClientCertificateState=0,
kCFStreamPropertySSLPeerTrust=<SecTrustRef: 0x600000110ce0>, _
kCFNetworkCFStreamSSLErrorOriginalValue=-9802,
_kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802,
kCFStreamPropertySSLPeerCertificates=(
"<cert(0x7fe602036400) s: *.googleapis.com i: Google Internet Authority
G3>",
"<cert(0x7fe60203b800) s: Google Internet Authority G3 i: GlobalSign>"
)}}, NSLocalizedDescription=An SSL error has occurred and a secure
connection to the server cannot be made., NSErrorFailingURLKey=https://
play.googleapis.com/log, NSErrorFailingURLStringKey=htt
ps://play.googleapis.com/log, NSErrorClientCertificateStateKey=0}
2018-03-08 11:41:48.941242+0530 FirebaseCheck[31161:1161590]
[Firebase/Core][I-COR000020] Error posting to Clearcut: Error
Domain=NSURLErrorDomain Code=-1200 "An SSL error has occurred and a secure
connection to the server cannot be made." UserInfo={
NSURLErrorFailingURLPeerTrustErrorKey=<SecTrustRef: 0x600000110ce0>,
NSLocalizedRecoverySuggestion=Would you like to connect to the server
anyway?, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802,
NSErrorPeerCertificateChainKey=(
"<cert(0x7fe602036400) s: *.googleapis.com i: Google Internet Authority
G3>",
"<cert(0x7fe60203b800) s: Google Internet Authority G3 i: GlobalSign>"
), NSUnderlyingError=0x60400044bac0 {Error Domain=kCFErrorDomainCFNetwork
Code=-1200 "(null)" UserInfo={_kCFStreamPropertySSLClientCertificateState=0,
kCFStreamPropertySSLPeerTrust=<SecTrustRef: 0x600000110ce0>, _
kCFNetworkCFStreamSSLErrorOriginalValue=-9802,
_kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802,
kCFStreamPropertySSLPeerCertificates=(
"<cert(0x7fe602036400) s: *.googleapis.com i: Google Internet Authority
G3>",
"<cert(0x7fe60203b800) s: Google Internet Authority G3 i: GlobalSign>"
)}}, NSLocalizedDescription=An SSL error has occurred and a secure
connection to the server cannot be made., NSErrorFailingURLKey=https://
play.googleapis.com/log, NSErrorFailingURLStringKey=htt
ps://play.googleapis.com/log, NSErrorClientCertificateStateKey=0}, with
Status Code: 0
2018-03-08 11:41:48.942 FirebaseCheck[31161] [Firebase/Core][I-COR000020]
Error posting to Clearcut: Error Domain=NSURLErrorDomain Code=-1200 "An SSL
error has occurred and a secure connection to the server cannot be made."
UserInfo={NSURLErrorFailingURLPeerTrustErrorKey=<SecTrustRef:
0x600000110ce0>, NSLocalizedRecoverySuggestion=Would you like to connect
to the server anyway?, _kCFStreamErrorDomainKey=3,
_kCFStreamErrorCodeKey=-9802, NSErrorPeerCertificateChainKey=(
"<cert(0x7fe602036400) s: *.googleapis.com i: Google Internet Authority
G3>",
"<cert(0x7fe60203b800) s: Google Internet Authority G3 i: GlobalSign>"
), NSUnderlyingError=0x60400044bac0 {Error Domain=kCFErrorDomainCFNetwork
Code=-1200 "(null)" UserInfo={_kCFStreamPropertySSLClientCertificateState=0,
kCFStreamPropertySSLPeerTrust=<SecTrustRef: 0x600000110ce0>, _
kCFNetworkCFStreamSSLErrorOriginalValue=-9802,
_kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802,
kCFStreamPropertySSLPeerCertificates=(
"<cert(0x7fe602036400) s: *.googleapis.com i: Google Internet Authority
G3>",
"<cert(0x7fe60203b800) s: Google Internet Authority G3 i: GlobalSign>"
)}}, NSLocalizedDescription=An SSL error has occurred and a secure
connection to the server cannot be made., NSErrorFailingURLKey=https://
play.googleapis.com/log, NSErrorFailingURLStringKey=htt
ps://play.googleapis.com/log, NSErrorClientCertificateStateKey=0}, with
Status Code: 0
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
https://github.com/firebase/firebase-ios-sdk/issues/357#issuecomment-371425860,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AT-nrklkGVz1Isv9iTaqwqxG75s3LCMUks5tcPU5gaJpZM4Pzh9W
.
--
Thanks & Regards
Prajwal Kumar Balugu
Skype: prajwalkumar48
@Sea-Eagle
what do u mean by google Api domains. i just entered play.googleapis.com in Exception Domains its not working for me
Same error , Xcode Version: XCode 9.2, anyone has any idea for this issue?
2018-03-11 20:55:43.902174+0800 AppName[7197:3444330] [Firebase/Analytics][I-ACS023007] Firebase Analytics v.40005000 started
2018-03-11 20:55:43.902312+0800 AppName[7197:3444330] [Firebase/Analytics][I-ACS023008] To enable debug logging set the following application argument: -FIRAnalyticsDebugEnabled (see http://goo.gl/RfcP7r)
2018-03-11 20:55:54.014940+0800 AppName[7197:3444327] [BoringSSL] Function nw_protocol_boringssl_input_finished: line 1386 Peer disconnected during the middle of a handshake. Sending errSSLFatalAlert(-9802) alert
2018-03-11 20:55:54.984766+0800 AppName[7197:3444327] TIC TCP Conn Failed [1:0x1d416fd80]: 3:-9802 Err(-9802)
2018-03-11 20:56:08.974135+0800 AppName[7197:3444327] TIC TCP Conn Failed [3:0x1d416fe40]: 3:-9802 Err(-9802)
2018-03-11 20:56:18.727117+0800 AppName[7197:3444327] TIC TCP Conn Failed [4:0x1d416fd80]: 3:-9802 Err(-9802)
2018-03-11 20:56:19.479597+0800 AppName[7197:3444327] NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802)
2018-03-11 20:56:19.479745+0800 AppName[7197:3444327] Task <B6AFD591-9280-4E0E-92B1-5B627B73A2C8>.<1> HTTP load failed (error code: -1200 [3:-9802])
2018-03-11 20:56:20.625462+0800 AppName[7197:3444518] Task <B6AFD591-9280-4E0E-92B1-5B627B73A2C8>.<1> finished with error - code: -1200
I'm getting this very same error. Using it from Xamarin.iOS
Compiling against iOS 11.3. Xamarin.iOS 11.9.1.24 (latest)
Network: Orange Spain. Tried wi-fi and cellular.
Xamarin.Firebase.iOS.CloudMessaging NuGet package (with Firebase.iOS.Core 4.0.13)
ATS: Default configuration. (no exceptions)
Device: iPhone 7, iOS 11.3
The error I'm getting:
<Firebase/Network/ERROR> Encounter network error. Code, error: -1200, Error Domain=NSURLErrorDomain Code=-1200 "An SSL error has occurred and a secure connection to the server cannot be made." UserInfo={_kCFStreamErrorCodeKey=-9802, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, NSUnderlyingError=0x1c024c720 {Error Domain=kCFErrorDomainCFNetwork Code=-1200 "(null)" UserInfo={_kCFStreamPropertySSLClientCertificateState=0, _kCFNetworkCFStreamSSLErrorOriginalValue=-9802, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802}}, NSLocalizedDescription=An SSL error has occurred and a secure connection to the server cannot be made., NSErrorFailingURLKey=https://play.googleapis.com/log, NSErrorFailingURLStringKey=https://play.googleapis.com/log, _kCFStreamErrorDomainKey=3}
Task .<1> HTTP load failed (error code: -999 [1:89])
Task .<1> finished with error - code: -999
This was happening to me because I was blocking my main thread with DispatchGroup.wait(). Check to see if your main thread is blocked.
This started happening to me today on a project where it was completely working before. 0 changes were made. Did anyone solve this issue?
This happened to me same as well. The whole code with no change was working completely fine in previous project.
+1
Any updates? :(
Today, I face that issue too.
I think @aleczadikian is correct it is blocking main thread. When i tried moving Firebase out of main thread it crashed saying main is required.
Try pushing Firebase with DispatchQueue.main.async {} this worked for me in one device but same behaviour in another. Still searching for concrete solution.
2019-07-24 11:10:00.660023+0530 5.16.0 - [Firebase/Analytics][I-ACS023007] Analytics v.50500000 started
2019-07-24 11:10:00.660186+0530 5.16.0 - [Firebase/Analytics][I-ACS023008] To enable debug logging set the following application argument: -FIRAnalyticsDebugEnabled (see http://goo.gl/RfcP7r)
2019-07-24 11:10:00.676636+0530 [Crashlytics] Version 3.12.0 (136)
2019-07-24 11:10:10.908083+0530 [BoringSSL] nw_protocol_boringssl_input_finished(1543) [C1.1:2][0x133e18950] Peer disconnected during the middle of a handshake. Sending errSSLClosedNoNotify(-9816) alert
2019-07-24 11:10:10.921315+0530 TIC TCP Conn Failed [1:0x280bb0540]: 3:-9816 Err(-9816)
2019-07-24 11:10:21.148004+0530 [BoringSSL] nw_protocol_boringssl_input_finished(1543) [C3.1:2][0x1355098c0] Peer disconnected during the middle of a handshake. Sending errSSLClosedNoNotify(-9816) alert
2019-07-24 11:10:21.151131+0530 TIC TCP Conn Failed [3:0x280bb1680]: 3:-9816 Err(-9816)
2019-07-24 11:10:21.287616+0530 [BoringSSL] boringssl_context_alert_callback_handler(3724) [C4.1:2][0x135508aa0] Alert level: fatal, description: inappropriate fallback
2019-07-24 11:10:21.287806+0530 [BoringSSL] boringssl_session_errorlog(224) [C4.1:2][0x135508aa0] [boringssl_session_handshake_incomplete] SSL_ERROR_SSL(1): operation failed within the library
2019-07-24 11:10:21.287906+0530 [BoringSSL] boringssl_session_handshake_error_print(205) [C4.1:2][0x135508aa0] 5186303224:error:1000043e:SSL routines:OPENSSL_internal:TLSV1_ALERT_INAPPROPRIATE_FALLBACK:/BuildRoot/Library/Caches/com.apple.xbs/Sources/boringssl/boringssl-109.250.2/ssl/tls_record.cc:586:SSL alert number 86
2019-07-24 11:10:21.287974+0530 [BoringSSL] boringssl_context_get_error_code(3617) [C4.1:2][0x135508aa0] SSL_AD_INAPPROPRIATE_FALLBACK
2019-07-24 11:10:21.290335+0530 TIC TCP Conn Failed [4:0x280badb00]: 3:-9860 Err(-9860)
2019-07-24 11:10:21.292540+0530 NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9860)
2019-07-24 11:10:21.292633+0530 Task .<1> HTTP load failed (error code: -1200 [3:-9860])
2019-07-24 11:10:21.292945+0530 Task .<1> finished with error - code: -1200
2019-07-24 11:10:31.201444+0530 Task .<1> load failed with error Error Domain=NSURLErrorDomain Code=-1200 "An SSL error has occurred and a secure connection to the server cannot be made." UserInfo={NSErrorFailingURLStringKey=https://play.googleapis.com/log, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, _kCFStreamErrorDomainKey=3, _NSURLErrorFailingURLSessionTaskErrorKey=LocalUploadTask .<1>, _NSURLErrorRelatedURLSessionTaskErrorKey=(
"LocalUploadTask .<1>"
), NSLocalizedDescription=An SSL error has occurred and a secure connection to the server cannot be made., NSErrorFailingURLKey=https://play.googleapis.com/log, NSUnderlyingError=0x2830fed30 {Error Domain=kCFErrorDomainCFNetwork Code=-1200 "(null)" UserInfo={_kCFStreamPropertySSLClientCertificateState=0, _kCFNetworkCFStreamSSLErrorOriginalValue=-9860, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9860}}, _kCFStreamErrorCodeKey=-9860} [-1200]
2019-07-24 11:10:31.202237+0530 <Google/Utilities/Network/ERROR> Encounter network error. Code, error: -1200, Error Domain=NSURLErrorDomain Code=-1200 "An SSL error has occurred and a secure connection to the server cannot be made." UserInfo={NSErrorFailingURLStringKey=https://play.googleapis.com/log, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, _kCFStreamErrorDomainKey=3, _NSURLErrorFailingURLSessionTaskErrorKey=LocalUploadTask .<1>, _NSURLErrorRelatedURLSessionTaskErrorKey=(
"LocalUploadTask .<1>"
), NSLocalizedDescription=An SSL error has occurred and a secure connection to the server cannot be made., NSErrorFailingURLKey=https://play.googleapis.com/log, NSUnderlyingError=0x2830fed30 {Error Domain=kCFErrorDomainCFNetwork Code=-1200 "(null)" UserInfo={_kCFStreamPropertySSLClientCertificateState=0, _kCFNetworkCFStreamSSLErrorOriginalValue=-9860, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9860}}, _kCFStreamErrorCodeKey=-9860}
2019-07-24 11:10:31.202586+0530 5.16.0 - [GULNetwork][I-NET901017] <Google/Utilities/Network/ERROR> Encounter network error. Code, error: -1200, Error Domain=NSURLErrorDomain Code=-1200 "An SSL error has occurred and a secure connection to the server cannot be made." UserInfo={NSErrorFailingURLStringKey=https://play.googleapis.com/log, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, _kCFStreamErrorDomainKey=3, _NSURLErrorFailingURLSessionTaskErrorKey=LocalUploadTask .<1>, _NSURLErrorRelatedURLSessionTaskErrorKey=(
"LocalUploadTask .<1>"
), NSLocalizedDescription=An SSL error has occurred and a secure connection to the server cannot be made., NSErrorFailingURLKey=https://play.googleapis.com/log, NSUnderlyingError=0x2830fed30 {Error Domain=kCFErrorDomainCFNetwork Code=-1200 "(null)" UserInfo={_kCFStreamPropertySSLClientCertificateState=0, _kCFNetworkCFStreamSSLErrorOriginalValue=-9860, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9860}}, _kCFStreamErrorCodeKey=-9860}
2019-07-24 11:10:31.203564+0530 5.16.0 - [Firebase/Core][I-COR000020] Error posting to Clearcut: Error Domain=NSURLErrorDomain Code=-1200 "An SSL error has occurred and a secure connection to the server cannot be made." UserInfo={NSErrorFailingURLStringKey=https://play.googleapis.com/log, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, _kCFStreamErrorDomainKey=3, _NSURLErrorFailingURLSessionTaskErrorKey=LocalUploadTask .<1>, _NSURLErrorRelatedURLSessionTaskErrorKey=(
"LocalUploadTask .<1>"
), NSLocalizedDescription=An SSL error has occurred and a secure connection to the server cannot be made., NSErrorFailingURLKey=https://play.googleapis.com/log, NSUnderlyingError=0x2830fed30 {Error Domain=kCFErrorDomainCFNetwork Code=-1200 "(null)" UserInfo={_kCFStreamPropertySSLClientCertificateState=0, _kCFNetworkCFStreamSSLErrorOriginalValue=-9860, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9860}}, _kCFStreamErrorCodeKey=-9860}, with Status Code: 0
2019-07-24 11:10:33.962692+0530 [BoringSSL] nw_protocol_boringssl_get_output_frames(1301) [C5.1:2][0x13520fc90] get output frames failed, state 8196
2019-07-24 11:10:33.962966+0530 [BoringSSL] nw_protocol_boringssl_get_output_frames(1301) [C5.1:2][0x13520fc90] get output frames failed, state 8196
2019-07-24 11:10:33.963615+0530 TIC Read Status [5:0x0]: 1:57
2019-07-24 11:10:33.963744+0530 TIC Read Status [5:0x0]: 1:57
2019-07-24 11:10:34.230760+0530 [BoringSSL] nw_protocol_boringssl_get_output_frames(1301) [C6.1:2][0x135215370] get output frames failed, state 8196
2019-07-24 11:10:34.231430+0530 [BoringSSL] nw_protocol_boringssl_get_output_frames(1301) [C6.1:2][0x135215370] get output frames failed, state 8196
2019-07-24 11:10:34.232251+0530 TIC Read Status [6:0x0]: 1:57
2019-07-24 11:10:34.232324+0530 TIC Read Status [6:0x0]: 1:57
Did you have any joy with this? 1 in 5 (ish) app starts are causing a crash with similar errors:
nw_protocol_boringssl_input_finished(1543) <private>[0x10583d2f0] Peer disconnected during the middle of a handshake. Sending errSSLClosedNoNotify(-9816) alert
TIC TCP Conn Failed [1:0x280c92ac0]: 3:-9816 Err(-9816)
@alexcroox
No solution yet, But i found that this is happing only with mobile data network (LTE Voice) and also specific to one network only, with other network providers it works fine.
Hope this will help you in some way !!
my app is using wifi and like @alexcroox this is happening about 1 out of every 4 or 5 app starts. Never seen it before until today. In fact, the frequency is increasing each time I run the app.
@Sea-Eagle - could you specific exactly what you added as a domain exception. Here is what I currently have in my plist file, what else should I add? :
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSExceptionDomains</key>
<dict>
<key>google.com</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
</dict>
</dict>
| gharchive/issue | 2017-10-10T08:09:45 | 2025-04-01T06:38:41.006221 | {
"authors": [
"Krusheuski",
"NelsonBlakeN",
"NoodleOfDeath",
"Sea-Eagle",
"aleczadikian",
"alexcroox",
"dennis-tra",
"ibrahimyilmaz7",
"levantAJ",
"male87",
"manuelph",
"morganchen12",
"neokree",
"pulimento",
"ramunasjurgilas",
"rolinger",
"rsattar",
"saudahmed",
"sivarajss",
"spthread",
"tspiva",
"zanesc"
],
"repo": "firebase/firebase-ios-sdk",
"url": "https://github.com/firebase/firebase-ios-sdk/issues/357",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
495067113 | Crashed: com.google.firebase.firestore
This issue might be related to #3851, since it has the same stack trace in Protobuf.
We only see this crash on iOS 10 and iPad 4, but this is from TestFlight, so the user group only consists of a few thousand users.
Using Firebase (6.7.0)
Using FirebaseABTesting (3.1.0)
Using FirebaseAnalytics (6.1.1)
Using FirebaseAnalyticsInterop (1.4.0)
Using FirebaseAuth (6.2.3)
Using FirebaseAuthInterop (1.0.0)
Using FirebaseCore (6.2.1)
Using FirebaseCoreDiagnostics (1.0.1)
Using FirebaseCoreDiagnosticsInterop (1.0.0)
Using FirebaseFirestore (1.4.5)
Using FirebaseInstanceID (4.2.3)
Using FirebasePerformance (3.1.2)
Using FirebaseRemoteConfig (4.3.0)
Using FirebaseStorage (3.4.0)
Thanks for the report @ChristianVinterly! You're right, this is definitely a dupe of #3851. We're making good progress on it and will update that bug with more information.
Thanks again 😄
I had originally suspected this to be a different issue because it originated from a different framework, but looks like the root cause is the same. Sorry @ChristianVinterly!
| gharchive/issue | 2019-09-18T08:24:46 | 2025-04-01T06:38:41.010531 | {
"authors": [
"ChristianVinterly",
"morganchen12",
"ryanwilson"
],
"repo": "firebase/firebase-ios-sdk",
"url": "https://github.com/firebase/firebase-ios-sdk/issues/3875",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1077863180 | [Firebase/Performance] GULObjectSwizzler crashes on objc_disposeClassPair.
[REQUIRED] Step 1: Describe your environment
Xcode version: 13.1
Firebase SDK version: 8.10
Installation method: Any
Firebase Component: Firebase
Target platform(s): iOS
[REQUIRED] Step 2: Describe the problem
Steps to reproduce:
When using Firebase Performance along with Detox Sync (a framework used by Detox), there is a double ISA Swizzling by the components. This causes a crash when NSZombiesEnabled=NO.
Firebase Performance does ISA Swizzling (using GULObjectSwizzler).
Detox Sync does ISA Swizzling, with a dynamic subclass of the generated class, using DTXSwizzlingHelper.
GULObjectSwizzler calls to dispose its own generated subclasses using objc_disposeClassPair().
Crash with the error message: objc_disposeClassPair: class 'fir_<some uuid>_<class name>' still has subclasses, including 'fir_<some uuid>_<class name>(__detox_sync_<class name>)'!
This issue seems to be related: https://github.com/google/GoogleUtilities/issues/15.
Also, another explanation of a similar issue, with zombie objects: https://github.com/firebase/firebase-ios-sdk/issues/8321#issuecomment-900321941 (instead Zombie objects, we have DetoxSync objects).
This branch of DetoxSync reproduces the issue: https://github.com/asafkorem/DetoxSync/tree/feature/reproduce-detox-sync-crash: build and run ExampleApp/TimersTest.xcodeproj with NSZombiesEnabled=NO.
@paulb777 just to note this is of intense interest in react-native-firebase repo, our test harness is based entirely on Detox, and last time I did a survey of available e2e test tools, Detox still won, even with the horrific ios e2e crash frequency we're taking now. Would :heart: to see some sort of fix or remediation or something here :-)
Thanks @mikehardy, and sorry about the inconvenience around this thus far. Looks like we're really getting somewhere now.
@asafkorem @mikehardy Thanks for the detailed report and background. We'll take a look. It's one of our priorities to overhaul how Firebase uses swizzling. However, a resolution may still be months out.
In the meantime, is omitting FirebasePerformance when Detox is used a viable workaround?
It is possible but is equivalent to saying omit performance from e2e testing for us
Thanks for the response @paulb777, as @mikehardy mentioned it is possible but we'd rather avoid that, I think it would be better as a workaround to set some compiler flag that will only omit the deallocation part that triggers this crash. This flag can be used when building the app for Detox tests.
@asafkorem is there any reason we can't ride-along with NSZombiesEnabled=1 behavior - that is, make GULObjectSwizzler think we are running the zombies instrument, and thus avoid de-allocation.
Stated differently, perhaps the "NSZombiesEnabled" check could more properly be thought of as a "don't dispose generated classes" check, just with a too-specific name, but it would serve us as well :thinking: . Have you tried it?
@mikehardy yes, I thought about it too and already tried this approach.
I wasn't able to set this environment variable using xcodebuild command :/
Oh, this makes more sense now.. thanks @mikehardy. I'll try this soon
cc: @visumickey
It appears to be working for me, if not completely, then "well". The first run I did I took a SIGSEGV in DetoxSync again, but then I was 10/10 on further runs (an incredible result, I was at maybe 1-2/10 success prior). I am using the special method of passing env vars through simctl as mentioned above. I'm about to make a commit to react-native-firebase that will have a github cross link so others may examine in case it's useful. Thanks for this trick, at least preliminary results show it appears workable to me
I'm a little concerned about the SIGSEGV. Was that just a freak accident? At least with the DetoxSync crash there was some transparency into what it was. With SIGSEGVs I dislike that they're usually a disaster to debug
I'll need to wait to collect quite a few more results I think, before I want to spend anyone's time in this repo, possibly chasing ghosts.
Hmm, sadly I think statistics is a thing and I simply had an improbably long run of good results. With quite a few more runs throughout the day / evening, I still definitely have a problem with Detox-current on firebase-ios-sdk-current on iOS-simulator-current on both local macOS x86-64 VMs and up on github actions macOS runners :shrug: - really seemed like an improvement, and I have a hunch statistically it still might be, but there's no silver bullet with the NSZombiesEnabled=1, at least the way I'm setting it https://github.com/invertase/react-native-firebase/runs/4511769043?check_suite_focus=true :shrug:
Yeah can confirm still seeing Signal 11 with SIMCTL_CHILD_NSZombiesEnabled=1. Is there an easy way of confirming that this property is being injected into the simulator build?
@mikehardy Adding SIMCTL_CHILD_NSZombiesEnabled=1 before the xcrun simctl launch command doesn't seems to solve this (NSZombiesEnabled is still false).
Really sorry I took everyone down the wrong path with my plural-zombies typo! Thanks @asafkorem for seeing that and clearing it up. Excited to have this mitigated, my CI is running now in react-native-firebase based off your PR there Asaf
@asafkorem Nice catch!
@paulb777 @ncooke3 @visumickey
Although passing the NSZombieEnabled flag does solves this problem as a workaround, I would have preferred to have a dedicated flag for disabling this class-disposing from firebase-performance and not to ride on the zombie-enabled flag, which might cause other side-effects like ignoring real memory issues on detox tests or unnecessary memory consumption, especially if a clean solution may only arrive in months. 🙏🏼
.. I would have preferred to have a dedicated flag for disabling this class-disposing from firebase-performance and not to ride on the zombie-enabled flag, which might cause other side-effects ..
I've opened a PR for this: https://github.com/google/GoogleUtilities/pull/66
Thanks @asafkorem! GoogleUtilities 7.7.0 is now published to CocoaPods and SPM with your PR that disables class disposing when the GULGeneratedClassDisposeDisabled environment variable is set.
Thanks @paulb777!
We'll replace the zombie flag with this one on Detox tests execution command.
FYI @mikehardy.
Sample size of 10 runs which - for this bug, in the react-native-firebase harness - is strongly statistically significant already. Looks great, thanks for the ping @asafkorem
Although enabling this flag is a bit workaround, it's a pretty decent one. In my opinion, we can definitely live with that, considering the fact that this crash happens when running the apps on Detox tests environment, and this kind of memory consumption (not disposing the generated classes) should not particularly worry us in this case.
I opened this issue in the context of this bug, and I think we can close it now since it was resolved. Thanks guys!
Thanks for the fixing PR @asafkorem !
| gharchive/issue | 2021-12-12T17:31:57 | 2025-04-01T06:38:41.030771 | {
"authors": [
"asafkorem",
"d4vidi",
"mikehardy",
"ncooke3",
"paulb777",
"shamilovtim"
],
"repo": "firebase/firebase-ios-sdk",
"url": "https://github.com/firebase/firebase-ios-sdk/issues/9083",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1078917335 | FR: Support for Mac OS Safari Extension
Thank you very much for adding Mac OS support for firebase SDK.
I have an Mac OS Safari Extension from which I'd like to call FirebaseApp.configure() with its own bundle identifier.
In MacOS Safari extension, we define SafariWebExtensionHandler.swift and I call FirebaseApp.configure() from its beginRequest function.
However, I get an exception, as FirebaseApp.configure() is called many times, as every time popup.html is loaded from the extension icon in the Safari Browser and calls native, separate instances of SafariWebExtensionHandler is created. I suppose this is similar to iOS app where multiple ActionViewController instances are created.
However, for the case of iOS, [GULAppEnvironmentUtil isAppExtension] returns true and exception is not thrown while it returns false in MacOS Safari Extension. Would it be possible to support the same feature for MacOS Safari Extension? Thank you.
Btw I modified GULAppEnvironmentUtil.m and returned true for case TARGET_OS_OSX but I still got crash so this issue is prob more than superficial flag issue.
| gharchive/issue | 2021-12-13T19:44:49 | 2025-04-01T06:38:41.034418 | {
"authors": [
"yaizudamashii"
],
"repo": "firebase/firebase-ios-sdk",
"url": "https://github.com/firebase/firebase-ios-sdk/issues/9090",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1287410349 | Firebase SDK with Version 9.2.0 is giving build time error
I have added Firebase SDK through cocoa-pods with the help of below lines:
pod 'Firebase', '~> 9.2.0'
pod 'Firebase/Crashlytics', '~> 9.2.0'
pod 'Firebase/Analytics', '~> 9.2.0'
After successful addition of firebase SDK's, It is giving compile-time error:
Pods/FirebaseCoreInternal/FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatController.swift:110:14: Value of optional type 'HeartbeatsBundle?' must be unwrapped to refer to member 'makeHeartbeatsPayload' of wrapped base type 'HeartbeatsBundle'
Please find attached a screenshot for the same.
Please share the version of Xcode used.
@paulb777 I used xcode 13.3.1.
@RupaliPatil28910 I'm not able to reproduce. Are you able to share a reproducible example. Perhaps with one of the examples in https://github.com/firebase/quickstart-ios?
Hello,
I'm facing the same issue, today I tried to build my Flutter project after updating Firebase SDK to 9.2.O on Xcode and the build failed.
Xcode version: Version 13.4.1 (13F100)
For now, I downgraded versions directly in my Podfile. I checked them on my colleague's Mac, this is what I added:
$FirebaseSDKVersion = '8.15.0' pod 'Firebase/Core', '8.15.0' pod 'FirebaseCoreDiagnostics', '8.15.0' pod 'FirebaseInstallations', '8.15.0'
It's running fine for now.
I added '!' like suggested by Xcode for now like that:
return heartbeatsBundle!.makeHeartbeatsPayload()
and it compiles and runs now. The thing is that it is inside the package so I'll need to do it several times if removed after downloading it again.
It seems like the compiler is getting confused somehow:
https://github.com/firebase/firebase-ios-sdk/blob/3862a56dd3735c84d746892648781f36984ff2ed/FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatController.swift#L109-L111
Line 109 uses if let which should mean that heartbeatsBundle is non-optional on line 110. I thought it maybe could have been getting confused with the similarly named variable on line 94 but it's not in the same scope.
@RupaliPatil28910 are you also using Flutter? If so, maybe it's worth filing an issue there.
We're still hoping for a repro project, otherwise we likely won't be able to make progress on this.
@ryanwilson I am facing this issue in Native iOS project.
@paulb777 In xcode 13.3.1, I just updated firebase to version 9.2.0 through cocoa-pods. After that build gets failed by giving attached error.
But through Swift Package Manager, same firebase version worked.
Same problem here
I added '!' like suggested by Xcode for now like that:
return heartbeatsBundle!.makeHeartbeatsPayload()
and it compiles and runs now. The thing is that it is inside the package so I'll need to do it several times if removed after downloading it again.
Yeah, that hack works. :)
As a Flutter developer, it is super frustrating how often firebase breaks stuff. 😕
I'm sorry for the frustration @kennethj - we still don't have a project that reproduces this. If you have one, that will enable us to move forward and get to the root issue.
It's quite confusing because the code as written should work, it sounds like the compiler is in a bad state or is getting confused. In the workaround of adding a ! to heartbeatsBundle, that won't actually compile when building the SDK alone or in our quickstart projects, so it's not like we can do that and ship it.
cc @JEuler in case you also have a sample project that reproduces this.
Adding on to Ryan's post: @RupaliPatil28910, you mentioned that you saw this issue in a native iOS project, are you able to share a repro by chance?
Does this help?
https://github.com/kennethj/firebase_ios_flutter_bug
It is a base flutter create project with firebase dependencies added and await Firebase.initializeApp(); added to main.dart
This produces the same errors I am getting in other projects.
Setting Firebase SDK version to 8.15.0 in the Podfile seems to work for me
# Override Firebase SDK Version
$FirebaseSDKVersion = '8.15.0'
For people running into this issue, can you share your project's Swift version as well?
https://github.com/kennethj/firebase_ios_flutter_bug - updated to match the configuration of projects to reproduce the HeartbeatsBundle? error.
Swift Compiler Error (Xcode): Value of optional type 'HeartbeatsBundle?' must be unwrapped to refer to member
'makeHeartbeatsPayload' of wrapped base type 'HeartbeatsBundle'
Thanks a bunch @kennethj, I took a look at your project. Could you bump your Swift version to 5.x? Could you try 5.3 for example? I see that your project is using the previous major version which could be contributing to the problem here.
Updating the SWIFT_VERSION to '5.3' in the Podfile appears to work for the repo posted above.
Changes to Podfile:
https://github.com/kennethj/firebase_ios_flutter_bug/commit/5a442144054a656d4d73b313ab24c613b3df57ea
Thanks @kennethj for confirming it worked. I recommend to stay on the latest major Swift version as that is the version we develop Firebase with.
Could others in this thread confirm that bumping their Swift version to a 5.x version addresses the build error?
@JEuler @RupaliPatil28910 @tel-kho
It worked for me also. Sorry for dumbness error report :D Thanks!
No worries at all @JEuler, and thank you for confirming.
At this point, the recommended solution is to bump the Swift version to major version 5. I'm going to close this issue for now but can re-open if anyone runs into more issues.
Sorry again for the trouble and thanks everyone for the helpful info. I'm going to look into how we can keep this version in sync with the Swift version that Flutter uses.
Could others in this thread confirm that bumping their Swift version to a 5.x version addresses the build error? @JEuler @RupaliPatil28910 @tel-kho
I updated my Podfile too:
config.build_settings['SWIFT_VERSION'] = '5.3'
I cleaned my dependancies and installed them again, I can now run my project without modifying the line, thank you!
I'll let you know if I face the error again with further app build on Xcode
| gharchive/issue | 2022-06-28T14:09:11 | 2025-04-01T06:38:41.052567 | {
"authors": [
"JEuler",
"RupaliPatil28910",
"kennethj",
"morganchen12",
"ncooke3",
"paulb777",
"ryanwilson",
"tel-kho"
],
"repo": "firebase/firebase-ios-sdk",
"url": "https://github.com/firebase/firebase-ios-sdk/issues/9960",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1960151432 | [Infra] Allow override for Firestore CI
#no-changelog
@paulb777, do you know if this PR would need to be merged to take effect? I think? it does.
I suspect you're right. I'll merge now.
| gharchive/pull-request | 2023-10-24T22:01:39 | 2025-04-01T06:38:41.054498 | {
"authors": [
"ncooke3",
"paulb777"
],
"repo": "firebase/firebase-ios-sdk",
"url": "https://github.com/firebase/firebase-ios-sdk/pull/11994",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.