Unnamed: 0
int64
0
832k
id
float64
2.49B
32.1B
type
stringclasses
1 value
created_at
stringlengths
19
19
repo
stringlengths
5
112
repo_url
stringlengths
34
141
action
stringclasses
3 values
title
stringlengths
1
1k
labels
stringlengths
4
1.38k
body
stringlengths
1
262k
index
stringclasses
16 values
text_combine
stringlengths
96
262k
label
stringclasses
2 values
text
stringlengths
96
252k
binary_label
int64
0
1
822,609
30,879,503,291
IssuesEvent
2023-08-03 16:28:07
OpenCollarTeam/OpenCollar
https://api.github.com/repos/OpenCollarTeam/OpenCollar
closed
OC8RC2 - Relay deactivates and reactivates several times after running away
Bug PRIORITY 0
**What version of OpenCollar are you using?** OC8RC2 **What behavior did you expect?** Relay to deactivate once, then reactivate **What behavior did you see instead?** Relay deactivated and reactivated 3 times RLV clear message popped twice **What steps does someone need to take to reproduce the problem?**...
1.0
OC8RC2 - Relay deactivates and reactivates several times after running away - **What version of OpenCollar are you using?** OC8RC2 **What behavior did you expect?** Relay to deactivate once, then reactivate **What behavior did you see instead?** Relay deactivated and reactivated 3 times RLV clear message popp...
priority
relay deactivates and reactivates several times after running away what version of opencollar are you using what behavior did you expect relay to deactivate once then reactivate what behavior did you see instead relay deactivated and reactivated times rlv clear message popped twice ...
1
468,662
13,487,792,070
IssuesEvent
2020-09-11 11:32:22
onaio/reveal-frontend
https://api.github.com/repos/onaio/reveal-frontend
closed
Dont send empty metadata
Priority: High
It seems that when you try to upload metadata which contains blank lines e.g. [smaller.csv.zip](https://github.com/onaio/reveal-frontend/files/5199830/smaller.csv.zip) you send a payload to the server which is like this: ```json { "settingConfigurations": [ { "identifier": "jurisdiction_m...
1.0
Dont send empty metadata - It seems that when you try to upload metadata which contains blank lines e.g. [smaller.csv.zip](https://github.com/onaio/reveal-frontend/files/5199830/smaller.csv.zip) you send a payload to the server which is like this: ```json { "settingConfigurations": [ { "i...
priority
dont send empty metadata it seems that when you try to upload metadata which contains blank lines e g you send a payload to the server which is like this json settingconfigurations identifier jurisdiction metadata population settings ...
1
35,346
14,674,465,123
IssuesEvent
2020-12-30 15:23:10
thkl/hap-homematic
https://api.github.com/repos/thkl/hap-homematic
opened
Home-App stürzt bei VideoDoorBellAccessory ab
DeviceService enhancement
Hallo, ich habe gestern versucht eine Kamera in meine Home-App zu bringen. Sie wird zwar im Standardraum angezeigt, wenn ich jedoch drauf klicke, stürzt die gesamte Home-App ab. Dies passiert gleichermaßen auf dem iPhone, wie auch auf dem iPad. Das Gerät habe ich unter „Besondere Geräte“ bereits entfernt. Was kan...
1.0
Home-App stürzt bei VideoDoorBellAccessory ab - Hallo, ich habe gestern versucht eine Kamera in meine Home-App zu bringen. Sie wird zwar im Standardraum angezeigt, wenn ich jedoch drauf klicke, stürzt die gesamte Home-App ab. Dies passiert gleichermaßen auf dem iPhone, wie auch auf dem iPad. Das Gerät habe ich unter...
non_priority
home app stürzt bei videodoorbellaccessory ab hallo ich habe gestern versucht eine kamera in meine home app zu bringen sie wird zwar im standardraum angezeigt wenn ich jedoch drauf klicke stürzt die gesamte home app ab dies passiert gleichermaßen auf dem iphone wie auch auf dem ipad das gerät habe ich unter...
0
568,409
16,978,695,661
IssuesEvent
2021-06-30 05:30:55
JohT/search-menu-ui
https://api.github.com/repos/JohT/search-menu-ui
opened
Provide domain and baseurl variables for url templates
priority: should (2)
**Describe the solution you'd like** Search result entries marked as "urltemplate" determine the link, that will be opened, when a search result is selected. They support variables in double curly brackets like `{{fieldname}}`. To make url templates independent from the domain and base url, they should support both `{...
1.0
Provide domain and baseurl variables for url templates - **Describe the solution you'd like** Search result entries marked as "urltemplate" determine the link, that will be opened, when a search result is selected. They support variables in double curly brackets like `{{fieldname}}`. To make url templates independent ...
priority
provide domain and baseurl variables for url templates describe the solution you d like search result entries marked as urltemplate determine the link that will be opened when a search result is selected they support variables in double curly brackets like fieldname to make url templates independent ...
1
541,306
15,824,498,081
IssuesEvent
2021-04-06 03:26:41
TheRealKizu/Alaia
https://api.github.com/repos/TheRealKizu/Alaia
closed
Unterminated quoted string on uwuifying response
Priority: High Status: In Progress Type: Bug
Only responses with quotes can trigger this bug.
1.0
Unterminated quoted string on uwuifying response - Only responses with quotes can trigger this bug.
priority
unterminated quoted string on uwuifying response only responses with quotes can trigger this bug
1
606,332
18,760,004,612
IssuesEvent
2021-11-05 15:24:26
pebble-dev/rebble-appstore-api
https://api.github.com/repos/pebble-dev/rebble-appstore-api
closed
Uploaded pbws are 0 bytes
bug High Priority !!
When users upload a new app or a new release for an existing app, they are 0 bytes in size
1.0
Uploaded pbws are 0 bytes - When users upload a new app or a new release for an existing app, they are 0 bytes in size
priority
uploaded pbws are bytes when users upload a new app or a new release for an existing app they are bytes in size
1
231,481
7,633,325,635
IssuesEvent
2018-05-06 03:12:43
tantivy-search/tantivy
https://api.github.com/repos/tantivy-search/tantivy
opened
Add an iterator on `SegmentReader` to browse through non-deleted document ids.
enhancement good first issue low priority
As pointed out by @jason-wolfe in CR... We often have the following pattern ```rust for doc in 0..segment.max_doc() { if !segment.is_deleted(doc) { ... } } ``` It would be nice to have an iterator to do this ```rust for doc in segment.alive_doc_ids() {}
1.0
Add an iterator on `SegmentReader` to browse through non-deleted document ids. - As pointed out by @jason-wolfe in CR... We often have the following pattern ```rust for doc in 0..segment.max_doc() { if !segment.is_deleted(doc) { ... } } ``` It would be nice to have an iterator to do thi...
priority
add an iterator on segmentreader to browse through non deleted document ids as pointed out by jason wolfe in cr we often have the following pattern rust for doc in segment max doc if segment is deleted doc it would be nice to have an iterator to do thi...
1
79,166
3,521,108,576
IssuesEvent
2016-01-12 23:50:23
dart-lang/sdk
https://api.github.com/repos/dart-lang/sdk
closed
Downwards inference doesn't push types into the `??` operator
analyzer-strong-mode area-analyzer Priority-Medium
In the following example, we should infer the type of the list literal by pushing the context type down into the branches of the `??` operator. This causes some unnecessary strong mode warnings in the markdown package. cc @devoncarew ```dart void main () { List<String> y = null ?? []; } ```
1.0
Downwards inference doesn't push types into the `??` operator - In the following example, we should infer the type of the list literal by pushing the context type down into the branches of the `??` operator. This causes some unnecessary strong mode warnings in the markdown package. cc @devoncarew ```dart v...
priority
downwards inference doesn t push types into the operator in the following example we should infer the type of the list literal by pushing the context type down into the branches of the operator this causes some unnecessary strong mode warnings in the markdown package cc devoncarew dart v...
1
264,511
8,315,860,182
IssuesEvent
2018-09-25 07:13:50
minishift/minishift
https://api.github.com/repos/minishift/minishift
closed
Error during 'cluster up' execution: Error starting the cluster. ssh command error
kind/bug priority/critical
### General information Installing minishift v3.10.0 FAILS while previous v3.9.0 works just fine. I am installing behind the company proxy. * Minishift version: v3.10.0 * OS: macOS * Hypervisor: xhyve Steps to reproduce: Run command -> $ minishift start --v=5 --openshift-version v3.10.0 --show-libmach...
1.0
Error during 'cluster up' execution: Error starting the cluster. ssh command error - ### General information Installing minishift v3.10.0 FAILS while previous v3.9.0 works just fine. I am installing behind the company proxy. * Minishift version: v3.10.0 * OS: macOS * Hypervisor: xhyve Steps to reproduce:...
priority
error during cluster up execution error starting the cluster ssh command error general information installing minishift fails while previous works just fine i am installing behind the company proxy minishift version os macos hypervisor xhyve steps to reproduce run...
1
620,828
19,570,665,386
IssuesEvent
2022-01-04 09:31:28
versusbassz/wp-batcher
https://api.github.com/repos/versusbassz/wp-batcher
closed
Start position trackers from -1
priority:high
`$total_position` and `$chunk_position` props. Probably, `-1` is better decision.
1.0
Start position trackers from -1 - `$total_position` and `$chunk_position` props. Probably, `-1` is better decision.
priority
start position trackers from total position and chunk position props probably is better decision
1
612,172
19,006,235,078
IssuesEvent
2021-11-23 00:28:57
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
closed
osSignalWait crashes when called from a thread created with osCreateThread
bug priority: low area: Portability Stale
**Describe the bug** Hi, I was playing the the signals in cmsis on nrf5340dk and got a crash in osSignalWait or osSignalSet. So, I ran the cmsis unit tests and the test around cmsis signals (test_signal_events_signalled) ran just fine. So, after some debugging, I found out that the custom_data of the thread I wa...
1.0
osSignalWait crashes when called from a thread created with osCreateThread - **Describe the bug** Hi, I was playing the the signals in cmsis on nrf5340dk and got a crash in osSignalWait or osSignalSet. So, I ran the cmsis unit tests and the test around cmsis signals (test_signal_events_signalled) ran just fine. ...
priority
ossignalwait crashes when called from a thread created with oscreatethread describe the bug hi i was playing the the signals in cmsis on and got a crash in ossignalwait or ossignalset so i ran the cmsis unit tests and the test around cmsis signals test signal events signalled ran just fine so afte...
1
156,378
5,968,370,546
IssuesEvent
2017-05-30 17:58:22
wphicks/Writing3D
https://api.github.com/repos/wphicks/Writing3D
opened
Validation is too slow on large projects
help wanted low-priority
It currently takes an unreasonably long time to validate large projects. This can be tested with the performance sample.
1.0
Validation is too slow on large projects - It currently takes an unreasonably long time to validate large projects. This can be tested with the performance sample.
priority
validation is too slow on large projects it currently takes an unreasonably long time to validate large projects this can be tested with the performance sample
1
560,528
16,598,987,103
IssuesEvent
2021-06-01 16:40:45
webcompat/web-bugs
https://api.github.com/repos/webcompat/web-bugs
closed
www.zillow.com - The "Lot lines" are broken
browser-firefox engine-gecko priority-important severity-important
<!-- @browser: Firefox 88.0 --> <!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0 --> <!-- @reported_with: unknown --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/75009 --> **URL**: https://www.zillow.com/homedetails/2409-Thandlewane-Path-Saint-Joseph-MI...
1.0
www.zillow.com - The "Lot lines" are broken - <!-- @browser: Firefox 88.0 --> <!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0 --> <!-- @reported_with: unknown --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/75009 --> **URL**: https://www.zillow.com/hom...
priority
the lot lines are broken url browser version firefox operating system windows tested another browser yes edge problem type desktop site instead of mobile site description desktop site instead of mobile site steps to reproduce actually any zillow home listi...
1
674,545
23,056,265,301
IssuesEvent
2022-07-25 05:05:14
probml/pyprobml
https://api.github.com/repos/probml/pyprobml
opened
MIT press issue #4: low resolution figures
Priority 1
- [ ] Fig 4.20: https://github.com/probml/pyprobml/blob/master/notebooks/book2/04/rbm_contrastive_divergence.ipynb ![image](https://user-images.githubusercontent.com/59387624/180701309-4719a4cf-97f3-460e-8607-2bbd53c8a57a.png) - [ ] Fig 4.42: ![image](https://user-images.githubusercontent.com/59387624/180701887...
1.0
MIT press issue #4: low resolution figures - - [ ] Fig 4.20: https://github.com/probml/pyprobml/blob/master/notebooks/book2/04/rbm_contrastive_divergence.ipynb ![image](https://user-images.githubusercontent.com/59387624/180701309-4719a4cf-97f3-460e-8607-2bbd53c8a57a.png) - [ ] Fig 4.42: ![image](https://user-im...
priority
mit press issue low resolution figures fig fig fig b fig fig
1
16,245
6,148,191,871
IssuesEvent
2017-06-27 17:17:11
astropy/astropy
https://api.github.com/repos/astropy/astropy
closed
1.1b1 does not work with wcslib 4.24
Affects-release build wcs
The Beta version does not work with the "4" branch of wcslib, since wcslib_version is undefined: ``` ==================================== ERRORS ==================================== ______________________________ ERROR collecting _______________________________ _pytest.runner:149: in __init__ ??? [...] _pytest.co...
1.0
1.1b1 does not work with wcslib 4.24 - The Beta version does not work with the "4" branch of wcslib, since wcslib_version is undefined: ``` ==================================== ERRORS ==================================== ______________________________ ERROR collecting _______________________________ _pytest.runner:14...
non_priority
does not work with wcslib the beta version does not work with the branch of wcslib since wcslib version is undefined errors error collecting pytest runner in...
0
193,934
22,261,625,999
IssuesEvent
2022-06-10 01:27:20
panasalap/linux-4.19.72_test1
https://api.github.com/repos/panasalap/linux-4.19.72_test1
reopened
CVE-2021-45485 (High) detected in linux-yoctov5.4.51
security vulnerability
## CVE-2021-45485 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-yoctov5.4.51</b></p></summary> <p> <p>Yocto Linux Embedded kernel</p> <p>Library home page: <a href=https://git....
True
CVE-2021-45485 (High) detected in linux-yoctov5.4.51 - ## CVE-2021-45485 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-yoctov5.4.51</b></p></summary> <p> <p>Yocto Linux Embedde...
non_priority
cve high detected in linux cve high severity vulnerability vulnerable library linux yocto linux embedded kernel library home page a href found in head commit a href found in base branch master vulnerable source files net output co...
0
165,511
6,277,663,562
IssuesEvent
2017-07-18 12:48:08
localstack/localstack
https://api.github.com/repos/localstack/localstack
closed
Error on CircleCI due to high user ids within the image files
bug priority-high
Copied from here: https://bitbucket.org/atlassian/localstack/issues/54/trouble-using-docker-image-on-circleci-due --- Hi guys, Last week I tried to have localstack running within my CI build in CircleCI and faced various problems. I got in touch with them and their engineers investigated the issue. Here's what t...
1.0
Error on CircleCI due to high user ids within the image files - Copied from here: https://bitbucket.org/atlassian/localstack/issues/54/trouble-using-docker-image-on-circleci-due --- Hi guys, Last week I tried to have localstack running within my CI build in CircleCI and faced various problems. I got in touch wit...
priority
error on circleci due to high user ids within the image files copied from here hi guys last week i tried to have localstack running within my ci build in circleci and faced various problems i got in touch with them and their engineers investigated the issue here s what they found out looking at thi...
1
29,172
5,564,893,231
IssuesEvent
2017-03-26 08:44:42
patmun/pynetdicom
https://api.github.com/repos/patmun/pynetdicom
closed
Missing SOPClass
auto-migrated Priority-Medium Type-Defect
``` Still missing the following SOPClass: +class SpatialRegistrationSOPClass(StorageSOPClass): + UID = '1.2.840.10008.5.1.4.1.1.66.1' + + +class EnhancedSRSOPClass(StorageSOPClass): + UID = '1.2.840.10008.5.1.4.1.1.88.22' + + +class XRayRadiationDoseSRSOPClass(StorageSOPClass): + UID = '1.2.840.10008.5.1.4.1....
1.0
Missing SOPClass - ``` Still missing the following SOPClass: +class SpatialRegistrationSOPClass(StorageSOPClass): + UID = '1.2.840.10008.5.1.4.1.1.66.1' + + +class EnhancedSRSOPClass(StorageSOPClass): + UID = '1.2.840.10008.5.1.4.1.1.88.22' + + +class XRayRadiationDoseSRSOPClass(StorageSOPClass): + UID = '1.2...
non_priority
missing sopclass still missing the following sopclass class spatialregistrationsopclass storagesopclass uid class enhancedsrsopclass storagesopclass uid class xrayradiationdosesrsopclass storagesopclass uid ...
0
1,456
10,151,952,912
IssuesEvent
2019-08-05 21:48:44
mozilla-mobile/fenix
https://api.github.com/repos/mozilla-mobile/fenix
opened
[Bug] UI Tests failing on missing nav id/mozac_browser_toolbar_edit_url_view
eng:automation 🐞 bug
As of: https://github.com/mozilla-mobile/fenix/commit/d0071d01771a77a3d1206c0756e6fba42394a702 multiple UI tests are failing due to missing element. This element is in A-C but it doesn't look like there's been any changes there to have caused this error: `androidx.test.espresso.NoMatchingViewException: No views...
1.0
[Bug] UI Tests failing on missing nav id/mozac_browser_toolbar_edit_url_view - As of: https://github.com/mozilla-mobile/fenix/commit/d0071d01771a77a3d1206c0756e6fba42394a702 multiple UI tests are failing due to missing element. This element is in A-C but it doesn't look like there's been any changes there to have ca...
non_priority
ui tests failing on missing nav id mozac browser toolbar edit url view as of multiple ui tests are failing due to missing element this element is in a c but it doesn t look like there s been any changes there to have caused this error androidx test espresso nomatchingviewexception no views in hierarc...
0
435,678
30,513,357,487
IssuesEvent
2023-07-18 23:20:25
activist-org/activist
https://api.github.com/repos/activist-org/activist
closed
First steps as a contributor documentation
documentation
### Terms - [X] I have searched [open and closed issues](https://github.com/activist-org/activist/issues?q=is%3Aissue) - [X] I agree to follow activist's [Code of Conduct](https://github.com/activist-org/activist/blob/main/.github/CODE_OF_CONDUCT.md) ### Issue This issue would add a section to [CONTRIBUTING.m...
1.0
First steps as a contributor documentation - ### Terms - [X] I have searched [open and closed issues](https://github.com/activist-org/activist/issues?q=is%3Aissue) - [X] I agree to follow activist's [Code of Conduct](https://github.com/activist-org/activist/blob/main/.github/CODE_OF_CONDUCT.md) ### Issue This...
non_priority
first steps as a contributor documentation terms i have searched i agree to follow activist s issue this issue would add a section to above learning the tech stack that would detail the things that contributors should do when first interacting with the community ideas include ...
0
331,680
10,075,916,868
IssuesEvent
2019-07-24 15:10:22
AnSyn/ansyn
https://api.github.com/repos/AnSyn/ansyn
closed
(enh) Display specifc algorithm execution task data
Enhancement Priority: High Task
from #1367 - [x] Get specific execution data from storage service - [x] Display specific execution data from storage service
1.0
(enh) Display specifc algorithm execution task data - from #1367 - [x] Get specific execution data from storage service - [x] Display specific execution data from storage service
priority
enh display specifc algorithm execution task data from get specific execution data from storage service display specific execution data from storage service
1
150,311
23,643,805,113
IssuesEvent
2022-08-25 19:47:22
pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas
reopened
QST: "Dummy" is rooted in ableist language
Enhancement API Design Needs Discussion
- [x] I have searched the [[pandas] tag](https://stackoverflow.com/questions/tagged/pandas) on StackOverflow for similar questions. - [x] I have asked my usage related question on [StackOverflow](https://stackoverflow.com). --- #### Question about pandas Although extremely common in the industry, "dummy" ha...
1.0
QST: "Dummy" is rooted in ableist language - - [x] I have searched the [[pandas] tag](https://stackoverflow.com/questions/tagged/pandas) on StackOverflow for similar questions. - [x] I have asked my usage related question on [StackOverflow](https://stackoverflow.com). --- #### Question about pandas Although...
non_priority
qst dummy is rooted in ableist language i have searched the tag on stackoverflow for similar questions i have asked my usage related question on question about pandas although extremely common in the industry dummy has some unfortunate history one current use is for subst...
0
49,466
3,002,883,991
IssuesEvent
2015-07-24 19:51:50
jayway/powermock
https://api.github.com/repos/jayway/powermock
opened
PowerMock for mockito with maven not working on Linux
bug imported Priority-Medium
_From [bclara...@gmail.com](https://code.google.com/u/106640916782200725401/) on November 25, 2012 07:08:46_ What steps will reproduce the problem? 1. On linux annotate you test class with @RunWith(PowerMockRunner.class) and @PrepareForTest(UtilClass.class) 2. run maven command 'mvn clean test -e' 3. Using maven 3.0...
1.0
PowerMock for mockito with maven not working on Linux - _From [bclara...@gmail.com](https://code.google.com/u/106640916782200725401/) on November 25, 2012 07:08:46_ What steps will reproduce the problem? 1. On linux annotate you test class with @RunWith(PowerMockRunner.class) and @PrepareForTest(UtilClass.class) 2. r...
priority
powermock for mockito with maven not working on linux from on november what steps will reproduce the problem on linux annotate you test class with runwith powermockrunner class and preparefortest utilclass class run maven command mvn clean test e using maven and java upd...
1
386,206
11,433,650,936
IssuesEvent
2020-02-04 16:02:26
hci-unihd/plant-seg
https://api.github.com/repos/hci-unihd/plant-seg
opened
Leave only 6-8 networks for the user to pick from with descriptive names
enhancement high-priority
Different architecture and losses in the network variants just make it more confusing to the end user. Less is more in this case
1.0
Leave only 6-8 networks for the user to pick from with descriptive names - Different architecture and losses in the network variants just make it more confusing to the end user. Less is more in this case
priority
leave only networks for the user to pick from with descriptive names different architecture and losses in the network variants just make it more confusing to the end user less is more in this case
1
4,036
2,956,319,041
IssuesEvent
2015-07-08 10:27:28
everypolitician/everypolitician-data
https://api.github.com/repos/everypolitician/everypolitician-data
opened
Set Ruby version explicitly in standard Morph Gemfile
1 - To Code
https://morph.io/tmtmtmtm/lesotho-electoral-commission is failing on one constituency due to an encoding error that I can't replicate locally. It's probably worth making sure that I'm always using the same version on both by setting that in the Gemfile (https://morph.io/documentation/ruby)
1.0
Set Ruby version explicitly in standard Morph Gemfile - https://morph.io/tmtmtmtm/lesotho-electoral-commission is failing on one constituency due to an encoding error that I can't replicate locally. It's probably worth making sure that I'm always using the same version on both by setting that in the Gemfile (https://mo...
non_priority
set ruby version explicitly in standard morph gemfile is failing on one constituency due to an encoding error that i can t replicate locally it s probably worth making sure that i m always using the same version on both by setting that in the gemfile
0
1,434
2,545,286,309
IssuesEvent
2015-01-29 16:16:57
meysholdt/Xpect
https://api.github.com/repos/meysholdt/Xpect
opened
[scoping] support to test empty scope
new_test
e.g. ``` @Inject private IScopeProvider scopeProvider; @Xpect @ParameterParser(syntax = "('at' arg0=OFFSET)? 'name' arg1=STRING") public void scopeIsEmpty(@ThisOffset EObject arg0, String arg1) { EReference reference = (EReference) arg0.eClass().getEStructuralFeature(arg1); IScope scope = scopeProvider.ge...
1.0
[scoping] support to test empty scope - e.g. ``` @Inject private IScopeProvider scopeProvider; @Xpect @ParameterParser(syntax = "('at' arg0=OFFSET)? 'name' arg1=STRING") public void scopeIsEmpty(@ThisOffset EObject arg0, String arg1) { EReference reference = (EReference) arg0.eClass().getEStructuralFeature(...
non_priority
support to test empty scope e g inject private iscopeprovider scopeprovider xpect parameterparser syntax at offset name string public void scopeisempty thisoffset eobject string ereference reference ereference eclass getestructuralfeature iscope scope sc...
0
429,973
12,438,991,845
IssuesEvent
2020-05-26 09:21:29
webcompat/web-bugs
https://api.github.com/repos/webcompat/web-bugs
closed
www.youtube.com - video or audio doesn't play
browser-firefox-reality engine-gecko priority-critical
<!-- @browser: Android 7.1.1 --> <!-- @ua_header: Mozilla/5.0 (Android 7.1.1; Mobile VR; rv:78.0) Gecko/78.0 Firefox/78.0 --> <!-- @reported_with: browser-fxr --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/53259 --> <!-- @extra_labels: browser-firefox-reality --> **URL**: https://www.youtube.com/wa...
1.0
www.youtube.com - video or audio doesn't play - <!-- @browser: Android 7.1.1 --> <!-- @ua_header: Mozilla/5.0 (Android 7.1.1; Mobile VR; rv:78.0) Gecko/78.0 Firefox/78.0 --> <!-- @reported_with: browser-fxr --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/53259 --> <!-- @extra_labels: browser-firefox-...
priority
video or audio doesn t play url browser version android operating system android tested another browser yes chrome problem type video or audio doesn t play description there is no audio steps to reproduce no noise is playing on the youtube video ...
1
228,542
7,552,714,948
IssuesEvent
2018-04-19 01:57:54
AlmuraDev/Almura
https://api.github.com/repos/AlmuraDev/Almura
closed
TC - Biome Feature doesn't seem to be reading colors from configs correctly
status: low priority
Example: Biome: Lakes & Lakeshores; both have the setting: GrassColor: #FFFFFF but only Lakes seems to show the grass as white. Please advise. Water colors also don't appear to be applying either.
1.0
TC - Biome Feature doesn't seem to be reading colors from configs correctly - Example: Biome: Lakes & Lakeshores; both have the setting: GrassColor: #FFFFFF but only Lakes seems to show the grass as white. Please advise. Water colors also don't appear to be applying either.
priority
tc biome feature doesn t seem to be reading colors from configs correctly example biome lakes lakeshores both have the setting grasscolor ffffff but only lakes seems to show the grass as white please advise water colors also don t appear to be applying either
1
358,489
10,618,535,675
IssuesEvent
2019-10-13 05:30:28
k8smeetup/website-tasks
https://api.github.com/repos/k8smeetup/website-tasks
opened
/docs/concepts/cluster-administration/logging.md
lang/zh priority/P0 sync/update version/1.16 welcome
Source File: [/docs/concepts/cluster-administration/logging.md](https://github.com/kubernetes/website/blob/release-1.16/content/en/docs/concepts/cluster-administration/logging.md) Diff 查看原始文档更新差异命令: ```bash git diff release-1.14 release-1.16 -- content/en/docs/concepts/cluster-administration/logging.md ```
1.0
/docs/concepts/cluster-administration/logging.md - Source File: [/docs/concepts/cluster-administration/logging.md](https://github.com/kubernetes/website/blob/release-1.16/content/en/docs/concepts/cluster-administration/logging.md) Diff 查看原始文档更新差异命令: ```bash git diff release-1.14 release-1.16 -- content/en/docs/concep...
priority
docs concepts cluster administration logging md source file diff 查看原始文档更新差异命令 bash git diff release release content en docs concepts cluster administration logging md
1
68,919
21,957,687,708
IssuesEvent
2022-05-24 13:28:03
vector-im/element-android
https://api.github.com/repos/vector-im/element-android
opened
I can remove the space name and then it is displayed as "Empty room"
T-Defect
### Steps to reproduce 1. Create a space. The form enforce the name to be not empty 2. Go to the space setting, and edit the name: empty the field and click "Save" ### Outcome #### What did you expect? The space setting screen should not allow to set an empty name, as the space creation screen. If empty, th...
1.0
I can remove the space name and then it is displayed as "Empty room" - ### Steps to reproduce 1. Create a space. The form enforce the name to be not empty 2. Go to the space setting, and edit the name: empty the field and click "Save" ### Outcome #### What did you expect? The space setting screen should not al...
non_priority
i can remove the space name and then it is displayed as empty room steps to reproduce create a space the form enforce the name to be not empty go to the space setting and edit the name empty the field and click save outcome what did you expect the space setting screen should not al...
0
217,101
16,843,262,066
IssuesEvent
2021-06-19 00:36:38
backend-br/vagas
https://api.github.com/repos/backend-br/vagas
closed
[Brasília - DF] Java Back-end Developer [@ilia digital]
CI CLT DevOps Git Java NoSQL Remoto Rest SOAP Spring Stale Testes Unitários
## Sobre nós A ília é uma empresa que veio para facilitar. Somos especialistas em simplificar as interações entre pessoas, produtos e serviços por meio da tecnologia e do design. Somos focados principalmente em três setores: serviços financeiros, mobilidade e seguros. Temos mais de 100 equipes dedicadas, sediadas no ...
1.0
[Brasília - DF] Java Back-end Developer [@ilia digital] - ## Sobre nós A ília é uma empresa que veio para facilitar. Somos especialistas em simplificar as interações entre pessoas, produtos e serviços por meio da tecnologia e do design. Somos focados principalmente em três setores: serviços financeiros, mobilidade e ...
non_priority
java back end developer sobre nós a ília é uma empresa que veio para facilitar somos especialistas em simplificar as interações entre pessoas produtos e serviços por meio da tecnologia e do design somos focados principalmente em três setores serviços financeiros mobilidade e seguros temos mais de equ...
0
42,219
9,188,147,235
IssuesEvent
2019-03-06 06:17:53
electrumsv/electrumsv
https://api.github.com/repos/electrumsv/electrumsv
opened
Test running with missing hardware libs works fine
code quality
Made fixes so Trezor and Keepkey are fine. Need others to check ledger / DBB
1.0
Test running with missing hardware libs works fine - Made fixes so Trezor and Keepkey are fine. Need others to check ledger / DBB
non_priority
test running with missing hardware libs works fine made fixes so trezor and keepkey are fine need others to check ledger dbb
0
136,786
5,288,834,428
IssuesEvent
2017-02-08 16:01:33
rd-alliance/metadata-catalog-dev
https://api.github.com/repos/rd-alliance/metadata-catalog-dev
opened
Search by funder
GUI medium priority
Responding to a search query of a funding body, display a list of matching records.
1.0
Search by funder - Responding to a search query of a funding body, display a list of matching records.
priority
search by funder responding to a search query of a funding body display a list of matching records
1
15,485
2,857,126,810
IssuesEvent
2015-06-02 18:11:58
yan-qi/k-shortest-paths-scala-version
https://api.github.com/repos/yan-qi/k-shortest-paths-scala-version
closed
I Have removed all the memory leak
auto-migrated Priority-Medium Type-Defect
``` ~YenTopKShortestPathsAlg(void) { for (multiset<BasePath*, WeightLess<BasePath>>::iterator it=m_quPathCandidates.begin(); it!=m_quPathCandidates.end(); it++) { delete (*it); } for(vector<BasePath*>::iterator it= m_vResultList.begin(); it!=m_vResultList.end();it++) { delete *it; } clear();...
1.0
I Have removed all the memory leak - ``` ~YenTopKShortestPathsAlg(void) { for (multiset<BasePath*, WeightLess<BasePath>>::iterator it=m_quPathCandidates.begin(); it!=m_quPathCandidates.end(); it++) { delete (*it); } for(vector<BasePath*>::iterator it= m_vResultList.begin(); it!=m_vResultList.end();it+...
non_priority
i have removed all the memory leak yentopkshortestpathsalg void for multiset iterator it m qupathcandidates begin it m qupathcandidates end it delete it for vector iterator it m vresultlist begin it m vresultlist end it delete it clear ...
0
775,960
27,241,997,081
IssuesEvent
2023-02-21 21:21:48
o3de/o3de.org
https://api.github.com/repos/o3de/o3de.org
closed
[BUG][WEBSITE] Update Meta titles for the pages to be the heading.
priority/major RTE status/discuss WF8 kind/website
## Describe the bug Update Meta titles for the pages to be the heading. Currently they all say Open 3D Engine. No Context for page. ## Reproduction steps 1. Open a page on O3DE.org/docs. 2. Go a few levels deep on any content. 3. Notice all the tabs read Open 3D Engine only ## Expected behavior That...
1.0
[BUG][WEBSITE] Update Meta titles for the pages to be the heading. - ## Describe the bug Update Meta titles for the pages to be the heading. Currently they all say Open 3D Engine. No Context for page. ## Reproduction steps 1. Open a page on O3DE.org/docs. 2. Go a few levels deep on any content. 3. Notice...
priority
update meta titles for the pages to be the heading describe the bug update meta titles for the pages to be the heading currently they all say open engine no context for page reproduction steps open a page on org docs go a few levels deep on any content notice all the tabs re...
1
249,977
27,015,622,694
IssuesEvent
2023-02-10 19:04:53
pustovitDmytro/curly-express
https://api.github.com/repos/pustovitDmytro/curly-express
closed
WS-2022-0239 (Medium) detected in parse-url-6.0.0.tgz - autoclosed
security vulnerability
## WS-2022-0239 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>parse-url-6.0.0.tgz</b></p></summary> <p>An advanced url parser supporting git urls too.</p> <p>Library home page: <a ...
True
WS-2022-0239 (Medium) detected in parse-url-6.0.0.tgz - autoclosed - ## WS-2022-0239 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>parse-url-6.0.0.tgz</b></p></summary> <p>An advan...
non_priority
ws medium detected in parse url tgz autoclosed ws medium severity vulnerability vulnerable library parse url tgz an advanced url parser supporting git urls too library home page a href path to dependency file package json path to vulnerable library node modules ...
0
129,109
18,070,868,504
IssuesEvent
2021-09-21 02:37:30
tj-actions/coverage-badge-js
https://api.github.com/repos/tj-actions/coverage-badge-js
closed
CVE-2021-23436 (High) detected in immer-8.0.1.tgz
security vulnerability
## CVE-2021-23436 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>immer-8.0.1.tgz</b></p></summary> <p>Create your next immutable state by mutating the current one</p> <p>Library home ...
True
CVE-2021-23436 (High) detected in immer-8.0.1.tgz - ## CVE-2021-23436 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>immer-8.0.1.tgz</b></p></summary> <p>Create your next immutable st...
non_priority
cve high detected in immer tgz cve high severity vulnerability vulnerable library immer tgz create your next immutable state by mutating the current one library home page a href path to dependency file coverage badge js test app package json path to vulnerable library...
0
19,026
3,126,344,736
IssuesEvent
2015-09-08 08:49:02
contao/core
https://api.github.com/repos/contao/core
closed
The button «Show differences» opens the page «Personal data» in BE
defect
If user edits his settings by links in the header, then the button «Show differences» on the Home page opens the settings page in popup. Edit the settings on «Users→Edit user ID…» works normal. ![image 1](https://cloud.githubusercontent.com/assets/2331446/9499605/1b7767a4-4c42-11e5-9ad6-3628a885adb7.png)
1.0
The button «Show differences» opens the page «Personal data» in BE - If user edits his settings by links in the header, then the button «Show differences» on the Home page opens the settings page in popup. Edit the settings on «Users→Edit user ID…» works normal. ![image 1](https://cloud.githubusercontent.com/assets/23...
non_priority
the button «show differences» opens the page «personal data» in be if user edits his settings by links in the header then the button «show differences» on the home page opens the settings page in popup edit the settings on «users→edit user id…» works normal
0
716,117
24,622,033,550
IssuesEvent
2022-10-16 02:53:18
crytic/slither
https://api.github.com/repos/crytic/slither
closed
[Bug]: `delegatecall_in_loop` detector fails on some custom errors
bug High Priority
### Describe the issue: This is probably related to #1173. Some detectors, like `delegatecall_in_loop`, crash the parser with some custom error cases. ### Code example to reproduce the issue: This is as far as I got minimizing the example: ```solidity contract A { error E(A a); function f() payable ext...
1.0
[Bug]: `delegatecall_in_loop` detector fails on some custom errors - ### Describe the issue: This is probably related to #1173. Some detectors, like `delegatecall_in_loop`, crash the parser with some custom error cases. ### Code example to reproduce the issue: This is as far as I got minimizing the example: ```soli...
priority
delegatecall in loop detector fails on some custom errors describe the issue this is probably related to some detectors like delegatecall in loop crash the parser with some custom error cases code example to reproduce the issue this is as far as i got minimizing the example solidity c...
1
260,801
22,648,838,214
IssuesEvent
2022-07-01 11:27:09
oasisprotocol/oasis-sdk
https://api.github.com/repos/oasisprotocol/oasis-sdk
closed
Add more test keys
c:runtime-sdk c:client-sdk/go c:testing
Currently we only have three convenient test keys (Alice, Bob, Charlie). We should add [some more](https://en.wikipedia.org/wiki/Alice_and_Bob#Cast_of_characters) for use in test cases.
1.0
Add more test keys - Currently we only have three convenient test keys (Alice, Bob, Charlie). We should add [some more](https://en.wikipedia.org/wiki/Alice_and_Bob#Cast_of_characters) for use in test cases.
non_priority
add more test keys currently we only have three convenient test keys alice bob charlie we should add for use in test cases
0
242,889
7,849,924,098
IssuesEvent
2018-06-20 06:39:40
xwikisas/application-forum
https://api.github.com/repos/xwikisas/application-forum
closed
Code appears after adding an Answer to a Topic
Priority: Critical Type: Bug
https://jira.xwiki.org/browse/XAFORUM-250. ![screenshot from 2018-06-19 18-24-23](https://user-images.githubusercontent.com/8121819/41608910-483558b6-73f2-11e8-93bd-937de96fd5b9.png) Remove Wysiwyg GWT editors, letting the comments to be handled in plain text.
1.0
Code appears after adding an Answer to a Topic - https://jira.xwiki.org/browse/XAFORUM-250. ![screenshot from 2018-06-19 18-24-23](https://user-images.githubusercontent.com/8121819/41608910-483558b6-73f2-11e8-93bd-937de96fd5b9.png) Remove Wysiwyg GWT editors, letting the comments to be handled in plain text.
priority
code appears after adding an answer to a topic remove wysiwyg gwt editors letting the comments to be handled in plain text
1
470,160
13,533,165,881
IssuesEvent
2020-09-16 02:12:36
tikv/tikv
https://api.github.com/repos/tikv/tikv
opened
TiKV always starting a new election
priority/critical type/bug
## Bug Report <!-- Thanks for your bug report! Don't worry if you can't fill out all the sections. --> ### What version of TiKV are you using? v4.0.0 ### What operating system and CPU are you using? N/A ### Steps to reproduce After `tiup reload`, TiKV log shows many `starting a new election`. Below is...
1.0
TiKV always starting a new election - ## Bug Report <!-- Thanks for your bug report! Don't worry if you can't fill out all the sections. --> ### What version of TiKV are you using? v4.0.0 ### What operating system and CPU are you using? N/A ### Steps to reproduce After `tiup reload`, TiKV log shows many ...
priority
tikv always starting a new election bug report what version of tikv are you using what operating system and cpu are you using n a steps to reproduce after tiup reload tikv log shows many starting a new election below is a segment of log file sent request...
1
444,032
12,805,452,519
IssuesEvent
2020-07-03 07:32:45
Nelson-Gon/cytounet
https://api.github.com/repos/Nelson-Gon/cytounet
closed
Fix issues with image shape
bug good first issue priority:medium
- [x] Flexibility in `show_images` regarding ambiguous image shapes e.g 4 vs 3 vs 2
1.0
Fix issues with image shape - - [x] Flexibility in `show_images` regarding ambiguous image shapes e.g 4 vs 3 vs 2
priority
fix issues with image shape flexibility in show images regarding ambiguous image shapes e g vs vs
1
4,229
4,894,344,603
IssuesEvent
2016-11-19 07:30:30
alexis-turpin/iac-experiment
https://api.github.com/repos/alexis-turpin/iac-experiment
opened
Add a persistant data source to the infrastructure
enhancement Infrastructure
Add a persistant data source to the infrastructure. Could be useful for : - API queries - Save monitoring metrics
1.0
Add a persistant data source to the infrastructure - Add a persistant data source to the infrastructure. Could be useful for : - API queries - Save monitoring metrics
non_priority
add a persistant data source to the infrastructure add a persistant data source to the infrastructure could be useful for api queries save monitoring metrics
0
340,603
10,275,804,996
IssuesEvent
2019-08-24 11:31:31
brave/brave-browser
https://api.github.com/repos/brave/brave-browser
closed
Improve public facing API documentation for Ads/Confirmations and general refactoring/API cleanup
QA/No feature/ads feature/rewards priority/P2
Improve public facing API documentation for Ads/Confirmations to help with implementation on other platforms such as iOS
1.0
Improve public facing API documentation for Ads/Confirmations and general refactoring/API cleanup - Improve public facing API documentation for Ads/Confirmations to help with implementation on other platforms such as iOS
priority
improve public facing api documentation for ads confirmations and general refactoring api cleanup improve public facing api documentation for ads confirmations to help with implementation on other platforms such as ios
1
804,804
29,502,529,526
IssuesEvent
2023-06-03 00:30:33
OpenSpace/OpenSpace
https://api.github.com/repos/OpenSpace/OpenSpace
opened
Some SceneGraphNodes automatically start as opened in WebUI
Type: Bug Priority: Major Component: UI Feature: Web UI
Some of the scene graph nodes in the WebUI start out as being opened up. One example is shown in the video; other examples are the `Missions` in the apollo profile or the `Dwarf Planets` in the default profile https://github.com/OpenSpace/OpenSpace/assets/4921724/59eb85f9-0887-4e94-a1c4-06410494ec19
1.0
Some SceneGraphNodes automatically start as opened in WebUI - Some of the scene graph nodes in the WebUI start out as being opened up. One example is shown in the video; other examples are the `Missions` in the apollo profile or the `Dwarf Planets` in the default profile https://github.com/OpenSpace/OpenSpace/asse...
priority
some scenegraphnodes automatically start as opened in webui some of the scene graph nodes in the webui start out as being opened up one example is shown in the video other examples are the missions in the apollo profile or the dwarf planets in the default profile
1
824,906
31,235,853,302
IssuesEvent
2023-08-20 09:08:50
DroidKaigi/conference-app-2023
https://api.github.com/repos/DroidKaigi/conference-app-2023
closed
Background color of BookmarkScreen is wrong in dark theme
welcome contribute high priority
**Describe the bug** Background color of BookmarkScreen is wrong in dark theme. **To Reproduce** Steps to reproduce the behavior: 1. Turn into dark theme. 2. Open BookmarkScreen **Expected behavior** Background color of BookmarkScreen should be black in dark theme. **Screenshots** ![Screenshot_20230819_225432.png](...
1.0
Background color of BookmarkScreen is wrong in dark theme - **Describe the bug** Background color of BookmarkScreen is wrong in dark theme. **To Reproduce** Steps to reproduce the behavior: 1. Turn into dark theme. 2. Open BookmarkScreen **Expected behavior** Background color of BookmarkScreen should be black in dar...
priority
background color of bookmarkscreen is wrong in dark theme describe the bug background color of bookmarkscreen is wrong in dark theme to reproduce steps to reproduce the behavior turn into dark theme open bookmarkscreen expected behavior background color of bookmarkscreen should be black in dar...
1
589,959
17,767,671,772
IssuesEvent
2021-08-30 09:37:15
TheGameCreators/AGK-Studio
https://api.github.com/repos/TheGameCreators/AGK-Studio
closed
HTML SameSite Cookies in iFrame
bug duplicate HTML5 Low priority
when run within an iFrame, SharedVariables/cookies won't work. See [https://forum.thegamecreators.com/thread/227556](https://forum.thegamecreators.com/thread/227556) with solution by tboy: https://forum.thegamecreators.com/thread/227556#msg2664274
1.0
HTML SameSite Cookies in iFrame - when run within an iFrame, SharedVariables/cookies won't work. See [https://forum.thegamecreators.com/thread/227556](https://forum.thegamecreators.com/thread/227556) with solution by tboy: https://forum.thegamecreators.com/thread/227556#msg2664274
priority
html samesite cookies in iframe when run within an iframe sharedvariables cookies won t work see with solution by tboy
1
384,367
26,583,273,168
IssuesEvent
2023-01-22 18:18:57
statisticsnorway/dapla-team-cli
https://api.github.com/repos/statisticsnorway/dapla-team-cli
closed
Documentation is outdated
documentation
Needs to reflect the new changes in dpteam, such as autocomplete in groups and tf iam-bindings, as well as mentioning that it is available in Jupyter-staging
1.0
Documentation is outdated - Needs to reflect the new changes in dpteam, such as autocomplete in groups and tf iam-bindings, as well as mentioning that it is available in Jupyter-staging
non_priority
documentation is outdated needs to reflect the new changes in dpteam such as autocomplete in groups and tf iam bindings as well as mentioning that it is available in jupyter staging
0
19,356
10,349,296,671
IssuesEvent
2019-09-04 22:02:03
scxbush/Bushgoat8
https://api.github.com/repos/scxbush/Bushgoat8
opened
CVE-2018-1000632 (High) detected in dom4j-1.6.1.jar
security vulnerability
## CVE-2018-1000632 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>dom4j-1.6.1.jar</b></p></summary> <p>dom4j: the flexible XML framework for Java</p> <p>Library home page: <a href="h...
True
CVE-2018-1000632 (High) detected in dom4j-1.6.1.jar - ## CVE-2018-1000632 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>dom4j-1.6.1.jar</b></p></summary> <p>dom4j: the flexible XML f...
non_priority
cve high detected in jar cve high severity vulnerability vulnerable library jar the flexible xml framework for java library home page a href path to dependency file webwolf pom xml path to vulnerable library root repository jar root ...
0
670,781
22,703,844,839
IssuesEvent
2022-07-05 13:07:10
BTWS2/judge-turtle
https://api.github.com/repos/BTWS2/judge-turtle
closed
Ignore `time.sleep()`
enhancement high priority
- [ ] https://naos.ugent.be/nl/submissions/983304/ ```python # import package import turtle import time turtle.shape("turtle") # forward turtle by 50 turtle.forward(50) # print the turtle shape turtle.stamp() time.sleep(20) # ignore this # and then continue # forward turtle by 50 turtle.forwar...
1.0
Ignore `time.sleep()` - - [ ] https://naos.ugent.be/nl/submissions/983304/ ```python # import package import turtle import time turtle.shape("turtle") # forward turtle by 50 turtle.forward(50) # print the turtle shape turtle.stamp() time.sleep(20) # ignore this # and then continue # forward tur...
priority
ignore time sleep python import package import turtle import time turtle shape turtle forward turtle by turtle forward print the turtle shape turtle stamp time sleep ignore this and then continue forward turtle by turtle forward turtle stamp
1
12,175
3,256,352,517
IssuesEvent
2015-10-20 13:29:32
idies/SkyServer
https://api.github.com/repos/idies/SkyServer
closed
Portal callback URL could not be parsed
bug needstest sciserver_v1_5_1
Easiest to explain with a screenshot. Note the error message it gives and the URL that partially shows in the URL bar. The result of this behavior is that the user doesn't get redirected to SkyServer after login. Encountered on Firefox 41 on the Mac Yosemite OS, if that matters. <img width="1320" alt="untitled...
1.0
Portal callback URL could not be parsed - Easiest to explain with a screenshot. Note the error message it gives and the URL that partially shows in the URL bar. The result of this behavior is that the user doesn't get redirected to SkyServer after login. Encountered on Firefox 41 on the Mac Yosemite OS, if that m...
non_priority
portal callback url could not be parsed easiest to explain with a screenshot note the error message it gives and the url that partially shows in the url bar the result of this behavior is that the user doesn t get redirected to skyserver after login encountered on firefox on the mac yosemite os if that ma...
0
661,827
22,090,222,768
IssuesEvent
2022-06-01 04:57:55
longhorn/longhorn
https://api.github.com/repos/longhorn/longhorn
closed
[BUG] helm upgrade won't apply customize default setting
kind/enhancement area/manager area/upgrade area/deployment highlight priority/2 require/doc
**Is your feature request related to a problem? Please describe.** The longhorn-default-setting ConfigMap sync to settings CR only when settings CR does not exist. This means that during helm upgrade if the user changes the setting, then it won't applies to settings CR (but applies to longhorn-default-setting Confi...
1.0
[BUG] helm upgrade won't apply customize default setting - **Is your feature request related to a problem? Please describe.** The longhorn-default-setting ConfigMap sync to settings CR only when settings CR does not exist. This means that during helm upgrade if the user changes the setting, then it won't applies to...
priority
helm upgrade won t apply customize default setting is your feature request related to a problem please describe the longhorn default setting configmap sync to settings cr only when settings cr does not exist this means that during helm upgrade if the user changes the setting then it won t applies to set...
1
603,523
18,668,694,930
IssuesEvent
2021-10-30 09:25:07
wso2/product-apim
https://api.github.com/repos/wso2/product-apim
opened
Improve API Documentation / Customiation experience
Type/Improvement Priority/Normal
### Describe your problem(s) Our current API documentation options seem quite outdated now ![image](https://user-images.githubusercontent.com/3313885/139527371-b33b1b16-7916-43d7-821d-27bef11af51b.png) Like public forum URLs, Support etc. This issue is created for tracking the improvements of API documentat...
1.0
Improve API Documentation / Customiation experience - ### Describe your problem(s) Our current API documentation options seem quite outdated now ![image](https://user-images.githubusercontent.com/3313885/139527371-b33b1b16-7916-43d7-821d-27bef11af51b.png) Like public forum URLs, Support etc. This issue is c...
priority
improve api documentation customiation experience describe your problem s our current api documentation options seem quite outdated now like public forum urls support etc this issue is created for tracking the improvements of api documentation describe your solution markdown based...
1
595,519
18,067,940,011
IssuesEvent
2021-09-20 21:33:35
googleapis/python-dns
https://api.github.com/repos/googleapis/python-dns
closed
tests.unit.test__http.TestConnection: test_extra_headers failed
api: dns type: bug priority: p1 flakybot: issue
This test failed! To configure my behavior, see [the Flaky Bot documentation](https://github.com/googleapis/repo-automation-bots/tree/main/packages/flakybot). If I'm commenting on this issue too often, add the `flakybot: quiet` label and I will stop commenting. --- commit: 978174f5605f3901bf402f304681bc9afdf533b7 b...
1.0
tests.unit.test__http.TestConnection: test_extra_headers failed - This test failed! To configure my behavior, see [the Flaky Bot documentation](https://github.com/googleapis/repo-automation-bots/tree/main/packages/flakybot). If I'm commenting on this issue too often, add the `flakybot: quiet` label and I will stop co...
priority
tests unit test http testconnection test extra headers failed this test failed to configure my behavior see if i m commenting on this issue too often add the flakybot quiet label and i will stop commenting commit buildurl status failed test output self def test extra hea...
1
625,812
19,766,576,233
IssuesEvent
2022-01-17 03:38:20
aitos-io/BoAT-X-Framework
https://api.github.com/repos/aitos-io/BoAT-X-Framework
closed
Pointer error in web3 function
bug Severity/major Priority/P1
web3Result is a pointer to BOAT_RESULT, and need to determine if the input pointer is null, not if the value is null. ``` BOAT_RESULT *web3Result if(*web3Result != NULL){ *web3Result = result; } ```
1.0
Pointer error in web3 function - web3Result is a pointer to BOAT_RESULT, and need to determine if the input pointer is null, not if the value is null. ``` BOAT_RESULT *web3Result if(*web3Result != NULL){ *web3Result = result; } ```
priority
pointer error in function is a pointer to boat result and need to determine if the input pointer is null not if the value is null boat result if null result
1
102,147
12,747,771,906
IssuesEvent
2020-06-26 18:38:18
MozillaFoundation/Design
https://api.github.com/repos/MozillaFoundation/Design
closed
Graphic: EARN IT - due June 29
design
Request from Kaili: We're launching a campaign telling U.S. Congress to stop the EARN IT Act which would jeopardize encryption. https://docs.google.com/document/d/1MXLfUDwL2f9OYEwEiAkxLsen0rRjS1PHQ5ZEQV_BEaI/edit
1.0
Graphic: EARN IT - due June 29 - Request from Kaili: We're launching a campaign telling U.S. Congress to stop the EARN IT Act which would jeopardize encryption. https://docs.google.com/document/d/1MXLfUDwL2f9OYEwEiAkxLsen0rRjS1PHQ5ZEQV_BEaI/edit
non_priority
graphic earn it due june request from kaili we re launching a campaign telling u s congress to stop the earn it act which would jeopardize encryption
0
134,685
12,625,354,233
IssuesEvent
2020-06-14 11:28:42
slow-start-fans/slow-start-rewatch
https://api.github.com/repos/slow-start-fans/slow-start-rewatch
closed
Refactoring and cleanup
documentation enhancement
- Move the `EmptySchedule` checking from the `Timer` to the `Scheduler` - Fix and cleanup docstrings
1.0
Refactoring and cleanup - - Move the `EmptySchedule` checking from the `Timer` to the `Scheduler` - Fix and cleanup docstrings
non_priority
refactoring and cleanup move the emptyschedule checking from the timer to the scheduler fix and cleanup docstrings
0
421,535
12,258,256,889
IssuesEvent
2020-05-06 14:51:46
jrsteensen/OpenHornet
https://api.github.com/repos/jrsteensen/OpenHornet
closed
UIP, STLs are low poly
Category: MCAD Priority: Normal Status: In Progress Type: Bug
the files OH1A-110.stl, OH1A-111.stl and OH1A-116.stl are low-poly, also in the latter, the text is inverted. If you fix the originals, I convert them back to stl when you want
1.0
UIP, STLs are low poly - the files OH1A-110.stl, OH1A-111.stl and OH1A-116.stl are low-poly, also in the latter, the text is inverted. If you fix the originals, I convert them back to stl when you want
priority
uip stls are low poly the files stl stl and stl are low poly also in the latter the text is inverted if you fix the originals i convert them back to stl when you want
1
797,363
28,144,930,989
IssuesEvent
2023-04-02 11:27:55
bwipp/postscriptbarcode
https://api.github.com/repos/bwipp/postscriptbarcode
reopened
Add input validation to each symbology
enhancement high-priority good first issue
Add proper input validation with detailed error messages to all symbologies: - [x] auspost - [x] azteccode - [x] codablockf - [x] code128 - [x] code16k - [x] code49 - [x] code93 - [x] code93ext - [x] codeone - [x] daft - [x] databarexpanded - [x] databarexpandedcomposite - [x] databarexpandedstacked - [x]...
1.0
Add input validation to each symbology - Add proper input validation with detailed error messages to all symbologies: - [x] auspost - [x] azteccode - [x] codablockf - [x] code128 - [x] code16k - [x] code49 - [x] code93 - [x] code93ext - [x] codeone - [x] daft - [x] databarexpanded - [x] databarexpandedcompo...
priority
add input validation to each symbology add proper input validation with detailed error messages to all symbologies auspost azteccode codablockf codeone daft databarexpanded databarexpandedcomposite databarexpandedstacked databarexpandeds...
1
119,759
4,775,532,447
IssuesEvent
2016-10-27 10:43:13
Diaspora-for-Android/diaspora-android
https://api.github.com/repos/Diaspora-for-Android/diaspora-android
closed
Top Toolbar can be scrolled up, but not down in PodSelectionFragment
kind/ui priority/low
#### General information * **Device:** eg Nexus 5 * **Android Version:** eg Android 6.0.1 * **Pod:** eg pod.geraspora.de * **Diaspora pod version:** eg 0.5.99.0-p9bd2337c (can be found on the bottom) * **App source:** F-Droid, self build (latest HEAD) * **App version:** HEAD #### Steps to reproduce 1. Ha...
1.0
Top Toolbar can be scrolled up, but not down in PodSelectionFragment - #### General information * **Device:** eg Nexus 5 * **Android Version:** eg Android 6.0.1 * **Pod:** eg pod.geraspora.de * **Diaspora pod version:** eg 0.5.99.0-p9bd2337c (can be found on the bottom) * **App source:** F-Droid, self build (la...
priority
top toolbar can be scrolled up but not down in podselectionfragment general information device eg nexus android version eg android pod eg pod geraspora de diaspora pod version eg can be found on the bottom app source f droid self build latest head...
1
492,057
14,175,816,312
IssuesEvent
2020-11-12 22:16:32
jpmorganchase/modular
https://api.github.com/repos/jpmorganchase/modular
closed
third party dependencies that use import/export fail to load in jest
bug low priority
probably need to tweak a jest config somewhere.
1.0
third party dependencies that use import/export fail to load in jest - probably need to tweak a jest config somewhere.
priority
third party dependencies that use import export fail to load in jest probably need to tweak a jest config somewhere
1
598,416
18,244,865,724
IssuesEvent
2021-10-01 17:00:16
PyDrocsid/cogs
https://api.github.com/repos/PyDrocsid/cogs
closed
Add user name and avatar to message logs
enhancement priority: medium hacktoberfest difficulty: easy
Set the author name and icon of edit and delete message log embeds to the name and avatar of the message's author. Also add a new embed field that contains the author's user id.
1.0
Add user name and avatar to message logs - Set the author name and icon of edit and delete message log embeds to the name and avatar of the message's author. Also add a new embed field that contains the author's user id.
priority
add user name and avatar to message logs set the author name and icon of edit and delete message log embeds to the name and avatar of the message s author also add a new embed field that contains the author s user id
1
19,880
6,782,649,669
IssuesEvent
2017-10-30 09:02:21
servicecatalog/oscm
https://api.github.com/repos/servicecatalog/oscm
closed
Remove oscm-integrationtests-mockproduct
area/build infrastructure
This mock service has already been extracted to https://github.com/servicecatalog/oscm-soap-mock Tasks - remove project - link oscm-soap-mock to oscm - adapt build and tests in oscm - ... ?
1.0
Remove oscm-integrationtests-mockproduct - This mock service has already been extracted to https://github.com/servicecatalog/oscm-soap-mock Tasks - remove project - link oscm-soap-mock to oscm - adapt build and tests in oscm - ... ?
non_priority
remove oscm integrationtests mockproduct this mock service has already been extracted to tasks remove project link oscm soap mock to oscm adapt build and tests in oscm
0
182,297
6,668,683,378
IssuesEvent
2017-10-03 16:36:58
siteorigin/so-widgets-bundle
https://api.github.com/repos/siteorigin/so-widgets-bundle
closed
Image Grid widget: Add option to open link in new tab/window.
enhancement priority-2
Possibly add to the URL field an option to open the link in a new tab/window.
1.0
Image Grid widget: Add option to open link in new tab/window. - Possibly add to the URL field an option to open the link in a new tab/window.
priority
image grid widget add option to open link in new tab window possibly add to the url field an option to open the link in a new tab window
1
455,564
13,129,035,860
IssuesEvent
2020-08-06 13:17:58
macarthur-lab/seqr
https://api.github.com/repos/macarthur-lab/seqr
closed
HPO terms upload reads as csv but some HPO term descriptions use commas
bug low priority
When I download and re-upload phenotypes from existing projects, seqr occasionally runs into parsing errors when any HPO term in the series has a comma in the phenotype description. Playing around with the downloads from the Scott Exome project and the Genome project I transferred phenotypes into, it looks like seqr...
1.0
HPO terms upload reads as csv but some HPO term descriptions use commas - When I download and re-upload phenotypes from existing projects, seqr occasionally runs into parsing errors when any HPO term in the series has a comma in the phenotype description. Playing around with the downloads from the Scott Exome projec...
priority
hpo terms upload reads as csv but some hpo term descriptions use commas when i download and re upload phenotypes from existing projects seqr occasionally runs into parsing errors when any hpo term in the series has a comma in the phenotype description playing around with the downloads from the scott exome projec...
1
191,381
6,828,543,733
IssuesEvent
2017-11-08 20:48:00
Aubron/scoreshots-templates
https://api.github.com/repos/Aubron/scoreshots-templates
opened
Towson, Literally A Calendar
Priority: Low Status: Review Needed
### Requested by: Towson University Probably Public ## Template Description: This is a scheduling template. It's actually in the shape of a calendar. We do technically have the ability to make templates of these dimensions now, so the last real barrier to making these is gone. There are some unique UI concerns...
1.0
Towson, Literally A Calendar - ### Requested by: Towson University Probably Public ## Template Description: This is a scheduling template. It's actually in the shape of a calendar. We do technically have the ability to make templates of these dimensions now, so the last real barrier to making these is gone. Th...
priority
towson literally a calendar requested by towson university probably public template description this is a scheduling template it s actually in the shape of a calendar we do technically have the ability to make templates of these dimensions now so the last real barrier to making these is gone th...
1
343,052
10,324,847,600
IssuesEvent
2019-09-01 12:49:05
yalla-coop/death
https://api.github.com/repos/yalla-coop/death
closed
BUG: Deleted memories still appear in list
bug priority-5
When deleting a memory from the profile, we are redirected back to the list of memories, at which point the just-deleted memory is still visible as if it was still there. Clicking on it and then going back, as well as clicking delete again, re renders the main page properly without the deleted memory
1.0
BUG: Deleted memories still appear in list - When deleting a memory from the profile, we are redirected back to the list of memories, at which point the just-deleted memory is still visible as if it was still there. Clicking on it and then going back, as well as clicking delete again, re renders the main page properly ...
priority
bug deleted memories still appear in list when deleting a memory from the profile we are redirected back to the list of memories at which point the just deleted memory is still visible as if it was still there clicking on it and then going back as well as clicking delete again re renders the main page properly ...
1
328,283
9,992,259,055
IssuesEvent
2019-07-11 13:05:56
mozilla/addons-server
https://api.github.com/repos/mozilla/addons-server
closed
Add more mimetypes to MIMETYPE_CATEGORY_MAPPING
component: reviewer tools priority: p3
> I know you only moved that but I suspect you'll need application/xhtml+xml, application/rss+xml, application/atom+xml etc too From https://github.com/mozilla/addons-server/pull/11713/files/cf97a28aa7505a91d4124823ec6a0fa6d37373a4#r298155184
1.0
Add more mimetypes to MIMETYPE_CATEGORY_MAPPING - > I know you only moved that but I suspect you'll need application/xhtml+xml, application/rss+xml, application/atom+xml etc too From https://github.com/mozilla/addons-server/pull/11713/files/cf97a28aa7505a91d4124823ec6a0fa6d37373a4#r298155184
priority
add more mimetypes to mimetype category mapping i know you only moved that but i suspect you ll need application xhtml xml application rss xml application atom xml etc too from
1
201,863
23,045,938,782
IssuesEvent
2022-07-23 22:38:47
turkdevops/javascript-sdk
https://api.github.com/repos/turkdevops/javascript-sdk
closed
CVE-2019-19919 (High) detected in handlebars-4.0.12.tgz - autoclosed
security vulnerability
## CVE-2019-19919 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>handlebars-4.0.12.tgz</b></p></summary> <p>Handlebars provides the power necessary to let you build semantic templates...
True
CVE-2019-19919 (High) detected in handlebars-4.0.12.tgz - autoclosed - ## CVE-2019-19919 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>handlebars-4.0.12.tgz</b></p></summary> <p>Hand...
non_priority
cve high detected in handlebars tgz autoclosed cve high severity vulnerability vulnerable library handlebars tgz handlebars provides the power necessary to let you build semantic templates effectively with no frustration library home page a href path to dependency file...
0
272,101
29,794,981,362
IssuesEvent
2023-06-16 01:01:43
billmcchesney1/singleton
https://api.github.com/repos/billmcchesney1/singleton
closed
CVE-2020-11979 (High) detected in ant-1.9.4.jar - autoclosed
Mend: dependency security vulnerability
## CVE-2020-11979 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>ant-1.9.4.jar</b></p></summary> <p>master POM</p> <p>Path to dependency file: /g11n-ws/modules/md-data-initdb/build.gr...
True
CVE-2020-11979 (High) detected in ant-1.9.4.jar - autoclosed - ## CVE-2020-11979 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>ant-1.9.4.jar</b></p></summary> <p>master POM</p> <p>Pa...
non_priority
cve high detected in ant jar autoclosed cve high severity vulnerability vulnerable library ant jar master pom path to dependency file ws modules md data initdb build gradle path to vulnerable library tmp ws ua ulcrpo downloadresource ibrkbs ant jar depe...
0
116,805
4,706,966,897
IssuesEvent
2016-10-13 18:43:26
coreos/bugs
https://api.github.com/repos/coreos/bugs
closed
ca-certificates.crt not present
area/security component/distro kind/regression priority/P0 team/os
# Issue Report # ## Bug ## ### CoreOS Version ### ``` NAME=CoreOS ID=coreos VERSION=1192.0.0 ``` ### Environment ### GCE ### Expected Behavior ### ``` $ ls -la /etc/ssl/certs/ca-certificates.crt lrwxrwxrwx. 1 root root 54 Jul 8 17:20 /etc/ssl/certs/ca-certificates.crt -> ../../../usr/share/c...
1.0
ca-certificates.crt not present - # Issue Report # ## Bug ## ### CoreOS Version ### ``` NAME=CoreOS ID=coreos VERSION=1192.0.0 ``` ### Environment ### GCE ### Expected Behavior ### ``` $ ls -la /etc/ssl/certs/ca-certificates.crt lrwxrwxrwx. 1 root root 54 Jul 8 17:20 /etc/ssl/certs/ca-certif...
priority
ca certificates crt not present issue report bug coreos version name coreos id coreos version environment gce expected behavior ls la etc ssl certs ca certificates crt lrwxrwxrwx root root jul etc ssl certs ca certificates...
1
279,769
30,743,870,227
IssuesEvent
2023-07-28 13:37:06
cisagov/crossfeed
https://api.github.com/repos/cisagov/crossfeed
reopened
Medium Criticality Client Privacy Violation
backend security p1
# 🐛 Summary # backend\src\tasks\rootDomainSync.ts line 19 backend\src\tasks\censys.ts line 96 backend\src\tasks\hibp.ts line 78 backend\src\tasks\censys.ts line 34
True
Medium Criticality Client Privacy Violation - # 🐛 Summary # backend\src\tasks\rootDomainSync.ts line 19 backend\src\tasks\censys.ts line 96 backend\src\tasks\hibp.ts line 78 backend\src\tasks\censys.ts line 34
non_priority
medium criticality client privacy violation 🐛 summary backend src tasks rootdomainsync ts line backend src tasks censys ts line backend src tasks hibp ts line backend src tasks censys ts line
0
46,894
19,539,817,849
IssuesEvent
2021-12-31 17:45:20
hashicorp/terraform-provider-aws
https://api.github.com/repos/hashicorp/terraform-provider-aws
closed
aws_dms_replication_task.migration_type doesn't force a new resource
bug service/databasemigrationservice stale
<!--- Please note the following potential times when an issue might be in Terraform core: * [Configuration Language](https://www.terraform.io/docs/configuration/index.html) or resource ordering issues * [State](https://www.terraform.io/docs/state/index.html) and [State Backend](https://www.terraform.io/docs/backen...
2.0
aws_dms_replication_task.migration_type doesn't force a new resource - <!--- Please note the following potential times when an issue might be in Terraform core: * [Configuration Language](https://www.terraform.io/docs/configuration/index.html) or resource ordering issues * [State](https://www.terraform.io/docs/sta...
non_priority
aws dms replication task migration type doesn t force a new resource please note the following potential times when an issue might be in terraform core or resource ordering issues and issues issues issues spans resources across multiple providers if you are running into...
0
221,829
24,659,168,734
IssuesEvent
2022-10-18 04:22:45
valtech-ch/microservice-kubernetes-cluster
https://api.github.com/repos/valtech-ch/microservice-kubernetes-cluster
reopened
CVE-2021-20190 (High) detected in jackson-databind-2.9.8.jar
security vulnerability
## CVE-2021-20190 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jackson-databind-2.9.8.jar</b></p></summary> <p>General data-binding functionality for Jackson: works on core streamin...
True
CVE-2021-20190 (High) detected in jackson-databind-2.9.8.jar - ## CVE-2021-20190 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jackson-databind-2.9.8.jar</b></p></summary> <p>General...
non_priority
cve high detected in jackson databind jar cve high severity vulnerability vulnerable library jackson databind jar general data binding functionality for jackson works on core streaming api library home page a href path to dependency file functions build gradle path ...
0
323,501
9,855,847,900
IssuesEvent
2019-06-19 20:27:54
apache/incubator-druid
https://api.github.com/repos/apache/incubator-druid
closed
Duplicate requests to compute nodes
Area - Querying Difficulty - Hard Feature Priority - Medium
Currently if a compute node receives a duplicate request it just does the same query twice. Should be pretty easy to keep track of in progress queries and if a dup comes in block the request until the results are cached (pretty much all read through caches do this)
1.0
Duplicate requests to compute nodes - Currently if a compute node receives a duplicate request it just does the same query twice. Should be pretty easy to keep track of in progress queries and if a dup comes in block the request until the results are cached (pretty much all read through caches do this)
priority
duplicate requests to compute nodes currently if a compute node receives a duplicate request it just does the same query twice should be pretty easy to keep track of in progress queries and if a dup comes in block the request until the results are cached pretty much all read through caches do this
1
123,384
16,487,041,505
IssuesEvent
2021-05-24 19:39:00
aws/copilot-cli
https://api.github.com/repos/aws/copilot-cli
closed
Seperate stopped tasks from running tasks in `svc status` output
area/svc type/design
Hi everyone! This issue is to propose a change to the current UI of `svc status`. # Background Below is the current UI for `svc status`. ``` Task Status ID Image Digest Last Status Started At Stopped At Health Status -- ------------ ...
1.0
Seperate stopped tasks from running tasks in `svc status` output - Hi everyone! This issue is to propose a change to the current UI of `svc status`. # Background Below is the current UI for `svc status`. ``` Task Status ID Image Digest Last Status Started At Stopped ...
non_priority
seperate stopped tasks from running tasks in svc status output hi everyone this issue is to propose a change to the current ui of svc status background below is the current ui for svc status task status id image digest last status started at stopped ...
0
298,719
22,553,549,470
IssuesEvent
2022-06-27 08:15:17
rosettatype/hyperglot
https://api.github.com/repos/rosettatype/hyperglot
opened
Provide more "how to" documentation for python library use
documentation
As per #28 and #86 — the library is useful for the CLI, but without documentation it is not useful standalone.
1.0
Provide more "how to" documentation for python library use - As per #28 and #86 — the library is useful for the CLI, but without documentation it is not useful standalone.
non_priority
provide more how to documentation for python library use as per and — the library is useful for the cli but without documentation it is not useful standalone
0
337,063
24,524,987,581
IssuesEvent
2022-10-11 12:30:33
Ruben-Arushanyan/react-component-shell
https://api.github.com/repos/Ruben-Arushanyan/react-component-shell
closed
Docs website setup
documentation p1
Link: https://github.com/Ruben-Arushanyan/guide-open-source/tree/master/guides/website ## Description - [x] Setup website https://github.com/Ruben-Arushanyan/guide-open-source/tree/master/guides/website - [x] Homepage features https://github.com/Ruben-Arushanyan/docusaurus-boilerplates/blob/master/classic_instru...
1.0
Docs website setup - Link: https://github.com/Ruben-Arushanyan/guide-open-source/tree/master/guides/website ## Description - [x] Setup website https://github.com/Ruben-Arushanyan/guide-open-source/tree/master/guides/website - [x] Homepage features https://github.com/Ruben-Arushanyan/docusaurus-boilerplates/blob/...
non_priority
docs website setup link description setup website homepage features additional
0
69,866
7,165,243,156
IssuesEvent
2018-01-29 13:54:27
django-ldapdb/django-ldapdb
https://api.github.com/repos/django-ldapdb/django-ldapdb
closed
ListField with multi-value default
bug need-testcase
If you define a ListField with a List (with multiple values) as default, ldapdb will encode the list as string. This will generate something like that: ``` ['[', 'v', 'a', 'l', 'u', 'e', '1', ',', ' ', 'v', 'a', 'l', 'u', 'e', '2', ']'] ``` This will usually result in an error "value provided more than once" which is...
1.0
ListField with multi-value default - If you define a ListField with a List (with multiple values) as default, ldapdb will encode the list as string. This will generate something like that: ``` ['[', 'v', 'a', 'l', 'u', 'e', '1', ',', ' ', 'v', 'a', 'l', 'u', 'e', '2', ']'] ``` This will usually result in an error "va...
non_priority
listfield with multi value default if you define a listfield with a list with multiple values as default ldapdb will encode the list as string this will generate something like that this will usually result in an error value provided more than once which is probably covered in but the result ...
0
334,093
24,404,553,285
IssuesEvent
2022-10-05 06:36:23
utkarsh006/Eazy-Android
https://api.github.com/repos/utkarsh006/Eazy-Android
closed
Article 10 : Android UI Controls
documentation good first issue hacktoberfest
Write about the 13 types of UI Controls in Android in simple terms.
1.0
Article 10 : Android UI Controls - Write about the 13 types of UI Controls in Android in simple terms.
non_priority
article android ui controls write about the types of ui controls in android in simple terms
0
261,915
19,750,912,869
IssuesEvent
2022-01-15 04:02:31
InvasionBiologyHypotheses/Documentation
https://api.github.com/repos/InvasionBiologyHypotheses/Documentation
opened
Consider requesting a Phabricator workboard for enKORE
documentation Phabricator
This relates to - #24 For examples of such Phabricator workboards, see https://phabricator.wikimedia.org/project/view/1608/ or https://phabricator.wikimedia.org/project/view/17/ .
1.0
Consider requesting a Phabricator workboard for enKORE - This relates to - #24 For examples of such Phabricator workboards, see https://phabricator.wikimedia.org/project/view/1608/ or https://phabricator.wikimedia.org/project/view/17/ .
non_priority
consider requesting a phabricator workboard for enkore this relates to for examples of such phabricator workboards see or
0
95,993
8,582,692,008
IssuesEvent
2018-11-13 17:37:25
actnforchildren/mental_health_app
https://api.github.com/repos/actnforchildren/mental_health_app
closed
Emails not being sent for MVP testing accounts
bug please-test priority-1
These accounts are the ones for the MVP testing mentioned #64 This wasn't mentioned in Kate's email, but we just found out these accounts are not sending emails to the trusted adult account. On the app, it will indicate the email has been sent. The previous testing accounts (test_user, test1-9) are working just...
1.0
Emails not being sent for MVP testing accounts - These accounts are the ones for the MVP testing mentioned #64 This wasn't mentioned in Kate's email, but we just found out these accounts are not sending emails to the trusted adult account. On the app, it will indicate the email has been sent. The previous testi...
non_priority
emails not being sent for mvp testing accounts these accounts are the ones for the mvp testing mentioned this wasn t mentioned in kate s email but we just found out these accounts are not sending emails to the trusted adult account on the app it will indicate the email has been sent the previous testin...
0
84,423
3,664,629,797
IssuesEvent
2016-02-19 12:42:42
openshift/origin
https://api.github.com/repos/openshift/origin
closed
Several issues with show annotations link in browse pages
component/web kind/bug priority/P2
When it shows up right before a table there is no margin now that the tiles are gone. ![show_annotations](https://cloud.githubusercontent.com/assets/1467629/12789788/485b29be-ca6d-11e5-8e9e-92a70cf6b6ae.png) Deployment config is completely missing annotations. Build config has it under the Configuration tab wh...
1.0
Several issues with show annotations link in browse pages - When it shows up right before a table there is no margin now that the tiles are gone. ![show_annotations](https://cloud.githubusercontent.com/assets/1467629/12789788/485b29be-ca6d-11e5-8e9e-92a70cf6b6ae.png) Deployment config is completely missing annota...
priority
several issues with show annotations link in browse pages when it shows up right before a table there is no margin now that the tiles are gone deployment config is completely missing annotations build config has it under the configuration tab which is not the first tab are annotations really configur...
1
135,241
30,270,699,488
IssuesEvent
2023-07-07 15:07:35
phase2/outline
https://api.github.com/repos/phase2/outline
opened
[Bug]: CSS watch scripts failing in dev mode
Type: Bug Difficulty: Low Good First Issue READY TO CODE
**Describe the bug** CSS IS NOT being auto reloaded/watched properly in dev mode. **To Reproduce** Steps to reproduce the behavior: - Make a change CSS or TS file related - Observe there is no change in Storybook - Stop the build. - Run `yarn start` **Expected behavior** CSS IS being auto reloaded/watch...
1.0
[Bug]: CSS watch scripts failing in dev mode - **Describe the bug** CSS IS NOT being auto reloaded/watched properly in dev mode. **To Reproduce** Steps to reproduce the behavior: - Make a change CSS or TS file related - Observe there is no change in Storybook - Stop the build. - Run `yarn start` **Expect...
non_priority
css watch scripts failing in dev mode describe the bug css is not being auto reloaded watched properly in dev mode to reproduce steps to reproduce the behavior make a change css or ts file related observe there is no change in storybook stop the build run yarn start expected b...
0
551,355
16,166,672,714
IssuesEvent
2021-05-01 16:36:12
codetapacademy/my-cv-v3-starter
https://api.github.com/repos/codetapacademy/my-cv-v3-starter
closed
feat: mariateo - add welcome section
Priority: Medium
* [x] feat: mariateo - add the title and subtitle #64 * [x] feat: mariateo - add a section title and a box with shadow #65 * [x] feat: mariateo - add download button #66 * [x] feat: mariateo - add arrow down #67
1.0
feat: mariateo - add welcome section - * [x] feat: mariateo - add the title and subtitle #64 * [x] feat: mariateo - add a section title and a box with shadow #65 * [x] feat: mariateo - add download button #66 * [x] feat: mariateo - add arrow down #67
priority
feat mariateo add welcome section feat mariateo add the title and subtitle feat mariateo add a section title and a box with shadow feat mariateo add download button feat mariateo add arrow down
1
276,281
23,982,821,429
IssuesEvent
2022-09-13 16:21:23
librosa/librosa
https://api.github.com/repos/librosa/librosa
closed
CI failure on windows with resampy 0.4.1
bug testing Upstream/dependency bug
**Describe the bug** This popped up yesterday after releasing resampy 0.4.1. Our test suite generally works fine, except for one test on windows that's failing. The relevant part of the error log is ```python shape[axis] = int(shape[axis] * sr_new / sr_orig) if shape[axis] < 1: > ...
1.0
CI failure on windows with resampy 0.4.1 - **Describe the bug** This popped up yesterday after releasing resampy 0.4.1. Our test suite generally works fine, except for one test on windows that's failing. The relevant part of the error log is ```python shape[axis] = int(shape[axis] * sr_new / sr_orig)...
non_priority
ci failure on windows with resampy describe the bug this popped up yesterday after releasing resampy our test suite generally works fine except for one test on windows that s failing the relevant part of the error log is python shape int shape sr new sr orig ...
0
105,767
16,657,299,366
IssuesEvent
2021-06-05 19:09:57
veritem/presentations-template
https://api.github.com/repos/veritem/presentations-template
opened
CVE-2020-11022 (Medium) detected in jquery-1.9.1.min.js
security vulnerability
## CVE-2020-11022 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jquery-1.9.1.min.js</b></p></summary> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="ht...
True
CVE-2020-11022 (Medium) detected in jquery-1.9.1.min.js - ## CVE-2020-11022 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jquery-1.9.1.min.js</b></p></summary> <p>JavaScript librar...
non_priority
cve medium detected in jquery min js cve medium severity vulnerability vulnerable library jquery min js javascript library for dom operations library home page a href path to dependency file presentations template node modules dagre dist demo hover html path to vuln...
0
465,798
13,392,439,902
IssuesEvent
2020-09-03 01:22:04
googleapis/google-cloud-go
https://api.github.com/repos/googleapis/google-cloud-go
closed
bigtable: emulator rejects puts with reversed timestamps
api: bigtable external priority: p2 type: bug
**Client** * bigtable-hbase-1.x-shaded version 1.6.0 * hbase-shaded-client 1.4.5 **Environment** OSX and Linux **Code** ```java // Ideally, we'd just use Long.MAX_VALUE for this. However, the bigtable client needs to translate the value into // microseconds as that is what Bigtable uses. This means ...
1.0
bigtable: emulator rejects puts with reversed timestamps - **Client** * bigtable-hbase-1.x-shaded version 1.6.0 * hbase-shaded-client 1.4.5 **Environment** OSX and Linux **Code** ```java // Ideally, we'd just use Long.MAX_VALUE for this. However, the bigtable client needs to translate the value into ...
priority
bigtable emulator rejects puts with reversed timestamps client bigtable hbase x shaded version hbase shaded client environment osx and linux code java ideally we d just use long max value for this however the bigtable client needs to translate the value into ...
1
484,287
13,937,451,566
IssuesEvent
2020-10-22 14:09:54
UnknownShadow200/ClassiCube
https://api.github.com/repos/UnknownShadow200/ClassiCube
opened
Checking for updates breaks when targetting android 9.0+
bug low priority mobile
Because `https://cs.classicube.net/client/builds.json` redirects to `http://classicube.s3.amazonaws.com/client/builds.json`, and android won't auto follow redirects from https to http. Because of the way cs.classicube.net handles redirects, having it redirect to `https://` instead would be rather difficult. So I nee...
1.0
Checking for updates breaks when targetting android 9.0+ - Because `https://cs.classicube.net/client/builds.json` redirects to `http://classicube.s3.amazonaws.com/client/builds.json`, and android won't auto follow redirects from https to http. Because of the way cs.classicube.net handles redirects, having it redirec...
priority
checking for updates breaks when targetting android because redirects to and android won t auto follow redirects from https to http because of the way cs classicube net handles redirects having it redirect to instead would be rather difficult so i need to add support for manually following redirec...
1
639,730
20,763,385,036
IssuesEvent
2022-03-15 18:13:06
googlemaps/android-maps-compose
https://api.github.com/repos/googlemaps/android-maps-compose
closed
Release 2.0-SNAPSHOT
type: feature request priority: p2
Release `2.0-SNAPSHOT` to make features like #11 available for consumption.
1.0
Release 2.0-SNAPSHOT - Release `2.0-SNAPSHOT` to make features like #11 available for consumption.
priority
release snapshot release snapshot to make features like available for consumption
1
379,788
26,387,279,403
IssuesEvent
2023-01-12 13:15:47
Team-Smeme/Smeme-server
https://api.github.com/repos/Team-Smeme/Smeme-server
closed
[ADD] 리드미 서비스 소개 이미지 추가
documentation Sohyeon
<!-- - 리뷰어 추가했나요? - 허가자 추가했나요? - 라벨 추가했나요? --> ## What is this issue? 🚀 리드미에 서비스 소개 이미지를 추가합니다. ## Progress 🏃‍♀️ - [ ] 소개 이미지 추가
1.0
[ADD] 리드미 서비스 소개 이미지 추가 - <!-- - 리뷰어 추가했나요? - 허가자 추가했나요? - 라벨 추가했나요? --> ## What is this issue? 🚀 리드미에 서비스 소개 이미지를 추가합니다. ## Progress 🏃‍♀️ - [ ] 소개 이미지 추가
non_priority
리드미 서비스 소개 이미지 추가 리뷰어 추가했나요 허가자 추가했나요 라벨 추가했나요 what is this issue 🚀 리드미에 서비스 소개 이미지를 추가합니다 progress 🏃‍♀️ 소개 이미지 추가
0
20,566
2,622,853,436
IssuesEvent
2015-03-04 08:06:28
max99x/pagemon-chrome-ext
https://api.github.com/repos/max99x/pagemon-chrome-ext
opened
Show only diffs
auto-migrated Priority-Medium Type-Enhancement
``` Is it possible to only show the diffs from a page? I monitor a very large table, which thousands of rows, and I have to scroll the entire thing to see only a few diffs. Would love a way to only show the diffs, even if only in a text, i.e., non-formatted. Thanks for the great extension! ``` Original issue repo...
1.0
Show only diffs - ``` Is it possible to only show the diffs from a page? I monitor a very large table, which thousands of rows, and I have to scroll the entire thing to see only a few diffs. Would love a way to only show the diffs, even if only in a text, i.e., non-formatted. Thanks for the great extension! ``` O...
priority
show only diffs is it possible to only show the diffs from a page i monitor a very large table which thousands of rows and i have to scroll the entire thing to see only a few diffs would love a way to only show the diffs even if only in a text i e non formatted thanks for the great extension o...
1
545,051
15,935,025,238
IssuesEvent
2021-04-14 09:21:54
inf112-v21/Trivial-Solution
https://api.github.com/repos/inf112-v21/Trivial-Solution
closed
Finn andre enheter som har TrivialSolution sin RobatRallly versjon installert over et LAN
High priority feature
Akseptansekrav: - Enheten som starter mulitplayer funksjonen skal kunne sende ut en request til andre enheter som har spillet installert i et LAN om å joine denne mulitplayer økten. Arbeidsoppgaver: - Finn ut av en måte som gjør at enheten som sender ut requesten kan finne IP-adressen til andre enheter som har Tri...
1.0
Finn andre enheter som har TrivialSolution sin RobatRallly versjon installert over et LAN - Akseptansekrav: - Enheten som starter mulitplayer funksjonen skal kunne sende ut en request til andre enheter som har spillet installert i et LAN om å joine denne mulitplayer økten. Arbeidsoppgaver: - Finn ut av en måte som...
priority
finn andre enheter som har trivialsolution sin robatrallly versjon installert over et lan akseptansekrav enheten som starter mulitplayer funksjonen skal kunne sende ut en request til andre enheter som har spillet installert i et lan om å joine denne mulitplayer økten arbeidsoppgaver finn ut av en måte som...
1
786,528
27,658,030,496
IssuesEvent
2023-03-12 07:13:37
unlock-protocol/unlock
https://api.github.com/repos/unlock-protocol/unlock
closed
Move "execution" logic from paywall to paywall-app
🚨 High Priority
Our Paywall package does a bit too much :) Immediately after being loaded it instantiates a [new Paywall object](https://github.com/unlock-protocol/unlock/blob/master/packages/paywall/src/index.ts). We should not do that as part of the paywall package but as part of the paywall-app and make sure this part happens ...
1.0
Move "execution" logic from paywall to paywall-app - Our Paywall package does a bit too much :) Immediately after being loaded it instantiates a [new Paywall object](https://github.com/unlock-protocol/unlock/blob/master/packages/paywall/src/index.ts). We should not do that as part of the paywall package but as par...
priority
move execution logic from paywall to paywall app our paywall package does a bit too much immediately after being loaded it instantiates a we should not do that as part of the paywall package but as part of the paywall app and make sure this part happens in the javascript unlock latest min js file ...
1
237,890
26,085,431,623
IssuesEvent
2022-12-26 01:44:37
zurichat/zc_main
https://api.github.com/repos/zurichat/zc_main
opened
CVE-2022-46175 (High) detected in multiple libraries
security vulnerability
## CVE-2022-46175 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>json5-1.0.1.tgz</b>, <b>json5-0.5.1.tgz</b>, <b>json5-2.2.0.tgz</b></p></summary> <p> <details><summary><b>json5-1.0...
True
CVE-2022-46175 (High) detected in multiple libraries - ## CVE-2022-46175 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>json5-1.0.1.tgz</b>, <b>json5-0.5.1.tgz</b>, <b>json5-2.2.0.tg...
non_priority
cve high detected in multiple libraries cve high severity vulnerability vulnerable libraries tgz tgz tgz tgz json for humans library home page a href path to dependency file package json path to vulnerable library node modules ...
0
25,684
2,683,925,765
IssuesEvent
2015-03-28 13:36:27
ConEmu/old-issues
https://api.github.com/repos/ConEmu/old-issues
opened
DOS: Не совместимость с русификаторами консоли keyrus и RKM
2–5 stars bug imported Priority-Medium
_From [paul.zay...@gmail.com](https://code.google.com/u/102200610621821109077/) on May 26, 2010 02:54:11_ Докладываю о проблеме в его работе при наличии русификатора консоли. Имеем: 1. WinXP SP3; 2. Вызов русификатора консоли из autoexec.nt (keyrus.com или RKM.com - результат будет одинаковым); 3. Для примера ...
1.0
DOS: Не совместимость с русификаторами консоли keyrus и RKM - _From [paul.zay...@gmail.com](https://code.google.com/u/102200610621821109077/) on May 26, 2010 02:54:11_ Докладываю о проблеме в его работе при наличии русификатора консоли. Имеем: 1. WinXP SP3; 2. Вызов русификатора консоли из autoexec.nt (keyrus.com...
priority
dos не совместимость с русификаторами консоли keyrus и rkm from on may докладываю о проблеме в его работе при наличии русификатора консоли имеем winxp вызов русификатора консоли из autoexec nt keyrus com или rkm com результат будет одинаковым для примера возьмем настроенн...
1
92,726
3,873,148,900
IssuesEvent
2016-04-11 15:59:58
ELVIS-Project/vis-framework
https://api.github.com/repos/ELVIS-Project/vis-framework
opened
What should go in VIS 3.0?
Priority: LONG-TERM Type: DISCUSSION
Here is what I want to see in VIS 3.0: - breakdown of score importation into more steps - no more "stream indexers", instead index the streams of each part in a score only once when the data is imported and save the results as a list of series (important, a list of series, not a dataframe), then all indexers that a...
1.0
What should go in VIS 3.0? - Here is what I want to see in VIS 3.0: - breakdown of score importation into more steps - no more "stream indexers", instead index the streams of each part in a score only once when the data is imported and save the results as a list of series (important, a list of series, not a datafra...
priority
what should go in vis here is what i want to see in vis breakdown of score importation into more steps no more stream indexers instead index the streams of each part in a score only once when the data is imported and save the results as a list of series important a list of series not a datafra...
1
16,676
9,856,619,051
IssuesEvent
2019-06-19 22:51:05
elastic/kibana
https://api.github.com/repos/elastic/kibana
closed
Login screen loops back if user doesn't clear his cookies before logging in Kibana when configured via HTTPs.
Feature:Security/Authentication Team:Security bug
*Original comment by @rasroh:* Kibana version: 4.6.4 Elasticsearch version: 2.4.4 Server OS version: OSX Darwin Browser version: Google Chrome Version 55.0.2883.95 (64-bit) Original install method (e.g. download page, yum, from source, etc.): installed with the builds available under dev issue 712. When you ins...
True
Login screen loops back if user doesn't clear his cookies before logging in Kibana when configured via HTTPs. - *Original comment by @rasroh:* Kibana version: 4.6.4 Elasticsearch version: 2.4.4 Server OS version: OSX Darwin Browser version: Google Chrome Version 55.0.2883.95 (64-bit) Original install method (e.g. ...
non_priority
login screen loops back if user doesn t clear his cookies before logging in kibana when configured via https original comment by rasroh kibana version elasticsearch version server os version osx darwin browser version google chrome version bit original install method e g downlo...
0
160,221
25,127,149,809
IssuesEvent
2022-11-09 12:38:17
flutter/flutter
https://api.github.com/repos/flutter/flutter
closed
`ListView` clip shadows weird behavior
framework f: material design f: scrolling has reproducible steps found in release: 1.20 found in release: 1.22
## Steps to Reproduce ``` import 'package:flutter/material.dart'; void main() { runApp(MaterialApp( debugShowCheckedModeBanner: false, home: Home(), )); } class Home extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(), ...
1.0
`ListView` clip shadows weird behavior - ## Steps to Reproduce ``` import 'package:flutter/material.dart'; void main() { runApp(MaterialApp( debugShowCheckedModeBanner: false, home: Home(), )); } class Home extends StatelessWidget { @override Widget build(BuildContext context) { re...
non_priority
listview clip shadows weird behavior steps to reproduce import package flutter material dart void main runapp materialapp debugshowcheckedmodebanner false home home class home extends statelesswidget override widget build buildcontext context re...
0