This repository has been archived by the owner on Jan 4, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathgithub-rest-sample-response.json
1706 lines (1681 loc) · 96.3 KB
/
github-rest-sample-response.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"total_count": 191566,
"incomplete_results": false,
"items": [
{
"url": "https://api.github.com/repos/testing-library/react-testing-library/issues/403",
"repository_url": "https://api.github.com/repos/testing-library/react-testing-library",
"labels_url": "https://api.github.com/repos/testing-library/react-testing-library/issues/403/labels{/name}",
"comments_url": "https://api.github.com/repos/testing-library/react-testing-library/issues/403/comments",
"events_url": "https://api.github.com/repos/testing-library/react-testing-library/issues/403/events",
"html_url": "https://github.com/testing-library/react-testing-library/issues/403",
"id": 465927307,
"node_id": "MDU6SXNzdWU0NjU5MjczMDc=",
"number": 403,
"title": "`wait()` function never completes in a production build",
"user": {
"login": "RoystonS",
"id": 19773,
"node_id": "MDQ6VXNlcjE5Nzcz",
"avatar_url": "https://avatars0.githubusercontent.com/u/19773?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/RoystonS",
"html_url": "https://github.com/RoystonS",
"followers_url": "https://api.github.com/users/RoystonS/followers",
"following_url": "https://api.github.com/users/RoystonS/following{/other_user}",
"gists_url": "https://api.github.com/users/RoystonS/gists{/gist_id}",
"starred_url": "https://api.github.com/users/RoystonS/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/RoystonS/subscriptions",
"organizations_url": "https://api.github.com/users/RoystonS/orgs",
"repos_url": "https://api.github.com/users/RoystonS/repos",
"events_url": "https://api.github.com/users/RoystonS/events{/privacy}",
"received_events_url": "https://api.github.com/users/RoystonS/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 872234504,
"node_id": "MDU6TGFiZWw4NzIyMzQ1MDQ=",
"url": "https://api.github.com/repos/testing-library/react-testing-library/labels/bug",
"name": "bug",
"color": "d73a4a",
"default": true
},
{
"id": 872234507,
"node_id": "MDU6TGFiZWw4NzIyMzQ1MDc=",
"url": "https://api.github.com/repos/testing-library/react-testing-library/labels/help%20wanted",
"name": "help wanted",
"color": "008672",
"default": true
},
{
"id": 944860745,
"node_id": "MDU6TGFiZWw5NDQ4NjA3NDU=",
"url": "https://api.github.com/repos/testing-library/react-testing-library/labels/needs%20investigation",
"name": "needs investigation",
"color": "4fb5d1",
"default": false
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2019-07-09T18:36:40Z",
"updated_at": "2019-07-09T18:39:37Z",
"closed_at": null,
"author_association": "CONTRIBUTOR",
"body": "- `react-testing-library` version: 8.0.4\r\n- `react` version: 16.8.6\r\n- `node` version: 10.16.0\r\n- `npm` (or `yarn`) version: yarn 1.16.0\r\n\r\n### Relevant code or config:\r\n\r\n```js\r\nawait wait(fn);\r\n```\r\nin a production (minified) build never completes.\r\n\r\n### What you did:\r\n\r\nWe're attempting to upgrade from `react-testing-library` 6.0.1 to `@testing-library/react` 8.0.4 but have hit an issue:\r\n\r\nWe run our tests in a production (minified) build, in order to be certain that our minified code is actually behaving correctly. (We've had issues where the generated code doesn't work in some browsers, so we make sure we test the actual code we're going to ship, which means building our tests in production mode.)\r\n\r\nUnfortunately, our test suite hangs when we upgrade `testing-library`: the calls to `wait()` now never complete.\r\n \r\n### What happened:\r\n\r\nWe attempted to upgrade `react-testing-library` and now many of our tests lock up and never complete.\r\n\r\n### Reproduction:\r\n\r\n```js\r\nimport * as rtl from '@testing-library/react';\r\n\r\n/**\r\n * An asynchronous function that just runs @testing-library/react#wait()\r\n * and checks to see if that completes.\r\n */\r\nasync function runIt() {\r\n const timeoutHandle = setTimeout(() => {\r\n console.error(\"Five seconds on, and wait still hasn't completed\");\r\n }, 5000);\r\n\r\n await rtl.wait(() => {\r\n console.log(\"This is the function we are waiting for, now complete\");\r\n });\r\n\r\n clearTimeout(timeoutHandle);\r\n console.log(\"The wait function returned; it's all working fine!\");\r\n}\r\n\r\nrunIt();\r\n```\r\n\r\nThis code sets up a timer that complains after 5 seconds, then runs a simple `wait` call, and waits for it to complete. After it completes, it cancels the timer and indicates that everything is working fine.\r\n\r\nIn a development build it reports that everything is working fine. In a production build, the timer goes off, indicating that `wait` didn't complete.\r\n\r\nTo make it easy to run this, I've added the above code to a [Github repo](https://github.com/RoystonS/react-testing-library-wait-never-finishes). This is an out-of-the-box `create-react-app` application (commit 1) with the above code pasted into the `index.js` file ([commit 2](https://github.com/RoystonS/react-testing-library-wait-never-finishes/commit/30b97ac9ca92b0d142c7031d259daf141e2a7dfd))\r\n\r\nTo reproduce:\r\n\r\n1. check out that repo\r\n1. `yarn`\r\n1. `yarn build`\r\n1. (assuming you have `serve` installed): `serve -s build`\r\n1. View the page in a browser, and look in the console\r\n\r\nHere's what it _should_ say:\r\n![image](https://user-images.githubusercontent.com/19773/60913847-2f9f6680-a280-11e9-8290-94a50255e69f.png)\r\n\r\nbut it'll actually say something like:\r\n![image](https://user-images.githubusercontent.com/19773/60913591-a9832000-a27f-11e9-91aa-b4a21c4c2925.png)\r\n\r\n<!--\r\nIf possible, please create a repository that reproduces the issue with the\r\nminimal amount of code possible.\r\n\r\nTemplate repo: https://github.com/alexkrolick/dom-testing-library-template\r\n\r\nOr if you can, try to reproduce the issue in a Codesandbox. You can fork the one\r\nhere: https://codesandbox.io/s/5z6x4r7n0p\r\n-->\r\n\r\n### Problem description:\r\n\r\nIt means that the code that `@testing-library/react` is generating is not working properly when incorporated into a production build using the default `create-react-app` settings. (Actually, the codebase where we found this _isn't_ using `create-react-app`: we've just managed to boil it down to this trivial example.)\r\n\r\n### Suggested solution:\r\n\r\nI'm really not sure. I've traced through the minified code and it seems to be getting stuck inside the regenerator code in the new `asyncWrapper`. I don't know whether it's a bug in `terser` or something in the `react-testing-library` code that isn't quite right but which happens to work in a non-production build but fails in a production build.\r\n\r\n\r\n",
"score": 1.0
},
{
"url": "https://api.github.com/repos/opt-out-tool/opt-out/issues/33",
"repository_url": "https://api.github.com/repos/opt-out-tool/opt-out",
"labels_url": "https://api.github.com/repos/opt-out-tool/opt-out/issues/33/labels{/name}",
"comments_url": "https://api.github.com/repos/opt-out-tool/opt-out/issues/33/comments",
"events_url": "https://api.github.com/repos/opt-out-tool/opt-out/issues/33/events",
"html_url": "https://github.com/opt-out-tool/opt-out/issues/33",
"id": 465926901,
"node_id": "MDU6SXNzdWU0NjU5MjY5MDE=",
"number": 33,
"title": "Decide which cloud hosting service to deploy to",
"user": {
"login": "malteserteresa",
"id": 16385250,
"node_id": "MDQ6VXNlcjE2Mzg1MjUw",
"avatar_url": "https://avatars1.githubusercontent.com/u/16385250?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/malteserteresa",
"html_url": "https://github.com/malteserteresa",
"followers_url": "https://api.github.com/users/malteserteresa/followers",
"following_url": "https://api.github.com/users/malteserteresa/following{/other_user}",
"gists_url": "https://api.github.com/users/malteserteresa/gists{/gist_id}",
"starred_url": "https://api.github.com/users/malteserteresa/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/malteserteresa/subscriptions",
"organizations_url": "https://api.github.com/users/malteserteresa/orgs",
"repos_url": "https://api.github.com/users/malteserteresa/repos",
"events_url": "https://api.github.com/users/malteserteresa/events{/privacy}",
"received_events_url": "https://api.github.com/users/malteserteresa/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 1288619335,
"node_id": "MDU6TGFiZWwxMjg4NjE5MzM1",
"url": "https://api.github.com/repos/opt-out-tool/opt-out/labels/help%20wanted",
"name": "help wanted",
"color": "008672",
"default": true
},
{
"id": 1411821802,
"node_id": "MDU6TGFiZWwxNDExODIxODAy",
"url": "https://api.github.com/repos/opt-out-tool/opt-out/labels/small%20task",
"name": "small task",
"color": "8fefb4",
"default": false
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": {
"url": "https://api.github.com/repos/opt-out-tool/opt-out/milestones/3",
"html_url": "https://github.com/opt-out-tool/opt-out/milestone/3",
"labels_url": "https://api.github.com/repos/opt-out-tool/opt-out/milestones/3/labels",
"id": 4467960,
"node_id": "MDk6TWlsZXN0b25lNDQ2Nzk2MA==",
"number": 3,
"title": "August Sprint",
"description": "",
"creator": {
"login": "malteserteresa",
"id": 16385250,
"node_id": "MDQ6VXNlcjE2Mzg1MjUw",
"avatar_url": "https://avatars1.githubusercontent.com/u/16385250?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/malteserteresa",
"html_url": "https://github.com/malteserteresa",
"followers_url": "https://api.github.com/users/malteserteresa/followers",
"following_url": "https://api.github.com/users/malteserteresa/following{/other_user}",
"gists_url": "https://api.github.com/users/malteserteresa/gists{/gist_id}",
"starred_url": "https://api.github.com/users/malteserteresa/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/malteserteresa/subscriptions",
"organizations_url": "https://api.github.com/users/malteserteresa/orgs",
"repos_url": "https://api.github.com/users/malteserteresa/repos",
"events_url": "https://api.github.com/users/malteserteresa/events{/privacy}",
"received_events_url": "https://api.github.com/users/malteserteresa/received_events",
"type": "User",
"site_admin": false
},
"open_issues": 1,
"closed_issues": 0,
"state": "open",
"created_at": "2019-07-05T12:36:23Z",
"updated_at": "2019-07-09T18:43:20Z",
"due_on": "2019-08-29T07:00:00Z",
"closed_at": null
},
"comments": 0,
"created_at": "2019-07-09T18:35:31Z",
"updated_at": "2019-07-09T18:44:17Z",
"closed_at": null,
"author_association": "COLLABORATOR",
"body": "**Objective**\r\nDecide which cloud hosting service to use\r\n\r\n**Description**\r\nAfter struggling with AWS and it also costing a fair amount, we need to decide where to host the flask backend for our browser extension\r\n\r\n**Skills** \r\nFlask, cloud hosting service, web dev\r\n\r\n**Tools** \r\nAccount or whichever cloud platform we decide on\r\n\r\n**Detailed description**\r\n",
"score": 1.0
},
{
"url": "https://api.github.com/repos/hanford/next-offline/issues/155",
"repository_url": "https://api.github.com/repos/hanford/next-offline",
"labels_url": "https://api.github.com/repos/hanford/next-offline/issues/155/labels{/name}",
"comments_url": "https://api.github.com/repos/hanford/next-offline/issues/155/comments",
"events_url": "https://api.github.com/repos/hanford/next-offline/issues/155/events",
"html_url": "https://github.com/hanford/next-offline/issues/155",
"id": 465925955,
"node_id": "MDU6SXNzdWU0NjU5MjU5NTU=",
"number": 155,
"title": "Better Development workflow",
"user": {
"login": "hanford",
"id": 2148168,
"node_id": "MDQ6VXNlcjIxNDgxNjg=",
"avatar_url": "https://avatars1.githubusercontent.com/u/2148168?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/hanford",
"html_url": "https://github.com/hanford",
"followers_url": "https://api.github.com/users/hanford/followers",
"following_url": "https://api.github.com/users/hanford/following{/other_user}",
"gists_url": "https://api.github.com/users/hanford/gists{/gist_id}",
"starred_url": "https://api.github.com/users/hanford/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/hanford/subscriptions",
"organizations_url": "https://api.github.com/users/hanford/orgs",
"repos_url": "https://api.github.com/users/hanford/repos",
"events_url": "https://api.github.com/users/hanford/events{/privacy}",
"received_events_url": "https://api.github.com/users/hanford/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 830302263,
"node_id": "MDU6TGFiZWw4MzAzMDIyNjM=",
"url": "https://api.github.com/repos/hanford/next-offline/labels/bug",
"name": "bug",
"color": "d73a4a",
"default": true
},
{
"id": 830302266,
"node_id": "MDU6TGFiZWw4MzAzMDIyNjY=",
"url": "https://api.github.com/repos/hanford/next-offline/labels/help%20wanted",
"name": "help wanted",
"color": "008672",
"default": true
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2019-07-09T18:33:16Z",
"updated_at": "2019-07-09T18:33:30Z",
"closed_at": null,
"author_association": "OWNER",
"body": "Right now we've built the plugin very much in a \"production first\" mindset and never really stable support for development mode.\r\n\r\nDevelopers want to test this plugin before sending it to production, and that's a lot harder than it should be.\r\n\r\nWe should fix that by making `next-offline` work seamlessly in both development and production modes.",
"score": 1.0
},
{
"url": "https://api.github.com/repos/Thorium-Sim/thorium/issues/2416",
"repository_url": "https://api.github.com/repos/Thorium-Sim/thorium",
"labels_url": "https://api.github.com/repos/Thorium-Sim/thorium/issues/2416/labels{/name}",
"comments_url": "https://api.github.com/repos/Thorium-Sim/thorium/issues/2416/comments",
"events_url": "https://api.github.com/repos/Thorium-Sim/thorium/issues/2416/events",
"html_url": "https://github.com/Thorium-Sim/thorium/issues/2416",
"id": 465923475,
"node_id": "MDU6SXNzdWU0NjU5MjM0NzU=",
"number": 2416,
"title": "Tactical Map Jumping",
"user": {
"login": "issue-tracker[bot]",
"id": 28870014,
"node_id": "MDM6Qm90Mjg4NzAwMTQ=",
"avatar_url": "https://avatars3.githubusercontent.com/in/2460?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/issue-tracker%5Bbot%5D",
"html_url": "https://github.com/apps/issue-tracker",
"followers_url": "https://api.github.com/users/issue-tracker%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/issue-tracker%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/issue-tracker%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/issue-tracker%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/issue-tracker%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/issue-tracker%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/issue-tracker%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/issue-tracker%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/issue-tracker%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
},
"labels": [
{
"id": 395945388,
"node_id": "MDU6TGFiZWwzOTU5NDUzODg=",
"url": "https://api.github.com/repos/Thorium-Sim/thorium/labels/help%20wanted",
"name": "help wanted",
"color": "1b831e",
"default": true
},
{
"id": 395945385,
"node_id": "MDU6TGFiZWwzOTU5NDUzODU=",
"url": "https://api.github.com/repos/Thorium-Sim/thorium/labels/type/bug",
"name": "type/bug",
"color": "ee0701",
"default": false
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2019-07-09T18:27:12Z",
"updated_at": "2019-07-09T18:27:12Z",
"closed_at": null,
"author_association": "NONE",
"body": "### Requested By: Natalie Anderson\n### Priority: 3\n### Version: 1.17.0\n\nWhen using a large object as the moving object in tactical maps and increasing the speed to Moderate or above, the object will jitter and jump slightly, making it difficult to navigate. A copy of the map used is attached. It even jumps when we remove the star background. We've used PNG's and SVG's for the Maze image.\n \n### Steps to Reproduce\nUse the map attached to this report and set the speed of the map to Moderate or above. ",
"score": 1.0
},
{
"url": "https://api.github.com/repos/PermaNulled/cartographer/issues/237",
"repository_url": "https://api.github.com/repos/PermaNulled/cartographer",
"labels_url": "https://api.github.com/repos/PermaNulled/cartographer/issues/237/labels{/name}",
"comments_url": "https://api.github.com/repos/PermaNulled/cartographer/issues/237/comments",
"events_url": "https://api.github.com/repos/PermaNulled/cartographer/issues/237/events",
"html_url": "https://github.com/PermaNulled/cartographer/issues/237",
"id": 465917533,
"node_id": "MDU6SXNzdWU0NjU5MTc1MzM=",
"number": 237,
"title": "[h2server] Servers become unjoinable for certain people after a long period of uptime",
"user": {
"login": "bigtweekx",
"id": 18296142,
"node_id": "MDQ6VXNlcjE4Mjk2MTQy",
"avatar_url": "https://avatars1.githubusercontent.com/u/18296142?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/bigtweekx",
"html_url": "https://github.com/bigtweekx",
"followers_url": "https://api.github.com/users/bigtweekx/followers",
"following_url": "https://api.github.com/users/bigtweekx/following{/other_user}",
"gists_url": "https://api.github.com/users/bigtweekx/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bigtweekx/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bigtweekx/subscriptions",
"organizations_url": "https://api.github.com/users/bigtweekx/orgs",
"repos_url": "https://api.github.com/users/bigtweekx/repos",
"events_url": "https://api.github.com/users/bigtweekx/events{/privacy}",
"received_events_url": "https://api.github.com/users/bigtweekx/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 369591454,
"node_id": "MDU6TGFiZWwzNjk1OTE0NTQ=",
"url": "https://api.github.com/repos/PermaNulled/cartographer/labels/Help%20Wanted",
"name": "Help Wanted",
"color": "128A0C",
"default": false
},
{
"id": 673601349,
"node_id": "MDU6TGFiZWw2NzM2MDEzNDk=",
"url": "https://api.github.com/repos/PermaNulled/cartographer/labels/Unknown",
"name": "Unknown",
"color": "fbca04",
"default": false
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2019-07-09T18:12:01Z",
"updated_at": "2019-07-09T18:27:34Z",
"closed_at": null,
"author_association": "CONTRIBUTOR",
"body": "Update 0.5.3.0 \r\n\"Official\" Servers on LIVE list\r\nService mode\r\n\r\nThe issue is that random people seems to be unable to join the server, even though it has people in it and there are ample spots open in the lobby. Ex, CTF Coag 8/16. \r\n\r\nThey can't join empty servers either, but once I restart the server, they are able to join it. \r\n\r\nThis seems to happen if the server is popular and frequently populated. Or large number of player joins. Or uptime. The servers in question have been up for at least 1 week of continuous gameplay. \r\n\r\nOn Network, these same servers would usually crash after extended uptime/player joins.\r\n\r\nPerma mentioned something about a player cache in memory that never gets cleared ",
"score": 1.0
},
{
"url": "https://api.github.com/repos/toti1212/todoclif/issues/8",
"repository_url": "https://api.github.com/repos/toti1212/todoclif",
"labels_url": "https://api.github.com/repos/toti1212/todoclif/issues/8/labels{/name}",
"comments_url": "https://api.github.com/repos/toti1212/todoclif/issues/8/comments",
"events_url": "https://api.github.com/repos/toti1212/todoclif/issues/8/events",
"html_url": "https://github.com/toti1212/todoclif/issues/8",
"id": 465916399,
"node_id": "MDU6SXNzdWU0NjU5MTYzOTk=",
"number": 8,
"title": "show pending tasks",
"user": {
"login": "brunocerecetto",
"id": 10564176,
"node_id": "MDQ6VXNlcjEwNTY0MTc2",
"avatar_url": "https://avatars3.githubusercontent.com/u/10564176?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/brunocerecetto",
"html_url": "https://github.com/brunocerecetto",
"followers_url": "https://api.github.com/users/brunocerecetto/followers",
"following_url": "https://api.github.com/users/brunocerecetto/following{/other_user}",
"gists_url": "https://api.github.com/users/brunocerecetto/gists{/gist_id}",
"starred_url": "https://api.github.com/users/brunocerecetto/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/brunocerecetto/subscriptions",
"organizations_url": "https://api.github.com/users/brunocerecetto/orgs",
"repos_url": "https://api.github.com/users/brunocerecetto/repos",
"events_url": "https://api.github.com/users/brunocerecetto/events{/privacy}",
"received_events_url": "https://api.github.com/users/brunocerecetto/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 1343941596,
"node_id": "MDU6TGFiZWwxMzQzOTQxNTk2",
"url": "https://api.github.com/repos/toti1212/todoclif/labels/enhancement",
"name": "enhancement",
"color": "a2eeef",
"default": true
},
{
"id": 1343941598,
"node_id": "MDU6TGFiZWwxMzQzOTQxNTk4",
"url": "https://api.github.com/repos/toti1212/todoclif/labels/good%20first%20issue",
"name": "good first issue",
"color": "7057ff",
"default": true
},
{
"id": 1343941597,
"node_id": "MDU6TGFiZWwxMzQzOTQxNTk3",
"url": "https://api.github.com/repos/toti1212/todoclif/labels/help%20wanted",
"name": "help wanted",
"color": "008672",
"default": true
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": {
"url": "https://api.github.com/repos/toti1212/todoclif/milestones/1",
"html_url": "https://github.com/toti1212/todoclif/milestone/1",
"labels_url": "https://api.github.com/repos/toti1212/todoclif/milestones/1/labels",
"id": 4454487,
"node_id": "MDk6TWlsZXN0b25lNDQ1NDQ4Nw==",
"number": 1,
"title": "Version 1.0",
"description": "",
"creator": {
"login": "toti1212",
"id": 8757113,
"node_id": "MDQ6VXNlcjg3NTcxMTM=",
"avatar_url": "https://avatars0.githubusercontent.com/u/8757113?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/toti1212",
"html_url": "https://github.com/toti1212",
"followers_url": "https://api.github.com/users/toti1212/followers",
"following_url": "https://api.github.com/users/toti1212/following{/other_user}",
"gists_url": "https://api.github.com/users/toti1212/gists{/gist_id}",
"starred_url": "https://api.github.com/users/toti1212/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/toti1212/subscriptions",
"organizations_url": "https://api.github.com/users/toti1212/orgs",
"repos_url": "https://api.github.com/users/toti1212/repos",
"events_url": "https://api.github.com/users/toti1212/events{/privacy}",
"received_events_url": "https://api.github.com/users/toti1212/received_events",
"type": "User",
"site_admin": false
},
"open_issues": 2,
"closed_issues": 2,
"state": "open",
"created_at": "2019-07-01T11:55:42Z",
"updated_at": "2019-07-09T18:21:08Z",
"due_on": null,
"closed_at": null
},
"comments": 0,
"created_at": "2019-07-09T18:09:07Z",
"updated_at": "2019-07-09T18:21:08Z",
"closed_at": null,
"author_association": "NONE",
"body": "After finishing a task, list the pending ones",
"score": 1.0
},
{
"url": "https://api.github.com/repos/cep21/circuit/issues/74",
"repository_url": "https://api.github.com/repos/cep21/circuit",
"labels_url": "https://api.github.com/repos/cep21/circuit/issues/74/labels{/name}",
"comments_url": "https://api.github.com/repos/cep21/circuit/issues/74/comments",
"events_url": "https://api.github.com/repos/cep21/circuit/issues/74/events",
"html_url": "https://github.com/cep21/circuit/issues/74",
"id": 465907417,
"node_id": "MDU6SXNzdWU0NjU5MDc0MTc=",
"number": 74,
"title": "Standardize on circuit tag names",
"user": {
"login": "cep21",
"id": 20358,
"node_id": "MDQ6VXNlcjIwMzU4",
"avatar_url": "https://avatars3.githubusercontent.com/u/20358?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cep21",
"html_url": "https://github.com/cep21",
"followers_url": "https://api.github.com/users/cep21/followers",
"following_url": "https://api.github.com/users/cep21/following{/other_user}",
"gists_url": "https://api.github.com/users/cep21/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cep21/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cep21/subscriptions",
"organizations_url": "https://api.github.com/users/cep21/orgs",
"repos_url": "https://api.github.com/users/cep21/repos",
"events_url": "https://api.github.com/users/cep21/events{/privacy}",
"received_events_url": "https://api.github.com/users/cep21/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 786591924,
"node_id": "MDU6TGFiZWw3ODY1OTE5MjQ=",
"url": "https://api.github.com/repos/cep21/circuit/labels/good%20first%20issue",
"name": "good first issue",
"color": "7057ff",
"default": true
},
{
"id": 786591923,
"node_id": "MDU6TGFiZWw3ODY1OTE5MjM=",
"url": "https://api.github.com/repos/cep21/circuit/labels/help%20wanted",
"name": "help wanted",
"color": "33aa3f",
"default": true
},
{
"id": 1092548874,
"node_id": "MDU6TGFiZWwxMDkyNTQ4ODc0",
"url": "https://api.github.com/repos/cep21/circuit/labels/needsmoreinfo",
"name": "needsmoreinfo",
"color": "161570",
"default": false
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2019-07-09T17:45:42Z",
"updated_at": "2019-07-09T18:30:05Z",
"closed_at": null,
"author_association": "OWNER",
"body": "An implementation of https://github.com/cep21/circuit/blob/master/v3/metrics/statsdmetrics/statsd.go in another repository with standardized tag names and platform independent. I think datadog style statsd tags will allow us to solve this in a generalized way",
"score": 1.0
},
{
"url": "https://api.github.com/repos/intel-iot-devkit/mraa/issues/971",
"repository_url": "https://api.github.com/repos/intel-iot-devkit/mraa",
"labels_url": "https://api.github.com/repos/intel-iot-devkit/mraa/issues/971/labels{/name}",
"comments_url": "https://api.github.com/repos/intel-iot-devkit/mraa/issues/971/comments",
"events_url": "https://api.github.com/repos/intel-iot-devkit/mraa/issues/971/events",
"html_url": "https://github.com/intel-iot-devkit/mraa/issues/971",
"id": 465904253,
"node_id": "MDU6SXNzdWU0NjU5MDQyNTM=",
"number": 971,
"title": "RPI 4 support",
"user": {
"login": "Propanu",
"id": 5123898,
"node_id": "MDQ6VXNlcjUxMjM4OTg=",
"avatar_url": "https://avatars0.githubusercontent.com/u/5123898?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Propanu",
"html_url": "https://github.com/Propanu",
"followers_url": "https://api.github.com/users/Propanu/followers",
"following_url": "https://api.github.com/users/Propanu/following{/other_user}",
"gists_url": "https://api.github.com/users/Propanu/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Propanu/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Propanu/subscriptions",
"organizations_url": "https://api.github.com/users/Propanu/orgs",
"repos_url": "https://api.github.com/users/Propanu/repos",
"events_url": "https://api.github.com/users/Propanu/events{/privacy}",
"received_events_url": "https://api.github.com/users/Propanu/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 102845452,
"node_id": "MDU6TGFiZWwxMDI4NDU0NTI=",
"url": "https://api.github.com/repos/intel-iot-devkit/mraa/labels/help%20wanted",
"name": "help wanted",
"color": "159818",
"default": true
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2019-07-09T17:37:30Z",
"updated_at": "2019-07-09T17:37:30Z",
"closed_at": null,
"author_association": "MEMBER",
"body": "Has anyone tried MRAA on the Raspberry Pi 4 yet? @Mani-Sadhasivam, @arfoll do you have any idea if we need to update the existing definition files? I don't have one of the new boards. Thanks!",
"score": 1.0
},
{
"url": "https://api.github.com/repos/fpco/terraform-aws-foundation/issues/207",
"repository_url": "https://api.github.com/repos/fpco/terraform-aws-foundation",
"labels_url": "https://api.github.com/repos/fpco/terraform-aws-foundation/issues/207/labels{/name}",
"comments_url": "https://api.github.com/repos/fpco/terraform-aws-foundation/issues/207/comments",
"events_url": "https://api.github.com/repos/fpco/terraform-aws-foundation/issues/207/events",
"html_url": "https://github.com/fpco/terraform-aws-foundation/issues/207",
"id": 465900759,
"node_id": "MDU6SXNzdWU0NjU5MDA3NTk=",
"number": 207,
"title": "improvements to s3-remote-state module",
"user": {
"login": "ketzacoatl",
"id": 10122937,
"node_id": "MDQ6VXNlcjEwMTIyOTM3",
"avatar_url": "https://avatars3.githubusercontent.com/u/10122937?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ketzacoatl",
"html_url": "https://github.com/ketzacoatl",
"followers_url": "https://api.github.com/users/ketzacoatl/followers",
"following_url": "https://api.github.com/users/ketzacoatl/following{/other_user}",
"gists_url": "https://api.github.com/users/ketzacoatl/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ketzacoatl/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ketzacoatl/subscriptions",
"organizations_url": "https://api.github.com/users/ketzacoatl/orgs",
"repos_url": "https://api.github.com/users/ketzacoatl/repos",
"events_url": "https://api.github.com/users/ketzacoatl/events{/privacy}",
"received_events_url": "https://api.github.com/users/ketzacoatl/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 830279355,
"node_id": "MDU6TGFiZWw4MzAyNzkzNTU=",
"url": "https://api.github.com/repos/fpco/terraform-aws-foundation/labels/P1",
"name": "P1",
"color": "b53051",
"default": false
},
{
"id": 188843629,
"node_id": "MDU6TGFiZWwxODg4NDM2Mjk=",
"url": "https://api.github.com/repos/fpco/terraform-aws-foundation/labels/enhancement",
"name": "enhancement",
"color": "84b6eb",
"default": true
},
{
"id": 188843630,
"node_id": "MDU6TGFiZWwxODg4NDM2MzA=",
"url": "https://api.github.com/repos/fpco/terraform-aws-foundation/labels/help%20wanted",
"name": "help wanted",
"color": "159818",
"default": true
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2019-07-09T17:28:16Z",
"updated_at": "2019-07-09T17:31:17Z",
"closed_at": null,
"author_association": "CONTRIBUTOR",
"body": "See for reference - https://github.com/fpco/terraform-aws-foundation/blob/0d3d60f6989ad74149b5957150e83e915128ddd7/modules/s3-remote-state/main.tf\r\n\r\nOne thing to make more clear: this module is a little confusing, but it's mostly advanced IAM features doing that. Here's another way of saying it:\r\n\r\n> I guess the other way to describe the difference here is that the `s3-bucket-policy-full-access` creates a policy which is attached to the S3 bucket and defines some list of IAM principals which can access the bucket. While the `iam-full-access` is creating policies (2, one requiring MFA and one not), that can be associated with IAM users/roles and used to provide access that way.\r\n\r\n\r\n### Requirements\r\n\r\n* [ ] rename the resources: `s3-full-access` to `s3-bucket-policy-full-access` and `bucket-full-access` to `iam-policy-full-access`.\r\n* [ ] There are 3 pairs of IAM data sources and resources, move each to their own module.\r\n* [ ] Update this module to use those new IAM modules.\r\n* [ ] Add a boolean variable for each of the 3 IAM policies the module creates (which enables/disables the policies from being created), passing those to the new IAM modules.\r\n* [ ] Review / update the module docs for clarity and to explain how this module works",
"score": 1.0
},
{
"url": "https://api.github.com/repos/yzhang-gh/vscode-markdown/issues/485",
"repository_url": "https://api.github.com/repos/yzhang-gh/vscode-markdown",
"labels_url": "https://api.github.com/repos/yzhang-gh/vscode-markdown/issues/485/labels{/name}",
"comments_url": "https://api.github.com/repos/yzhang-gh/vscode-markdown/issues/485/comments",
"events_url": "https://api.github.com/repos/yzhang-gh/vscode-markdown/issues/485/events",
"html_url": "https://github.com/yzhang-gh/vscode-markdown/issues/485",
"id": 465898357,
"node_id": "MDU6SXNzdWU0NjU4OTgzNTc=",
"number": 485,
"title": "Math macro in suggestions",
"user": {
"login": "jgoulet1994",
"id": 4106435,
"node_id": "MDQ6VXNlcjQxMDY0MzU=",
"avatar_url": "https://avatars1.githubusercontent.com/u/4106435?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jgoulet1994",
"html_url": "https://github.com/jgoulet1994",
"followers_url": "https://api.github.com/users/jgoulet1994/followers",
"following_url": "https://api.github.com/users/jgoulet1994/following{/other_user}",
"gists_url": "https://api.github.com/users/jgoulet1994/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jgoulet1994/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jgoulet1994/subscriptions",
"organizations_url": "https://api.github.com/users/jgoulet1994/orgs",
"repos_url": "https://api.github.com/users/jgoulet1994/repos",
"events_url": "https://api.github.com/users/jgoulet1994/events{/privacy}",
"received_events_url": "https://api.github.com/users/jgoulet1994/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 623575627,
"node_id": "MDU6TGFiZWw2MjM1NzU2Mjc=",
"url": "https://api.github.com/repos/yzhang-gh/vscode-markdown/labels/feature%20request",
"name": "feature request",
"color": "0052cc",
"default": false
},
{
"id": 510878244,
"node_id": "MDU6TGFiZWw1MTA4NzgyNDQ=",
"url": "https://api.github.com/repos/yzhang-gh/vscode-markdown/labels/help%20wanted",
"name": "help wanted",
"color": "128A0C",
"default": true
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 1,
"created_at": "2019-07-09T17:22:04Z",
"updated_at": "2019-07-09T18:30:20Z",
"closed_at": null,
"author_association": "NONE",
"body": "#### What is the problem?\r\nMacros defined in katex are not appearing in suggestions when a math environment is entered.\r\n\r\n\r\n#### How can I reproduce it?\r\nDefine a macro, then notice that it does not appear inside a math environment ($$ {math} $$)\r\n\r\n\r\n#### Is there any error message in the console?\r\nNone\r\n\r\n\r\n",
"score": 1.0
},
{
"url": "https://api.github.com/repos/a1phat0ny/discover.go/issues/1",
"repository_url": "https://api.github.com/repos/a1phat0ny/discover.go",
"labels_url": "https://api.github.com/repos/a1phat0ny/discover.go/issues/1/labels{/name}",
"comments_url": "https://api.github.com/repos/a1phat0ny/discover.go/issues/1/comments",
"events_url": "https://api.github.com/repos/a1phat0ny/discover.go/issues/1/events",
"html_url": "https://github.com/a1phat0ny/discover.go/issues/1",
"id": 465894552,
"node_id": "MDU6SXNzdWU0NjU4OTQ1NTI=",
"number": 1,
"title": "Does it work on Windows?",
"user": {
"login": "a1phat0ny",
"id": 43533426,
"node_id": "MDQ6VXNlcjQzNTMzNDI2",
"avatar_url": "https://avatars0.githubusercontent.com/u/43533426?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/a1phat0ny",
"html_url": "https://github.com/a1phat0ny",
"followers_url": "https://api.github.com/users/a1phat0ny/followers",
"following_url": "https://api.github.com/users/a1phat0ny/following{/other_user}",
"gists_url": "https://api.github.com/users/a1phat0ny/gists{/gist_id}",
"starred_url": "https://api.github.com/users/a1phat0ny/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/a1phat0ny/subscriptions",
"organizations_url": "https://api.github.com/users/a1phat0ny/orgs",
"repos_url": "https://api.github.com/users/a1phat0ny/repos",
"events_url": "https://api.github.com/users/a1phat0ny/events{/privacy}",
"received_events_url": "https://api.github.com/users/a1phat0ny/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 1443492744,
"node_id": "MDU6TGFiZWwxNDQzNDkyNzQ0",
"url": "https://api.github.com/repos/a1phat0ny/discover.go/labels/compatibility",
"name": "compatibility",
"color": "388700",
"default": false
},
{
"id": 1330623670,
"node_id": "MDU6TGFiZWwxMzMwNjIzNjcw",
"url": "https://api.github.com/repos/a1phat0ny/discover.go/labels/help%20wanted",
"name": "help wanted",
"color": "008672",
"default": true
},
{
"id": 1330623673,
"node_id": "MDU6TGFiZWwxMzMwNjIzNjcz",
"url": "https://api.github.com/repos/a1phat0ny/discover.go/labels/question",
"name": "question",
"color": "d876e3",
"default": true
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2019-07-09T17:12:38Z",
"updated_at": "2019-07-09T17:15:30Z",
"closed_at": null,
"author_association": "OWNER",
"body": "Can someone help me test out the program on a Windows machine? Any help would be appreciated. Thanks! 😉",
"score": 1.0
},
{
"url": "https://api.github.com/repos/YetAnotherKeyboard/firmware/issues/4",
"repository_url": "https://api.github.com/repos/YetAnotherKeyboard/firmware",
"labels_url": "https://api.github.com/repos/YetAnotherKeyboard/firmware/issues/4/labels{/name}",
"comments_url": "https://api.github.com/repos/YetAnotherKeyboard/firmware/issues/4/comments",
"events_url": "https://api.github.com/repos/YetAnotherKeyboard/firmware/issues/4/events",
"html_url": "https://github.com/YetAnotherKeyboard/firmware/issues/4",
"id": 465886643,
"node_id": "MDU6SXNzdWU0NjU4ODY2NDM=",
"number": 4,
"title": "YAK Artwork",
"user": {
"login": "Nicoretti",
"id": 600911,
"node_id": "MDQ6VXNlcjYwMDkxMQ==",
"avatar_url": "https://avatars2.githubusercontent.com/u/600911?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Nicoretti",
"html_url": "https://github.com/Nicoretti",
"followers_url": "https://api.github.com/users/Nicoretti/followers",
"following_url": "https://api.github.com/users/Nicoretti/following{/other_user}",
"gists_url": "https://api.github.com/users/Nicoretti/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Nicoretti/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Nicoretti/subscriptions",
"organizations_url": "https://api.github.com/users/Nicoretti/orgs",
"repos_url": "https://api.github.com/users/Nicoretti/repos",
"events_url": "https://api.github.com/users/Nicoretti/events{/privacy}",
"received_events_url": "https://api.github.com/users/Nicoretti/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 1320540489,
"node_id": "MDU6TGFiZWwxMzIwNTQwNDg5",
"url": "https://api.github.com/repos/YetAnotherKeyboard/firmware/labels/help%20wanted",
"name": "help wanted",
"color": "008672",
"default": true
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2019-07-09T16:52:17Z",
"updated_at": "2019-07-09T16:52:17Z",
"closed_at": null,
"author_association": "MEMBER",
"body": "Create an Identity for the yak project Font, Icon(s), Logo etc.",
"score": 1.0
},
{
"url": "https://api.github.com/repos/platformio/platform-shakti/issues/1",
"repository_url": "https://api.github.com/repos/platformio/platform-shakti",
"labels_url": "https://api.github.com/repos/platformio/platform-shakti/issues/1/labels{/name}",
"comments_url": "https://api.github.com/repos/platformio/platform-shakti/issues/1/comments",
"events_url": "https://api.github.com/repos/platformio/platform-shakti/issues/1/events",
"html_url": "https://github.com/platformio/platform-shakti/issues/1",
"id": 465883327,
"node_id": "MDU6SXNzdWU0NjU4ODMzMjc=",
"number": 1,
"title": "Debugging support",
"user": {
"login": "valeros",
"id": 886732,
"node_id": "MDQ6VXNlcjg4NjczMg==",
"avatar_url": "https://avatars0.githubusercontent.com/u/886732?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/valeros",
"html_url": "https://github.com/valeros",
"followers_url": "https://api.github.com/users/valeros/followers",
"following_url": "https://api.github.com/users/valeros/following{/other_user}",
"gists_url": "https://api.github.com/users/valeros/gists{/gist_id}",
"starred_url": "https://api.github.com/users/valeros/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/valeros/subscriptions",
"organizations_url": "https://api.github.com/users/valeros/orgs",
"repos_url": "https://api.github.com/users/valeros/repos",
"events_url": "https://api.github.com/users/valeros/events{/privacy}",
"received_events_url": "https://api.github.com/users/valeros/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 1443400863,
"node_id": "MDU6TGFiZWwxNDQzNDAwODYz",
"url": "https://api.github.com/repos/platformio/platform-shakti/labels/help%20wanted",
"name": "help wanted",
"color": "008672",
"default": true
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2019-07-09T16:44:04Z",
"updated_at": "2019-07-09T16:45:00Z",
"closed_at": null,
"author_association": "MEMBER",
"body": "Hi @sathya281! Could you please describe (or ask someone who knows) how you debug your boards at the moment? What software, debug probe, target do you use (for example `artix7_100t` board)?",
"score": 1.0
},
{
"url": "https://api.github.com/repos/letsencrypt/pebble/issues/249",
"repository_url": "https://api.github.com/repos/letsencrypt/pebble",
"labels_url": "https://api.github.com/repos/letsencrypt/pebble/issues/249/labels{/name}",
"comments_url": "https://api.github.com/repos/letsencrypt/pebble/issues/249/comments",
"events_url": "https://api.github.com/repos/letsencrypt/pebble/issues/249/events",
"html_url": "https://github.com/letsencrypt/pebble/issues/249",
"id": 465879502,
"node_id": "MDU6SXNzdWU0NjU4Nzk1MDI=",
"number": 249,
"title": "Implement External Account Binding (RFC 8555 §7.3.4)",
"user": {
"login": "cpu",
"id": 292650,
"node_id": "MDQ6VXNlcjI5MjY1MA==",
"avatar_url": "https://avatars1.githubusercontent.com/u/292650?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cpu",
"html_url": "https://github.com/cpu",
"followers_url": "https://api.github.com/users/cpu/followers",
"following_url": "https://api.github.com/users/cpu/following{/other_user}",
"gists_url": "https://api.github.com/users/cpu/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cpu/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cpu/subscriptions",
"organizations_url": "https://api.github.com/users/cpu/orgs",
"repos_url": "https://api.github.com/users/cpu/repos",
"events_url": "https://api.github.com/users/cpu/events{/privacy}",
"received_events_url": "https://api.github.com/users/cpu/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 488275972,
"node_id": "MDU6TGFiZWw0ODgyNzU5NzI=",
"url": "https://api.github.com/repos/letsencrypt/pebble/labels/help%20wanted",
"name": "help wanted",
"color": "128A0C",
"default": true
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2019-07-09T16:34:48Z",
"updated_at": "2019-07-09T16:35:00Z",
"closed_at": null,
"author_association": "MEMBER",
"body": "While Let's Encrypt has no plans to implement the external account binding (EAB) functionality defined in [RFC 8555 §7.3.4](https://tools.ietf.org/html/rfc8555#section-7.3.4) in Boulder it would be valuable for the ACME ecosystem if there was an easy way for client developers to test this protocol feature.\r\n\r\nIt should be possible to configure Pebble such that its directory contains the `externalAccountRequired` meta key. In this configuration all `newAccount` requests must be rejected unless they have the `externalAccountBinding` JWS request field. Pebble will also need to implement the `externalAccountRequired` error type to return when rejecting requests for this reason.\r\n\r\nIn the Pebble config file it should be possible to configure multiple base64url-encoded MAC keys alongside an identifying name for use for verifying the `externalAccountBinding` requests. We should update the management interface to allow clients to access the configured MAC keys in a Pebble-specific testing manner to compose the expected `externalAccountBinding` signatures, simulating the out-of-band communication of the shared secret.\r\n\r\nFor now I think its sufficient to verify the `externalAccountBinding` value of `newAccount` requests according to 7.3.4 and somehow display the MAC key name that was used in the verification, but not actually link the account to any external state or somehow modify the authorization process.",
"score": 1.0
},
{
"url": "https://api.github.com/repos/gatsbyjs/gatsby/issues/15563",
"repository_url": "https://api.github.com/repos/gatsbyjs/gatsby",
"labels_url": "https://api.github.com/repos/gatsbyjs/gatsby/issues/15563/labels{/name}",
"comments_url": "https://api.github.com/repos/gatsbyjs/gatsby/issues/15563/comments",
"events_url": "https://api.github.com/repos/gatsbyjs/gatsby/issues/15563/events",
"html_url": "https://github.com/gatsbyjs/gatsby/issues/15563",
"id": 465874987,
"node_id": "MDU6SXNzdWU0NjU4NzQ5ODc=",
"number": 15563,
"title": "Try adding support for https://blurha.sh/",
"user": {
"login": "KyleAMathews",
"id": 71047,
"node_id": "MDQ6VXNlcjcxMDQ3",
"avatar_url": "https://avatars3.githubusercontent.com/u/71047?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/KyleAMathews",
"html_url": "https://github.com/KyleAMathews",
"followers_url": "https://api.github.com/users/KyleAMathews/followers",