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 757 | labels stringlengths 4 664 | body stringlengths 3 261k | index stringclasses 10 values | text_combine stringlengths 96 261k | label stringclasses 2 values | text stringlengths 96 232k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
38,383 | 8,792,439,373 | IssuesEvent | 2018-12-21 16:07:16 | bridgedotnet/Bridge | https://api.github.com/repos/bridgedotnet/Bridge | closed | Bitwise operations does not work as expected | defect in-progress premium | A description of the issue.
### Steps To Reproduce
https://deck.net/2775b1b34b6c65d2d9378b16069b54b4
```csharp
[Flags]
public enum Mask : long
{
L00 = 1L << 00,
L01 = 1L << 01,
L02 = 1L << 02,
L03 = 1L << 03,
L04 = 1L << 04,
L05 = 1L << 05,
L06 = 1L << 06,
L07 = 1L << 07,
L08 = 1L << 08,
//...
L63 = 1L << 63
}
public class Program
{
public static void Main()
{
Mask mask1 = (Mask)0L;
Mask mask2 = (Mask)0L;
mask1 = mask1 | Mask.L02; // I am OK!
mask2 |= Mask.L02; // But I am not!
bool test1 = mask1 != 0;
bool test2 = mask2 != 0;
Console.WriteLine(test1);
Console.WriteLine(test2);
}
}
```
### Expected Result
```js
mask2 is enum and mask.ne is valid
```
### Actual Result
```js
mask2 is just number and mask.ne is undefined
```
| 1.0 | Bitwise operations does not work as expected - A description of the issue.
### Steps To Reproduce
https://deck.net/2775b1b34b6c65d2d9378b16069b54b4
```csharp
[Flags]
public enum Mask : long
{
L00 = 1L << 00,
L01 = 1L << 01,
L02 = 1L << 02,
L03 = 1L << 03,
L04 = 1L << 04,
L05 = 1L << 05,
L06 = 1L << 06,
L07 = 1L << 07,
L08 = 1L << 08,
//...
L63 = 1L << 63
}
public class Program
{
public static void Main()
{
Mask mask1 = (Mask)0L;
Mask mask2 = (Mask)0L;
mask1 = mask1 | Mask.L02; // I am OK!
mask2 |= Mask.L02; // But I am not!
bool test1 = mask1 != 0;
bool test2 = mask2 != 0;
Console.WriteLine(test1);
Console.WriteLine(test2);
}
}
```
### Expected Result
```js
mask2 is enum and mask.ne is valid
```
### Actual Result
```js
mask2 is just number and mask.ne is undefined
```
| defect | bitwise operations does not work as expected a description of the issue steps to reproduce csharp public enum mask long public class program public static void main mask mask mask mask mask i am ok mask but i am not bool bool console writeline console writeline expected result js is enum and mask ne is valid actual result js is just number and mask ne is undefined | 1 |
53,513 | 13,261,801,399 | IssuesEvent | 2020-08-20 20:33:28 | icecube-trac/tix4 | https://api.github.com/repos/icecube-trac/tix4 | closed | i3ports - gotoblas2 - build failure (Trac #1577) | Migrated from Trac defect tools/ports | gcc 4.8.4 on ubuntu 14.04
```text
make: *** [getarch_2nd] Error 1
gcc -O2 -DEXPRECISION -m128bit-long-double -Wall -m64 -DF_INTERFACE_GFORT -fPIC -DDYNAMIC_ARCH -DMAX_CPU_NUMBER=8 -DASMNAME=getarch_2nd -DASMFNAME=getarch_2nd_ -DNAME=getarch_2nd_ -DCNAME=getarch_2nd -DCHAR_NAME=\"getarch_2nd_\" -DCHAR_CNAME=\"getarch_2nd\" -I. -m elf_x86_64 getarch_2nd.c -o getarch_2nd
gcc: error: elf_x86_64: No such file or directory
gcc: error: unrecognized command line option ‘-m’
make: *** [getarch_2nd] Error 1
```
<details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/1577">https://code.icecube.wisc.edu/projects/icecube/ticket/1577</a>, reported by negaand owned by nega</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2016-04-21T21:00:14",
"_ts": "1461272414268147",
"description": "gcc 4.8.4 on ubuntu 14.04\n\n{{{\nmake: *** [getarch_2nd] Error 1\ngcc -O2 -DEXPRECISION -m128bit-long-double -Wall -m64 -DF_INTERFACE_GFORT -fPIC -DDYNAMIC_ARCH -DMAX_CPU_NUMBER=8 -DASMNAME=getarch_2nd -DASMFNAME=getarch_2nd_ -DNAME=getarch_2nd_ -DCNAME=getarch_2nd -DCHAR_NAME=\\\"getarch_2nd_\\\" -DCHAR_CNAME=\\\"getarch_2nd\\\" -I. -m elf_x86_64 getarch_2nd.c -o getarch_2nd\ngcc: error: elf_x86_64: No such file or directory\ngcc: error: unrecognized command line option \u2018-m\u2019\nmake: *** [getarch_2nd] Error 1\n\u200b}}}\n",
"reporter": "nega",
"cc": "",
"resolution": "invalid",
"time": "2016-03-04T21:15:07",
"component": "tools/ports",
"summary": "i3ports - gotoblas2 - build failure",
"priority": "normal",
"keywords": "",
"milestone": "",
"owner": "nega",
"type": "defect"
}
```
</p>
</details>
| 1.0 | i3ports - gotoblas2 - build failure (Trac #1577) - gcc 4.8.4 on ubuntu 14.04
```text
make: *** [getarch_2nd] Error 1
gcc -O2 -DEXPRECISION -m128bit-long-double -Wall -m64 -DF_INTERFACE_GFORT -fPIC -DDYNAMIC_ARCH -DMAX_CPU_NUMBER=8 -DASMNAME=getarch_2nd -DASMFNAME=getarch_2nd_ -DNAME=getarch_2nd_ -DCNAME=getarch_2nd -DCHAR_NAME=\"getarch_2nd_\" -DCHAR_CNAME=\"getarch_2nd\" -I. -m elf_x86_64 getarch_2nd.c -o getarch_2nd
gcc: error: elf_x86_64: No such file or directory
gcc: error: unrecognized command line option ‘-m’
make: *** [getarch_2nd] Error 1
```
<details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/1577">https://code.icecube.wisc.edu/projects/icecube/ticket/1577</a>, reported by negaand owned by nega</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2016-04-21T21:00:14",
"_ts": "1461272414268147",
"description": "gcc 4.8.4 on ubuntu 14.04\n\n{{{\nmake: *** [getarch_2nd] Error 1\ngcc -O2 -DEXPRECISION -m128bit-long-double -Wall -m64 -DF_INTERFACE_GFORT -fPIC -DDYNAMIC_ARCH -DMAX_CPU_NUMBER=8 -DASMNAME=getarch_2nd -DASMFNAME=getarch_2nd_ -DNAME=getarch_2nd_ -DCNAME=getarch_2nd -DCHAR_NAME=\\\"getarch_2nd_\\\" -DCHAR_CNAME=\\\"getarch_2nd\\\" -I. -m elf_x86_64 getarch_2nd.c -o getarch_2nd\ngcc: error: elf_x86_64: No such file or directory\ngcc: error: unrecognized command line option \u2018-m\u2019\nmake: *** [getarch_2nd] Error 1\n\u200b}}}\n",
"reporter": "nega",
"cc": "",
"resolution": "invalid",
"time": "2016-03-04T21:15:07",
"component": "tools/ports",
"summary": "i3ports - gotoblas2 - build failure",
"priority": "normal",
"keywords": "",
"milestone": "",
"owner": "nega",
"type": "defect"
}
```
</p>
</details>
| defect | build failure trac gcc on ubuntu text make error gcc dexprecision long double wall df interface gfort fpic ddynamic arch dmax cpu number dasmname getarch dasmfname getarch dname getarch dcname getarch dchar name getarch dchar cname getarch i m elf getarch c o getarch gcc error elf no such file or directory gcc error unrecognized command line option ‘ m’ make error migrated from json status closed changetime ts description gcc on ubuntu n n nmake error ngcc dexprecision long double wall df interface gfort fpic ddynamic arch dmax cpu number dasmname getarch dasmfname getarch dname getarch dcname getarch dchar name getarch dchar cname getarch i m elf getarch c o getarch ngcc error elf no such file or directory ngcc error unrecognized command line option m nmake error n n reporter nega cc resolution invalid time component tools ports summary build failure priority normal keywords milestone owner nega type defect | 1 |
181,222 | 30,641,964,647 | IssuesEvent | 2023-07-24 23:06:42 | CatalystDevOrg/Catalyst | https://api.github.com/repos/CatalystDevOrg/Catalyst | closed | Catalyst Colors -- Easy toggles in settings to switch colorscheme | enhancement design frontend | - Default
- Red
- Blue
- Green
- Orange
and light and dark varients | 1.0 | Catalyst Colors -- Easy toggles in settings to switch colorscheme - - Default
- Red
- Blue
- Green
- Orange
and light and dark varients | non_defect | catalyst colors easy toggles in settings to switch colorscheme default red blue green orange and light and dark varients | 0 |
51,446 | 13,207,476,999 | IssuesEvent | 2020-08-14 23:15:11 | icecube-trac/tix4 | https://api.github.com/repos/icecube-trac/tix4 | opened | Healpix port does not build shared libraries (Trac #438) | Incomplete Migration Migrated from Trac defect other | <details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/438">https://code.icecube.wisc.edu/projects/icecube/ticket/438</a>, reported by gladstoneand owned by dladieu</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2012-10-31T17:59:20",
"_ts": "1351706360000000",
"description": "I'm trying to use the healpix port instead of the healpix-cxx project within icerec, and the port hasn't built properly. I'm working on /net/local in Madison. It's only built static libraries, so I can't use it to link to shared libraries in Icetray. ",
"reporter": "gladstone",
"cc": "gladstone@icecube.wisc.edu",
"resolution": "fixed",
"time": "2012-08-15T23:13:51",
"component": "other",
"summary": "Healpix port does not build shared libraries",
"priority": "normal",
"keywords": "ports",
"milestone": "",
"owner": "dladieu",
"type": "defect"
}
```
</p>
</details>
| 1.0 | Healpix port does not build shared libraries (Trac #438) - <details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/438">https://code.icecube.wisc.edu/projects/icecube/ticket/438</a>, reported by gladstoneand owned by dladieu</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2012-10-31T17:59:20",
"_ts": "1351706360000000",
"description": "I'm trying to use the healpix port instead of the healpix-cxx project within icerec, and the port hasn't built properly. I'm working on /net/local in Madison. It's only built static libraries, so I can't use it to link to shared libraries in Icetray. ",
"reporter": "gladstone",
"cc": "gladstone@icecube.wisc.edu",
"resolution": "fixed",
"time": "2012-08-15T23:13:51",
"component": "other",
"summary": "Healpix port does not build shared libraries",
"priority": "normal",
"keywords": "ports",
"milestone": "",
"owner": "dladieu",
"type": "defect"
}
```
</p>
</details>
| defect | healpix port does not build shared libraries trac migrated from json status closed changetime ts description i m trying to use the healpix port instead of the healpix cxx project within icerec and the port hasn t built properly i m working on net local in madison it s only built static libraries so i can t use it to link to shared libraries in icetray reporter gladstone cc gladstone icecube wisc edu resolution fixed time component other summary healpix port does not build shared libraries priority normal keywords ports milestone owner dladieu type defect | 1 |
771,089 | 27,068,573,480 | IssuesEvent | 2023-02-14 03:48:55 | sunpy/sunpy | https://api.github.com/repos/sunpy/sunpy | closed | Reproduce the "Where is STEREO?" plot in SunPy | Feature Request Package Novice Priority Low Effort Low Examples Good First Issue | ### Describe the feature
The STEREO webpage has a handy figure showing where STEREO and other spacecraft are: https://stereo-ssc.nascom.nasa.gov/where.shtml . Given the existing examples in the SunPy gallery it seems that this should be reproducible using SunPy.
### Proposed solution
The solution would use a mix of existing examples that use the ability to get locations of spacecraft and planets. | 1.0 | Reproduce the "Where is STEREO?" plot in SunPy - ### Describe the feature
The STEREO webpage has a handy figure showing where STEREO and other spacecraft are: https://stereo-ssc.nascom.nasa.gov/where.shtml . Given the existing examples in the SunPy gallery it seems that this should be reproducible using SunPy.
### Proposed solution
The solution would use a mix of existing examples that use the ability to get locations of spacecraft and planets. | non_defect | reproduce the where is stereo plot in sunpy describe the feature the stereo webpage has a handy figure showing where stereo and other spacecraft are given the existing examples in the sunpy gallery it seems that this should be reproducible using sunpy proposed solution the solution would use a mix of existing examples that use the ability to get locations of spacecraft and planets | 0 |
5,553 | 2,610,189,855 | IssuesEvent | 2015-02-26 19:00:09 | chrsmith/quchuseban | https://api.github.com/repos/chrsmith/quchuseban | opened | 揭秘如何治疗遗传色斑 | auto-migrated Priority-Medium Type-Defect | ```
《摘要》
生命即使没有轰轰烈烈也无后人之仰慕,却无不让人感到一��
�生存的神圣与尊严。我们乐为平凡之辈而不落于平庸之流,�
��们不甘受辱,我们不会沉沦,我们平凡一生,才知道平凡的
情感、事业、人生境界里,原来有那么多姿多彩,灿烂绚丽��
�如何治疗遗传色斑,
《客户案例》
莫小姐 24岁<br>
长时间面对电脑的坏处我一直都知道,像眼睛疲劳、干��
�,身体处于亚健康之类的,工作一年来我基本上10个小时对��
�电脑,好在我什么不舒服的症状都没出现,正当我庆幸不已�
��同时,我发现我额头、鼻梁两边和上眼睑处长斑了,数量很
多,就像雨后春笋一样,一点一点在短时间内全部冒出来了��
�看着脸上那如同苍蝇屎大小的斑点,颜色为黄色,略比肤色�
��点,远看近看都明显。哪个女孩子不爱美?为此特别烦恼。<b
r>
在网上搜索祛斑产品时发现了「黛芙薇尔精华液」,了��
�了一番之后觉得还不错,而且网上论坛里面大家发帖子都说�
��黛芙薇尔精华液」好,没发现有说副作用的,然后我还上「
黛芙薇尔精华液」的网站很认真的看了一下产品说明,说明��
�字很专业详细,对治疗机理、产品优势描述得挺不错的,我�
��在网上订购了一个周期的。<br>
大概了十几天的样子,我鼻梁两边的斑块颜色就变淡了��
�面积也慢慢在缩小,本来粗糙、多油的皮肤状况也得到了改�
��。一个月过去以后,对着镜子看自己脸上的斑,鼻梁上的大
斑块已经缩小了一大半,颜色由以前的深褐色变成了浅褐色��
�额头和眼角处的斑也变淡变浅了。「黛芙薇尔精华液」祛斑�
��家在我订购产品的时候就说过,产品在祛斑的同时还能调经
,让经期变得正常,还能减轻痛经的痛苦。我使用第二个周��
�产品的时候,这方面的效果显示出来了,我以前痛经非常厉�
��,自从使用这个套装以来,不但月经量变得正常了,而且痛
经也没那么严重了,在祛斑的同时还能调经,「黛芙薇尔精��
�液」真的很不错。
很快我就使用完第二个周期的产品,鼻梁两边的斑基本上看��
�到了,颜色跟肤色很接近,不仔细看根本看不出来了,我可�
��不用粉底盖住那一块的斑。额头上的斑也在慢慢消退,特别
是眼睑处的斑,淡化的比较明显。我接着使用第三个周期的��
�品,这个周期见效很快,刚半个月多一点,眼睑处的斑就消�
��了,褐色的斑融进皮肤里面,一点都看不出来了,额头上的
也差不多没有了。使用完三个周期的「黛芙薇尔精华液」之��
�,我从斑女人变成了一个水嫩白净的女人,而且我的月经也�
��得很有规律,内分泌正常,心情也变得非常开朗,哪位想要
祛斑的朋友就学我的祛斑方法,相信通过使用「黛芙薇尔精��
�液」,大家都能祛斑成功。
阅读了如何治疗遗传色斑,再看脸上容易长斑的原因:
《色斑形成原因》
内部因素
一、压力
当人受到压力时,就会分泌肾上腺素,为对付压力而做��
�备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏�
��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃
。
二、荷尔蒙分泌失调
避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞��
�分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在�
��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕
中因女性荷尔蒙雌激素的增加,从怀孕4—5个月开始会容易出
现斑,这时候出现的斑点在产后大部分会消失。可是,新陈��
�谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等�
��因,都会使斑加深。有时新长出的斑,产后也不会消失,所
以需要更加注意。
三、新陈代谢缓慢
肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑��
�因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态�
��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是
内分泌失调导致过敏体质而形成的。另外,身体状态不正常��
�时候,紫外线的照射也会加速斑的形成。
四、错误的使用化妆品
使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在��
�疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵�
��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的
问题。
外部因素
一、紫外线
照射紫外线的时候,人体为了保护皮肤,会在基底层产��
�很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更�
��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化,
还会引起黑斑、雀斑等色素沉着的皮肤疾患。
二、不良的清洁习惯
因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。��
�皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦�
��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的
问题。
三、遗传基因
父母中有长斑的,则本人长斑的概率就很高,这种情况��
�一定程度上就可判定是遗传基因的作用。所以家里特别是长�
��有长斑的人,要注意避免引发长斑的重要因素之一——紫外
线照射,这是预防斑必须注意的。
《有疑问帮你解决》
1,黛芙薇尔精华液真的有效果吗?真的可以把脸上的黄褐��
�去掉吗?
答:黛芙薇尔精华液DNA精华能够有效的修复周围难以触��
�的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必�
��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑
,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时��
�,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的�
��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显
而易见。自产品上市以来,老顾客纷纷介绍新顾客,71%的新��
�客都是通过老顾客介绍而来,口碑由此而来!
2,服用黛芙薇尔美白,会伤身体吗?有副作用吗?
答:黛芙薇尔精华液应用了精纯复合配方和领先的分类��
�斑科技,并将“DNA美肤系统”疗法应用到了该产品中,能彻�
��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有
效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾��
�地的专家通力协作,超过10年的研究以全新的DNA肌肤修复技��
�,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽�
��迹,令每一位爱美的女性都能享受到科技创新所带来的自然
之美。
专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数��
�百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖!
3,去除黄褐斑之后,会反弹吗?
答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔��
�白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家�
��据斑的形成原因精心研制而成用事实说话,让消费者打分。
树立权威品牌!我们的很多新客户都是老客户介绍而来,请问�
��如果效果不好,会有客户转介绍吗?
4,你们的价格有点贵,能不能便宜一点?
答:如果您使用西药最少需要2000元,煎服的药最少需要3
000元,做手术最少是5000元,而这些毫无疑问,不会对彻底去�
��你的斑点有任何帮助!一分价钱,一份价值,我们现在做的��
�是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的�
��褐斑彻底去除,你还会觉得贵吗?你还会再去花那么多冤枉��
�,不但斑没去掉,还把自己的皮肤弄的越来越糟吗
5,我适合用黛芙薇尔精华液吗?
答:黛芙薇尔适用人群:
1、生理紊乱引起的黄褐斑人群
2、生育引起的妊娠斑人群
3、年纪增长引起的老年斑人群
4、化妆品色素沉积、辐射斑人群
5、长期日照引起的日晒斑人群
6、肌肤暗淡急需美白的人群
《祛斑小方法》
如何治疗遗传色斑,同时为您分享祛斑小方法
去斑方法,牛奶柠檬汁:每周2次,在晚上用牛奶加柠檬汁混合
液搽脸,可以增白皮肤,减淡斑点。
```
-----
Original issue reported on code.google.com by `additive...@gmail.com` on 1 Jul 2014 at 4:50 | 1.0 | 揭秘如何治疗遗传色斑 - ```
《摘要》
生命即使没有轰轰烈烈也无后人之仰慕,却无不让人感到一��
�生存的神圣与尊严。我们乐为平凡之辈而不落于平庸之流,�
��们不甘受辱,我们不会沉沦,我们平凡一生,才知道平凡的
情感、事业、人生境界里,原来有那么多姿多彩,灿烂绚丽��
�如何治疗遗传色斑,
《客户案例》
莫小姐 24岁<br>
长时间面对电脑的坏处我一直都知道,像眼睛疲劳、干��
�,身体处于亚健康之类的,工作一年来我基本上10个小时对��
�电脑,好在我什么不舒服的症状都没出现,正当我庆幸不已�
��同时,我发现我额头、鼻梁两边和上眼睑处长斑了,数量很
多,就像雨后春笋一样,一点一点在短时间内全部冒出来了��
�看着脸上那如同苍蝇屎大小的斑点,颜色为黄色,略比肤色�
��点,远看近看都明显。哪个女孩子不爱美?为此特别烦恼。<b
r>
在网上搜索祛斑产品时发现了「黛芙薇尔精华液」,了��
�了一番之后觉得还不错,而且网上论坛里面大家发帖子都说�
��黛芙薇尔精华液」好,没发现有说副作用的,然后我还上「
黛芙薇尔精华液」的网站很认真的看了一下产品说明,说明��
�字很专业详细,对治疗机理、产品优势描述得挺不错的,我�
��在网上订购了一个周期的。<br>
大概了十几天的样子,我鼻梁两边的斑块颜色就变淡了��
�面积也慢慢在缩小,本来粗糙、多油的皮肤状况也得到了改�
��。一个月过去以后,对着镜子看自己脸上的斑,鼻梁上的大
斑块已经缩小了一大半,颜色由以前的深褐色变成了浅褐色��
�额头和眼角处的斑也变淡变浅了。「黛芙薇尔精华液」祛斑�
��家在我订购产品的时候就说过,产品在祛斑的同时还能调经
,让经期变得正常,还能减轻痛经的痛苦。我使用第二个周��
�产品的时候,这方面的效果显示出来了,我以前痛经非常厉�
��,自从使用这个套装以来,不但月经量变得正常了,而且痛
经也没那么严重了,在祛斑的同时还能调经,「黛芙薇尔精��
�液」真的很不错。
很快我就使用完第二个周期的产品,鼻梁两边的斑基本上看��
�到了,颜色跟肤色很接近,不仔细看根本看不出来了,我可�
��不用粉底盖住那一块的斑。额头上的斑也在慢慢消退,特别
是眼睑处的斑,淡化的比较明显。我接着使用第三个周期的��
�品,这个周期见效很快,刚半个月多一点,眼睑处的斑就消�
��了,褐色的斑融进皮肤里面,一点都看不出来了,额头上的
也差不多没有了。使用完三个周期的「黛芙薇尔精华液」之��
�,我从斑女人变成了一个水嫩白净的女人,而且我的月经也�
��得很有规律,内分泌正常,心情也变得非常开朗,哪位想要
祛斑的朋友就学我的祛斑方法,相信通过使用「黛芙薇尔精��
�液」,大家都能祛斑成功。
阅读了如何治疗遗传色斑,再看脸上容易长斑的原因:
《色斑形成原因》
内部因素
一、压力
当人受到压力时,就会分泌肾上腺素,为对付压力而做��
�备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏�
��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃
。
二、荷尔蒙分泌失调
避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞��
�分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在�
��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕
中因女性荷尔蒙雌激素的增加,从怀孕4—5个月开始会容易出
现斑,这时候出现的斑点在产后大部分会消失。可是,新陈��
�谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等�
��因,都会使斑加深。有时新长出的斑,产后也不会消失,所
以需要更加注意。
三、新陈代谢缓慢
肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑��
�因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态�
��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是
内分泌失调导致过敏体质而形成的。另外,身体状态不正常��
�时候,紫外线的照射也会加速斑的形成。
四、错误的使用化妆品
使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在��
�疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵�
��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的
问题。
外部因素
一、紫外线
照射紫外线的时候,人体为了保护皮肤,会在基底层产��
�很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更�
��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化,
还会引起黑斑、雀斑等色素沉着的皮肤疾患。
二、不良的清洁习惯
因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。��
�皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦�
��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的
问题。
三、遗传基因
父母中有长斑的,则本人长斑的概率就很高,这种情况��
�一定程度上就可判定是遗传基因的作用。所以家里特别是长�
��有长斑的人,要注意避免引发长斑的重要因素之一——紫外
线照射,这是预防斑必须注意的。
《有疑问帮你解决》
1,黛芙薇尔精华液真的有效果吗?真的可以把脸上的黄褐��
�去掉吗?
答:黛芙薇尔精华液DNA精华能够有效的修复周围难以触��
�的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必�
��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑
,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时��
�,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的�
��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显
而易见。自产品上市以来,老顾客纷纷介绍新顾客,71%的新��
�客都是通过老顾客介绍而来,口碑由此而来!
2,服用黛芙薇尔美白,会伤身体吗?有副作用吗?
答:黛芙薇尔精华液应用了精纯复合配方和领先的分类��
�斑科技,并将“DNA美肤系统”疗法应用到了该产品中,能彻�
��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有
效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾��
�地的专家通力协作,超过10年的研究以全新的DNA肌肤修复技��
�,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽�
��迹,令每一位爱美的女性都能享受到科技创新所带来的自然
之美。
专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数��
�百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖!
3,去除黄褐斑之后,会反弹吗?
答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔��
�白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家�
��据斑的形成原因精心研制而成用事实说话,让消费者打分。
树立权威品牌!我们的很多新客户都是老客户介绍而来,请问�
��如果效果不好,会有客户转介绍吗?
4,你们的价格有点贵,能不能便宜一点?
答:如果您使用西药最少需要2000元,煎服的药最少需要3
000元,做手术最少是5000元,而这些毫无疑问,不会对彻底去�
��你的斑点有任何帮助!一分价钱,一份价值,我们现在做的��
�是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的�
��褐斑彻底去除,你还会觉得贵吗?你还会再去花那么多冤枉��
�,不但斑没去掉,还把自己的皮肤弄的越来越糟吗
5,我适合用黛芙薇尔精华液吗?
答:黛芙薇尔适用人群:
1、生理紊乱引起的黄褐斑人群
2、生育引起的妊娠斑人群
3、年纪增长引起的老年斑人群
4、化妆品色素沉积、辐射斑人群
5、长期日照引起的日晒斑人群
6、肌肤暗淡急需美白的人群
《祛斑小方法》
如何治疗遗传色斑,同时为您分享祛斑小方法
去斑方法,牛奶柠檬汁:每周2次,在晚上用牛奶加柠檬汁混合
液搽脸,可以增白皮肤,减淡斑点。
```
-----
Original issue reported on code.google.com by `additive...@gmail.com` on 1 Jul 2014 at 4:50 | defect | 揭秘如何治疗遗传色斑 《摘要》 生命即使没有轰轰烈烈也无后人之仰慕,却无不让人感到一�� �生存的神圣与尊严。我们乐为平凡之辈而不落于平庸之流,� ��们不甘受辱,我们不会沉沦,我们平凡一生,才知道平凡的 情感、事业、人生境界里,原来有那么多姿多彩,灿烂绚丽�� �如何治疗遗传色斑, 《客户案例》 莫小姐 长时间面对电脑的坏处我一直都知道,像眼睛疲劳、干�� �,身体处于亚健康之类的, �� �电脑,好在我什么不舒服的症状都没出现,正当我庆幸不已� ��同时,我发现我额头、鼻梁两边和上眼睑处长斑了,数量很 多,就像雨后春笋一样,一点一点在短时间内全部冒出来了�� �看着脸上那如同苍蝇屎大小的斑点,颜色为黄色,略比肤色� ��点,远看近看都明显。哪个女孩子不爱美 为此特别烦恼。 b r 在网上搜索祛斑产品时发现了「黛芙薇尔精华液」,了�� �了一番之后觉得还不错,而且网上论坛里面大家发帖子都说� ��黛芙薇尔精华液」好,没发现有说副作用的,然后我还上「 黛芙薇尔精华液」的网站很认真的看了一下产品说明,说明�� �字很专业详细,对治疗机理、产品优势描述得挺不错的,我� ��在网上订购了一个周期的。 大概了十几天的样子,我鼻梁两边的斑块颜色就变淡了�� �面积也慢慢在缩小,本来粗糙、多油的皮肤状况也得到了改� ��。一个月过去以后,对着镜子看自己脸上的斑,鼻梁上的大 斑块已经缩小了一大半,颜色由以前的深褐色变成了浅褐色�� �额头和眼角处的斑也变淡变浅了。「黛芙薇尔精华液」祛斑� ��家在我订购产品的时候就说过,产品在祛斑的同时还能调经 ,让经期变得正常,还能减轻痛经的痛苦。我使用第二个周�� �产品的时候,这方面的效果显示出来了,我以前痛经非常厉� ��,自从使用这个套装以来,不但月经量变得正常了,而且痛 经也没那么严重了,在祛斑的同时还能调经,「黛芙薇尔精�� �液」真的很不错。 很快我就使用完第二个周期的产品,鼻梁两边的斑基本上看�� �到了,颜色跟肤色很接近,不仔细看根本看不出来了,我可� ��不用粉底盖住那一块的斑。额头上的斑也在慢慢消退,特别 是眼睑处的斑,淡化的比较明显。我接着使用第三个周期的�� �品,这个周期见效很快,刚半个月多一点,眼睑处的斑就消� ��了,褐色的斑融进皮肤里面,一点都看不出来了,额头上的 也差不多没有了。使用完三个周期的「黛芙薇尔精华液」之�� �,我从斑女人变成了一个水嫩白净的女人,而且我的月经也� ��得很有规律,内分泌正常,心情也变得非常开朗,哪位想要 祛斑的朋友就学我的祛斑方法,相信通过使用「黛芙薇尔精�� �液」,大家都能祛斑成功。 阅读了如何治疗遗传色斑,再看脸上容易长斑的原因: 《色斑形成原因》 内部因素 一、压力 当人受到压力时,就会分泌肾上腺素,为对付压力而做�� �备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏� ��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃 。 二、荷尔蒙分泌失调 避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞�� �分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在� ��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕 中因女性荷尔蒙雌激素的增加, — 现斑,这时候出现的斑点在产后大部分会消失。可是,新陈�� �谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等� ��因,都会使斑加深。有时新长出的斑,产后也不会消失,所 以需要更加注意。 三、新陈代谢缓慢 肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑�� �因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态� ��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是 内分泌失调导致过敏体质而形成的。另外,身体状态不正常�� �时候,紫外线的照射也会加速斑的形成。 四、错误的使用化妆品 使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在�� �疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵� ��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的 问题。 外部因素 一、紫外线 照射紫外线的时候,人体为了保护皮肤,会在基底层产�� �很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更� ��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化, 还会引起黑斑、雀斑等色素沉着的皮肤疾患。 二、不良的清洁习惯 因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。�� �皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦� ��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的 问题。 三、遗传基因 父母中有长斑的,则本人长斑的概率就很高,这种情况�� �一定程度上就可判定是遗传基因的作用。所以家里特别是长� ��有长斑的人,要注意避免引发长斑的重要因素之一——紫外 线照射,这是预防斑必须注意的。 《有疑问帮你解决》 黛芙薇尔精华液真的有效果吗 真的可以把脸上的黄褐�� �去掉吗 答:黛芙薇尔精华液dna精华能够有效的修复周围难以触�� �的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必� ��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑 ,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时�� �,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的� ��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显 而易见。自产品上市以来,老顾客纷纷介绍新顾客, 的新�� �客都是通过老顾客介绍而来,口碑由此而来 ,服用黛芙薇尔美白,会伤身体吗 有副作用吗 答:黛芙薇尔精华液应用了精纯复合配方和领先的分类�� �斑科技,并将“dna美肤系统”疗法应用到了该产品中,能彻� ��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有 效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾�� �地的专家通力协作, �� �,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽� ��迹,令每一位爱美的女性都能享受到科技创新所带来的自然 之美。 专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数�� �百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖 ,去除黄褐斑之后,会反弹吗 答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔�� �白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家� ��据斑的形成原因精心研制而成用事实说话,让消费者打分。 树立权威品牌 我们的很多新客户都是老客户介绍而来,请问� ��如果效果不好,会有客户转介绍吗 ,你们的价格有点贵,能不能便宜一点 答: , , ,而这些毫无疑问,不会对彻底去� ��你的斑点有任何帮助 一分价钱,一份价值,我们现在做的�� �是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的� ��褐斑彻底去除,你还会觉得贵吗 你还会再去花那么多冤枉�� �,不但斑没去掉,还把自己的皮肤弄的越来越糟吗 ,我适合用黛芙薇尔精华液吗 答:黛芙薇尔适用人群: 、生理紊乱引起的黄褐斑人群 、生育引起的妊娠斑人群 、年纪增长引起的老年斑人群 、化妆品色素沉积、辐射斑人群 、长期日照引起的日晒斑人群 、肌肤暗淡急需美白的人群 《祛斑小方法》 如何治疗遗传色斑,同时为您分享祛斑小方法 去斑方法 牛奶柠檬汁: ,在晚上用牛奶加柠檬汁混合 液搽脸,可以增白皮肤,减淡斑点。 original issue reported on code google com by additive gmail com on jul at | 1 |
458,606 | 13,178,501,269 | IssuesEvent | 2020-08-12 09:15:21 | canonical-web-and-design/certification.ubuntu.com | https://api.github.com/repos/canonical-web-and-design/certification.ubuntu.com | closed | "View all component devices" on hardware pages does not show results | Priority: High | The link uses &query and not &canonical_id. When canonical_id is used, it works as expected.
https://certification.ubuntu.com/components?canonical_id=201811-26638 | 1.0 | "View all component devices" on hardware pages does not show results - The link uses &query and not &canonical_id. When canonical_id is used, it works as expected.
https://certification.ubuntu.com/components?canonical_id=201811-26638 | non_defect | view all component devices on hardware pages does not show results the link uses query and not canonical id when canonical id is used it works as expected | 0 |
72,973 | 24,391,252,248 | IssuesEvent | 2022-10-04 15:23:17 | SUI-Components/sui-components | https://api.github.com/repos/SUI-Components/sui-components | closed | ✨ Change cursor type of the select to pointer | hacktoberfest defect | ### Is your iteration request related to a problem?
Related Jira task: https://jira.scmspain.com/browse/SCMI-72434
### Describe the solution you'd like
Change cursor type to pointer
### Screenshots
_No response_
### Additional context**
_No response_
### Additional info
_No response_ | 1.0 | ✨ Change cursor type of the select to pointer - ### Is your iteration request related to a problem?
Related Jira task: https://jira.scmspain.com/browse/SCMI-72434
### Describe the solution you'd like
Change cursor type to pointer
### Screenshots
_No response_
### Additional context**
_No response_
### Additional info
_No response_ | defect | ✨ change cursor type of the select to pointer is your iteration request related to a problem related jira task describe the solution you d like change cursor type to pointer screenshots no response additional context no response additional info no response | 1 |
362,094 | 10,722,900,842 | IssuesEvent | 2019-10-27 15:13:24 | IntellectualSites/PlotSquared | https://api.github.com/repos/IntellectualSites/PlotSquared | closed | Unordered Flags | 1.13+ 1.14.x Spigot [!] Bug [-] Low Priority | # Bug report template
<!--- In order to create a valid issue report you have to follow this template. -->
<!--- Incomplete reports might be marked as invalid. -->
<!-- Feature requests and enhancements may be suggested at https://github.com/IntellectualSites/PlotSquaredSuggestions. -->
**[REQUIRED] PlotSquared Version Number:** 4.324<!--- Enter /plot version in game or in your console and copy the output here -->
**[REQUIRED] Spigot/Paper Version Number:** Paper 153
<!--- Run /version ingame or on console -->
**[REQUIRED] Minecraft Version Number:** 1.14.4
**Links to worlds.yml file and settings.yml file:** //
<!--- Copy and paste the information to the service of your choosing and provide the link here. -->
**[REQUIRED] Description of the problem:**
Some flags are not assigned to a sub category
**Any relevant console output or screenshots:**

**Plugins being used on the server:** //
<!--- Optional but recommended --->
**How to replicate:**
Run `/plot flag list` and look at the top of the list
The `keep` flag is actually not assigned to any category, I'm not sure what i actually does, since it accepts boolean, ints and other values. https://github.com/IntellectualSites/PlotSquared/blob/6d0849eb6635c5487571abe62e45768fda7d4f1f/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/flag/Flags.java#L98
**Checklist**:
<!-- Make sure you have completed the following steps (put an "X" between of brackets): -->
- [X] I included all information required in the sections above
- [X] I made sure there are no duplicates of this report [(Use Search)](https://github.com/IntellectualSites/PlotSquared/issues?utf8=%E2%9C%93&q=is%3Aissue)
- [X] I made sure I am using an up-to-date version of PlotSquared
- [X] I made sure the bug/error is not caused by any other plugin
| 1.0 | Unordered Flags - # Bug report template
<!--- In order to create a valid issue report you have to follow this template. -->
<!--- Incomplete reports might be marked as invalid. -->
<!-- Feature requests and enhancements may be suggested at https://github.com/IntellectualSites/PlotSquaredSuggestions. -->
**[REQUIRED] PlotSquared Version Number:** 4.324<!--- Enter /plot version in game or in your console and copy the output here -->
**[REQUIRED] Spigot/Paper Version Number:** Paper 153
<!--- Run /version ingame or on console -->
**[REQUIRED] Minecraft Version Number:** 1.14.4
**Links to worlds.yml file and settings.yml file:** //
<!--- Copy and paste the information to the service of your choosing and provide the link here. -->
**[REQUIRED] Description of the problem:**
Some flags are not assigned to a sub category
**Any relevant console output or screenshots:**

**Plugins being used on the server:** //
<!--- Optional but recommended --->
**How to replicate:**
Run `/plot flag list` and look at the top of the list
The `keep` flag is actually not assigned to any category, I'm not sure what i actually does, since it accepts boolean, ints and other values. https://github.com/IntellectualSites/PlotSquared/blob/6d0849eb6635c5487571abe62e45768fda7d4f1f/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/flag/Flags.java#L98
**Checklist**:
<!-- Make sure you have completed the following steps (put an "X" between of brackets): -->
- [X] I included all information required in the sections above
- [X] I made sure there are no duplicates of this report [(Use Search)](https://github.com/IntellectualSites/PlotSquared/issues?utf8=%E2%9C%93&q=is%3Aissue)
- [X] I made sure I am using an up-to-date version of PlotSquared
- [X] I made sure the bug/error is not caused by any other plugin
| non_defect | unordered flags bug report template plotsquared version number spigot paper version number paper minecraft version number links to worlds yml file and settings yml file description of the problem some flags are not assigned to a sub category any relevant console output or screenshots plugins being used on the server how to replicate run plot flag list and look at the top of the list the keep flag is actually not assigned to any category i m not sure what i actually does since it accepts boolean ints and other values checklist i included all information required in the sections above i made sure there are no duplicates of this report i made sure i am using an up to date version of plotsquared i made sure the bug error is not caused by any other plugin | 0 |
329,798 | 24,235,956,198 | IssuesEvent | 2022-09-26 23:18:55 | arkinmodi/project-sayyara | https://api.github.com/repos/arkinmodi/project-sayyara | closed | Technology and Tools | documentation | **Report:** Development Plan
**Included Sections**
- Technology
- Coding Standard | 1.0 | Technology and Tools - **Report:** Development Plan
**Included Sections**
- Technology
- Coding Standard | non_defect | technology and tools report development plan included sections technology coding standard | 0 |
62,089 | 12,197,745,735 | IssuesEvent | 2020-04-29 21:21:16 | eclipse/codewind | https://api.github.com/repos/eclipse/codewind | opened | Connection refused by remote appsody project | area/vscode-ide kind/bug | From https://github.com/eclipse/codewind/issues/2786#issuecomment-621466804
```
> Executing task: kubectl port-forward -n eclipse-codewind cw-rmapnode01-1a8462e0-8a4d-11ea-a583-5fd774698c-rpltx 5000:9229 <
Forwarding from 127.0.0.1:5000 -> 9229
Forwarding from [::1]:5000 -> 9229
Handling connection for 5000
E0429 16:57:33.017238 52132 portforward.go:400] an error occurred forwarding 5000 -> 9229: error forwarding port 9229 to pod d7df49cc5c65e90510f09f45dba78d0be87caf1e8c222cbe0a92f48c418a6367, uid : exit status 1: 2020/04/29 20:57:33 socat[107257] E connect(5, AF=2 127.0.0.1:9229, 16): Connection refused
```
I am not sure what may be causing it to refuse the connection if 9229 is the correct debug port, which is appears to be. Waiting to see if Eclipse has the same problem | 1.0 | Connection refused by remote appsody project - From https://github.com/eclipse/codewind/issues/2786#issuecomment-621466804
```
> Executing task: kubectl port-forward -n eclipse-codewind cw-rmapnode01-1a8462e0-8a4d-11ea-a583-5fd774698c-rpltx 5000:9229 <
Forwarding from 127.0.0.1:5000 -> 9229
Forwarding from [::1]:5000 -> 9229
Handling connection for 5000
E0429 16:57:33.017238 52132 portforward.go:400] an error occurred forwarding 5000 -> 9229: error forwarding port 9229 to pod d7df49cc5c65e90510f09f45dba78d0be87caf1e8c222cbe0a92f48c418a6367, uid : exit status 1: 2020/04/29 20:57:33 socat[107257] E connect(5, AF=2 127.0.0.1:9229, 16): Connection refused
```
I am not sure what may be causing it to refuse the connection if 9229 is the correct debug port, which is appears to be. Waiting to see if Eclipse has the same problem | non_defect | connection refused by remote appsody project from executing task kubectl port forward n eclipse codewind cw rpltx forwarding from forwarding from handling connection for portforward go an error occurred forwarding error forwarding port to pod uid exit status socat e connect af connection refused i am not sure what may be causing it to refuse the connection if is the correct debug port which is appears to be waiting to see if eclipse has the same problem | 0 |
103,292 | 12,887,572,550 | IssuesEvent | 2020-07-13 11:29:28 | khochaynhalam-dev/khochaynhalam-dev.github.io | https://api.github.com/repos/khochaynhalam-dev/khochaynhalam-dev.github.io | closed | Design - [khochaynhalam] - Design refactor to automic | design | Dear @Vi1309 ,
Please help me design page [KCNL](https://khochaynhalam.com/?fbclid=IwAR3TPnlPKro5BQX5BfA1vow9DQ2ScxsC2TLTJTeQkftxXLOJOVZ_nAnZs1E) in [figma](https://www.figma.com/file/BMgH1CSWMBf6WeaG3Y4eXN/khochaynhalam.com?node-id=728%3A167).
#### Note: You not design logo for page in figma. But when code, remember to do it.
#### Example
<a href="https://imgur.com/hyjkkFz"><img src="https://i.imgur.com/hyjkkFz.png" title="source: imgur.com" /></a>
Thanks,
Huong | 1.0 | Design - [khochaynhalam] - Design refactor to automic - Dear @Vi1309 ,
Please help me design page [KCNL](https://khochaynhalam.com/?fbclid=IwAR3TPnlPKro5BQX5BfA1vow9DQ2ScxsC2TLTJTeQkftxXLOJOVZ_nAnZs1E) in [figma](https://www.figma.com/file/BMgH1CSWMBf6WeaG3Y4eXN/khochaynhalam.com?node-id=728%3A167).
#### Note: You not design logo for page in figma. But when code, remember to do it.
#### Example
<a href="https://imgur.com/hyjkkFz"><img src="https://i.imgur.com/hyjkkFz.png" title="source: imgur.com" /></a>
Thanks,
Huong | non_defect | design design refactor to automic dear please help me design page in note you not design logo for page in figma but when code remember to do it example thanks huong | 0 |
664,347 | 22,266,695,637 | IssuesEvent | 2022-06-10 08:11:05 | TencentBlueKing/bk-iam-saas | https://api.github.com/repos/TencentBlueKing/bk-iam-saas | opened | [API] 超级管理类 API 需求 | Type: Enhancement Priority: High Size: L backlog | 安全需求:
1. 冻结解冻超级 API
- API: 冻结/解冻某个人+一批系统的权限
- API: 查询一个人各个系统的冻结状态
2. 管理员列表超级 API
- API: 超级管理员成员列表 / 系统管理员列表 / 分级管理列表
- API: 判断某个人 是否在三类管理员列表中
- API: 把某个人从管理员列表中剔除
3. /api/v1/policy/query 支持 安全中心的应用作为超级 app , 使用其他系统的权限数据: 系统-用户-操作, 查是否有策略 | 1.0 | [API] 超级管理类 API 需求 - 安全需求:
1. 冻结解冻超级 API
- API: 冻结/解冻某个人+一批系统的权限
- API: 查询一个人各个系统的冻结状态
2. 管理员列表超级 API
- API: 超级管理员成员列表 / 系统管理员列表 / 分级管理列表
- API: 判断某个人 是否在三类管理员列表中
- API: 把某个人从管理员列表中剔除
3. /api/v1/policy/query 支持 安全中心的应用作为超级 app , 使用其他系统的权限数据: 系统-用户-操作, 查是否有策略 | non_defect | 超级管理类 api 需求 安全需求 冻结解冻超级 api api 冻结 解冻某个人 一批系统的权限 api 查询一个人各个系统的冻结状态 管理员列表超级 api api 超级管理员成员列表 系统管理员列表 分级管理列表 api 判断某个人 是否在三类管理员列表中 api 把某个人从管理员列表中剔除 api policy query 支持 安全中心的应用作为超级 app 使用其他系统的权限数据 系统 用户 操作 查是否有策略 | 0 |
16,168 | 2,874,982,377 | IssuesEvent | 2015-06-09 03:39:27 | RuleWorld/bionetgen | https://api.github.com/repos/RuleWorld/bionetgen | closed | Require names of all BNG objects (other than bonds and states) to begin with a letter or underscore | auto-migrated Priority-Medium Type-Defect | ```
Currently, names of all BNG objects (other than parameters) can be any string
comprised of alphanumeric characters and the underscore character (Note 6 of
Faeder et al. 2009). This means that, e.g., molecule names can be pure numbers.
The exception is parameter names, which require at least one non-numeric
character (Note 3 of Faeder et al. 2009), but can still start with a number.
Recently, we decided to require names of all BNG objects to be begin with a
letter. This includes tags as well as labels preceding entries in model blocks.
Exceptions are bonds and states, which are often labeled as pure numbers (e.g.,
0, 1, etc.).
```
Original issue reported on code.google.com by `lh64@cornell.edu` on 19 Apr 2013 at 2:14 | 1.0 | Require names of all BNG objects (other than bonds and states) to begin with a letter or underscore - ```
Currently, names of all BNG objects (other than parameters) can be any string
comprised of alphanumeric characters and the underscore character (Note 6 of
Faeder et al. 2009). This means that, e.g., molecule names can be pure numbers.
The exception is parameter names, which require at least one non-numeric
character (Note 3 of Faeder et al. 2009), but can still start with a number.
Recently, we decided to require names of all BNG objects to be begin with a
letter. This includes tags as well as labels preceding entries in model blocks.
Exceptions are bonds and states, which are often labeled as pure numbers (e.g.,
0, 1, etc.).
```
Original issue reported on code.google.com by `lh64@cornell.edu` on 19 Apr 2013 at 2:14 | defect | require names of all bng objects other than bonds and states to begin with a letter or underscore currently names of all bng objects other than parameters can be any string comprised of alphanumeric characters and the underscore character note of faeder et al this means that e g molecule names can be pure numbers the exception is parameter names which require at least one non numeric character note of faeder et al but can still start with a number recently we decided to require names of all bng objects to be begin with a letter this includes tags as well as labels preceding entries in model blocks exceptions are bonds and states which are often labeled as pure numbers e g etc original issue reported on code google com by cornell edu on apr at | 1 |
112,207 | 11,761,623,233 | IssuesEvent | 2020-03-13 22:19:43 | Azure/OpenShift | https://api.github.com/repos/Azure/OpenShift | opened | Video: Migration Options for OpenShift 3.11 to ARO 4.x | documentation | - options and methods to migrate your openshift 3.11 projects to aro 4.x
- tools out there, strategies | 1.0 | Video: Migration Options for OpenShift 3.11 to ARO 4.x - - options and methods to migrate your openshift 3.11 projects to aro 4.x
- tools out there, strategies | non_defect | video migration options for openshift to aro x options and methods to migrate your openshift projects to aro x tools out there strategies | 0 |
5,747 | 2,610,214,659 | IssuesEvent | 2015-02-26 19:08:30 | chrsmith/somefinders | https://api.github.com/repos/chrsmith/somefinders | opened | шопен нежность ноты | auto-migrated Priority-Medium Type-Defect | ```
'''Арвид Савин'''
Привет всем не подскажите где можно найти
.шопен нежность ноты. как то выкладывали уже
'''Вавила Казаков'''
Вот хороший сайт где можно скачать
http://bit.ly/1gfasxc
'''Болеслав Соловьёв'''
Просит ввести номер мобилы!Не опасно ли это?
'''Владислав Маслов'''
Не это не влияет на баланс
'''Андриан Анисимов'''
Не это не влияет на баланс
Информация о файле: шопен нежность ноты
Загружен: В этом месяце
Скачан раз: 501
Рейтинг: 108
Средняя скорость скачивания: 914
Похожих файлов: 30
```
-----
Original issue reported on code.google.com by `kondense...@gmail.com` on 16 Dec 2013 at 2:30 | 1.0 | шопен нежность ноты - ```
'''Арвид Савин'''
Привет всем не подскажите где можно найти
.шопен нежность ноты. как то выкладывали уже
'''Вавила Казаков'''
Вот хороший сайт где можно скачать
http://bit.ly/1gfasxc
'''Болеслав Соловьёв'''
Просит ввести номер мобилы!Не опасно ли это?
'''Владислав Маслов'''
Не это не влияет на баланс
'''Андриан Анисимов'''
Не это не влияет на баланс
Информация о файле: шопен нежность ноты
Загружен: В этом месяце
Скачан раз: 501
Рейтинг: 108
Средняя скорость скачивания: 914
Похожих файлов: 30
```
-----
Original issue reported on code.google.com by `kondense...@gmail.com` on 16 Dec 2013 at 2:30 | defect | шопен нежность ноты арвид савин привет всем не подскажите где можно найти шопен нежность ноты как то выкладывали уже вавила казаков вот хороший сайт где можно скачать болеслав соловьёв просит ввести номер мобилы не опасно ли это владислав маслов не это не влияет на баланс андриан анисимов не это не влияет на баланс информация о файле шопен нежность ноты загружен в этом месяце скачан раз рейтинг средняя скорость скачивания похожих файлов original issue reported on code google com by kondense gmail com on dec at | 1 |
25,374 | 4,306,653,945 | IssuesEvent | 2016-07-21 04:47:47 | kraigs-android/kraigsandroid | https://api.github.com/repos/kraigs-android/kraigsandroid | closed | Snooze doesn't work - just resets to next alarm | auto-migrated Priority-Medium Type-Defect | ```
What steps will reproduce the problem?
1.set alarm
2.wait for alarm to go off
3.press snooze
What is the expected output? What do you see instead?
Expected alarm to snooze 5 mins. Instead it reset to the next alarm (24hrs)
What version of the product are you using? On what operating system?
Version 1.7 on Samsung Galaxy S3
Please provide any additional information below.
```
Original issue reported on code.google.com by `sallyham...@googlemail.com` on 20 May 2013 at 7:42 | 1.0 | Snooze doesn't work - just resets to next alarm - ```
What steps will reproduce the problem?
1.set alarm
2.wait for alarm to go off
3.press snooze
What is the expected output? What do you see instead?
Expected alarm to snooze 5 mins. Instead it reset to the next alarm (24hrs)
What version of the product are you using? On what operating system?
Version 1.7 on Samsung Galaxy S3
Please provide any additional information below.
```
Original issue reported on code.google.com by `sallyham...@googlemail.com` on 20 May 2013 at 7:42 | defect | snooze doesn t work just resets to next alarm what steps will reproduce the problem set alarm wait for alarm to go off press snooze what is the expected output what do you see instead expected alarm to snooze mins instead it reset to the next alarm what version of the product are you using on what operating system version on samsung galaxy please provide any additional information below original issue reported on code google com by sallyham googlemail com on may at | 1 |
62,605 | 3,188,936,568 | IssuesEvent | 2015-09-29 01:06:40 | ddurieux/redminetest | https://api.github.com/repos/ddurieux/redminetest | closed | On uninstall remove old DB tables of Fusioninventory/Tracker | Component: For junior contributor Component: Found in version Priority: Normal Status: Closed Tracker: Bug | ---
Author Name: **David Durieux** (@ddurieux)
Original Redmine Issue: 598, http://forge.fusioninventory.org/issues/598
Original Date: 2011-02-11
Original Assignee: David Durieux
---
None
| 1.0 | On uninstall remove old DB tables of Fusioninventory/Tracker - ---
Author Name: **David Durieux** (@ddurieux)
Original Redmine Issue: 598, http://forge.fusioninventory.org/issues/598
Original Date: 2011-02-11
Original Assignee: David Durieux
---
None
| non_defect | on uninstall remove old db tables of fusioninventory tracker author name david durieux ddurieux original redmine issue original date original assignee david durieux none | 0 |
17,736 | 3,012,947,706 | IssuesEvent | 2015-07-29 04:31:37 | yawlfoundation/yawl | https://api.github.com/repos/yawlfoundation/yawl | closed | Editor stalls off for a few seconds after a "Decompose to Direct Data Transfter" has been performed. | auto-migrated Priority-Low Type-Defect | ```
What steps will reproduce the problem?
1. Select and carry out "Decompose to Direct Data Transfer" menu for a task
2. Click or Right click on a (different) task in the model.
What is the expected output? What do you see instead?
Editor stalls off for a few seconds. After that it behaves as normally.
What version of the product are you using? On what operating system?
2.0_beta_update3 (download 25 Nov 08 from SourceForge)
Please provide any additional information below.
```
Original issue reported on code.google.com by `petia.wo...@gmail.com` on 22 Jan 2009 at 1:41 | 1.0 | Editor stalls off for a few seconds after a "Decompose to Direct Data Transfter" has been performed. - ```
What steps will reproduce the problem?
1. Select and carry out "Decompose to Direct Data Transfer" menu for a task
2. Click or Right click on a (different) task in the model.
What is the expected output? What do you see instead?
Editor stalls off for a few seconds. After that it behaves as normally.
What version of the product are you using? On what operating system?
2.0_beta_update3 (download 25 Nov 08 from SourceForge)
Please provide any additional information below.
```
Original issue reported on code.google.com by `petia.wo...@gmail.com` on 22 Jan 2009 at 1:41 | defect | editor stalls off for a few seconds after a decompose to direct data transfter has been performed what steps will reproduce the problem select and carry out decompose to direct data transfer menu for a task click or right click on a different task in the model what is the expected output what do you see instead editor stalls off for a few seconds after that it behaves as normally what version of the product are you using on what operating system beta download nov from sourceforge please provide any additional information below original issue reported on code google com by petia wo gmail com on jan at | 1 |
14,207 | 2,793,554,836 | IssuesEvent | 2015-05-11 11:53:58 | cakephp/cakephp | https://api.github.com/repos/cakephp/cakephp | closed | Fixture generation broken with length defined | Defect | But baked or not, the following should not make SQLite error:
public $fields = [
'id' => ['type' => 'integer', 'length' => 10],
The error thrown:
```
Warning Error: Fixture creation for "sandbox_animals" failed "SQLSTATE[HY000]: G
eneral error: 1 AUTOINCREMENT is only allowed on an INTEGER PRIMARY KEY" in
[...\vendor\cakephp\cakephp\src\TestSuite\Fixture\TestFixture.php, line 233]
Exception: Unable to insert fixtures for "Sandbox\Test\TestCase\Controller\Boots
trapControllerTest" test case. SQLSTATE[HY000]: General error: 1 no such table:
sandbox_animals in
[...\vendor\cakephp\cakephp\src\TestSuite\Fixture\FixtureManager.php, line 254]
```
Removing the length makes it work again:
public $fields = [
'id' => ['type' => 'integer'],
The key difference is the (10) part, which SQLite doesnt seem to like.
```
// working fixture
INTEGER PRIMARY KEY AUTOINCREMENT
// broken fixture
INTEGER(10) PRIMARY KEY AUTOINCREMENT
```
We should remove the length in the case of SQLite then. | 1.0 | Fixture generation broken with length defined - But baked or not, the following should not make SQLite error:
public $fields = [
'id' => ['type' => 'integer', 'length' => 10],
The error thrown:
```
Warning Error: Fixture creation for "sandbox_animals" failed "SQLSTATE[HY000]: G
eneral error: 1 AUTOINCREMENT is only allowed on an INTEGER PRIMARY KEY" in
[...\vendor\cakephp\cakephp\src\TestSuite\Fixture\TestFixture.php, line 233]
Exception: Unable to insert fixtures for "Sandbox\Test\TestCase\Controller\Boots
trapControllerTest" test case. SQLSTATE[HY000]: General error: 1 no such table:
sandbox_animals in
[...\vendor\cakephp\cakephp\src\TestSuite\Fixture\FixtureManager.php, line 254]
```
Removing the length makes it work again:
public $fields = [
'id' => ['type' => 'integer'],
The key difference is the (10) part, which SQLite doesnt seem to like.
```
// working fixture
INTEGER PRIMARY KEY AUTOINCREMENT
// broken fixture
INTEGER(10) PRIMARY KEY AUTOINCREMENT
```
We should remove the length in the case of SQLite then. | defect | fixture generation broken with length defined but baked or not the following should not make sqlite error public fields id the error thrown warning error fixture creation for sandbox animals failed sqlstate g eneral error autoincrement is only allowed on an integer primary key in exception unable to insert fixtures for sandbox test testcase controller boots trapcontrollertest test case sqlstate general error no such table sandbox animals in removing the length makes it work again public fields id the key difference is the part which sqlite doesnt seem to like working fixture integer primary key autoincrement broken fixture integer primary key autoincrement we should remove the length in the case of sqlite then | 1 |
174,121 | 13,457,840,271 | IssuesEvent | 2020-09-09 09:44:06 | openownership/lib-cove-bods | https://api.github.com/repos/openownership/lib-cove-bods | closed | COVE Validation check: Check that dates of death of natural persons are sane | test | Check that dates of death of natural persons are sane. As a start I'll suggest:
- no one has a date of death in the future
- no one has a date of death more than 120 years after their date of birth
which are largely in keeping with the checks that we have implemented for date of birth.
@odscjames we added a similar set of checks for date of birth. It looks as though we made [changes to the code here for the general case](https://github.com/openownership/lib-cove-bods/pull/9/commits/e92c0950b70ebcba30d88490797c7c892bc95abe) and then added configuration to the [cove-bods repo](https://github.com/openownership/cove-bods/pull/29/files). Is it ok for me to raise the whole of the issue here, or should I split it into the two issues?
| 1.0 | COVE Validation check: Check that dates of death of natural persons are sane - Check that dates of death of natural persons are sane. As a start I'll suggest:
- no one has a date of death in the future
- no one has a date of death more than 120 years after their date of birth
which are largely in keeping with the checks that we have implemented for date of birth.
@odscjames we added a similar set of checks for date of birth. It looks as though we made [changes to the code here for the general case](https://github.com/openownership/lib-cove-bods/pull/9/commits/e92c0950b70ebcba30d88490797c7c892bc95abe) and then added configuration to the [cove-bods repo](https://github.com/openownership/cove-bods/pull/29/files). Is it ok for me to raise the whole of the issue here, or should I split it into the two issues?
| non_defect | cove validation check check that dates of death of natural persons are sane check that dates of death of natural persons are sane as a start i ll suggest no one has a date of death in the future no one has a date of death more than years after their date of birth which are largely in keeping with the checks that we have implemented for date of birth odscjames we added a similar set of checks for date of birth it looks as though we made and then added configuration to the is it ok for me to raise the whole of the issue here or should i split it into the two issues | 0 |
108,304 | 16,763,712,072 | IssuesEvent | 2021-06-14 05:42:51 | Seagate/cortx-s3server | https://api.github.com/repos/Seagate/cortx-s3server | closed | CVE-2020-36189 (Medium) detected in jackson-databind-2.6.6.jar | needs-attention needs-triage security vulnerability | ## CVE-2020-36189 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jackson-databind-2.6.6.jar</b></p></summary>
<p>General data-binding functionality for Jackson: works on core streaming API</p>
<p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p>
<p>Path to dependency file: cortx-s3server/auth-utils/jclient/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.6.6/jackson-databind-2.6.6.jar</p>
<p>
Dependency Hierarchy:
- aws-java-sdk-s3-1.11.37.jar (Root Library)
- aws-java-sdk-core-1.11.37.jar
- :x: **jackson-databind-2.6.6.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/Seagate/cortx-s3server/commit/2931a07d457bafb8b5ac88045b3e7c828b65b6a6">2931a07d457bafb8b5ac88045b3e7c828b65b6a6</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
FasterXML jackson-databind 2.x before 2.9.10.8 mishandles the interaction between serialization gadgets and typing, related to com.newrelic.agent.deps.ch.qos.logback.core.db.DriverManagerConnectionSource.
<p>Publish Date: 2021-01-06
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-36189>CVE-2020-36189</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 2 Score Details (<b>6.8</b>)</summary>
<p>
Base Score Metrics not available</p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Change files</p>
<p>Origin: <a href="https://github.com/FasterXML/jackson-databind/commit/33d96c13fe18a2dad01b19ce195548c9acea9da4">https://github.com/FasterXML/jackson-databind/commit/33d96c13fe18a2dad01b19ce195548c9acea9da4</a></p>
<p>Release Date: 2020-12-26</p>
<p>Fix Resolution: Replace or update the following files: SubTypeValidator.java, VERSION-2.x</p>
</p>
</details>
<p></p>
| True | CVE-2020-36189 (Medium) detected in jackson-databind-2.6.6.jar - ## CVE-2020-36189 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jackson-databind-2.6.6.jar</b></p></summary>
<p>General data-binding functionality for Jackson: works on core streaming API</p>
<p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p>
<p>Path to dependency file: cortx-s3server/auth-utils/jclient/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.6.6/jackson-databind-2.6.6.jar</p>
<p>
Dependency Hierarchy:
- aws-java-sdk-s3-1.11.37.jar (Root Library)
- aws-java-sdk-core-1.11.37.jar
- :x: **jackson-databind-2.6.6.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/Seagate/cortx-s3server/commit/2931a07d457bafb8b5ac88045b3e7c828b65b6a6">2931a07d457bafb8b5ac88045b3e7c828b65b6a6</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
FasterXML jackson-databind 2.x before 2.9.10.8 mishandles the interaction between serialization gadgets and typing, related to com.newrelic.agent.deps.ch.qos.logback.core.db.DriverManagerConnectionSource.
<p>Publish Date: 2021-01-06
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-36189>CVE-2020-36189</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 2 Score Details (<b>6.8</b>)</summary>
<p>
Base Score Metrics not available</p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Change files</p>
<p>Origin: <a href="https://github.com/FasterXML/jackson-databind/commit/33d96c13fe18a2dad01b19ce195548c9acea9da4">https://github.com/FasterXML/jackson-databind/commit/33d96c13fe18a2dad01b19ce195548c9acea9da4</a></p>
<p>Release Date: 2020-12-26</p>
<p>Fix Resolution: Replace or update the following files: SubTypeValidator.java, VERSION-2.x</p>
</p>
</details>
<p></p>
| non_defect | cve medium detected in jackson databind jar cve medium 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 cortx auth utils jclient pom xml path to vulnerable library home wss scanner repository com fasterxml jackson core jackson databind jackson databind jar dependency hierarchy aws java sdk jar root library aws java sdk core jar x jackson databind jar vulnerable library found in head commit a href vulnerability details fasterxml jackson databind x before mishandles the interaction between serialization gadgets and typing related to com newrelic agent deps ch qos logback core db drivermanagerconnectionsource publish date url a href cvss score details base score metrics not available suggested fix type change files origin a href release date fix resolution replace or update the following files subtypevalidator java version x | 0 |
24,571 | 4,020,074,923 | IssuesEvent | 2016-05-16 17:06:52 | Supmenow/sup-issues | https://api.github.com/repos/Supmenow/sup-issues | closed | Flare launch button doesn't reload | defect waiting validation ★ | Given I am creating a flare
When I click launch
And I haven't filled in Let's
Or I havn't filled in where
Then I get an alert
And The launch button stays as a spinner
And I can't continue. | 1.0 | Flare launch button doesn't reload - Given I am creating a flare
When I click launch
And I haven't filled in Let's
Or I havn't filled in where
Then I get an alert
And The launch button stays as a spinner
And I can't continue. | defect | flare launch button doesn t reload given i am creating a flare when i click launch and i haven t filled in let s or i havn t filled in where then i get an alert and the launch button stays as a spinner and i can t continue | 1 |
98,244 | 16,361,472,790 | IssuesEvent | 2021-05-14 10:08:05 | Galaxy-Software-Service/Maven_Pom_Demo | https://api.github.com/repos/Galaxy-Software-Service/Maven_Pom_Demo | opened | CVE-2019-12384 (Medium) detected in jackson-databind-2.0.6.jar | security vulnerability | ## CVE-2019-12384 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jackson-databind-2.0.6.jar</b></p></summary>
<p>General data-binding functionality for Jackson: works on core streaming API</p>
<p>Path to dependency file: Maven_Pom_Demo/pom.xml</p>
<p>Path to vulnerable library: canner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.0.6/jackson-databind-2.0.6.jar</p>
<p>
Dependency Hierarchy:
- :x: **jackson-databind-2.0.6.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/Galaxy-Software-Service/Maven_Pom_Demo/commit/3774e4b6d3e5f4ad3fa9f69e93f2b07cf1b66027">3774e4b6d3e5f4ad3fa9f69e93f2b07cf1b66027</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
FasterXML jackson-databind 2.x before 2.9.9.1 might allow attackers to have a variety of impacts by leveraging failure to block the logback-core class from polymorphic deserialization. Depending on the classpath content, remote code execution may be possible.
<p>Publish Date: 2019-06-24
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-12384>CVE-2019-12384</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.9</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12384">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12384</a></p>
<p>Release Date: 2019-06-24</p>
<p>Fix Resolution: 2.9.9.1</p>
</p>
</details>
<p></p>
***
:rescue_worker_helmet: Automatic Remediation is available for this issue
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"com.fasterxml.jackson.core","packageName":"jackson-databind","packageVersion":"2.0.6","packageFilePaths":["/pom.xml"],"isTransitiveDependency":false,"dependencyTree":"com.fasterxml.jackson.core:jackson-databind:2.0.6","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.9.9.1"}],"baseBranches":["main"],"vulnerabilityIdentifier":"CVE-2019-12384","vulnerabilityDetails":"FasterXML jackson-databind 2.x before 2.9.9.1 might allow attackers to have a variety of impacts by leveraging failure to block the logback-core class from polymorphic deserialization. Depending on the classpath content, remote code execution may be possible.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-12384","cvss3Severity":"medium","cvss3Score":"5.9","cvss3Metrics":{"A":"None","AC":"High","PR":"None","S":"Unchanged","C":"High","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> --> | True | CVE-2019-12384 (Medium) detected in jackson-databind-2.0.6.jar - ## CVE-2019-12384 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jackson-databind-2.0.6.jar</b></p></summary>
<p>General data-binding functionality for Jackson: works on core streaming API</p>
<p>Path to dependency file: Maven_Pom_Demo/pom.xml</p>
<p>Path to vulnerable library: canner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.0.6/jackson-databind-2.0.6.jar</p>
<p>
Dependency Hierarchy:
- :x: **jackson-databind-2.0.6.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/Galaxy-Software-Service/Maven_Pom_Demo/commit/3774e4b6d3e5f4ad3fa9f69e93f2b07cf1b66027">3774e4b6d3e5f4ad3fa9f69e93f2b07cf1b66027</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
FasterXML jackson-databind 2.x before 2.9.9.1 might allow attackers to have a variety of impacts by leveraging failure to block the logback-core class from polymorphic deserialization. Depending on the classpath content, remote code execution may be possible.
<p>Publish Date: 2019-06-24
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-12384>CVE-2019-12384</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.9</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12384">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12384</a></p>
<p>Release Date: 2019-06-24</p>
<p>Fix Resolution: 2.9.9.1</p>
</p>
</details>
<p></p>
***
:rescue_worker_helmet: Automatic Remediation is available for this issue
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"com.fasterxml.jackson.core","packageName":"jackson-databind","packageVersion":"2.0.6","packageFilePaths":["/pom.xml"],"isTransitiveDependency":false,"dependencyTree":"com.fasterxml.jackson.core:jackson-databind:2.0.6","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.9.9.1"}],"baseBranches":["main"],"vulnerabilityIdentifier":"CVE-2019-12384","vulnerabilityDetails":"FasterXML jackson-databind 2.x before 2.9.9.1 might allow attackers to have a variety of impacts by leveraging failure to block the logback-core class from polymorphic deserialization. Depending on the classpath content, remote code execution may be possible.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-12384","cvss3Severity":"medium","cvss3Score":"5.9","cvss3Metrics":{"A":"None","AC":"High","PR":"None","S":"Unchanged","C":"High","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> --> | non_defect | cve medium detected in jackson databind jar cve medium severity vulnerability vulnerable library jackson databind jar general data binding functionality for jackson works on core streaming api path to dependency file maven pom demo pom xml path to vulnerable library canner repository com fasterxml jackson core jackson databind jackson databind jar dependency hierarchy x jackson databind jar vulnerable library found in head commit a href found in base branch main vulnerability details fasterxml jackson databind x before might allow attackers to have a variety of impacts by leveraging failure to block the logback core class from polymorphic deserialization depending on the classpath content remote code execution may be possible publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution rescue worker helmet automatic remediation is available for this issue isopenpronvulnerability true ispackagebased true isdefaultbranch true packages istransitivedependency false dependencytree com fasterxml jackson core jackson databind isminimumfixversionavailable true minimumfixversion basebranches vulnerabilityidentifier cve vulnerabilitydetails fasterxml jackson databind x before might allow attackers to have a variety of impacts by leveraging failure to block the logback core class from polymorphic deserialization depending on the classpath content remote code execution may be possible vulnerabilityurl | 0 |
43,614 | 9,474,899,162 | IssuesEvent | 2019-04-19 09:10:25 | atomist/sdm-core | https://api.github.com/repos/atomist/sdm-core | closed | Code Inspection: npm audit on notifications | code-inspection | ### js-yaml:<3.13.0
- _(warn)_ [Denial of Service](https://npmjs.com/advisories/788) _Upgrade to version 3.13.0._
- `js-yaml:3.12.1`:
- `@atomist/automation-client>graphql-code-generator>js-yaml`
- `js-yaml:3.12.0`:
- `mocha>js-yaml`
### marked:>=0.3.14 <0.6.2
- _(warn)_ [Regular Expression Denial of Service](https://npmjs.com/advisories/812) _Upgrade to version 0.6.2 or later._
- `marked:0.4.0`:
- `typedoc>marked`
### tar:<4.4.2
- _(error)_ [Arbitrary File Overwrite](https://npmjs.com/advisories/803) _Upgrade to version 4.4.2 or later._
- `tar:2.2.1`:
- `npm>libcipm>npm-lifecycle>node-gyp>tar`
- `npm>libnpm>npm-lifecycle>node-gyp>tar`
- `npm>node-gyp>tar`
- `npm>npm-lifecycle>node-gyp>tar`
[atomist:code-inspection:notifications=@atomist/atomist-sdm] | 1.0 | Code Inspection: npm audit on notifications - ### js-yaml:<3.13.0
- _(warn)_ [Denial of Service](https://npmjs.com/advisories/788) _Upgrade to version 3.13.0._
- `js-yaml:3.12.1`:
- `@atomist/automation-client>graphql-code-generator>js-yaml`
- `js-yaml:3.12.0`:
- `mocha>js-yaml`
### marked:>=0.3.14 <0.6.2
- _(warn)_ [Regular Expression Denial of Service](https://npmjs.com/advisories/812) _Upgrade to version 0.6.2 or later._
- `marked:0.4.0`:
- `typedoc>marked`
### tar:<4.4.2
- _(error)_ [Arbitrary File Overwrite](https://npmjs.com/advisories/803) _Upgrade to version 4.4.2 or later._
- `tar:2.2.1`:
- `npm>libcipm>npm-lifecycle>node-gyp>tar`
- `npm>libnpm>npm-lifecycle>node-gyp>tar`
- `npm>node-gyp>tar`
- `npm>npm-lifecycle>node-gyp>tar`
[atomist:code-inspection:notifications=@atomist/atomist-sdm] | non_defect | code inspection npm audit on notifications js yaml warn upgrade to version js yaml atomist automation client graphql code generator js yaml js yaml mocha js yaml marked warn upgrade to version or later marked typedoc marked tar error upgrade to version or later tar npm libcipm npm lifecycle node gyp tar npm libnpm npm lifecycle node gyp tar npm node gyp tar npm npm lifecycle node gyp tar | 0 |
208,031 | 15,867,720,857 | IssuesEvent | 2021-04-08 17:15:50 | RohanNagar/thunder | https://api.github.com/repos/RohanNagar/thunder | closed | Run automated load testing | P2 Size: Medium Status: Available Type: Testing | **Description**
<!-- Please provide a description of your feedback or suggestions. -->
We should run some load-testing to ensure Thunder performs well under load. Potentially we can migrate our custom integration testing to [Artillery](https://artillery.io/docs/guides/plugins/plugin-expectations-assertions.html#Overview). [Here too](https://artillery.io/docs/guides/guides/http-reference.html#Overview)
**Additional context**
<!-- Add any other context about the feature request here. -->
https://k6.io/blog/load-testing-using-github-actions
https://medium.com/neocoast/using-artillery-and-github-actions-for-automated-load-testing-2fdaf3d34e9b | 1.0 | Run automated load testing - **Description**
<!-- Please provide a description of your feedback or suggestions. -->
We should run some load-testing to ensure Thunder performs well under load. Potentially we can migrate our custom integration testing to [Artillery](https://artillery.io/docs/guides/plugins/plugin-expectations-assertions.html#Overview). [Here too](https://artillery.io/docs/guides/guides/http-reference.html#Overview)
**Additional context**
<!-- Add any other context about the feature request here. -->
https://k6.io/blog/load-testing-using-github-actions
https://medium.com/neocoast/using-artillery-and-github-actions-for-automated-load-testing-2fdaf3d34e9b | non_defect | run automated load testing description we should run some load testing to ensure thunder performs well under load potentially we can migrate our custom integration testing to additional context | 0 |
3,540 | 2,610,064,484 | IssuesEvent | 2015-02-26 18:18:58 | chrsmith/jsjsj122 | https://api.github.com/repos/chrsmith/jsjsj122 | opened | 黄岩不孕不育检查需要多少钱 | auto-migrated Priority-Medium Type-Defect | ```
黄岩不孕不育检查需要多少钱【台州五洲生殖医院】24小时健
康咨询热线:0576-88066933-(扣扣800080609)-(微信号tzwzszyy)医院地址:
台州市椒江区枫南路229号(枫南大转盘旁)乘车线路:乘坐104�
��108、118、198及椒江一金清公交车直达枫南小区,乘坐107、105
、109、112、901、 902公交车到星星广场下车,步行即可到院。
诊疗项目:阳痿,早泄,前列腺炎,前列腺增生,龟头炎,��
�精,无精。包皮包茎,精索静脉曲张,淋病等。
台州五洲生殖医院是台州最大的男科医院,权威专家在线免��
�咨询,拥有专业完善的男科检查治疗设备,严格按照国家标�
��收费。尖端医疗设备,与世界同步。权威专家,成就专业典
范。人性化服务,一切以患者为中心。
看男科就选台州五洲生殖医院,专业男科为男人。
```
-----
Original issue reported on code.google.com by `poweragr...@gmail.com` on 30 May 2014 at 8:07 | 1.0 | 黄岩不孕不育检查需要多少钱 - ```
黄岩不孕不育检查需要多少钱【台州五洲生殖医院】24小时健
康咨询热线:0576-88066933-(扣扣800080609)-(微信号tzwzszyy)医院地址:
台州市椒江区枫南路229号(枫南大转盘旁)乘车线路:乘坐104�
��108、118、198及椒江一金清公交车直达枫南小区,乘坐107、105
、109、112、901、 902公交车到星星广场下车,步行即可到院。
诊疗项目:阳痿,早泄,前列腺炎,前列腺增生,龟头炎,��
�精,无精。包皮包茎,精索静脉曲张,淋病等。
台州五洲生殖医院是台州最大的男科医院,权威专家在线免��
�咨询,拥有专业完善的男科检查治疗设备,严格按照国家标�
��收费。尖端医疗设备,与世界同步。权威专家,成就专业典
范。人性化服务,一切以患者为中心。
看男科就选台州五洲生殖医院,专业男科为男人。
```
-----
Original issue reported on code.google.com by `poweragr...@gmail.com` on 30 May 2014 at 8:07 | defect | 黄岩不孕不育检查需要多少钱 黄岩不孕不育检查需要多少钱【台州五洲生殖医院】 康咨询热线 微信号tzwzszyy 医院地址 (枫南大转盘旁)乘车线路 � �� 、 、 , 、 、 、 、 、 ,步行即可到院。 诊疗项目:阳痿,早泄,前列腺炎,前列腺增生,龟头炎,�� �精,无精。包皮包茎,精索静脉曲张,淋病等。 台州五洲生殖医院是台州最大的男科医院,权威专家在线免�� �咨询,拥有专业完善的男科检查治疗设备,严格按照国家标� ��收费。尖端医疗设备,与世界同步。权威专家,成就专业典 范。人性化服务,一切以患者为中心。 看男科就选台州五洲生殖医院,专业男科为男人。 original issue reported on code google com by poweragr gmail com on may at | 1 |
225,519 | 17,268,891,302 | IssuesEvent | 2021-07-22 16:59:52 | hermeznetwork/hermez-node | https://api.github.com/repos/hermeznetwork/hermez-node | closed | Add missing references from swagger doc to official doc | documentation | ## Rationale
<!-- Short, concise description of the proposed feature
Why should this feature exist? What are the use-cases? -->
There are some missing links in swagger file: `More details on how to sign will be provided soon.` and `# TODO: add further documentation on how to sign auths and txs`. This documentation is not the place to go deep on how to sign things, but this is already documented and we should provide links to this parts of documentation.
- [Create account authorization signature doc](https://docs.hermez.io/#/developers/protocol/hermez-protocol/protocol?id=regular-rollup-account)
- [L2Tx signature doc](https://docs.hermez.io/#/developers/protocol/hermez-protocol/protocol?id=l2)
| 1.0 | Add missing references from swagger doc to official doc - ## Rationale
<!-- Short, concise description of the proposed feature
Why should this feature exist? What are the use-cases? -->
There are some missing links in swagger file: `More details on how to sign will be provided soon.` and `# TODO: add further documentation on how to sign auths and txs`. This documentation is not the place to go deep on how to sign things, but this is already documented and we should provide links to this parts of documentation.
- [Create account authorization signature doc](https://docs.hermez.io/#/developers/protocol/hermez-protocol/protocol?id=regular-rollup-account)
- [L2Tx signature doc](https://docs.hermez.io/#/developers/protocol/hermez-protocol/protocol?id=l2)
| non_defect | add missing references from swagger doc to official doc rationale short concise description of the proposed feature why should this feature exist what are the use cases there are some missing links in swagger file more details on how to sign will be provided soon and todo add further documentation on how to sign auths and txs this documentation is not the place to go deep on how to sign things but this is already documented and we should provide links to this parts of documentation | 0 |
62,275 | 6,792,859,283 | IssuesEvent | 2017-11-01 03:19:49 | TerriaJS/nationalmap | https://api.github.com/repos/TerriaJS/nationalmap | closed | National Map v2017-10-16 pre-release - Observation No Group Assignment | GA-testing | Observation only
- See below screen capture

| 1.0 | National Map v2017-10-16 pre-release - Observation No Group Assignment - Observation only
- See below screen capture

| non_defect | national map pre release observation no group assignment observation only see below screen capture | 0 |
52,173 | 13,211,396,587 | IssuesEvent | 2020-08-15 22:50:38 | icecube-trac/tix4 | https://api.github.com/repos/icecube-trac/tix4 | opened | [cscd-llh] uninitialized value (Trac #1794) | Incomplete Migration Migrated from Trac combo reconstruction defect | <details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/1794">https://code.icecube.wisc.edu/projects/icecube/ticket/1794</a>, reported by kjmeagherand owned by tpalczewski</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2019-02-13T14:14:55",
"_ts": "1550067295757382",
"description": "the debug statement assumes 8 variables but the number of variables can be less than 8. found by static analyser http://software.icecube.wisc.edu/static_analysis/2016-07-26-030212-26135-1/report-344c78.html#EndPath ",
"reporter": "kjmeagher",
"cc": "",
"resolution": "fixed",
"time": "2016-07-27T07:49:50",
"component": "combo reconstruction",
"summary": "[cscd-llh] uninitialized value",
"priority": "normal",
"keywords": "",
"milestone": "",
"owner": "tpalczewski",
"type": "defect"
}
```
</p>
</details>
| 1.0 | [cscd-llh] uninitialized value (Trac #1794) - <details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/1794">https://code.icecube.wisc.edu/projects/icecube/ticket/1794</a>, reported by kjmeagherand owned by tpalczewski</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2019-02-13T14:14:55",
"_ts": "1550067295757382",
"description": "the debug statement assumes 8 variables but the number of variables can be less than 8. found by static analyser http://software.icecube.wisc.edu/static_analysis/2016-07-26-030212-26135-1/report-344c78.html#EndPath ",
"reporter": "kjmeagher",
"cc": "",
"resolution": "fixed",
"time": "2016-07-27T07:49:50",
"component": "combo reconstruction",
"summary": "[cscd-llh] uninitialized value",
"priority": "normal",
"keywords": "",
"milestone": "",
"owner": "tpalczewski",
"type": "defect"
}
```
</p>
</details>
| defect | uninitialized value trac migrated from json status closed changetime ts description the debug statement assumes variables but the number of variables can be less than found by static analyser reporter kjmeagher cc resolution fixed time component combo reconstruction summary uninitialized value priority normal keywords milestone owner tpalczewski type defect | 1 |
1,027 | 3,315,143,059 | IssuesEvent | 2015-11-06 10:22:00 | dart-lang/fletch | https://api.github.com/repos/dart-lang/fletch | opened | Support List<String> | enhancement Service | Support the use of List<String>.
The current workaround is to box the string in a struct, eg:
```
service Foo {
Titles* getTitles();
}
struct Titles {
List<Title> titles;
}
struct Title {
String title;
}
``` | 1.0 | Support List<String> - Support the use of List<String>.
The current workaround is to box the string in a struct, eg:
```
service Foo {
Titles* getTitles();
}
struct Titles {
List<Title> titles;
}
struct Title {
String title;
}
``` | non_defect | support list support the use of list the current workaround is to box the string in a struct eg service foo titles gettitles struct titles list titles struct title string title | 0 |
16,533 | 2,910,542,902 | IssuesEvent | 2015-06-21 21:13:07 | thSoft/elysium | https://api.github.com/repos/thSoft/elysium | reopened | Support custom markup command definition | auto-migrated Priority-Medium Type-Defect | ```
Semantic handling of text markup (list) commands is needed as described in
http://lilypond.org/doc/v2.14/Documentation/notation/text-markup-commands and
http://lilypond.org/doc/v2.14/Documentation/notation/text-markup-list-commands.
```
Original issue reported on code.google.com by `harmathdenes` on 20 Jul 2011 at 11:54 | 1.0 | Support custom markup command definition - ```
Semantic handling of text markup (list) commands is needed as described in
http://lilypond.org/doc/v2.14/Documentation/notation/text-markup-commands and
http://lilypond.org/doc/v2.14/Documentation/notation/text-markup-list-commands.
```
Original issue reported on code.google.com by `harmathdenes` on 20 Jul 2011 at 11:54 | defect | support custom markup command definition semantic handling of text markup list commands is needed as described in and original issue reported on code google com by harmathdenes on jul at | 1 |
386,653 | 26,695,506,143 | IssuesEvent | 2023-01-27 10:00:51 | scikit-learn/scikit-learn | https://api.github.com/repos/scikit-learn/scikit-learn | closed | `FunctionTransformer.transform()` API Confusion | Documentation module:preprocessing | ### Describe the issue linked to the documentation
Documentation in question: https://scikit-learn.org/stable/modules/generated/sklearn.preprocessing.FunctionTransformer.html#sklearn.preprocessing.FunctionTransformer.transform
I need the FunctionTransformer in order to convert some of my image normalization functions into Pipeline components. At normalization time, the dataset of images can't be coerced into a 2D array (they are different sizes and color modes) - the input I need to be acceptable is a _list_ of non-uniform images. The API states that X should be an array like, with (n_samples, n_features) dimensions. Thus, I thought I couldn't use this feature.
However, array input is _not_ required. When I configured my underlying function to accept a list, then I can pass a List into `FunctionTransformer.transform()`. If this isn't a desired workflow, I'd appreciate knowing of any alternatives.
### Suggest a potential alternative/fix
I'm proposing the parameter/docs be changed from:
- X: array-like, shape (n_samples, n_features)
To:
- X: Input satisfying the requirements of the underlying function | 1.0 | `FunctionTransformer.transform()` API Confusion - ### Describe the issue linked to the documentation
Documentation in question: https://scikit-learn.org/stable/modules/generated/sklearn.preprocessing.FunctionTransformer.html#sklearn.preprocessing.FunctionTransformer.transform
I need the FunctionTransformer in order to convert some of my image normalization functions into Pipeline components. At normalization time, the dataset of images can't be coerced into a 2D array (they are different sizes and color modes) - the input I need to be acceptable is a _list_ of non-uniform images. The API states that X should be an array like, with (n_samples, n_features) dimensions. Thus, I thought I couldn't use this feature.
However, array input is _not_ required. When I configured my underlying function to accept a list, then I can pass a List into `FunctionTransformer.transform()`. If this isn't a desired workflow, I'd appreciate knowing of any alternatives.
### Suggest a potential alternative/fix
I'm proposing the parameter/docs be changed from:
- X: array-like, shape (n_samples, n_features)
To:
- X: Input satisfying the requirements of the underlying function | non_defect | functiontransformer transform api confusion describe the issue linked to the documentation documentation in question i need the functiontransformer in order to convert some of my image normalization functions into pipeline components at normalization time the dataset of images can t be coerced into a array they are different sizes and color modes the input i need to be acceptable is a list of non uniform images the api states that x should be an array like with n samples n features dimensions thus i thought i couldn t use this feature however array input is not required when i configured my underlying function to accept a list then i can pass a list into functiontransformer transform if this isn t a desired workflow i d appreciate knowing of any alternatives suggest a potential alternative fix i m proposing the parameter docs be changed from x array like shape n samples n features to x input satisfying the requirements of the underlying function | 0 |
40,871 | 5,280,280,870 | IssuesEvent | 2017-02-07 13:50:31 | realm/realm-dotnet | https://api.github.com/repos/realm/realm-dotnet | closed | AllLoggedIn should return dictionary | Blocked Design Required S:P1 Backlog T:Feature | The current Cocoa `RLMSyncUsers.allUsers` returns a `Dictionary<identity_String, User>` and Java are going to be implementing that instead of a straight collection. We should match. | 1.0 | AllLoggedIn should return dictionary - The current Cocoa `RLMSyncUsers.allUsers` returns a `Dictionary<identity_String, User>` and Java are going to be implementing that instead of a straight collection. We should match. | non_defect | allloggedin should return dictionary the current cocoa rlmsyncusers allusers returns a dictionary and java are going to be implementing that instead of a straight collection we should match | 0 |
21,452 | 3,510,131,566 | IssuesEvent | 2016-01-09 07:17:22 | wplaat/wiitowerdefense | https://api.github.com/repos/wplaat/wiitowerdefense | closed | Pause-mode | auto-migrated Priority-Medium Type-Defect | ```
What steps will reproduce the problem?
1. Play towerdefence
2. Have something forcing you to stop, for a bit.
What is the expected output? What do you see instead?
It would be nice to have a pause-mode.
What version of the product are you using? On what operating system?
0.97
Please provide any additional information below.
I find myself often in the situation that I have to stop playing in the middle
of a game, but could continue later on. However, I couldn't find a possibility
to pause the game.
The only concern against this I can think of is that it might be used to be
able to micro-manage the game especially in higher levels faster, if the game
can be paused by a wiimote keypress. This could be counter-acted by forcing a
certain delay without input after the game is told to paused, and before it
actually pauses. I would think that about a second would still be ok for the
pause to be useful, but too much to use it to be faster managing the board. An
alternative would be to only allow pause from within the control panel, so that
in order to pause one has to move the pointer there anyway.
```
Original issue reported on code.google.com by `knarrff` on 26 Sep 2010 at 7:08 | 1.0 | Pause-mode - ```
What steps will reproduce the problem?
1. Play towerdefence
2. Have something forcing you to stop, for a bit.
What is the expected output? What do you see instead?
It would be nice to have a pause-mode.
What version of the product are you using? On what operating system?
0.97
Please provide any additional information below.
I find myself often in the situation that I have to stop playing in the middle
of a game, but could continue later on. However, I couldn't find a possibility
to pause the game.
The only concern against this I can think of is that it might be used to be
able to micro-manage the game especially in higher levels faster, if the game
can be paused by a wiimote keypress. This could be counter-acted by forcing a
certain delay without input after the game is told to paused, and before it
actually pauses. I would think that about a second would still be ok for the
pause to be useful, but too much to use it to be faster managing the board. An
alternative would be to only allow pause from within the control panel, so that
in order to pause one has to move the pointer there anyway.
```
Original issue reported on code.google.com by `knarrff` on 26 Sep 2010 at 7:08 | defect | pause mode what steps will reproduce the problem play towerdefence have something forcing you to stop for a bit what is the expected output what do you see instead it would be nice to have a pause mode what version of the product are you using on what operating system please provide any additional information below i find myself often in the situation that i have to stop playing in the middle of a game but could continue later on however i couldn t find a possibility to pause the game the only concern against this i can think of is that it might be used to be able to micro manage the game especially in higher levels faster if the game can be paused by a wiimote keypress this could be counter acted by forcing a certain delay without input after the game is told to paused and before it actually pauses i would think that about a second would still be ok for the pause to be useful but too much to use it to be faster managing the board an alternative would be to only allow pause from within the control panel so that in order to pause one has to move the pointer there anyway original issue reported on code google com by knarrff on sep at | 1 |
249,998 | 7,966,279,962 | IssuesEvent | 2018-07-14 19:55:53 | node-gh/gh | https://api.github.com/repos/node-gh/gh | closed | Create TypeScript MVP for Issues Functionality to Determine Viability | high priority improvement | After studying TypeScript & using it on a personal project, Node GH seems like a great candidate to refactor.
Some of the benefits I think could be realized in this code base are:
1. Code that is easier to reason about
2. Type safety at compile time
3. Ability to use modern JS
For the initial refactor, I would not want to go overboard with type checking but rather:
- Port over all of the files from `js` to `ts`
- Get the build system working
- Type check the low hanging fruit
*Acceptance Criteria*:
- Add gulp build process to compile typescript
- Add/remove necessary dependencies to package.json
- Get the Issues functionality similar to it's current state using Github's GraphQL api | 1.0 | Create TypeScript MVP for Issues Functionality to Determine Viability - After studying TypeScript & using it on a personal project, Node GH seems like a great candidate to refactor.
Some of the benefits I think could be realized in this code base are:
1. Code that is easier to reason about
2. Type safety at compile time
3. Ability to use modern JS
For the initial refactor, I would not want to go overboard with type checking but rather:
- Port over all of the files from `js` to `ts`
- Get the build system working
- Type check the low hanging fruit
*Acceptance Criteria*:
- Add gulp build process to compile typescript
- Add/remove necessary dependencies to package.json
- Get the Issues functionality similar to it's current state using Github's GraphQL api | non_defect | create typescript mvp for issues functionality to determine viability after studying typescript using it on a personal project node gh seems like a great candidate to refactor some of the benefits i think could be realized in this code base are code that is easier to reason about type safety at compile time ability to use modern js for the initial refactor i would not want to go overboard with type checking but rather port over all of the files from js to ts get the build system working type check the low hanging fruit acceptance criteria add gulp build process to compile typescript add remove necessary dependencies to package json get the issues functionality similar to it s current state using github s graphql api | 0 |
14,325 | 3,256,403,876 | IssuesEvent | 2015-10-20 13:42:42 | IMA-WorldHealth/bhima | https://api.github.com/repos/IMA-WorldHealth/bhima | closed | Stock Status report sends too many HTTP requests | high priority redesign report | The stock status report (`/reports/stock_status/`) sends too many HTTP requests. It suffers from the same design flaws as #624 and #679. To see this, try the following:
```sh
# pipe output of command to logfile
$ npm run app > out.log
# login into bhima and count number of lines in log
$ wc -l out.log
130 out.log
# navigate to the reports/stock_status page
$ wc -l out.log
1618 out.log
```
That's ~1,300 requests for what probably should have been at most 3 requests. On Chrome (Version 45.0.2454.85 (64-bit)) running on Linux Mint, this page crashes the browser.
These types of design mistakes seem to be common throughout bhima. @DedrickEnc, we should schedule a code audit and make sure we fix all of these design flaws before the next release cycle. | 1.0 | Stock Status report sends too many HTTP requests - The stock status report (`/reports/stock_status/`) sends too many HTTP requests. It suffers from the same design flaws as #624 and #679. To see this, try the following:
```sh
# pipe output of command to logfile
$ npm run app > out.log
# login into bhima and count number of lines in log
$ wc -l out.log
130 out.log
# navigate to the reports/stock_status page
$ wc -l out.log
1618 out.log
```
That's ~1,300 requests for what probably should have been at most 3 requests. On Chrome (Version 45.0.2454.85 (64-bit)) running on Linux Mint, this page crashes the browser.
These types of design mistakes seem to be common throughout bhima. @DedrickEnc, we should schedule a code audit and make sure we fix all of these design flaws before the next release cycle. | non_defect | stock status report sends too many http requests the stock status report reports stock status sends too many http requests it suffers from the same design flaws as and to see this try the following sh pipe output of command to logfile npm run app out log login into bhima and count number of lines in log wc l out log out log navigate to the reports stock status page wc l out log out log that s requests for what probably should have been at most requests on chrome version bit running on linux mint this page crashes the browser these types of design mistakes seem to be common throughout bhima dedrickenc we should schedule a code audit and make sure we fix all of these design flaws before the next release cycle | 0 |
45,071 | 12,533,404,468 | IssuesEvent | 2020-06-04 17:32:39 | department-of-veterans-affairs/va.gov-cms | https://api.github.com/repos/department-of-veterans-affairs/va.gov-cms | opened | The aria-label attribute is stripped from phone number links by text formatter | 508 Content forms Defect Drupal engineering vsa-public-websites | **Describe the defect**
The aria-label attribute is stripped from phone number links by text formatter
**To Reproduce**
1. Go to /node/add/page
2. Add a link in a WYSIWYG field like so: `<a href="tel:711" aria-label="TTY. 7 1 1.">711</a>`
3. Save the node
4. Note that the `aria-label` attribute was stripped.
**Expected behavior**
The `aria-label` attribute should be saved in the content.
Related story from Public Websites team: https://app.zenhub.com/workspaces/vft-59c95ae5fda7577a9b3184f8/issues/department-of-veterans-affairs/va.gov-team/8379 | 1.0 | The aria-label attribute is stripped from phone number links by text formatter - **Describe the defect**
The aria-label attribute is stripped from phone number links by text formatter
**To Reproduce**
1. Go to /node/add/page
2. Add a link in a WYSIWYG field like so: `<a href="tel:711" aria-label="TTY. 7 1 1.">711</a>`
3. Save the node
4. Note that the `aria-label` attribute was stripped.
**Expected behavior**
The `aria-label` attribute should be saved in the content.
Related story from Public Websites team: https://app.zenhub.com/workspaces/vft-59c95ae5fda7577a9b3184f8/issues/department-of-veterans-affairs/va.gov-team/8379 | defect | the aria label attribute is stripped from phone number links by text formatter describe the defect the aria label attribute is stripped from phone number links by text formatter to reproduce go to node add page add a link in a wysiwyg field like so save the node note that the aria label attribute was stripped expected behavior the aria label attribute should be saved in the content related story from public websites team | 1 |
83,223 | 16,105,542,322 | IssuesEvent | 2021-04-27 14:33:04 | joomla/joomla-cms | https://api.github.com/repos/joomla/joomla-cms | closed | [4.0] Fields, Field Groups: Hide "Users"-Dropdown as only one value is selectable | No Code Attached Yet | ### What needs to be fixed
As title say, in J3 was no Dropdown.
Joomla 4 | Joomla 3
---- | ----
 | 
### Why this should be fixed
A dropdown isn't needed if user cannot select another option.
### How would you fix it
Hide the dropdown.
### Side Effects expected
Don't know. | 1.0 | [4.0] Fields, Field Groups: Hide "Users"-Dropdown as only one value is selectable - ### What needs to be fixed
As title say, in J3 was no Dropdown.
Joomla 4 | Joomla 3
---- | ----
 | 
### Why this should be fixed
A dropdown isn't needed if user cannot select another option.
### How would you fix it
Hide the dropdown.
### Side Effects expected
Don't know. | non_defect | fields field groups hide users dropdown as only one value is selectable what needs to be fixed as title say in was no dropdown joomla joomla why this should be fixed a dropdown isn t needed if user cannot select another option how would you fix it hide the dropdown side effects expected don t know | 0 |
706,834 | 24,285,610,534 | IssuesEvent | 2022-09-28 21:46:59 | rpitv/glimpse-video | https://api.github.com/repos/rpitv/glimpse-video | opened | Add security checks to distribution API | enhancement Priority: HIGH | The distribution server currently does not have any checks in place to see where the video is coming from or going to. We should restrict the "from" and "to" inputs to have to match a certain pattern. For example, only allow reading a recorded .mp4 file OR RTMP feed, and only allow outputting as a file to a specified directory. | 1.0 | Add security checks to distribution API - The distribution server currently does not have any checks in place to see where the video is coming from or going to. We should restrict the "from" and "to" inputs to have to match a certain pattern. For example, only allow reading a recorded .mp4 file OR RTMP feed, and only allow outputting as a file to a specified directory. | non_defect | add security checks to distribution api the distribution server currently does not have any checks in place to see where the video is coming from or going to we should restrict the from and to inputs to have to match a certain pattern for example only allow reading a recorded file or rtmp feed and only allow outputting as a file to a specified directory | 0 |
56,233 | 14,987,294,437 | IssuesEvent | 2021-01-28 22:39:02 | idaholab/moose | https://api.github.com/repos/idaholab/moose | closed | In MOOSEDocs many pages are reported as Input Parameters instead of the class name in the source list | T: defect | ## Bug Description
<!--A clear and concise description of the problem (Note: A missing feature is not a bug).-->
See https://mooseframework.inl.gov/source/index.html and search for Input Parameters, numerous bcs, postprocessors, kernels and others are listed as Input Parameters rather than the class name.
## Steps to Reproduce
<!--Steps to reproduce the behavior (input file, or modifications to an existing input file, etc.)-->
Look at https://mooseframework.inl.gov/source/index.html
## Impact
<!--Does this prevent you from getting your work done, or is it more of an annoyance?-->
Quite annoying.
| 1.0 | In MOOSEDocs many pages are reported as Input Parameters instead of the class name in the source list - ## Bug Description
<!--A clear and concise description of the problem (Note: A missing feature is not a bug).-->
See https://mooseframework.inl.gov/source/index.html and search for Input Parameters, numerous bcs, postprocessors, kernels and others are listed as Input Parameters rather than the class name.
## Steps to Reproduce
<!--Steps to reproduce the behavior (input file, or modifications to an existing input file, etc.)-->
Look at https://mooseframework.inl.gov/source/index.html
## Impact
<!--Does this prevent you from getting your work done, or is it more of an annoyance?-->
Quite annoying.
| defect | in moosedocs many pages are reported as input parameters instead of the class name in the source list bug description see and search for input parameters numerous bcs postprocessors kernels and others are listed as input parameters rather than the class name steps to reproduce look at impact quite annoying | 1 |
825,703 | 31,467,639,084 | IssuesEvent | 2023-08-30 04:16:37 | chimple/cuba | https://api.github.com/repos/chimple/cuba | closed | infinite loading issue after completion of lesson | bug High Priority | **Steps to reproduce**
1. play any lesson
2. click on continue in popup
**Logs:**
```
CocosGame.tsx:200 Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'title')
at CocosGame.tsx:200:35
at f (regeneratorRuntime.js:44:17)
at Generator.<anonymous> (regeneratorRuntime.js:125:22)
at Generator.next (regeneratorRuntime.js:69:21)
at r (asyncToGenerator.js:3:20)
at s (asyncToGenerator.js:22:9)
(anonymous) @ CocosGame.tsx:200
``` | 1.0 | infinite loading issue after completion of lesson - **Steps to reproduce**
1. play any lesson
2. click on continue in popup
**Logs:**
```
CocosGame.tsx:200 Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'title')
at CocosGame.tsx:200:35
at f (regeneratorRuntime.js:44:17)
at Generator.<anonymous> (regeneratorRuntime.js:125:22)
at Generator.next (regeneratorRuntime.js:69:21)
at r (asyncToGenerator.js:3:20)
at s (asyncToGenerator.js:22:9)
(anonymous) @ CocosGame.tsx:200
``` | non_defect | infinite loading issue after completion of lesson steps to reproduce play any lesson click on continue in popup logs cocosgame tsx uncaught in promise typeerror cannot read properties of undefined reading title at cocosgame tsx at f regeneratorruntime js at generator regeneratorruntime js at generator next regeneratorruntime js at r asynctogenerator js at s asynctogenerator js anonymous cocosgame tsx | 0 |
20,837 | 3,422,026,134 | IssuesEvent | 2015-12-08 21:14:52 | geotrellis/geotrellis-ec2-cluster | https://api.github.com/repos/geotrellis/geotrellis-ec2-cluster | opened | Make VPC default parameter for OfficeCIDR consistent | Defect | The default value for `OfficeCIDR ` in the VPC template attempts to append `/32` to the value of `IPAccess`, which is inconsistent with the behavior of the Leader and Follower templates. | 1.0 | Make VPC default parameter for OfficeCIDR consistent - The default value for `OfficeCIDR ` in the VPC template attempts to append `/32` to the value of `IPAccess`, which is inconsistent with the behavior of the Leader and Follower templates. | defect | make vpc default parameter for officecidr consistent the default value for officecidr in the vpc template attempts to append to the value of ipaccess which is inconsistent with the behavior of the leader and follower templates | 1 |
44,435 | 12,156,858,552 | IssuesEvent | 2020-04-25 19:10:34 | PowerDNS/pdns | https://api.github.com/repos/PowerDNS/pdns | reopened | API: gmysql Deadlock | auth defect | - Program: Authoritative
- Issue type: Bug report
### Short description
API Updates result in a MySQL Deadlock
### Environment
- Operating system: ArchLinux
- Software version: pdns-4.2.1-1
- Software source: Operating system repository
### Steps to reproduce
1. Send a few IP changes to the api.
### Expected behaviour
No Errors.
### Actual behaviour
MySQL Error:
```
[webserver] 50746175-0898-4b7c-812a-b8244a6c0a81 HTTP ISE for "/api/v1/servers/localhost/zones/domain.tld": Exception: GSQLBackend unable to nullify ordername and update auth for domain.tld for domain_id 1: Could not execute mysql statement: update records set ordername=NULL,auth=? where domain_id=? and name=? and disabled=0: Deadlock found when trying to get lock; try restarting transaction
```
Version 4.2.0-7 works still fine.
MySQL 8.0.16-7 Percona.
Record Table:
```
| records | CREATE TABLE `records` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`domain_id` int(11) DEFAULT NULL,
`name` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
`type` varchar(10) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
`content` varchar(64000) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
`ttl` int(11) DEFAULT NULL,
`prio` int(11) DEFAULT NULL,
`disabled` tinyint(1) DEFAULT '0',
`change_date` int(11) DEFAULT NULL,
`ordername` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
`auth` tinyint(1) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `rec_name_index` (`name`),
KEY `nametype_index` (`name`,`type`),
KEY `domain_id` (`domain_id`),
KEY `orderindex` (`ordername`)
) ENGINE=InnoDB AUTO_INCREMENT=9601267 DEFAULT CHARSET=utf8 |
``` | 1.0 | API: gmysql Deadlock - - Program: Authoritative
- Issue type: Bug report
### Short description
API Updates result in a MySQL Deadlock
### Environment
- Operating system: ArchLinux
- Software version: pdns-4.2.1-1
- Software source: Operating system repository
### Steps to reproduce
1. Send a few IP changes to the api.
### Expected behaviour
No Errors.
### Actual behaviour
MySQL Error:
```
[webserver] 50746175-0898-4b7c-812a-b8244a6c0a81 HTTP ISE for "/api/v1/servers/localhost/zones/domain.tld": Exception: GSQLBackend unable to nullify ordername and update auth for domain.tld for domain_id 1: Could not execute mysql statement: update records set ordername=NULL,auth=? where domain_id=? and name=? and disabled=0: Deadlock found when trying to get lock; try restarting transaction
```
Version 4.2.0-7 works still fine.
MySQL 8.0.16-7 Percona.
Record Table:
```
| records | CREATE TABLE `records` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`domain_id` int(11) DEFAULT NULL,
`name` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
`type` varchar(10) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
`content` varchar(64000) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
`ttl` int(11) DEFAULT NULL,
`prio` int(11) DEFAULT NULL,
`disabled` tinyint(1) DEFAULT '0',
`change_date` int(11) DEFAULT NULL,
`ordername` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
`auth` tinyint(1) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `rec_name_index` (`name`),
KEY `nametype_index` (`name`,`type`),
KEY `domain_id` (`domain_id`),
KEY `orderindex` (`ordername`)
) ENGINE=InnoDB AUTO_INCREMENT=9601267 DEFAULT CHARSET=utf8 |
``` | defect | api gmysql deadlock program authoritative issue type bug report short description api updates result in a mysql deadlock environment operating system archlinux software version pdns software source operating system repository steps to reproduce send a few ip changes to the api expected behaviour no errors actual behaviour mysql error http ise for api servers localhost zones domain tld exception gsqlbackend unable to nullify ordername and update auth for domain tld for domain id could not execute mysql statement update records set ordername null auth where domain id and name and disabled deadlock found when trying to get lock try restarting transaction version works still fine mysql percona record table records create table records id int not null auto increment domain id int default null name varchar character set collate swedish ci default null type varchar character set collate swedish ci default null content varchar character set collate swedish ci default null ttl int default null prio int default null disabled tinyint default change date int default null ordername varchar character set collate swedish ci default null auth tinyint default null primary key id key rec name index name key nametype index name type key domain id domain id key orderindex ordername engine innodb auto increment default charset | 1 |
65,713 | 19,666,030,427 | IssuesEvent | 2022-01-10 22:39:17 | openzfs/zfs | https://api.github.com/repos/openzfs/zfs | opened | Incompatible pointer type when building 2.1.2 on 4.9.295, 2.0.7 builds fine. | Type: Defect | ### System information
slackware64-current on odroid arm (Amlogic S905X3) based board (slarm64) with this kernel:
https://github.com/hardkernel/linux (branch odroidg12-4.9.y)
with this config:
https://gitlab.com/sndwvs/images_build_kit/-/blob/arm/config/kernel/linux-meson-sm1-legacy.config
openzfs-2.1.2 release
aarch64
kernel 4.9.295
gcc 11.2
glibc 2.33
While compiling the kernel modules I get:
CC [M] /tmp/zfs-2.1.2/module/zfs/../os/linux/zfs/zpl_super.o
/tmp/zfs-2.1.2/module/zfs/../os/linux/zfs/zpl_file.c: In function ‘zpl_readpages’:
/tmp/zfs-2.1.2/module/zfs/../os/linux/zfs/zpl_file.c:654:50: error: passing argument 3 of ‘read_cache_pages’ from incompatible pointer type [-Werror=incompatible-pointer-types]
654 | return (read_cache_pages(mapping, pages, zpl_readpage_filler, NULL));
| ^~~~~~~~~~~~~~~~~~~
| |
| int (*)(void *, struct page *)
In file included from ./include/linux/blkdev.h:14,
from /tmp/zfs-2.1.2/include/os/linux/spl/sys/uio.h:30,
from /tmp/zfs-2.1.2/include/os/linux/spl/sys/sunddi.h:28,
from /tmp/zfs-2.1.2/include/sys/zfs_context.h:69,
from /tmp/zfs-2.1.2/include/sys/spa.h:39,
from /tmp/zfs-2.1.2/include/sys/dmu_objset.h:33,
from /tmp/zfs-2.1.2/module/zfs/../os/linux/zfs/zpl_file.c:31:
./include/linux/pagemap.h:367:52: note: expected ‘int (*)(struct file *, struct page *)’ but argument is of type ‘int (*)(void *, struct page *)’
367 | struct list_head *pages, filler_t *filler, void *data);
| ~~~~~~~~~~^~~~~~
cc1: some warnings being treated as errors
Looks like one var is of type "int (*)(struct file *, struct page *)" and the other "int (*)(void *, struct page *)"
I tried compiling with CXXFLAGS="-Wno-incompatible-pointer-types" but that doesn't make it compile, if it's even safe to do so.
zfs-2.0.7 compiles just fine.
| 1.0 | Incompatible pointer type when building 2.1.2 on 4.9.295, 2.0.7 builds fine. - ### System information
slackware64-current on odroid arm (Amlogic S905X3) based board (slarm64) with this kernel:
https://github.com/hardkernel/linux (branch odroidg12-4.9.y)
with this config:
https://gitlab.com/sndwvs/images_build_kit/-/blob/arm/config/kernel/linux-meson-sm1-legacy.config
openzfs-2.1.2 release
aarch64
kernel 4.9.295
gcc 11.2
glibc 2.33
While compiling the kernel modules I get:
CC [M] /tmp/zfs-2.1.2/module/zfs/../os/linux/zfs/zpl_super.o
/tmp/zfs-2.1.2/module/zfs/../os/linux/zfs/zpl_file.c: In function ‘zpl_readpages’:
/tmp/zfs-2.1.2/module/zfs/../os/linux/zfs/zpl_file.c:654:50: error: passing argument 3 of ‘read_cache_pages’ from incompatible pointer type [-Werror=incompatible-pointer-types]
654 | return (read_cache_pages(mapping, pages, zpl_readpage_filler, NULL));
| ^~~~~~~~~~~~~~~~~~~
| |
| int (*)(void *, struct page *)
In file included from ./include/linux/blkdev.h:14,
from /tmp/zfs-2.1.2/include/os/linux/spl/sys/uio.h:30,
from /tmp/zfs-2.1.2/include/os/linux/spl/sys/sunddi.h:28,
from /tmp/zfs-2.1.2/include/sys/zfs_context.h:69,
from /tmp/zfs-2.1.2/include/sys/spa.h:39,
from /tmp/zfs-2.1.2/include/sys/dmu_objset.h:33,
from /tmp/zfs-2.1.2/module/zfs/../os/linux/zfs/zpl_file.c:31:
./include/linux/pagemap.h:367:52: note: expected ‘int (*)(struct file *, struct page *)’ but argument is of type ‘int (*)(void *, struct page *)’
367 | struct list_head *pages, filler_t *filler, void *data);
| ~~~~~~~~~~^~~~~~
cc1: some warnings being treated as errors
Looks like one var is of type "int (*)(struct file *, struct page *)" and the other "int (*)(void *, struct page *)"
I tried compiling with CXXFLAGS="-Wno-incompatible-pointer-types" but that doesn't make it compile, if it's even safe to do so.
zfs-2.0.7 compiles just fine.
| defect | incompatible pointer type when building on builds fine system information current on odroid arm amlogic based board with this kernel branch y with this config openzfs release kernel gcc glibc while compiling the kernel modules i get cc tmp zfs module zfs os linux zfs zpl super o tmp zfs module zfs os linux zfs zpl file c in function ‘zpl readpages’ tmp zfs module zfs os linux zfs zpl file c error passing argument of ‘read cache pages’ from incompatible pointer type return read cache pages mapping pages zpl readpage filler null int void struct page in file included from include linux blkdev h from tmp zfs include os linux spl sys uio h from tmp zfs include os linux spl sys sunddi h from tmp zfs include sys zfs context h from tmp zfs include sys spa h from tmp zfs include sys dmu objset h from tmp zfs module zfs os linux zfs zpl file c include linux pagemap h note expected ‘int struct file struct page ’ but argument is of type ‘int void struct page ’ struct list head pages filler t filler void data some warnings being treated as errors looks like one var is of type int struct file struct page and the other int void struct page i tried compiling with cxxflags wno incompatible pointer types but that doesn t make it compile if it s even safe to do so zfs compiles just fine | 1 |
76,687 | 26,555,085,439 | IssuesEvent | 2023-01-20 11:16:22 | decentraland/unity-renderer | https://api.github.com/repos/decentraland/unity-renderer | opened | [QA] Social modals flash briefly during initial loading screen on desktop | minor new defect stream-core | Description:
With the new loading screen decoupled from kernel feature flag turned on the initial loading screen on desktop has various social modals flash for a fraction of a second. Issue occurs only for desktop and not on web.
Reproduction rate:
5/5
Steps to reproduce:
1. Launch the desktop client with Desktop Developer Mode on the release/release-20230119 branch with the ENABLE_DECOUPLED_LOADING_SCREEN parameter.
2. Log in either via a guest or a wallet account.
3. Observe the loading screen.
Results:
With the decoupled loading screen feature flag on social modals flash briefly during the initial loading screen.
Expected results:
With the decoupled loading screen feature flag on loading appears correctly.
Notes:
- Platforms: Windows and MacOS desktop, wallet and guest login.
- Issue occurs for the [release/release-20230119 branch](https://github.com/decentraland/explorer-desktop/pull/464).
- Please see the attached screenshot and video for reference.

https://images.zenhubusercontent.com/337227404/e096dde5-ff6c-4a5a-a31a-cc3af18605db/2023_01_20_11_41_54.mp4 | 1.0 | [QA] Social modals flash briefly during initial loading screen on desktop - Description:
With the new loading screen decoupled from kernel feature flag turned on the initial loading screen on desktop has various social modals flash for a fraction of a second. Issue occurs only for desktop and not on web.
Reproduction rate:
5/5
Steps to reproduce:
1. Launch the desktop client with Desktop Developer Mode on the release/release-20230119 branch with the ENABLE_DECOUPLED_LOADING_SCREEN parameter.
2. Log in either via a guest or a wallet account.
3. Observe the loading screen.
Results:
With the decoupled loading screen feature flag on social modals flash briefly during the initial loading screen.
Expected results:
With the decoupled loading screen feature flag on loading appears correctly.
Notes:
- Platforms: Windows and MacOS desktop, wallet and guest login.
- Issue occurs for the [release/release-20230119 branch](https://github.com/decentraland/explorer-desktop/pull/464).
- Please see the attached screenshot and video for reference.

https://images.zenhubusercontent.com/337227404/e096dde5-ff6c-4a5a-a31a-cc3af18605db/2023_01_20_11_41_54.mp4 | defect | social modals flash briefly during initial loading screen on desktop description with the new loading screen decoupled from kernel feature flag turned on the initial loading screen on desktop has various social modals flash for a fraction of a second issue occurs only for desktop and not on web reproduction rate steps to reproduce launch the desktop client with desktop developer mode on the release release branch with the enable decoupled loading screen parameter log in either via a guest or a wallet account observe the loading screen results with the decoupled loading screen feature flag on social modals flash briefly during the initial loading screen expected results with the decoupled loading screen feature flag on loading appears correctly notes platforms windows and macos desktop wallet and guest login issue occurs for the please see the attached screenshot and video for reference | 1 |
592,751 | 17,929,262,825 | IssuesEvent | 2021-09-10 06:55:17 | gitpod-io/gitpod | https://api.github.com/repos/gitpod-io/gitpod | closed | [ws-daemon] Workspace start fails with "cannot connect to daemon" | priority: highest (user impact) groundwork: in review team: workspace | [This error](https://console.cloud.google.com/errors/CI6hwq2sg6bx4AE?time=PT1H&project=gitpod-191109) happens quite often (> 6000 entries in the last 7 days) and seems to be user-facing (i.e. error message on start workspace).
At least that what I just saw myself. | 1.0 | [ws-daemon] Workspace start fails with "cannot connect to daemon" - [This error](https://console.cloud.google.com/errors/CI6hwq2sg6bx4AE?time=PT1H&project=gitpod-191109) happens quite often (> 6000 entries in the last 7 days) and seems to be user-facing (i.e. error message on start workspace).
At least that what I just saw myself. | non_defect | workspace start fails with cannot connect to daemon happens quite often entries in the last days and seems to be user facing i e error message on start workspace at least that what i just saw myself | 0 |
298,317 | 9,198,727,592 | IssuesEvent | 2019-03-07 13:23:49 | process-engine/process_engine_runtime | https://api.github.com/repos/process-engine/process_engine_runtime | closed | 🐛 Storage Configuration for SQLite Databases is ignored | bug confirmed high priority | #### Describe your issue
Its possible to set a custom database name in the sqlite config. However, the options are never applied.
I wanted the runtime to create only one database for every table and set the `storage` parameter of all repositories to `database.sqlite`. However, the runtime creates distinct Databases for every defined repository.
#### How can others reproduce the issue?
First, delete your datastore in `~/Library/Application Support/process_engine_runtime/databases`
In `config/sqlite/process_engine`
* Change every `storage` parameter to `database.sqlite`
* Start the runtime
* Check the folder mentioned above,
* See, that the runtime still creates distinct databases for each repository.
#### Issue checklist
Please check the boxes in this list after submitting your Issue:
- [x] I've checked if this issue already exists
- [x] I've included all the information that i think is relevant
- [x] I've added logs and/or screenshots (if applicable)
- [x] I've mentioned PRs and issues that relate to this one
| 1.0 | 🐛 Storage Configuration for SQLite Databases is ignored - #### Describe your issue
Its possible to set a custom database name in the sqlite config. However, the options are never applied.
I wanted the runtime to create only one database for every table and set the `storage` parameter of all repositories to `database.sqlite`. However, the runtime creates distinct Databases for every defined repository.
#### How can others reproduce the issue?
First, delete your datastore in `~/Library/Application Support/process_engine_runtime/databases`
In `config/sqlite/process_engine`
* Change every `storage` parameter to `database.sqlite`
* Start the runtime
* Check the folder mentioned above,
* See, that the runtime still creates distinct databases for each repository.
#### Issue checklist
Please check the boxes in this list after submitting your Issue:
- [x] I've checked if this issue already exists
- [x] I've included all the information that i think is relevant
- [x] I've added logs and/or screenshots (if applicable)
- [x] I've mentioned PRs and issues that relate to this one
| non_defect | 🐛 storage configuration for sqlite databases is ignored describe your issue its possible to set a custom database name in the sqlite config however the options are never applied i wanted the runtime to create only one database for every table and set the storage parameter of all repositories to database sqlite however the runtime creates distinct databases for every defined repository how can others reproduce the issue first delete your datastore in library application support process engine runtime databases in config sqlite process engine change every storage parameter to database sqlite start the runtime check the folder mentioned above see that the runtime still creates distinct databases for each repository issue checklist please check the boxes in this list after submitting your issue i ve checked if this issue already exists i ve included all the information that i think is relevant i ve added logs and or screenshots if applicable i ve mentioned prs and issues that relate to this one | 0 |
57,900 | 14,239,938,658 | IssuesEvent | 2020-11-18 20:56:25 | DadSchoorse/vkBasalt | https://api.github.com/repos/DadSchoorse/vkBasalt | closed | Cannot build 32b on Ubuntu 18.04 | build | Before installing 64b I input:
`sudo apt install build-essential gcc-multilib libx11-dev libx11-dev:i386 glslang-tools
snap install spirv-tools`
I have edited the 32b install command according to the instructions to:
`sudo ASFLAGS=--32 CFLAGS=-m32 CXXFLAGS=-m32 PKG_CONFIG_PATH=/usr/lib/i386-linux-gnu/pkgconfig meson --prefix=/usr --buildtype=release --libdir=lib/i386-linux-gnu -Dwith_json=false builddir.32`
but this outputs for me:
```
Build started at 2020-07-09T15:34:04.352186
Main binary: /usr/bin/python3
Python system: Linux
The Meson build system
Version: 0.51.2
Source dir: /mnt/freedom/Downloads/vkBasalt
Build dir: /mnt/freedom/Downloads/vkBasalt/builddir.32
Build type: native build
Project name: vkBasalt
Project version: undefined
Appending CFLAGS from environment: '-m32'
No LDFLAGS in the environment, not changing global flags.
No CPPFLAGS in the environment, not changing global flags.
Sanity testing C compiler: cc
Is cross compiler: False.
Sanity check compiler command line: cc -m32 -pipe -D_FILE_OFFSET_BITS=64 /mnt/freedom/Downloads/vkBasalt/builddir.32/meson-private/sanitycheckc.c -o /mnt/freedom/Downloads/vkBasalt/builddir.32/meson-private/sanitycheckc.exe
Sanity check compile stdout:
-----
Sanity check compile stderr:
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/9/libgcc.a when searching for -lgcc
/usr/bin/ld: cannot find -lgcc
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/9/libgcc.a when searching for -lgcc
/usr/bin/ld: cannot find -lgcc
collect2: error: ld returned 1 exit status
-----
meson.build:1:0: ERROR: Compiler cc can not compile programs.
```
I can see that I have gcc-multilib and build-essential already installed.
Is there something else I can try please? | 1.0 | Cannot build 32b on Ubuntu 18.04 - Before installing 64b I input:
`sudo apt install build-essential gcc-multilib libx11-dev libx11-dev:i386 glslang-tools
snap install spirv-tools`
I have edited the 32b install command according to the instructions to:
`sudo ASFLAGS=--32 CFLAGS=-m32 CXXFLAGS=-m32 PKG_CONFIG_PATH=/usr/lib/i386-linux-gnu/pkgconfig meson --prefix=/usr --buildtype=release --libdir=lib/i386-linux-gnu -Dwith_json=false builddir.32`
but this outputs for me:
```
Build started at 2020-07-09T15:34:04.352186
Main binary: /usr/bin/python3
Python system: Linux
The Meson build system
Version: 0.51.2
Source dir: /mnt/freedom/Downloads/vkBasalt
Build dir: /mnt/freedom/Downloads/vkBasalt/builddir.32
Build type: native build
Project name: vkBasalt
Project version: undefined
Appending CFLAGS from environment: '-m32'
No LDFLAGS in the environment, not changing global flags.
No CPPFLAGS in the environment, not changing global flags.
Sanity testing C compiler: cc
Is cross compiler: False.
Sanity check compiler command line: cc -m32 -pipe -D_FILE_OFFSET_BITS=64 /mnt/freedom/Downloads/vkBasalt/builddir.32/meson-private/sanitycheckc.c -o /mnt/freedom/Downloads/vkBasalt/builddir.32/meson-private/sanitycheckc.exe
Sanity check compile stdout:
-----
Sanity check compile stderr:
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/9/libgcc.a when searching for -lgcc
/usr/bin/ld: cannot find -lgcc
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/9/libgcc.a when searching for -lgcc
/usr/bin/ld: cannot find -lgcc
collect2: error: ld returned 1 exit status
-----
meson.build:1:0: ERROR: Compiler cc can not compile programs.
```
I can see that I have gcc-multilib and build-essential already installed.
Is there something else I can try please? | non_defect | cannot build on ubuntu before installing i input sudo apt install build essential gcc multilib dev dev glslang tools snap install spirv tools i have edited the install command according to the instructions to sudo asflags cflags cxxflags pkg config path usr lib linux gnu pkgconfig meson prefix usr buildtype release libdir lib linux gnu dwith json false builddir but this outputs for me build started at main binary usr bin python system linux the meson build system version source dir mnt freedom downloads vkbasalt build dir mnt freedom downloads vkbasalt builddir build type native build project name vkbasalt project version undefined appending cflags from environment no ldflags in the environment not changing global flags no cppflags in the environment not changing global flags sanity testing c compiler cc is cross compiler false sanity check compiler command line cc pipe d file offset bits mnt freedom downloads vkbasalt builddir meson private sanitycheckc c o mnt freedom downloads vkbasalt builddir meson private sanitycheckc exe sanity check compile stdout sanity check compile stderr usr bin ld skipping incompatible usr lib gcc linux gnu libgcc a when searching for lgcc usr bin ld cannot find lgcc usr bin ld skipping incompatible usr lib gcc linux gnu libgcc a when searching for lgcc usr bin ld cannot find lgcc error ld returned exit status meson build error compiler cc can not compile programs i can see that i have gcc multilib and build essential already installed is there something else i can try please | 0 |
384,878 | 11,405,103,060 | IssuesEvent | 2020-01-31 11:16:09 | epam/cloud-pipeline | https://api.github.com/repos/epam/cloud-pipeline | opened | Refactor code that related to notification timestamps | kind/enhancement priority/low sys/core | **Background**
Current version of CP has two approach to store notification timestamps for different notification types. Some of them are stored right in `PipelineRun` class as independent fields while other are stored as a different object `NotificationType` that has independent SQL table to store a state.
**Approach**
I propose to refactor code to store all notification timestamps as a `NotificationType` and clean up `PipelineRun`
| 1.0 | Refactor code that related to notification timestamps - **Background**
Current version of CP has two approach to store notification timestamps for different notification types. Some of them are stored right in `PipelineRun` class as independent fields while other are stored as a different object `NotificationType` that has independent SQL table to store a state.
**Approach**
I propose to refactor code to store all notification timestamps as a `NotificationType` and clean up `PipelineRun`
| non_defect | refactor code that related to notification timestamps background current version of cp has two approach to store notification timestamps for different notification types some of them are stored right in pipelinerun class as independent fields while other are stored as a different object notificationtype that has independent sql table to store a state approach i propose to refactor code to store all notification timestamps as a notificationtype and clean up pipelinerun | 0 |
183,494 | 31,552,826,878 | IssuesEvent | 2023-09-02 09:06:20 | ReHab-Web/ReHab-FrontEnd | https://api.github.com/repos/ReHab-Web/ReHab-FrontEnd | opened | [Design/FE] 신규 기능에 대한 디자인 제작 및 기존 디자인을 통일성 있게 수정한다. | 💻 frontend 🎨 design | ### Description
캡스톤 디자인에서 추가될 새로운 기능에 대한 디자인을 제작하고, 프로토타입 버전의 디자인을 수정합니다.
### In Progress
상세 내용은 추후 결정
| 1.0 | [Design/FE] 신규 기능에 대한 디자인 제작 및 기존 디자인을 통일성 있게 수정한다. - ### Description
캡스톤 디자인에서 추가될 새로운 기능에 대한 디자인을 제작하고, 프로토타입 버전의 디자인을 수정합니다.
### In Progress
상세 내용은 추후 결정
| non_defect | 신규 기능에 대한 디자인 제작 및 기존 디자인을 통일성 있게 수정한다 description 캡스톤 디자인에서 추가될 새로운 기능에 대한 디자인을 제작하고 프로토타입 버전의 디자인을 수정합니다 in progress 상세 내용은 추후 결정 | 0 |
69,050 | 9,248,939,277 | IssuesEvent | 2019-03-15 08:02:39 | romainfrancois/dance | https://api.github.com/repos/romainfrancois/dance | closed | documentation for samba() | documentation help wanted :heart: | Similar to `dplyr::mutate()`,` samba()` is used to create new columns. Useful to note that `samba()` will keep both the original columns and the newly created ones.
A reprex of `samba()` in action:
``` r
library(dance)
g <- iris %>% group_by(Species)
g %>%
samba(
Sepal = ~Sepal.Length * Sepal.Width,
Petal = ~Petal.Length * Petal.Width
)
#> # A tibble: 150 x 7
#> Sepal.Length Sepal.Width Petal.Length Petal.Width Species Sepal Petal
#> <dbl> <dbl> <dbl> <dbl> <fct> <dbl> <dbl>
#> 1 5.1 3.5 1.4 0.2 setosa 17.8 0.280
#> 2 4.9 3 1.4 0.2 setosa 14.7 0.280
#> 3 4.7 3.2 1.3 0.2 setosa 15.0 0.26
#> 4 4.6 3.1 1.5 0.2 setosa 14.3 0.3
#> 5 5 3.6 1.4 0.2 setosa 18 0.280
#> 6 5.4 3.9 1.7 0.4 setosa 21.1 0.68
#> 7 4.6 3.4 1.4 0.3 setosa 15.6 0.42
#> 8 5 3.4 1.5 0.2 setosa 17 0.3
#> 9 4.4 2.9 1.4 0.2 setosa 12.8 0.280
#> 10 4.9 3.1 1.5 0.1 setosa 15.2 0.15
#> # … with 140 more rows
```
<sup>Created on 2019-03-08 by the [reprex package](https://reprex.tidyverse.org) (v0.2.1)</sup> | 1.0 | documentation for samba() - Similar to `dplyr::mutate()`,` samba()` is used to create new columns. Useful to note that `samba()` will keep both the original columns and the newly created ones.
A reprex of `samba()` in action:
``` r
library(dance)
g <- iris %>% group_by(Species)
g %>%
samba(
Sepal = ~Sepal.Length * Sepal.Width,
Petal = ~Petal.Length * Petal.Width
)
#> # A tibble: 150 x 7
#> Sepal.Length Sepal.Width Petal.Length Petal.Width Species Sepal Petal
#> <dbl> <dbl> <dbl> <dbl> <fct> <dbl> <dbl>
#> 1 5.1 3.5 1.4 0.2 setosa 17.8 0.280
#> 2 4.9 3 1.4 0.2 setosa 14.7 0.280
#> 3 4.7 3.2 1.3 0.2 setosa 15.0 0.26
#> 4 4.6 3.1 1.5 0.2 setosa 14.3 0.3
#> 5 5 3.6 1.4 0.2 setosa 18 0.280
#> 6 5.4 3.9 1.7 0.4 setosa 21.1 0.68
#> 7 4.6 3.4 1.4 0.3 setosa 15.6 0.42
#> 8 5 3.4 1.5 0.2 setosa 17 0.3
#> 9 4.4 2.9 1.4 0.2 setosa 12.8 0.280
#> 10 4.9 3.1 1.5 0.1 setosa 15.2 0.15
#> # … with 140 more rows
```
<sup>Created on 2019-03-08 by the [reprex package](https://reprex.tidyverse.org) (v0.2.1)</sup> | non_defect | documentation for samba similar to dplyr mutate samba is used to create new columns useful to note that samba will keep both the original columns and the newly created ones a reprex of samba in action r library dance g group by species g samba sepal sepal length sepal width petal petal length petal width a tibble x sepal length sepal width petal length petal width species sepal petal setosa setosa setosa setosa setosa setosa setosa setosa setosa setosa … with more rows created on by the | 0 |
73,160 | 24,478,883,209 | IssuesEvent | 2022-10-08 14:52:02 | vector-im/element-ios | https://api.github.com/repos/vector-im/element-ios | opened | Backgrounding app in 1:1 call kills audio stream | T-Defect | ### Steps to reproduce
1. Start 1:1 call from anywhere in app
2. Switch apps or turn off screen
### Outcome
#### What did you expect?
Call should continue as normal
#### What happened instead?
Audio stops transmitting, will not resume even when bringing the app back to the foreground
### Your phone model
iPhone 13
### Operating system version
15.6.1
### Application version
1.9.7
### Homeserver
Synapse 1.68.0
### Will you send logs?
Yes | 1.0 | Backgrounding app in 1:1 call kills audio stream - ### Steps to reproduce
1. Start 1:1 call from anywhere in app
2. Switch apps or turn off screen
### Outcome
#### What did you expect?
Call should continue as normal
#### What happened instead?
Audio stops transmitting, will not resume even when bringing the app back to the foreground
### Your phone model
iPhone 13
### Operating system version
15.6.1
### Application version
1.9.7
### Homeserver
Synapse 1.68.0
### Will you send logs?
Yes | defect | backgrounding app in call kills audio stream steps to reproduce start call from anywhere in app switch apps or turn off screen outcome what did you expect call should continue as normal what happened instead audio stops transmitting will not resume even when bringing the app back to the foreground your phone model iphone operating system version application version homeserver synapse will you send logs yes | 1 |
229,873 | 17,580,937,071 | IssuesEvent | 2021-08-16 07:19:56 | netwerk-digitaal-erfgoed/solid-crs | https://api.github.com/repos/netwerk-digitaal-erfgoed/solid-crs | closed | Document authentication validation and warning messages | documentation | Misschien kunnen we hier iets dieper op ingaan? Naast de mogelijke foutboodschappen, zou het interessant zijn om wat meer informatie te hebben over het "waarom".
_Originally posted by wouteraj in https://github.com/digita-ai/nde-erfgoedinstellingen/pull/46#r622816157_
┆Issue is synchronized with this [Wrike Task](https://www.wrike.com/open.htm?id=683914175) by [Unito](https://www.unito.io)
| 1.0 | Document authentication validation and warning messages - Misschien kunnen we hier iets dieper op ingaan? Naast de mogelijke foutboodschappen, zou het interessant zijn om wat meer informatie te hebben over het "waarom".
_Originally posted by wouteraj in https://github.com/digita-ai/nde-erfgoedinstellingen/pull/46#r622816157_
┆Issue is synchronized with this [Wrike Task](https://www.wrike.com/open.htm?id=683914175) by [Unito](https://www.unito.io)
| non_defect | document authentication validation and warning messages misschien kunnen we hier iets dieper op ingaan naast de mogelijke foutboodschappen zou het interessant zijn om wat meer informatie te hebben over het waarom originally posted by wouteraj in ┆issue is synchronized with this by | 0 |
64,033 | 18,149,130,036 | IssuesEvent | 2021-09-26 01:15:08 | vector-im/element-android | https://api.github.com/repos/vector-im/element-android | opened | "Pillified" names disappear from incomplete messages if you leave the room | T-Defect | ### Steps to reproduce
1. Begin to write message in any room
2. Use "mention" function on someone's profile to insert their "pillified" name
3. Leave the room without sending the message
4. Return to the room
5. Observe that pill has been removed
### What happened?
I have noticed a minor error with "pillified" names (when you tag a username or room and it creates a graphical insert in your message rather than just text).
If you are writing a message in any room or chat, and you have inserted the pillified name/tag, but you leave that screen for any reason without sending the message - it could be minimizing the app or switching out of the room to another one or even just back to the home screen - when you reenter the room, all the pills will have reverted back to normal text, which you have to reinsert again if you want to complete the message.
### Your phone model
Samsung Galaxy S9
### Operating system version
Android 10.0
### Application version and app store
Element 1.2.2
### Homeserver
_No response_
### Have you submitted a rageshake?
No | 1.0 | "Pillified" names disappear from incomplete messages if you leave the room - ### Steps to reproduce
1. Begin to write message in any room
2. Use "mention" function on someone's profile to insert their "pillified" name
3. Leave the room without sending the message
4. Return to the room
5. Observe that pill has been removed
### What happened?
I have noticed a minor error with "pillified" names (when you tag a username or room and it creates a graphical insert in your message rather than just text).
If you are writing a message in any room or chat, and you have inserted the pillified name/tag, but you leave that screen for any reason without sending the message - it could be minimizing the app or switching out of the room to another one or even just back to the home screen - when you reenter the room, all the pills will have reverted back to normal text, which you have to reinsert again if you want to complete the message.
### Your phone model
Samsung Galaxy S9
### Operating system version
Android 10.0
### Application version and app store
Element 1.2.2
### Homeserver
_No response_
### Have you submitted a rageshake?
No | defect | pillified names disappear from incomplete messages if you leave the room steps to reproduce begin to write message in any room use mention function on someone s profile to insert their pillified name leave the room without sending the message return to the room observe that pill has been removed what happened i have noticed a minor error with pillified names when you tag a username or room and it creates a graphical insert in your message rather than just text if you are writing a message in any room or chat and you have inserted the pillified name tag but you leave that screen for any reason without sending the message it could be minimizing the app or switching out of the room to another one or even just back to the home screen when you reenter the room all the pills will have reverted back to normal text which you have to reinsert again if you want to complete the message your phone model samsung galaxy operating system version android application version and app store element homeserver no response have you submitted a rageshake no | 1 |
825,815 | 31,473,315,685 | IssuesEvent | 2023-08-30 09:01:12 | apluslms/a-plus | https://api.github.com/repos/apluslms/a-plus | closed | User not selected when clicking "add deadline deviations" on points pages | type: bug priority: high effort: hours | The user points page contains buttons to add deadline deviations with user and exercise/module preselected. However, the user is not preselected. | 1.0 | User not selected when clicking "add deadline deviations" on points pages - The user points page contains buttons to add deadline deviations with user and exercise/module preselected. However, the user is not preselected. | non_defect | user not selected when clicking add deadline deviations on points pages the user points page contains buttons to add deadline deviations with user and exercise module preselected however the user is not preselected | 0 |
43,653 | 11,789,545,839 | IssuesEvent | 2020-03-17 17:20:23 | KenQuin/Lists-Cola | https://api.github.com/repos/KenQuin/Lists-Cola | opened | Slow response times for Card_1_FourHops_Hist_complete_w_PIN | Defect | This issue has been automatically created from Bot UI Automation. The goal is 3 seconds and the response time Uncached is 20729 milliseconds | 1.0 | Slow response times for Card_1_FourHops_Hist_complete_w_PIN - This issue has been automatically created from Bot UI Automation. The goal is 3 seconds and the response time Uncached is 20729 milliseconds | defect | slow response times for card fourhops hist complete w pin this issue has been automatically created from bot ui automation the goal is seconds and the response time uncached is milliseconds | 1 |
390,638 | 26,866,979,458 | IssuesEvent | 2023-02-04 01:51:58 | 0x192/universal-android-debloater | https://api.github.com/repos/0x192/universal-android-debloater | opened | "Samsung Security Log Agent" is also responsible for "permission monitor" | package::documentation | **Your phone**: SM-J327VPP
**Packages documentation to update:**
```
com.samsung.android.securitylogagent
```
## Documentation chage
### com.samsung.android.securitylogagent
**Current description**
> Security Log Agent
> https://www.androidexplained.com/galaxy-note-9-disable-security-log-agent/
> Run in the background and monitore your device for any change to the /system partition.
> NOTE : When you root your phone, it will constantly tell you that your device is modified.
**Proposed description**
> Security Log Agent
> https://www.androidexplained.com/galaxy-note-9-disable-security-log-agent
> Run in the background and monitor your device for any change to the /system partition.
> It also listens for use of permissions by 3rd-party apps. This is a feature found in Security settings, named "permission monitor"
> NOTE : When you root your phone, it will constantly tell you that your device is modified.
I noticed the connection between these 2, because of the occasional notifications when "suspicious" activity was detected | 1.0 | "Samsung Security Log Agent" is also responsible for "permission monitor" - **Your phone**: SM-J327VPP
**Packages documentation to update:**
```
com.samsung.android.securitylogagent
```
## Documentation chage
### com.samsung.android.securitylogagent
**Current description**
> Security Log Agent
> https://www.androidexplained.com/galaxy-note-9-disable-security-log-agent/
> Run in the background and monitore your device for any change to the /system partition.
> NOTE : When you root your phone, it will constantly tell you that your device is modified.
**Proposed description**
> Security Log Agent
> https://www.androidexplained.com/galaxy-note-9-disable-security-log-agent
> Run in the background and monitor your device for any change to the /system partition.
> It also listens for use of permissions by 3rd-party apps. This is a feature found in Security settings, named "permission monitor"
> NOTE : When you root your phone, it will constantly tell you that your device is modified.
I noticed the connection between these 2, because of the occasional notifications when "suspicious" activity was detected | non_defect | samsung security log agent is also responsible for permission monitor your phone sm packages documentation to update com samsung android securitylogagent documentation chage com samsung android securitylogagent current description security log agent run in the background and monitore your device for any change to the system partition note when you root your phone it will constantly tell you that your device is modified proposed description security log agent run in the background and monitor your device for any change to the system partition it also listens for use of permissions by party apps this is a feature found in security settings named permission monitor note when you root your phone it will constantly tell you that your device is modified i noticed the connection between these because of the occasional notifications when suspicious activity was detected | 0 |
20,335 | 3,343,396,940 | IssuesEvent | 2015-11-15 13:25:54 | scipy/scipy | https://api.github.com/repos/scipy/scipy | closed | Documentation for scipy.signal.TransferFunction matches neither implementation, matlab, nor conventional definition of fractions | defect Documentation scipy.signal | It says:
> Represents the system as the transfer function `H(s)=\sum_i b[i] s^i / \sum_j a[j] s^i`, where `a` are elements of the numerator num and `b` are the elements of the denominator den.
This seems contrary to the normal definition of `numerator / denominator` | 1.0 | Documentation for scipy.signal.TransferFunction matches neither implementation, matlab, nor conventional definition of fractions - It says:
> Represents the system as the transfer function `H(s)=\sum_i b[i] s^i / \sum_j a[j] s^i`, where `a` are elements of the numerator num and `b` are the elements of the denominator den.
This seems contrary to the normal definition of `numerator / denominator` | defect | documentation for scipy signal transferfunction matches neither implementation matlab nor conventional definition of fractions it says represents the system as the transfer function h s sum i b s i sum j a s i where a are elements of the numerator num and b are the elements of the denominator den this seems contrary to the normal definition of numerator denominator | 1 |
172,965 | 6,518,381,079 | IssuesEvent | 2017-08-28 07:48:00 | vmware/admiral | https://api.github.com/repos/vmware/admiral | closed | Problems upgrading appliance from 1.1.1 to 1.2 RC1 | kind/bug priority/high | Using `vic-v1.2.0-rc1-9a55fa05-dev.ova` to upgrade from VIC appliance 1.1.1 to VIC 1.2 results in an unusable VIC UI.
**Steps to reproduce**:
- Deployed two VIC 1.1.1 GA OVA instances (one source and one target for replication).
- In Registry: created a local user, a project, set up registry replication endpoint and rule, reconfigured the system settings.
- In Management Portal: added 3 VCHs, created a placement policy, created container in MP, created networks and a volume
- Deployed 1.2 appliance without powering it on.
- Attached the data disk from the 1.1.1 appliance to the 1.2 appliance and ran upgrade script, according to procedure demonstrated by @andrewtchin and documented [here](https://github.com/stuclem/vic-product/blob/upgrade/docs/user_doc/vic_vsphere_admin/upgrade_appliance.md).
**Actual Result**
When you log into the upgraded Management Portal, nothing seems to work properly. Some pages (e.g. Administration > Configuration and Administration > Registries > Replication Rules) show up unformatted, VCHs don't load in the Clusters view, projects don't load, etc.
According to @andrewtchin there are a bunch of Admiral exceptions in the logs, for example:
```
Aug 24 14:30:54 localhost.localdomain start_admiral.sh[1415]: [574][W][2017-08-24T14:30:54.528Z][27][8282/resources/hosts-data-collections/host-info-data-collection][lambda$findAllContainerHosts$22][Exception while retrieving docker host. Error: java.util.concurrent.CompletionException: java.lang.Ill
egalArgumentException: One of term, booleanClauses must be provided
```
According to @gmuleshkov it looks like a problem was introduced into Admiral a couple of days ago. @gmuleshkov has the details of the appliance, which I will leave running in its current state.
**Expected Result**
Projects, VCHs, registries, etc. should all appear in the UI after the upgrade. Pages should render correctly.
I deployed the same OVA file as a fresh install (i.e. without upgrading) and it appears to work fine.
| 1.0 | Problems upgrading appliance from 1.1.1 to 1.2 RC1 - Using `vic-v1.2.0-rc1-9a55fa05-dev.ova` to upgrade from VIC appliance 1.1.1 to VIC 1.2 results in an unusable VIC UI.
**Steps to reproduce**:
- Deployed two VIC 1.1.1 GA OVA instances (one source and one target for replication).
- In Registry: created a local user, a project, set up registry replication endpoint and rule, reconfigured the system settings.
- In Management Portal: added 3 VCHs, created a placement policy, created container in MP, created networks and a volume
- Deployed 1.2 appliance without powering it on.
- Attached the data disk from the 1.1.1 appliance to the 1.2 appliance and ran upgrade script, according to procedure demonstrated by @andrewtchin and documented [here](https://github.com/stuclem/vic-product/blob/upgrade/docs/user_doc/vic_vsphere_admin/upgrade_appliance.md).
**Actual Result**
When you log into the upgraded Management Portal, nothing seems to work properly. Some pages (e.g. Administration > Configuration and Administration > Registries > Replication Rules) show up unformatted, VCHs don't load in the Clusters view, projects don't load, etc.
According to @andrewtchin there are a bunch of Admiral exceptions in the logs, for example:
```
Aug 24 14:30:54 localhost.localdomain start_admiral.sh[1415]: [574][W][2017-08-24T14:30:54.528Z][27][8282/resources/hosts-data-collections/host-info-data-collection][lambda$findAllContainerHosts$22][Exception while retrieving docker host. Error: java.util.concurrent.CompletionException: java.lang.Ill
egalArgumentException: One of term, booleanClauses must be provided
```
According to @gmuleshkov it looks like a problem was introduced into Admiral a couple of days ago. @gmuleshkov has the details of the appliance, which I will leave running in its current state.
**Expected Result**
Projects, VCHs, registries, etc. should all appear in the UI after the upgrade. Pages should render correctly.
I deployed the same OVA file as a fresh install (i.e. without upgrading) and it appears to work fine.
| non_defect | problems upgrading appliance from to using vic dev ova to upgrade from vic appliance to vic results in an unusable vic ui steps to reproduce deployed two vic ga ova instances one source and one target for replication in registry created a local user a project set up registry replication endpoint and rule reconfigured the system settings in management portal added vchs created a placement policy created container in mp created networks and a volume deployed appliance without powering it on attached the data disk from the appliance to the appliance and ran upgrade script according to procedure demonstrated by andrewtchin and documented actual result when you log into the upgraded management portal nothing seems to work properly some pages e g administration configuration and administration registries replication rules show up unformatted vchs don t load in the clusters view projects don t load etc according to andrewtchin there are a bunch of admiral exceptions in the logs for example aug localhost localdomain start admiral sh exception while retrieving docker host error java util concurrent completionexception java lang ill egalargumentexception one of term booleanclauses must be provided according to gmuleshkov it looks like a problem was introduced into admiral a couple of days ago gmuleshkov has the details of the appliance which i will leave running in its current state expected result projects vchs registries etc should all appear in the ui after the upgrade pages should render correctly i deployed the same ova file as a fresh install i e without upgrading and it appears to work fine | 0 |
32,368 | 6,767,395,147 | IssuesEvent | 2017-10-26 03:03:05 | Shopkeepers/Shopkeepers | https://api.github.com/repos/Shopkeepers/Shopkeepers | closed | add support for Head meta and Firework Meta | Defect fixed migrated | **Migrated from:** https://dev.bukkit.org/projects/shopkeepers/issues/78
**Originally posted by Zombiemold (Jan 14, 2013):**
I believe this ticket is pretty self explanatory and doesn't quite need the default post template.Fireworks being sold with shopkeepers lose their firework data after a server restart, or the plugin is reloaded.Additionally, heads with head meta lose their data after a server restart, or the plugin is reloaded. | 1.0 | add support for Head meta and Firework Meta - **Migrated from:** https://dev.bukkit.org/projects/shopkeepers/issues/78
**Originally posted by Zombiemold (Jan 14, 2013):**
I believe this ticket is pretty self explanatory and doesn't quite need the default post template.Fireworks being sold with shopkeepers lose their firework data after a server restart, or the plugin is reloaded.Additionally, heads with head meta lose their data after a server restart, or the plugin is reloaded. | defect | add support for head meta and firework meta migrated from originally posted by zombiemold jan i believe this ticket is pretty self explanatory and doesn t quite need the default post template fireworks being sold with shopkeepers lose their firework data after a server restart or the plugin is reloaded additionally heads with head meta lose their data after a server restart or the plugin is reloaded | 1 |
19,571 | 3,226,855,641 | IssuesEvent | 2015-10-10 17:21:17 | punchware/JIO-Library | https://api.github.com/repos/punchware/JIO-Library | closed | function.zipFolder: Unzip the folder that not existed will create empty zip file. | auto-migrated Priority-High Type-Defect | ```
Steps will reproduce the problem:
1. Execute "function.zipFolder(<folder not exist>);"
2. System throw error.
3. Check the folder path, empty zipped file created.
Expected output:
- Any failure in zipping execution shouldn't produce any empty zipped file.
```
Original issue reported on code.google.com by `gravitydevelopment` on 1 May 2013 at 1:08 | 1.0 | function.zipFolder: Unzip the folder that not existed will create empty zip file. - ```
Steps will reproduce the problem:
1. Execute "function.zipFolder(<folder not exist>);"
2. System throw error.
3. Check the folder path, empty zipped file created.
Expected output:
- Any failure in zipping execution shouldn't produce any empty zipped file.
```
Original issue reported on code.google.com by `gravitydevelopment` on 1 May 2013 at 1:08 | defect | function zipfolder unzip the folder that not existed will create empty zip file steps will reproduce the problem execute function zipfolder system throw error check the folder path empty zipped file created expected output any failure in zipping execution shouldn t produce any empty zipped file original issue reported on code google com by gravitydevelopment on may at | 1 |
127,990 | 5,042,146,305 | IssuesEvent | 2016-12-19 12:59:23 | Access4Learning/sif3-framework-dotnet | https://api.github.com/repos/Access4Learning/sif3-framework-dotnet | opened | Support OAuth Authentication | Priority: High Status: Accepted Type: Enhancement | As OAuth is a support Authentication method in SIF Infrastructure 3.2 Specification | 1.0 | Support OAuth Authentication - As OAuth is a support Authentication method in SIF Infrastructure 3.2 Specification | non_defect | support oauth authentication as oauth is a support authentication method in sif infrastructure specification | 0 |
245,342 | 18,780,397,907 | IssuesEvent | 2021-11-08 05:28:10 | girlscript/winter-of-contributing | https://api.github.com/repos/girlscript/winter-of-contributing | closed | ML 7.10: Viterbi Algorithm (D) | documentation GWOC21 ML Assigned Machine Learning | ### Description
### 📌 Issues for Week 7
Welcome to 'ML' Team, good to see you here
:arrow_forward: This issue will helps readers in acquiring all the knowledge that one needs to know about ----
### **_Viterbi Algorithm_**.
:red_circle: To get assigned to this issue, add your **Batch Numbers** mentioned in the spreadsheet of "Machine Learning", the approach one would follow and choice you prefer (Documentation, Audio, Video). You can go with all three or any number of options you're interested to work on.
✔️ Domain : **Machine Learning**
:red_circle::yellow_circle: **Points to Note :**
- The issues will be assigned on a first come first serve basis, 1 Issue == 1 PR.
- "Issue Title" and "PR Title should be the same. Include issue number along with it.
- Changes should be made inside the `Machine Learning/Machine_Learning/Bayesian_ML_&_Ensemble_based_Learning` Branch.
- Follow Contributing Guidelines & Code of Conduct before start Contributing.
- This issue is only for 'GWOC' contributors of 'Machine Learning' domain.
************************************************************
:white_check_mark: **To be Mentioned while taking the issue :**
- Full name
- Batch Number
- GitHub Profile Link
- Which type of Contribution you want to make :
- [ ] Documentation
*************************************************************
Happy Contributing 🚀
All the best. Enjoy your open source journey ahead. 😎
### Domain
Machine Learning
### Type of Contribution
Documentation
### Code of Conduct
- [X] I follow [Contributing Guidelines](https://github.com/girlscript/winter-of-contributing/blob/main/.github/CONTRIBUTING.md) & [Code of conduct](https://github.com/girlscript/winter-of-contributing/blob/main/.github/CODE_OF_CONDUCT.md) of this project. | 1.0 | ML 7.10: Viterbi Algorithm (D) - ### Description
### 📌 Issues for Week 7
Welcome to 'ML' Team, good to see you here
:arrow_forward: This issue will helps readers in acquiring all the knowledge that one needs to know about ----
### **_Viterbi Algorithm_**.
:red_circle: To get assigned to this issue, add your **Batch Numbers** mentioned in the spreadsheet of "Machine Learning", the approach one would follow and choice you prefer (Documentation, Audio, Video). You can go with all three or any number of options you're interested to work on.
✔️ Domain : **Machine Learning**
:red_circle::yellow_circle: **Points to Note :**
- The issues will be assigned on a first come first serve basis, 1 Issue == 1 PR.
- "Issue Title" and "PR Title should be the same. Include issue number along with it.
- Changes should be made inside the `Machine Learning/Machine_Learning/Bayesian_ML_&_Ensemble_based_Learning` Branch.
- Follow Contributing Guidelines & Code of Conduct before start Contributing.
- This issue is only for 'GWOC' contributors of 'Machine Learning' domain.
************************************************************
:white_check_mark: **To be Mentioned while taking the issue :**
- Full name
- Batch Number
- GitHub Profile Link
- Which type of Contribution you want to make :
- [ ] Documentation
*************************************************************
Happy Contributing 🚀
All the best. Enjoy your open source journey ahead. 😎
### Domain
Machine Learning
### Type of Contribution
Documentation
### Code of Conduct
- [X] I follow [Contributing Guidelines](https://github.com/girlscript/winter-of-contributing/blob/main/.github/CONTRIBUTING.md) & [Code of conduct](https://github.com/girlscript/winter-of-contributing/blob/main/.github/CODE_OF_CONDUCT.md) of this project. | non_defect | ml viterbi algorithm d description 📌 issues for week welcome to ml team good to see you here arrow forward this issue will helps readers in acquiring all the knowledge that one needs to know about viterbi algorithm red circle to get assigned to this issue add your batch numbers mentioned in the spreadsheet of machine learning the approach one would follow and choice you prefer documentation audio video you can go with all three or any number of options you re interested to work on ✔️ domain machine learning red circle yellow circle points to note the issues will be assigned on a first come first serve basis issue pr issue title and pr title should be the same include issue number along with it changes should be made inside the machine learning machine learning bayesian ml ensemble based learning branch follow contributing guidelines code of conduct before start contributing this issue is only for gwoc contributors of machine learning domain white check mark to be mentioned while taking the issue full name batch number github profile link which type of contribution you want to make documentation happy contributing 🚀 all the best enjoy your open source journey ahead 😎 domain machine learning type of contribution documentation code of conduct i follow of this project | 0 |
65,945 | 19,825,072,171 | IssuesEvent | 2022-01-20 04:56:31 | vector-im/element-android | https://api.github.com/repos/vector-im/element-android | opened | Notifications are broken on 1.3.14 F-Droid | T-Defect | ### Steps to reproduce
1. Enable Caffeine for testing purposes this prevents your phone sleeping.
2. Observe that **no notifications** come through when Element is closed and not running as a background app, even though the "Listening for notifications" persistent notification is present.
3. Launch Element and then press the home button to move it to the background (running as a background app), note that **no notifications** come through.
4. Finally bring Element to the foreground but do not have it focused on a chat that would generate a notification and you will finally have **notifications displayed**.
Summing up, currently for the F-Droid build notifications are broken in every aspect unless Element is in the foreground.
### Outcome
#### What did you expect?
Notifications should be received no matter what state Element is in.
#### What happened instead?
No notifications are received unless the app is open and in the foreground.
### Your phone model
Asus Zenfone Selfie ZD551KL
### Operating system version
Android 7.1.2
### Application version and app store
Element version 1.3.14 olm version 3.2.10 from F-Droid
### Homeserver
matrix.org
### Will you send logs?
Yes | 1.0 | Notifications are broken on 1.3.14 F-Droid - ### Steps to reproduce
1. Enable Caffeine for testing purposes this prevents your phone sleeping.
2. Observe that **no notifications** come through when Element is closed and not running as a background app, even though the "Listening for notifications" persistent notification is present.
3. Launch Element and then press the home button to move it to the background (running as a background app), note that **no notifications** come through.
4. Finally bring Element to the foreground but do not have it focused on a chat that would generate a notification and you will finally have **notifications displayed**.
Summing up, currently for the F-Droid build notifications are broken in every aspect unless Element is in the foreground.
### Outcome
#### What did you expect?
Notifications should be received no matter what state Element is in.
#### What happened instead?
No notifications are received unless the app is open and in the foreground.
### Your phone model
Asus Zenfone Selfie ZD551KL
### Operating system version
Android 7.1.2
### Application version and app store
Element version 1.3.14 olm version 3.2.10 from F-Droid
### Homeserver
matrix.org
### Will you send logs?
Yes | defect | notifications are broken on f droid steps to reproduce enable caffeine for testing purposes this prevents your phone sleeping observe that no notifications come through when element is closed and not running as a background app even though the listening for notifications persistent notification is present launch element and then press the home button to move it to the background running as a background app note that no notifications come through finally bring element to the foreground but do not have it focused on a chat that would generate a notification and you will finally have notifications displayed summing up currently for the f droid build notifications are broken in every aspect unless element is in the foreground outcome what did you expect notifications should be received no matter what state element is in what happened instead no notifications are received unless the app is open and in the foreground your phone model asus zenfone selfie operating system version android application version and app store element version olm version from f droid homeserver matrix org will you send logs yes | 1 |
102,758 | 4,160,207,691 | IssuesEvent | 2016-06-17 12:23:36 | transientskp/banana | https://api.github.com/repos/transientskp/banana | closed | Ability to Change Contrast Levels of an Image | enhancement priority low | Much like what is talked about in this issue about the thumbnails #4616, I think being able to change image levels on the fly would be a big help - of course how tricky that might be I'm not sure.
original issue
https://support.astron.nl/lofar_issuetracker/issues/5411 | 1.0 | Ability to Change Contrast Levels of an Image - Much like what is talked about in this issue about the thumbnails #4616, I think being able to change image levels on the fly would be a big help - of course how tricky that might be I'm not sure.
original issue
https://support.astron.nl/lofar_issuetracker/issues/5411 | non_defect | ability to change contrast levels of an image much like what is talked about in this issue about the thumbnails i think being able to change image levels on the fly would be a big help of course how tricky that might be i m not sure original issue | 0 |
2,206 | 2,603,991,063 | IssuesEvent | 2015-02-24 19:06:38 | chrsmith/nishazi6 | https://api.github.com/repos/chrsmith/nishazi6 | opened | 沈阳肛门尖锐疣怎么治 | auto-migrated Priority-Medium Type-Defect | ```
沈阳肛门尖锐疣怎么治〓沈陽軍區政治部醫院性病〓TEL:024-3
1023308〓成立于1946年,68年專注于性傳播疾病的研究和治療。�
��于沈陽市沈河區二緯路32號。是一所與新中國同建立共輝煌�
��歷史悠久、設備精良、技術權威、專家云集,是預防、保健
、醫療、科研康復為一體的綜合性醫院。是國家首批公立甲��
�部隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、�
��南大學等知名高等院校的教學醫院。曾被中國人民解放軍空
軍后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體��
�等功。
```
-----
Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 8:30 | 1.0 | 沈阳肛门尖锐疣怎么治 - ```
沈阳肛门尖锐疣怎么治〓沈陽軍區政治部醫院性病〓TEL:024-3
1023308〓成立于1946年,68年專注于性傳播疾病的研究和治療。�
��于沈陽市沈河區二緯路32號。是一所與新中國同建立共輝煌�
��歷史悠久、設備精良、技術權威、專家云集,是預防、保健
、醫療、科研康復為一體的綜合性醫院。是國家首批公立甲��
�部隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、�
��南大學等知名高等院校的教學醫院。曾被中國人民解放軍空
軍后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體��
�等功。
```
-----
Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 8:30 | defect | 沈阳肛门尖锐疣怎么治 沈阳肛门尖锐疣怎么治〓沈陽軍區政治部醫院性病〓tel: 〓 , 。� �� 。是一所與新中國同建立共輝煌� ��歷史悠久、設備精良、技術權威、專家云集,是預防、保健 、醫療、科研康復為一體的綜合性醫院。是國家首批公立甲�� �部隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、� ��南大學等知名高等院校的教學醫院。曾被中國人民解放軍空 軍后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體�� �等功。 original issue reported on code google com by gmail com on jun at | 1 |
1,718 | 25,074,634,944 | IssuesEvent | 2022-11-07 14:40:36 | elastic/elasticsearch | https://api.github.com/repos/elastic/elasticsearch | opened | Expose recovery, snapshot, and restore rate limits and throttle times in node stats | >enhancement :Distributed/Snapshot/Restore :Distributed/Recovery Team:Distributed needs:triage Supportability | ### Description
The rate limits for recoveries and snapshots can be indirectly computed from Elasticsearch configurations, which makes it hard to ascertain their real values used during runtime because:
- https://github.com/elastic/elasticsearch/pull/82819 introduced a way to indirectly influence the recovery speed `indices.recovery.max_bytes_per_sec` by configuring three key bandwidth metrics settings.
- Snapshot recovery rate limit `max_restore_bytes_per_sec` is already capped by the recovery rate limit.
- https://github.com/elastic/elasticsearch/issues/57023 aims to tie and potentially cap the snapshot speed `max_snapshot_bytes_per_sec` to the recovery limit (when the node bandwidth metrics settings are configured) apart from the existing snapshot speed configuration.
- Furthermore, some of the aforementioned limits can be configured per node and/or repository and/or at runtime.
To make observability of these rate limits easier, the proposal is to expose the final used rate limit values (considering also any cap, e.g., by the recovery rate limit) in the node stats. Snapshot rate limits will be reported per repository.
Apart from the speed, the proposal is to also expose the throttling times more prominently. Specifically:
- [The repos analysis API](https://www.elastic.co/guide/en/elasticsearch/reference/master/repo-analysis-api.html) exposes the snapshot and snapshot restore throttle times. But this is not useful for live usage. We could expose the throttle times in node stats per repository.
- Recovery throttling is already exposed in [nodes stats](https://www.elastic.co/guide/en/elasticsearch/reference/master/cluster-nodes-stats.html) under node_id > indices > recovery > throttle_time. I think no change is needed for recovery throttling stats.
| True | Expose recovery, snapshot, and restore rate limits and throttle times in node stats - ### Description
The rate limits for recoveries and snapshots can be indirectly computed from Elasticsearch configurations, which makes it hard to ascertain their real values used during runtime because:
- https://github.com/elastic/elasticsearch/pull/82819 introduced a way to indirectly influence the recovery speed `indices.recovery.max_bytes_per_sec` by configuring three key bandwidth metrics settings.
- Snapshot recovery rate limit `max_restore_bytes_per_sec` is already capped by the recovery rate limit.
- https://github.com/elastic/elasticsearch/issues/57023 aims to tie and potentially cap the snapshot speed `max_snapshot_bytes_per_sec` to the recovery limit (when the node bandwidth metrics settings are configured) apart from the existing snapshot speed configuration.
- Furthermore, some of the aforementioned limits can be configured per node and/or repository and/or at runtime.
To make observability of these rate limits easier, the proposal is to expose the final used rate limit values (considering also any cap, e.g., by the recovery rate limit) in the node stats. Snapshot rate limits will be reported per repository.
Apart from the speed, the proposal is to also expose the throttling times more prominently. Specifically:
- [The repos analysis API](https://www.elastic.co/guide/en/elasticsearch/reference/master/repo-analysis-api.html) exposes the snapshot and snapshot restore throttle times. But this is not useful for live usage. We could expose the throttle times in node stats per repository.
- Recovery throttling is already exposed in [nodes stats](https://www.elastic.co/guide/en/elasticsearch/reference/master/cluster-nodes-stats.html) under node_id > indices > recovery > throttle_time. I think no change is needed for recovery throttling stats.
| non_defect | expose recovery snapshot and restore rate limits and throttle times in node stats description the rate limits for recoveries and snapshots can be indirectly computed from elasticsearch configurations which makes it hard to ascertain their real values used during runtime because introduced a way to indirectly influence the recovery speed indices recovery max bytes per sec by configuring three key bandwidth metrics settings snapshot recovery rate limit max restore bytes per sec is already capped by the recovery rate limit aims to tie and potentially cap the snapshot speed max snapshot bytes per sec to the recovery limit when the node bandwidth metrics settings are configured apart from the existing snapshot speed configuration furthermore some of the aforementioned limits can be configured per node and or repository and or at runtime to make observability of these rate limits easier the proposal is to expose the final used rate limit values considering also any cap e g by the recovery rate limit in the node stats snapshot rate limits will be reported per repository apart from the speed the proposal is to also expose the throttling times more prominently specifically exposes the snapshot and snapshot restore throttle times but this is not useful for live usage we could expose the throttle times in node stats per repository recovery throttling is already exposed in under node id indices recovery throttle time i think no change is needed for recovery throttling stats | 0 |
21,284 | 2,637,432,946 | IssuesEvent | 2015-03-10 13:17:42 | cs2103jan2015-w14-2j/main | https://api.github.com/repos/cs2103jan2015-w14-2j/main | closed | create Parser class | priority.high status.ongoing | This class takes in the input String from logic and returns a Command object to logic | 1.0 | create Parser class - This class takes in the input String from logic and returns a Command object to logic | non_defect | create parser class this class takes in the input string from logic and returns a command object to logic | 0 |
14,269 | 2,797,054,232 | IssuesEvent | 2015-05-12 11:34:46 | BioAssayOntology/BAO | https://api.github.com/repos/BioAssayOntology/BAO | opened | BAO Modeling: BAO 2.0 cytokine secretion | auto-migrated BAO_InternalBAOUM-8 Priority-Medium Type-Defect | <a href="https://github.com/GoogleCodeExporter"><img src="https://avatars.githubusercontent.com/u/9614759?v=3" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [GoogleCodeExporter](https://github.com/GoogleCodeExporter)**
_Saturday May 09, 2015 at 11:32 GMT_
_Originally opened as https://github.com/linikujp/bioassayontology/issues/4_
----
```
cytokine secretion assay is repeated twice (Reported by Caty Chung on Sep 11,
2013 at 3:06 PM)
BAO_0003003 'cytokine secretion assay'
1) topBAOClass->'assay bioassay component'->bioassay->'signal transduction
assay'->'Cue Signal Response assay'->'cytokine secretion assay'
2) topBAOClass->'assay bioassay component'->bioassay->'signal transduction
assay'->'cytokine secretion assay'
```
Original issue reported on code.google.com by `chengqiong7@gmail.com` on 2 Feb 2015 at 5:59
| 1.0 | BAO Modeling: BAO 2.0 cytokine secretion - <a href="https://github.com/GoogleCodeExporter"><img src="https://avatars.githubusercontent.com/u/9614759?v=3" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [GoogleCodeExporter](https://github.com/GoogleCodeExporter)**
_Saturday May 09, 2015 at 11:32 GMT_
_Originally opened as https://github.com/linikujp/bioassayontology/issues/4_
----
```
cytokine secretion assay is repeated twice (Reported by Caty Chung on Sep 11,
2013 at 3:06 PM)
BAO_0003003 'cytokine secretion assay'
1) topBAOClass->'assay bioassay component'->bioassay->'signal transduction
assay'->'Cue Signal Response assay'->'cytokine secretion assay'
2) topBAOClass->'assay bioassay component'->bioassay->'signal transduction
assay'->'cytokine secretion assay'
```
Original issue reported on code.google.com by `chengqiong7@gmail.com` on 2 Feb 2015 at 5:59
| defect | bao modeling bao cytokine secretion issue by saturday may at gmt originally opened as cytokine secretion assay is repeated twice reported by caty chung on sep at pm bao cytokine secretion assay topbaoclass assay bioassay component bioassay signal transduction assay cue signal response assay cytokine secretion assay topbaoclass assay bioassay component bioassay signal transduction assay cytokine secretion assay original issue reported on code google com by gmail com on feb at | 1 |
161,196 | 13,807,776,404 | IssuesEvent | 2020-10-11 23:49:58 | matplotlib/matplotlib | https://api.github.com/repos/matplotlib/matplotlib | opened | Logo Usage Guidelines | Documentation | <!--To help us understand and resolve your issue, please fill out the form to the best of your ability.-->
<!--You can feel free to delete the sections that do not apply.-->
### Problem
Every once in a while get folks asking if they can put the Matplotlib logo on a tutorial or something and I keep forgetting what the answer is and it'd be useful to have that officially documented, preferably with PNG & SVG versions of the short & long logos.
Pandas has a good example of this sort of page, which they add onto their citation page
https://pandas.pydata.org/about/citing.html
<!--
If you are referencing an existing piece of documentation or example please provide a link.
* I found [...] to be unclear because [...]
* [...] made me think that [...] when really it should be [...]
* There is no example showing how to do [...]
-->
### Suggested Improvement
<!--
If you have an idea to improve the documentation please suggest it here
* This line should be be changed to say [...]
* Include a paragraph explaining [...]
* Add a figure showing [...]
-->
| 1.0 | Logo Usage Guidelines - <!--To help us understand and resolve your issue, please fill out the form to the best of your ability.-->
<!--You can feel free to delete the sections that do not apply.-->
### Problem
Every once in a while get folks asking if they can put the Matplotlib logo on a tutorial or something and I keep forgetting what the answer is and it'd be useful to have that officially documented, preferably with PNG & SVG versions of the short & long logos.
Pandas has a good example of this sort of page, which they add onto their citation page
https://pandas.pydata.org/about/citing.html
<!--
If you are referencing an existing piece of documentation or example please provide a link.
* I found [...] to be unclear because [...]
* [...] made me think that [...] when really it should be [...]
* There is no example showing how to do [...]
-->
### Suggested Improvement
<!--
If you have an idea to improve the documentation please suggest it here
* This line should be be changed to say [...]
* Include a paragraph explaining [...]
* Add a figure showing [...]
-->
| non_defect | logo usage guidelines problem every once in a while get folks asking if they can put the matplotlib logo on a tutorial or something and i keep forgetting what the answer is and it d be useful to have that officially documented preferably with png svg versions of the short long logos pandas has a good example of this sort of page which they add onto their citation page if you are referencing an existing piece of documentation or example please provide a link i found to be unclear because made me think that when really it should be there is no example showing how to do suggested improvement if you have an idea to improve the documentation please suggest it here this line should be be changed to say include a paragraph explaining add a figure showing | 0 |
1,216 | 2,601,760,074 | IssuesEvent | 2015-02-24 00:34:43 | chrsmith/bwapi | https://api.github.com/repos/chrsmith/bwapi | closed | Won't autorestart with no GUI | auto-migrated Priority-High Type-Defect Usability | ```
What steps will reproduce the problem?
1. Create a UMS map Red (Human) vs Blue (Computer), whereby units owned by both
players are automatically ordered to fight in the middle of the map. If created
properly, it will always end in either victory or defeat after a while.
2. In bwapi.ini, set the map, and set it to auto restart.
3. Create a custom AI module which only sets the local speed to 0 and disables
the GUI.
What is the expected output? What do you see instead?
The map should autorestart indefinitely. However, when the GUI is disabled, the
score screen will not appear automatically at the end of the scenario. What
happens is that the Victory/Defeat popup that appears at the end of the
scenario does not get "pressed". While I am unable to see the popup due to no
gui, by pressing Enter I can invoke it to go to score screen and continue.
This does not happen when the GUI is enabled.
What version of the product are you using? On what operating system?
BWAPI 3.4 (RELEASE), ChaosLauncher 0.5.3, SC 1.6.1
Please provide any additional information below.
```
-----
Original issue reported on code.google.com by `nasr...@gmail.com` on 7 Jan 2011 at 2:16 | 1.0 | Won't autorestart with no GUI - ```
What steps will reproduce the problem?
1. Create a UMS map Red (Human) vs Blue (Computer), whereby units owned by both
players are automatically ordered to fight in the middle of the map. If created
properly, it will always end in either victory or defeat after a while.
2. In bwapi.ini, set the map, and set it to auto restart.
3. Create a custom AI module which only sets the local speed to 0 and disables
the GUI.
What is the expected output? What do you see instead?
The map should autorestart indefinitely. However, when the GUI is disabled, the
score screen will not appear automatically at the end of the scenario. What
happens is that the Victory/Defeat popup that appears at the end of the
scenario does not get "pressed". While I am unable to see the popup due to no
gui, by pressing Enter I can invoke it to go to score screen and continue.
This does not happen when the GUI is enabled.
What version of the product are you using? On what operating system?
BWAPI 3.4 (RELEASE), ChaosLauncher 0.5.3, SC 1.6.1
Please provide any additional information below.
```
-----
Original issue reported on code.google.com by `nasr...@gmail.com` on 7 Jan 2011 at 2:16 | defect | won t autorestart with no gui what steps will reproduce the problem create a ums map red human vs blue computer whereby units owned by both players are automatically ordered to fight in the middle of the map if created properly it will always end in either victory or defeat after a while in bwapi ini set the map and set it to auto restart create a custom ai module which only sets the local speed to and disables the gui what is the expected output what do you see instead the map should autorestart indefinitely however when the gui is disabled the score screen will not appear automatically at the end of the scenario what happens is that the victory defeat popup that appears at the end of the scenario does not get pressed while i am unable to see the popup due to no gui by pressing enter i can invoke it to go to score screen and continue this does not happen when the gui is enabled what version of the product are you using on what operating system bwapi release chaoslauncher sc please provide any additional information below original issue reported on code google com by nasr gmail com on jan at | 1 |
63,747 | 17,912,746,785 | IssuesEvent | 2021-09-09 07:53:26 | jOOQ/jOOQ | https://api.github.com/repos/jOOQ/jOOQ | closed | BIT_AND_AGG(), BIT_OR_AGG() emulations shouldn't use bind values | T: Defect C: Functionality P: Medium R: Fixed E: All Editions | The emulations of the bitwise aggregate functions seem to be using bind values instead of inline values in their expressions:

There's no reason not to inline those particular values. Some values are already inlined as can be seen above. | 1.0 | BIT_AND_AGG(), BIT_OR_AGG() emulations shouldn't use bind values - The emulations of the bitwise aggregate functions seem to be using bind values instead of inline values in their expressions:

There's no reason not to inline those particular values. Some values are already inlined as can be seen above. | defect | bit and agg bit or agg emulations shouldn t use bind values the emulations of the bitwise aggregate functions seem to be using bind values instead of inline values in their expressions there s no reason not to inline those particular values some values are already inlined as can be seen above | 1 |
206,370 | 23,380,551,049 | IssuesEvent | 2022-08-11 09:03:19 | nexmo-community/php-conference-call | https://api.github.com/repos/nexmo-community/php-conference-call | opened | nexmo/client-1.7.0: 6 vulnerabilities (highest severity is: 8.1) | security vulnerability | <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>nexmo/client-1.7.0</b></p></summary>
<p></p>
<p>
<p>Found in HEAD commit: <a href="https://github.com/nexmo-community/php-conference-call/commit/68bcebf652e2fcf38fac916fe6f8a1d4a04894d9">68bcebf652e2fcf38fac916fe6f8a1d4a04894d9</a></p></details>
## Vulnerabilities
| CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in | Remediation Available |
| ------------- | ------------- | ----- | ----- | ----- | --- | --- |
| [CVE-2022-29248](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-29248) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 8.1 | guzzlehttp/guzzle-6.3.3 | Transitive | N/A | ❌ |
| [CVE-2022-31091](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-31091) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.7 | guzzlehttp/guzzle-6.3.3 | Transitive | N/A | ❌ |
| [CVE-2022-31043](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-31043) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | guzzlehttp/guzzle-6.3.3 | Transitive | N/A | ❌ |
| [CVE-2022-31042](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-31042) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | guzzlehttp/guzzle-6.3.3 | Transitive | N/A | ❌ |
| [CVE-2022-31090](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-31090) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.5 | guzzlehttp/guzzle-6.3.3 | Transitive | N/A | ❌ |
| [CVE-2021-41106](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-41106) | <img src='https://whitesource-resources.whitesourcesoftware.com/low_vul.png' width=19 height=20> Low | 3.3 | lcobucci/jwt-3.2.5 | Transitive | N/A | ❌ |
## Details
<details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2022-29248</summary>
### Vulnerable Library - <b>guzzlehttp/guzzle-6.3.3</b></p>
<p>Guzzle, an extensible PHP HTTP client</p>
<p>
Dependency Hierarchy:
- nexmo/client-1.7.0 (Root Library)
- php-http/guzzle6-adapter-v1.1.1
- :x: **guzzlehttp/guzzle-6.3.3** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/nexmo-community/php-conference-call/commit/68bcebf652e2fcf38fac916fe6f8a1d4a04894d9">68bcebf652e2fcf38fac916fe6f8a1d4a04894d9</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
Guzzle is a PHP HTTP client. Guzzle prior to versions 6.5.6 and 7.4.3 contains a vulnerability with the cookie middleware. The vulnerability is that it is not checked if the cookie domain equals the domain of the server which sets the cookie via the Set-Cookie header, allowing a malicious server to set cookies for unrelated domains. The cookie middleware is disabled by default, so most library consumers will not be affected by this issue. Only those who manually add the cookie middleware to the handler stack or construct the client with ['cookies' => true] are affected. Moreover, those who do not use the same Guzzle client to call multiple domains and have disabled redirect forwarding are not affected by this vulnerability. Guzzle versions 6.5.6 and 7.4.3 contain a patch for this issue. As a workaround, turn off the cookie middleware.
<p>Publish Date: 2022-05-25
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-29248>CVE-2022-29248</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>8.1</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29248">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29248</a></p>
<p>Release Date: 2022-05-25</p>
<p>Fix Resolution: guzzlehttp/guzzle - 6.5.6,guzzlehttp/guzzle - 7.4.3</p>
</p>
<p></p>
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2022-31091</summary>
### Vulnerable Library - <b>guzzlehttp/guzzle-6.3.3</b></p>
<p>Guzzle, an extensible PHP HTTP client</p>
<p>
Dependency Hierarchy:
- nexmo/client-1.7.0 (Root Library)
- php-http/guzzle6-adapter-v1.1.1
- :x: **guzzlehttp/guzzle-6.3.3** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/nexmo-community/php-conference-call/commit/68bcebf652e2fcf38fac916fe6f8a1d4a04894d9">68bcebf652e2fcf38fac916fe6f8a1d4a04894d9</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
Guzzle, an extensible PHP HTTP client. `Authorization` and `Cookie` headers on requests are sensitive information. In affected versions on making a request which responds with a redirect to a URI with a different port, if we choose to follow it, we should remove the `Authorization` and `Cookie` headers from the request, before containing. Previously, we would only consider a change in host or scheme. Affected Guzzle 7 users should upgrade to Guzzle 7.4.5 as soon as possible. Affected users using any earlier series of Guzzle should upgrade to Guzzle 6.5.8 or 7.4.5. Note that a partial fix was implemented in Guzzle 7.4.2, where a change in host would trigger removal of the curl-added Authorization header, however this earlier fix did not cover change in scheme or change in port. An alternative approach would be to use your own redirect middleware, rather than ours, if you are unable to upgrade. If you do not require or expect redirects to be followed, one should simply disable redirects all together.
<p>Publish Date: 2022-06-27
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-31091>CVE-2022-31091</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>7.7</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-31091">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-31091</a></p>
<p>Release Date: 2022-06-27</p>
<p>Fix Resolution: 6.5.8,7.4.5</p>
</p>
<p></p>
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2022-31043</summary>
### Vulnerable Library - <b>guzzlehttp/guzzle-6.3.3</b></p>
<p>Guzzle, an extensible PHP HTTP client</p>
<p>
Dependency Hierarchy:
- nexmo/client-1.7.0 (Root Library)
- php-http/guzzle6-adapter-v1.1.1
- :x: **guzzlehttp/guzzle-6.3.3** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/nexmo-community/php-conference-call/commit/68bcebf652e2fcf38fac916fe6f8a1d4a04894d9">68bcebf652e2fcf38fac916fe6f8a1d4a04894d9</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
Guzzle is an open source PHP HTTP client. In affected versions `Authorization` headers on requests are sensitive information. On making a request using the `https` scheme to a server which responds with a redirect to a URI with the `http` scheme, we should not forward the `Authorization` header on. This is much the same as to how we don't forward on the header if the host changes. Prior to this fix, `https` to `http` downgrades did not result in the `Authorization` header being removed, only changes to the host. Affected Guzzle 7 users should upgrade to Guzzle 7.4.4 as soon as possible. Affected users using any earlier series of Guzzle should upgrade to Guzzle 6.5.7 or 7.4.4. Users unable to upgrade may consider an alternative approach which would be to use their own redirect middleware. Alternately users may simply disable redirects all together if redirects are not expected or required.
<p>Publish Date: 2022-06-10
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-31043>CVE-2022-31043</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>7.5</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/guzzle/guzzle/security/advisories/GHSA-w248-ffj2-4v5q">https://github.com/guzzle/guzzle/security/advisories/GHSA-w248-ffj2-4v5q</a></p>
<p>Release Date: 2022-06-10</p>
<p>Fix Resolution: 6.5.7,7.4.4</p>
</p>
<p></p>
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2022-31042</summary>
### Vulnerable Library - <b>guzzlehttp/guzzle-6.3.3</b></p>
<p>Guzzle, an extensible PHP HTTP client</p>
<p>
Dependency Hierarchy:
- nexmo/client-1.7.0 (Root Library)
- php-http/guzzle6-adapter-v1.1.1
- :x: **guzzlehttp/guzzle-6.3.3** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/nexmo-community/php-conference-call/commit/68bcebf652e2fcf38fac916fe6f8a1d4a04894d9">68bcebf652e2fcf38fac916fe6f8a1d4a04894d9</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
Guzzle is an open source PHP HTTP client. In affected versions the `Cookie` headers on requests are sensitive information. On making a request using the `https` scheme to a server which responds with a redirect to a URI with the `http` scheme, or on making a request to a server which responds with a redirect to a a URI to a different host, we should not forward the `Cookie` header on. Prior to this fix, only cookies that were managed by our cookie middleware would be safely removed, and any `Cookie` header manually added to the initial request would not be stripped. We now always strip it, and allow the cookie middleware to re-add any cookies that it deems should be there. Affected Guzzle 7 users should upgrade to Guzzle 7.4.4 as soon as possible. Affected users using any earlier series of Guzzle should upgrade to Guzzle 6.5.7 or 7.4.4. Users unable to upgrade may consider an alternative approach to use your own redirect middleware, rather than ours. If you do not require or expect redirects to be followed, one should simply disable redirects all together.
<p>Publish Date: 2022-06-10
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-31042>CVE-2022-31042</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>7.5</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/guzzle/guzzle/security/advisories/GHSA-f2wf-25xc-69c9">https://github.com/guzzle/guzzle/security/advisories/GHSA-f2wf-25xc-69c9</a></p>
<p>Release Date: 2022-06-10</p>
<p>Fix Resolution: 6.5.7,7.4.4</p>
</p>
<p></p>
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2022-31090</summary>
### Vulnerable Library - <b>guzzlehttp/guzzle-6.3.3</b></p>
<p>Guzzle, an extensible PHP HTTP client</p>
<p>
Dependency Hierarchy:
- nexmo/client-1.7.0 (Root Library)
- php-http/guzzle6-adapter-v1.1.1
- :x: **guzzlehttp/guzzle-6.3.3** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/nexmo-community/php-conference-call/commit/68bcebf652e2fcf38fac916fe6f8a1d4a04894d9">68bcebf652e2fcf38fac916fe6f8a1d4a04894d9</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
Guzzle, an extensible PHP HTTP client. `Authorization` headers on requests are sensitive information. In affected versions when using our Curl handler, it is possible to use the `CURLOPT_HTTPAUTH` option to specify an `Authorization` header. On making a request which responds with a redirect to a URI with a different origin (change in host, scheme or port), if we choose to follow it, we should remove the `CURLOPT_HTTPAUTH` option before continuing, stopping curl from appending the `Authorization` header to the new request. Affected Guzzle 7 users should upgrade to Guzzle 7.4.5 as soon as possible. Affected users using any earlier series of Guzzle should upgrade to Guzzle 6.5.8 or 7.4.5. Note that a partial fix was implemented in Guzzle 7.4.2, where a change in host would trigger removal of the curl-added Authorization header, however this earlier fix did not cover change in scheme or change in port. If you do not require or expect redirects to be followed, one should simply disable redirects all together. Alternatively, one can specify to use the Guzzle steam handler backend, rather than curl.
<p>Publish Date: 2022-06-27
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-31090>CVE-2022-31090</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>6.5</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/guzzle/guzzle/security/advisories/GHSA-25mq-v84q-4j7r">https://github.com/guzzle/guzzle/security/advisories/GHSA-25mq-v84q-4j7r</a></p>
<p>Release Date: 2022-05-19</p>
<p>Fix Resolution: 6.5.8,7.4.5</p>
</p>
<p></p>
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/low_vul.png' width=19 height=20> CVE-2021-41106</summary>
### Vulnerable Library - <b>lcobucci/jwt-3.2.5</b></p>
<p>A simple library to work with JSON Web Token and JSON Web Signature</p>
<p>Library home page: <a href="https://api.github.com/repos/lcobucci/jwt/zipball/82be04b4753f8b7693b62852b7eab30f97524f9b">https://api.github.com/repos/lcobucci/jwt/zipball/82be04b4753f8b7693b62852b7eab30f97524f9b</a></p>
<p>
Dependency Hierarchy:
- nexmo/client-1.7.0 (Root Library)
- :x: **lcobucci/jwt-3.2.5** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/nexmo-community/php-conference-call/commit/68bcebf652e2fcf38fac916fe6f8a1d4a04894d9">68bcebf652e2fcf38fac916fe6f8a1d4a04894d9</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
JWT is a library to work with JSON Web Token and JSON Web Signature. Prior to versions 3.4.6, 4.0.4, and 4.1.5, users of HMAC-based algorithms (HS256, HS384, and HS512) combined with `Lcobucci\JWT\Signer\Key\LocalFileReference` as key are having their tokens issued/validated using the file path as hashing key - instead of the contents. The HMAC hashing functions take any string as input and, since users can issue and validate tokens, users are lead to believe that everything works properly. Versions 3.4.6, 4.0.4, and 4.1.5 have been patched to always load the file contents, deprecated the `Lcobucci\JWT\Signer\Key\LocalFileReference`, and suggest `Lcobucci\JWT\Signer\Key\InMemory` as the alternative. As a workaround, use `Lcobucci\JWT\Signer\Key\InMemory` instead of `Lcobucci\JWT\Signer\Key\LocalFileReference` to create the instances of one's keys.
<p>Publish Date: 2021-09-28
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-41106>CVE-2021-41106</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>3.3</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: Low
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-41106">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-41106</a></p>
<p>Release Date: 2021-09-28</p>
<p>Fix Resolution: lcobucci/jwt - 3.4.6,4.0.4,4.1.5</p>
</p>
<p></p>
</details> | True | nexmo/client-1.7.0: 6 vulnerabilities (highest severity is: 8.1) - <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>nexmo/client-1.7.0</b></p></summary>
<p></p>
<p>
<p>Found in HEAD commit: <a href="https://github.com/nexmo-community/php-conference-call/commit/68bcebf652e2fcf38fac916fe6f8a1d4a04894d9">68bcebf652e2fcf38fac916fe6f8a1d4a04894d9</a></p></details>
## Vulnerabilities
| CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in | Remediation Available |
| ------------- | ------------- | ----- | ----- | ----- | --- | --- |
| [CVE-2022-29248](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-29248) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 8.1 | guzzlehttp/guzzle-6.3.3 | Transitive | N/A | ❌ |
| [CVE-2022-31091](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-31091) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.7 | guzzlehttp/guzzle-6.3.3 | Transitive | N/A | ❌ |
| [CVE-2022-31043](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-31043) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | guzzlehttp/guzzle-6.3.3 | Transitive | N/A | ❌ |
| [CVE-2022-31042](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-31042) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | guzzlehttp/guzzle-6.3.3 | Transitive | N/A | ❌ |
| [CVE-2022-31090](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-31090) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.5 | guzzlehttp/guzzle-6.3.3 | Transitive | N/A | ❌ |
| [CVE-2021-41106](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-41106) | <img src='https://whitesource-resources.whitesourcesoftware.com/low_vul.png' width=19 height=20> Low | 3.3 | lcobucci/jwt-3.2.5 | Transitive | N/A | ❌ |
## Details
<details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2022-29248</summary>
### Vulnerable Library - <b>guzzlehttp/guzzle-6.3.3</b></p>
<p>Guzzle, an extensible PHP HTTP client</p>
<p>
Dependency Hierarchy:
- nexmo/client-1.7.0 (Root Library)
- php-http/guzzle6-adapter-v1.1.1
- :x: **guzzlehttp/guzzle-6.3.3** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/nexmo-community/php-conference-call/commit/68bcebf652e2fcf38fac916fe6f8a1d4a04894d9">68bcebf652e2fcf38fac916fe6f8a1d4a04894d9</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
Guzzle is a PHP HTTP client. Guzzle prior to versions 6.5.6 and 7.4.3 contains a vulnerability with the cookie middleware. The vulnerability is that it is not checked if the cookie domain equals the domain of the server which sets the cookie via the Set-Cookie header, allowing a malicious server to set cookies for unrelated domains. The cookie middleware is disabled by default, so most library consumers will not be affected by this issue. Only those who manually add the cookie middleware to the handler stack or construct the client with ['cookies' => true] are affected. Moreover, those who do not use the same Guzzle client to call multiple domains and have disabled redirect forwarding are not affected by this vulnerability. Guzzle versions 6.5.6 and 7.4.3 contain a patch for this issue. As a workaround, turn off the cookie middleware.
<p>Publish Date: 2022-05-25
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-29248>CVE-2022-29248</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>8.1</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29248">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29248</a></p>
<p>Release Date: 2022-05-25</p>
<p>Fix Resolution: guzzlehttp/guzzle - 6.5.6,guzzlehttp/guzzle - 7.4.3</p>
</p>
<p></p>
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2022-31091</summary>
### Vulnerable Library - <b>guzzlehttp/guzzle-6.3.3</b></p>
<p>Guzzle, an extensible PHP HTTP client</p>
<p>
Dependency Hierarchy:
- nexmo/client-1.7.0 (Root Library)
- php-http/guzzle6-adapter-v1.1.1
- :x: **guzzlehttp/guzzle-6.3.3** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/nexmo-community/php-conference-call/commit/68bcebf652e2fcf38fac916fe6f8a1d4a04894d9">68bcebf652e2fcf38fac916fe6f8a1d4a04894d9</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
Guzzle, an extensible PHP HTTP client. `Authorization` and `Cookie` headers on requests are sensitive information. In affected versions on making a request which responds with a redirect to a URI with a different port, if we choose to follow it, we should remove the `Authorization` and `Cookie` headers from the request, before containing. Previously, we would only consider a change in host or scheme. Affected Guzzle 7 users should upgrade to Guzzle 7.4.5 as soon as possible. Affected users using any earlier series of Guzzle should upgrade to Guzzle 6.5.8 or 7.4.5. Note that a partial fix was implemented in Guzzle 7.4.2, where a change in host would trigger removal of the curl-added Authorization header, however this earlier fix did not cover change in scheme or change in port. An alternative approach would be to use your own redirect middleware, rather than ours, if you are unable to upgrade. If you do not require or expect redirects to be followed, one should simply disable redirects all together.
<p>Publish Date: 2022-06-27
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-31091>CVE-2022-31091</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>7.7</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-31091">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-31091</a></p>
<p>Release Date: 2022-06-27</p>
<p>Fix Resolution: 6.5.8,7.4.5</p>
</p>
<p></p>
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2022-31043</summary>
### Vulnerable Library - <b>guzzlehttp/guzzle-6.3.3</b></p>
<p>Guzzle, an extensible PHP HTTP client</p>
<p>
Dependency Hierarchy:
- nexmo/client-1.7.0 (Root Library)
- php-http/guzzle6-adapter-v1.1.1
- :x: **guzzlehttp/guzzle-6.3.3** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/nexmo-community/php-conference-call/commit/68bcebf652e2fcf38fac916fe6f8a1d4a04894d9">68bcebf652e2fcf38fac916fe6f8a1d4a04894d9</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
Guzzle is an open source PHP HTTP client. In affected versions `Authorization` headers on requests are sensitive information. On making a request using the `https` scheme to a server which responds with a redirect to a URI with the `http` scheme, we should not forward the `Authorization` header on. This is much the same as to how we don't forward on the header if the host changes. Prior to this fix, `https` to `http` downgrades did not result in the `Authorization` header being removed, only changes to the host. Affected Guzzle 7 users should upgrade to Guzzle 7.4.4 as soon as possible. Affected users using any earlier series of Guzzle should upgrade to Guzzle 6.5.7 or 7.4.4. Users unable to upgrade may consider an alternative approach which would be to use their own redirect middleware. Alternately users may simply disable redirects all together if redirects are not expected or required.
<p>Publish Date: 2022-06-10
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-31043>CVE-2022-31043</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>7.5</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/guzzle/guzzle/security/advisories/GHSA-w248-ffj2-4v5q">https://github.com/guzzle/guzzle/security/advisories/GHSA-w248-ffj2-4v5q</a></p>
<p>Release Date: 2022-06-10</p>
<p>Fix Resolution: 6.5.7,7.4.4</p>
</p>
<p></p>
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2022-31042</summary>
### Vulnerable Library - <b>guzzlehttp/guzzle-6.3.3</b></p>
<p>Guzzle, an extensible PHP HTTP client</p>
<p>
Dependency Hierarchy:
- nexmo/client-1.7.0 (Root Library)
- php-http/guzzle6-adapter-v1.1.1
- :x: **guzzlehttp/guzzle-6.3.3** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/nexmo-community/php-conference-call/commit/68bcebf652e2fcf38fac916fe6f8a1d4a04894d9">68bcebf652e2fcf38fac916fe6f8a1d4a04894d9</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
Guzzle is an open source PHP HTTP client. In affected versions the `Cookie` headers on requests are sensitive information. On making a request using the `https` scheme to a server which responds with a redirect to a URI with the `http` scheme, or on making a request to a server which responds with a redirect to a a URI to a different host, we should not forward the `Cookie` header on. Prior to this fix, only cookies that were managed by our cookie middleware would be safely removed, and any `Cookie` header manually added to the initial request would not be stripped. We now always strip it, and allow the cookie middleware to re-add any cookies that it deems should be there. Affected Guzzle 7 users should upgrade to Guzzle 7.4.4 as soon as possible. Affected users using any earlier series of Guzzle should upgrade to Guzzle 6.5.7 or 7.4.4. Users unable to upgrade may consider an alternative approach to use your own redirect middleware, rather than ours. If you do not require or expect redirects to be followed, one should simply disable redirects all together.
<p>Publish Date: 2022-06-10
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-31042>CVE-2022-31042</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>7.5</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/guzzle/guzzle/security/advisories/GHSA-f2wf-25xc-69c9">https://github.com/guzzle/guzzle/security/advisories/GHSA-f2wf-25xc-69c9</a></p>
<p>Release Date: 2022-06-10</p>
<p>Fix Resolution: 6.5.7,7.4.4</p>
</p>
<p></p>
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2022-31090</summary>
### Vulnerable Library - <b>guzzlehttp/guzzle-6.3.3</b></p>
<p>Guzzle, an extensible PHP HTTP client</p>
<p>
Dependency Hierarchy:
- nexmo/client-1.7.0 (Root Library)
- php-http/guzzle6-adapter-v1.1.1
- :x: **guzzlehttp/guzzle-6.3.3** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/nexmo-community/php-conference-call/commit/68bcebf652e2fcf38fac916fe6f8a1d4a04894d9">68bcebf652e2fcf38fac916fe6f8a1d4a04894d9</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
Guzzle, an extensible PHP HTTP client. `Authorization` headers on requests are sensitive information. In affected versions when using our Curl handler, it is possible to use the `CURLOPT_HTTPAUTH` option to specify an `Authorization` header. On making a request which responds with a redirect to a URI with a different origin (change in host, scheme or port), if we choose to follow it, we should remove the `CURLOPT_HTTPAUTH` option before continuing, stopping curl from appending the `Authorization` header to the new request. Affected Guzzle 7 users should upgrade to Guzzle 7.4.5 as soon as possible. Affected users using any earlier series of Guzzle should upgrade to Guzzle 6.5.8 or 7.4.5. Note that a partial fix was implemented in Guzzle 7.4.2, where a change in host would trigger removal of the curl-added Authorization header, however this earlier fix did not cover change in scheme or change in port. If you do not require or expect redirects to be followed, one should simply disable redirects all together. Alternatively, one can specify to use the Guzzle steam handler backend, rather than curl.
<p>Publish Date: 2022-06-27
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-31090>CVE-2022-31090</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>6.5</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/guzzle/guzzle/security/advisories/GHSA-25mq-v84q-4j7r">https://github.com/guzzle/guzzle/security/advisories/GHSA-25mq-v84q-4j7r</a></p>
<p>Release Date: 2022-05-19</p>
<p>Fix Resolution: 6.5.8,7.4.5</p>
</p>
<p></p>
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/low_vul.png' width=19 height=20> CVE-2021-41106</summary>
### Vulnerable Library - <b>lcobucci/jwt-3.2.5</b></p>
<p>A simple library to work with JSON Web Token and JSON Web Signature</p>
<p>Library home page: <a href="https://api.github.com/repos/lcobucci/jwt/zipball/82be04b4753f8b7693b62852b7eab30f97524f9b">https://api.github.com/repos/lcobucci/jwt/zipball/82be04b4753f8b7693b62852b7eab30f97524f9b</a></p>
<p>
Dependency Hierarchy:
- nexmo/client-1.7.0 (Root Library)
- :x: **lcobucci/jwt-3.2.5** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/nexmo-community/php-conference-call/commit/68bcebf652e2fcf38fac916fe6f8a1d4a04894d9">68bcebf652e2fcf38fac916fe6f8a1d4a04894d9</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
JWT is a library to work with JSON Web Token and JSON Web Signature. Prior to versions 3.4.6, 4.0.4, and 4.1.5, users of HMAC-based algorithms (HS256, HS384, and HS512) combined with `Lcobucci\JWT\Signer\Key\LocalFileReference` as key are having their tokens issued/validated using the file path as hashing key - instead of the contents. The HMAC hashing functions take any string as input and, since users can issue and validate tokens, users are lead to believe that everything works properly. Versions 3.4.6, 4.0.4, and 4.1.5 have been patched to always load the file contents, deprecated the `Lcobucci\JWT\Signer\Key\LocalFileReference`, and suggest `Lcobucci\JWT\Signer\Key\InMemory` as the alternative. As a workaround, use `Lcobucci\JWT\Signer\Key\InMemory` instead of `Lcobucci\JWT\Signer\Key\LocalFileReference` to create the instances of one's keys.
<p>Publish Date: 2021-09-28
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-41106>CVE-2021-41106</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>3.3</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: Low
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-41106">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-41106</a></p>
<p>Release Date: 2021-09-28</p>
<p>Fix Resolution: lcobucci/jwt - 3.4.6,4.0.4,4.1.5</p>
</p>
<p></p>
</details> | non_defect | nexmo client vulnerabilities highest severity is vulnerable library nexmo client found in head commit a href vulnerabilities cve severity cvss dependency type fixed in remediation available high guzzlehttp guzzle transitive n a high guzzlehttp guzzle transitive n a high guzzlehttp guzzle transitive n a high guzzlehttp guzzle transitive n a medium guzzlehttp guzzle transitive n a low lcobucci jwt transitive n a details cve vulnerable library guzzlehttp guzzle guzzle an extensible php http client dependency hierarchy nexmo client root library php http adapter x guzzlehttp guzzle vulnerable library found in head commit a href found in base branch main vulnerability details guzzle is a php http client guzzle prior to versions and contains a vulnerability with the cookie middleware the vulnerability is that it is not checked if the cookie domain equals the domain of the server which sets the cookie via the set cookie header allowing a malicious server to set cookies for unrelated domains the cookie middleware is disabled by default so most library consumers will not be affected by this issue only those who manually add the cookie middleware to the handler stack or construct the client with are affected moreover those who do not use the same guzzle client to call multiple domains and have disabled redirect forwarding are not affected by this vulnerability guzzle versions and contain a patch for this issue as a workaround turn off the cookie middleware publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact high integrity impact high availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution guzzlehttp guzzle guzzlehttp guzzle cve vulnerable library guzzlehttp guzzle guzzle an extensible php http client dependency hierarchy nexmo client root library php http adapter x guzzlehttp guzzle vulnerable library found in head commit a href found in base branch main vulnerability details guzzle an extensible php http client authorization and cookie headers on requests are sensitive information in affected versions on making a request which responds with a redirect to a uri with a different port if we choose to follow it we should remove the authorization and cookie headers from the request before containing previously we would only consider a change in host or scheme affected guzzle users should upgrade to guzzle as soon as possible affected users using any earlier series of guzzle should upgrade to guzzle or note that a partial fix was implemented in guzzle where a change in host would trigger removal of the curl added authorization header however this earlier fix did not cover change in scheme or change in port an alternative approach would be to use your own redirect middleware rather than ours if you are unable to upgrade if you do not require or expect redirects to be followed one should simply disable redirects all together publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required low user interaction none scope changed impact metrics confidentiality impact high integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution cve vulnerable library guzzlehttp guzzle guzzle an extensible php http client dependency hierarchy nexmo client root library php http adapter x guzzlehttp guzzle vulnerable library found in head commit a href found in base branch main vulnerability details guzzle is an open source php http client in affected versions authorization headers on requests are sensitive information on making a request using the https scheme to a server which responds with a redirect to a uri with the http scheme we should not forward the authorization header on this is much the same as to how we don t forward on the header if the host changes prior to this fix https to http downgrades did not result in the authorization header being removed only changes to the host affected guzzle users should upgrade to guzzle as soon as possible affected users using any earlier series of guzzle should upgrade to guzzle or users unable to upgrade may consider an alternative approach which would be to use their own redirect middleware alternately users may simply disable redirects all together if redirects are not expected or required publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution cve vulnerable library guzzlehttp guzzle guzzle an extensible php http client dependency hierarchy nexmo client root library php http adapter x guzzlehttp guzzle vulnerable library found in head commit a href found in base branch main vulnerability details guzzle is an open source php http client in affected versions the cookie headers on requests are sensitive information on making a request using the https scheme to a server which responds with a redirect to a uri with the http scheme or on making a request to a server which responds with a redirect to a a uri to a different host we should not forward the cookie header on prior to this fix only cookies that were managed by our cookie middleware would be safely removed and any cookie header manually added to the initial request would not be stripped we now always strip it and allow the cookie middleware to re add any cookies that it deems should be there affected guzzle users should upgrade to guzzle as soon as possible affected users using any earlier series of guzzle should upgrade to guzzle or users unable to upgrade may consider an alternative approach to use your own redirect middleware rather than ours if you do not require or expect redirects to be followed one should simply disable redirects all together publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution cve vulnerable library guzzlehttp guzzle guzzle an extensible php http client dependency hierarchy nexmo client root library php http adapter x guzzlehttp guzzle vulnerable library found in head commit a href found in base branch main vulnerability details guzzle an extensible php http client authorization headers on requests are sensitive information in affected versions when using our curl handler it is possible to use the curlopt httpauth option to specify an authorization header on making a request which responds with a redirect to a uri with a different origin change in host scheme or port if we choose to follow it we should remove the curlopt httpauth option before continuing stopping curl from appending the authorization header to the new request affected guzzle users should upgrade to guzzle as soon as possible affected users using any earlier series of guzzle should upgrade to guzzle or note that a partial fix was implemented in guzzle where a change in host would trigger removal of the curl added authorization header however this earlier fix did not cover change in scheme or change in port if you do not require or expect redirects to be followed one should simply disable redirects all together alternatively one can specify to use the guzzle steam handler backend rather than curl publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact high integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution cve vulnerable library lcobucci jwt a simple library to work with json web token and json web signature library home page a href dependency hierarchy nexmo client root library x lcobucci jwt vulnerable library found in head commit a href found in base branch main vulnerability details jwt is a library to work with json web token and json web signature prior to versions and users of hmac based algorithms and combined with lcobucci jwt signer key localfilereference as key are having their tokens issued validated using the file path as hashing key instead of the contents the hmac hashing functions take any string as input and since users can issue and validate tokens users are lead to believe that everything works properly versions and have been patched to always load the file contents deprecated the lcobucci jwt signer key localfilereference and suggest lcobucci jwt signer key inmemory as the alternative as a workaround use lcobucci jwt signer key inmemory instead of lcobucci jwt signer key localfilereference to create the instances of one s keys publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact none integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution lcobucci jwt | 0 |
109,803 | 16,892,151,327 | IssuesEvent | 2021-06-23 10:32:58 | epam/TimeBase | https://api.github.com/repos/epam/TimeBase | closed | CVE-2020-36187 (High) detected in jackson-databind-2.9.6.jar - autoclosed | security vulnerability | ## CVE-2020-36187 - 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.6.jar</b></p></summary>
<p>General data-binding functionality for Jackson: works on core streaming API</p>
<p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p>
<p>Path to dependency file: TimeBase/java/installer/build.gradle</p>
<p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.9.6/cfa4f316351a91bfd95cb0644c6a2c95f52db1fc/jackson-databind-2.9.6.jar</p>
<p>
Dependency Hierarchy:
- izpack-compiler-5.1.3.jar (Root Library)
- tika-parsers-1.19.jar
- :x: **jackson-databind-2.9.6.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/epam/TimeBase/commit/76d75f5eb2971c940ed61bb66cd24661abe01546">76d75f5eb2971c940ed61bb66cd24661abe01546</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
FasterXML jackson-databind 2.x before 2.9.10.8 mishandles the interaction between serialization gadgets and typing, related to org.apache.tomcat.dbcp.dbcp.datasources.SharedPoolDataSource.
<p>Publish Date: 2021-01-06
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-36187>CVE-2020-36187</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/FasterXML/jackson-databind/issues/2997">https://github.com/FasterXML/jackson-databind/issues/2997</a></p>
<p>Release Date: 2021-01-06</p>
<p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.9.10.8</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"com.fasterxml.jackson.core","packageName":"jackson-databind","packageVersion":"2.9.6","packageFilePaths":["/java/installer/build.gradle"],"isTransitiveDependency":true,"dependencyTree":"org.codehaus.izpack:izpack-compiler:5.1.3;org.apache.tika:tika-parsers:1.19;com.fasterxml.jackson.core:jackson-databind:2.9.6","isMinimumFixVersionAvailable":true,"minimumFixVersion":"com.fasterxml.jackson.core:jackson-databind:2.9.10.8"}],"baseBranches":["main"],"vulnerabilityIdentifier":"CVE-2020-36187","vulnerabilityDetails":"FasterXML jackson-databind 2.x before 2.9.10.8 mishandles the interaction between serialization gadgets and typing, related to org.apache.tomcat.dbcp.dbcp.datasources.SharedPoolDataSource.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-36187","cvss3Severity":"high","cvss3Score":"8.1","cvss3Metrics":{"A":"High","AC":"High","PR":"None","S":"Unchanged","C":"High","UI":"None","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> --> | True | CVE-2020-36187 (High) detected in jackson-databind-2.9.6.jar - autoclosed - ## CVE-2020-36187 - 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.6.jar</b></p></summary>
<p>General data-binding functionality for Jackson: works on core streaming API</p>
<p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p>
<p>Path to dependency file: TimeBase/java/installer/build.gradle</p>
<p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.9.6/cfa4f316351a91bfd95cb0644c6a2c95f52db1fc/jackson-databind-2.9.6.jar</p>
<p>
Dependency Hierarchy:
- izpack-compiler-5.1.3.jar (Root Library)
- tika-parsers-1.19.jar
- :x: **jackson-databind-2.9.6.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/epam/TimeBase/commit/76d75f5eb2971c940ed61bb66cd24661abe01546">76d75f5eb2971c940ed61bb66cd24661abe01546</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
FasterXML jackson-databind 2.x before 2.9.10.8 mishandles the interaction between serialization gadgets and typing, related to org.apache.tomcat.dbcp.dbcp.datasources.SharedPoolDataSource.
<p>Publish Date: 2021-01-06
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-36187>CVE-2020-36187</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/FasterXML/jackson-databind/issues/2997">https://github.com/FasterXML/jackson-databind/issues/2997</a></p>
<p>Release Date: 2021-01-06</p>
<p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.9.10.8</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"com.fasterxml.jackson.core","packageName":"jackson-databind","packageVersion":"2.9.6","packageFilePaths":["/java/installer/build.gradle"],"isTransitiveDependency":true,"dependencyTree":"org.codehaus.izpack:izpack-compiler:5.1.3;org.apache.tika:tika-parsers:1.19;com.fasterxml.jackson.core:jackson-databind:2.9.6","isMinimumFixVersionAvailable":true,"minimumFixVersion":"com.fasterxml.jackson.core:jackson-databind:2.9.10.8"}],"baseBranches":["main"],"vulnerabilityIdentifier":"CVE-2020-36187","vulnerabilityDetails":"FasterXML jackson-databind 2.x before 2.9.10.8 mishandles the interaction between serialization gadgets and typing, related to org.apache.tomcat.dbcp.dbcp.datasources.SharedPoolDataSource.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-36187","cvss3Severity":"high","cvss3Score":"8.1","cvss3Metrics":{"A":"High","AC":"High","PR":"None","S":"Unchanged","C":"High","UI":"None","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> --> | non_defect | cve high detected in jackson databind jar autoclosed 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 timebase java installer build gradle path to vulnerable library home wss scanner gradle caches modules files com fasterxml jackson core jackson databind jackson databind jar dependency hierarchy izpack compiler jar root library tika parsers jar x jackson databind jar vulnerable library found in head commit a href found in base branch main vulnerability details fasterxml jackson databind x before mishandles the interaction between serialization gadgets and typing related to org apache tomcat dbcp dbcp datasources sharedpooldatasource publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution com fasterxml jackson core jackson databind isopenpronvulnerability false ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree org codehaus izpack izpack compiler org apache tika tika parsers com fasterxml jackson core jackson databind isminimumfixversionavailable true minimumfixversion com fasterxml jackson core jackson databind basebranches vulnerabilityidentifier cve vulnerabilitydetails fasterxml jackson databind x before mishandles the interaction between serialization gadgets and typing related to org apache tomcat dbcp dbcp datasources sharedpooldatasource vulnerabilityurl | 0 |
5,488 | 2,610,188,608 | IssuesEvent | 2015-02-26 18:59:45 | chrsmith/quchuseban | https://api.github.com/repos/chrsmith/quchuseban | opened | 解读色斑怎样才能治疗好 | auto-migrated Priority-Medium Type-Defect | ```
《摘要》
我不知道它从哪里来,要到哪里去,也不知道它因何而来,��
�何而去。时光的隧道里,它存在了千年,亦穿越了千年。期�
��的冷暖,个中的磨难,无论是深重,还是沧桑,都由它独自
承担。宛若前世预约的邂逅,只消一个照面,便刻在心尖,��
�此相互缠绕,相依相偎,彼此的世界都不再孤单。风起的日�
��,静静聆听它的浅吟低唱,风落的日子,默默细数风过的划
痕。任微风撩起岁月的裙幔,趟过飘香的温暖,漫过飞雪的��
�寒,直至生命烟消云散。但是岁月的脚步,真的无法更改吗�
��脸上的雀斑真的无法去除吗!色斑怎样才能治疗好,
《客户案例》
我是一位平面模特,形象对我来说很重要,我们就是靠��
�个来使用饭的,所以黄褐斑在脸上冒出来时我急都急死了。�
��段时间,一直在为试镜而不停地忙碌。最后,事业上有了一
点成就,但是自己却长了满脸的斑。这些斑对于我来说是致��
�的打击,搞不好就因为它们我这几年辛苦树立的形象就给毁�
��。我是绝不会允许这样的事情发生的。我要去掉这些斑,回
复白皙得肌肤。</br>
来在和同事聊天时,同事告诉我,她的一个朋友前段时��
�在网上买的一个祛斑产品效果挺不错的,说是什么黛芙薇尔�
��也让我上网搜搜看看,上网查找,我搜到了黛芙薇尔的官网
,开始看他们的网站,网站介绍的还可以,还有还多人都从��
�受益了,但现在网络广告太多了,我还是不敢完全相信,我�
��在线咨询了他们的客服,他们的客服给我分析了我的斑状况
,说我的情况可以使用他们的产品,效果是不错的,可以把��
�淡化的和皮肤一样的颜色,让我先购买一周期试试,祛斑的�
��切,我就购买了一周期的黛芙薇尔。</br>
使用一个星期后,色斑渐退,心情也开始变的好了,感��
�身体好多了,血流速度好像是加快了一样,做事也有气力了�
��两个周期后,色斑的边界变的模糊了,颜色也淡化了很多,
除了每天使用两次黛芙薇尔外,我还坚持每天做精油,再有��
�个周期斑就看不到了,真是开心!!
阅读了色斑怎样才能治疗好,再看脸上容易长斑的原因:
《色斑形成原因》
内部因素
一、压力
当人受到压力时,就会分泌肾上腺素,为对付压力而做��
�备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏�
��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃
。
二、荷尔蒙分泌失调
避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞��
�分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在�
��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕
中因女性荷尔蒙雌激素的增加,从怀孕4—5个月开始会容易出
现斑,这时候出现的斑点在产后大部分会消失。可是,新陈��
�谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等�
��因,都会使斑加深。有时新长出的斑,产后也不会消失,所
以需要更加注意。
三、新陈代谢缓慢
肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑��
�因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态�
��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是
内分泌失调导致过敏体质而形成的。另外,身体状态不正常��
�时候,紫外线的照射也会加速斑的形成。
四、错误的使用化妆品
使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在��
�疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵�
��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的
问题。
外部因素
一、紫外线
照射紫外线的时候,人体为了保护皮肤,会在基底层产��
�很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更�
��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化,
还会引起黑斑、雀斑等色素沉着的皮肤疾患。
二、不良的清洁习惯
因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。��
�皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦�
��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的
问题。
三、遗传基因
父母中有长斑的,则本人长斑的概率就很高,这种情况��
�一定程度上就可判定是遗传基因的作用。所以家里特别是长�
��有长斑的人,要注意避免引发长斑的重要因素之一——紫外
线照射,这是预防斑必须注意的。
《有疑问帮你解决》
1,黛芙薇尔精华液真的有效果吗?真的可以把脸上的黄褐��
�去掉吗?
答:黛芙薇尔精华液DNA精华能够有效的修复周围难以触��
�的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必�
��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑
,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时��
�,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的�
��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显
而易见。自产品上市以来,老顾客纷纷介绍新顾客,71%的新��
�客都是通过老顾客介绍而来,口碑由此而来!
2,服用黛芙薇尔美白,会伤身体吗?有副作用吗?
答:黛芙薇尔精华液应用了精纯复合配方和领先的分类��
�斑科技,并将“DNA美肤系统”疗法应用到了该产品中,能彻�
��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有
效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾��
�地的专家通力协作,超过10年的研究以全新的DNA肌肤修复技��
�,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽�
��迹,令每一位爱美的女性都能享受到科技创新所带来的自然
之美。
专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数��
�百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖!
3,去除黄褐斑之后,会反弹吗?
答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔��
�白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家�
��据斑的形成原因精心研制而成用事实说话,让消费者打分。
树立权威品牌!我们的很多新客户都是老客户介绍而来,请问�
��如果效果不好,会有客户转介绍吗?
4,你们的价格有点贵,能不能便宜一点?
答:如果您使用西药最少需要2000元,煎服的药最少需要3
000元,做手术最少是5000元,而这些毫无疑问,不会对彻底去�
��你的斑点有任何帮助!一分价钱,一份价值,我们现在做的��
�是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的�
��褐斑彻底去除,你还会觉得贵吗?你还会再去花那么多冤枉��
�,不但斑没去掉,还把自己的皮肤弄的越来越糟吗
5,我适合用黛芙薇尔精华液吗?
答:黛芙薇尔适用人群:
1、生理紊乱引起的黄褐斑人群
2、生育引起的妊娠斑人群
3、年纪增长引起的老年斑人群
4、化妆品色素沉积、辐射斑人群
5、长期日照引起的日晒斑人群
6、肌肤暗淡急需美白的人群
《祛斑小方法》
色斑怎样才能治疗好,同时为您分享祛斑小方法
做法:将苹果去皮切块捣泥。
用法:将苹果泥均匀敷在面部,然后盖上面膜纸,15-20分
钟后用清水洗干净;隔天一次,一个疗程为20天。
苹果适合所有肤质使用的保养品,具有使皮肤细滑、滋润��
�白腻的作用,还可消除皮肤雀斑、黑斑等症状。
```
-----
Original issue reported on code.google.com by `additive...@gmail.com` on 1 Jul 2014 at 4:30 | 1.0 | 解读色斑怎样才能治疗好 - ```
《摘要》
我不知道它从哪里来,要到哪里去,也不知道它因何而来,��
�何而去。时光的隧道里,它存在了千年,亦穿越了千年。期�
��的冷暖,个中的磨难,无论是深重,还是沧桑,都由它独自
承担。宛若前世预约的邂逅,只消一个照面,便刻在心尖,��
�此相互缠绕,相依相偎,彼此的世界都不再孤单。风起的日�
��,静静聆听它的浅吟低唱,风落的日子,默默细数风过的划
痕。任微风撩起岁月的裙幔,趟过飘香的温暖,漫过飞雪的��
�寒,直至生命烟消云散。但是岁月的脚步,真的无法更改吗�
��脸上的雀斑真的无法去除吗!色斑怎样才能治疗好,
《客户案例》
我是一位平面模特,形象对我来说很重要,我们就是靠��
�个来使用饭的,所以黄褐斑在脸上冒出来时我急都急死了。�
��段时间,一直在为试镜而不停地忙碌。最后,事业上有了一
点成就,但是自己却长了满脸的斑。这些斑对于我来说是致��
�的打击,搞不好就因为它们我这几年辛苦树立的形象就给毁�
��。我是绝不会允许这样的事情发生的。我要去掉这些斑,回
复白皙得肌肤。</br>
来在和同事聊天时,同事告诉我,她的一个朋友前段时��
�在网上买的一个祛斑产品效果挺不错的,说是什么黛芙薇尔�
��也让我上网搜搜看看,上网查找,我搜到了黛芙薇尔的官网
,开始看他们的网站,网站介绍的还可以,还有还多人都从��
�受益了,但现在网络广告太多了,我还是不敢完全相信,我�
��在线咨询了他们的客服,他们的客服给我分析了我的斑状况
,说我的情况可以使用他们的产品,效果是不错的,可以把��
�淡化的和皮肤一样的颜色,让我先购买一周期试试,祛斑的�
��切,我就购买了一周期的黛芙薇尔。</br>
使用一个星期后,色斑渐退,心情也开始变的好了,感��
�身体好多了,血流速度好像是加快了一样,做事也有气力了�
��两个周期后,色斑的边界变的模糊了,颜色也淡化了很多,
除了每天使用两次黛芙薇尔外,我还坚持每天做精油,再有��
�个周期斑就看不到了,真是开心!!
阅读了色斑怎样才能治疗好,再看脸上容易长斑的原因:
《色斑形成原因》
内部因素
一、压力
当人受到压力时,就会分泌肾上腺素,为对付压力而做��
�备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏�
��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃
。
二、荷尔蒙分泌失调
避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞��
�分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在�
��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕
中因女性荷尔蒙雌激素的增加,从怀孕4—5个月开始会容易出
现斑,这时候出现的斑点在产后大部分会消失。可是,新陈��
�谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等�
��因,都会使斑加深。有时新长出的斑,产后也不会消失,所
以需要更加注意。
三、新陈代谢缓慢
肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑��
�因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态�
��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是
内分泌失调导致过敏体质而形成的。另外,身体状态不正常��
�时候,紫外线的照射也会加速斑的形成。
四、错误的使用化妆品
使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在��
�疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵�
��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的
问题。
外部因素
一、紫外线
照射紫外线的时候,人体为了保护皮肤,会在基底层产��
�很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更�
��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化,
还会引起黑斑、雀斑等色素沉着的皮肤疾患。
二、不良的清洁习惯
因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。��
�皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦�
��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的
问题。
三、遗传基因
父母中有长斑的,则本人长斑的概率就很高,这种情况��
�一定程度上就可判定是遗传基因的作用。所以家里特别是长�
��有长斑的人,要注意避免引发长斑的重要因素之一——紫外
线照射,这是预防斑必须注意的。
《有疑问帮你解决》
1,黛芙薇尔精华液真的有效果吗?真的可以把脸上的黄褐��
�去掉吗?
答:黛芙薇尔精华液DNA精华能够有效的修复周围难以触��
�的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必�
��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑
,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时��
�,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的�
��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显
而易见。自产品上市以来,老顾客纷纷介绍新顾客,71%的新��
�客都是通过老顾客介绍而来,口碑由此而来!
2,服用黛芙薇尔美白,会伤身体吗?有副作用吗?
答:黛芙薇尔精华液应用了精纯复合配方和领先的分类��
�斑科技,并将“DNA美肤系统”疗法应用到了该产品中,能彻�
��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有
效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾��
�地的专家通力协作,超过10年的研究以全新的DNA肌肤修复技��
�,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽�
��迹,令每一位爱美的女性都能享受到科技创新所带来的自然
之美。
专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数��
�百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖!
3,去除黄褐斑之后,会反弹吗?
答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔��
�白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家�
��据斑的形成原因精心研制而成用事实说话,让消费者打分。
树立权威品牌!我们的很多新客户都是老客户介绍而来,请问�
��如果效果不好,会有客户转介绍吗?
4,你们的价格有点贵,能不能便宜一点?
答:如果您使用西药最少需要2000元,煎服的药最少需要3
000元,做手术最少是5000元,而这些毫无疑问,不会对彻底去�
��你的斑点有任何帮助!一分价钱,一份价值,我们现在做的��
�是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的�
��褐斑彻底去除,你还会觉得贵吗?你还会再去花那么多冤枉��
�,不但斑没去掉,还把自己的皮肤弄的越来越糟吗
5,我适合用黛芙薇尔精华液吗?
答:黛芙薇尔适用人群:
1、生理紊乱引起的黄褐斑人群
2、生育引起的妊娠斑人群
3、年纪增长引起的老年斑人群
4、化妆品色素沉积、辐射斑人群
5、长期日照引起的日晒斑人群
6、肌肤暗淡急需美白的人群
《祛斑小方法》
色斑怎样才能治疗好,同时为您分享祛斑小方法
做法:将苹果去皮切块捣泥。
用法:将苹果泥均匀敷在面部,然后盖上面膜纸,15-20分
钟后用清水洗干净;隔天一次,一个疗程为20天。
苹果适合所有肤质使用的保养品,具有使皮肤细滑、滋润��
�白腻的作用,还可消除皮肤雀斑、黑斑等症状。
```
-----
Original issue reported on code.google.com by `additive...@gmail.com` on 1 Jul 2014 at 4:30 | defect | 解读色斑怎样才能治疗好 《摘要》 我不知道它从哪里来,要到哪里去,也不知道它因何而来,�� �何而去。时光的隧道里,它存在了千年,亦穿越了千年。期� ��的冷暖,个中的磨难,无论是深重,还是沧桑,都由它独自 承担。宛若前世预约的邂逅,只消一个照面,便刻在心尖,�� �此相互缠绕,相依相偎,彼此的世界都不再孤单。风起的日� ��,静静聆听它的浅吟低唱,风落的日子,默默细数风过的划 痕。任微风撩起岁月的裙幔,趟过飘香的温暖,漫过飞雪的�� �寒,直至生命烟消云散。但是岁月的脚步,真的无法更改吗� ��脸上的雀斑真的无法去除吗!色斑怎样才能治疗好, 《客户案例》 我是一位平面模特,形象对我来说很重要,我们就是靠�� �个来使用饭的,所以黄褐斑在脸上冒出来时我急都急死了。� ��段时间,一直在为试镜而不停地忙碌。最后,事业上有了一 点成就,但是自己却长了满脸的斑。这些斑对于我来说是致�� �的打击,搞不好就因为它们我这几年辛苦树立的形象就给毁� ��。我是绝不会允许这样的事情发生的。我要去掉这些斑,回 复白皙得肌肤。 来在和同事聊天时,同事告诉我,她的一个朋友前段时�� �在网上买的一个祛斑产品效果挺不错的,说是什么黛芙薇尔� ��也让我上网搜搜看看,上网查找,我搜到了黛芙薇尔的官网 ,开始看他们的网站,网站介绍的还可以,还有还多人都从�� �受益了,但现在网络广告太多了,我还是不敢完全相信,我� ��在线咨询了他们的客服,他们的客服给我分析了我的斑状况 ,说我的情况可以使用他们的产品,效果是不错的,可以把�� �淡化的和皮肤一样的颜色,让我先购买一周期试试,祛斑的� ��切,我就购买了一周期的黛芙薇尔。 使用一个星期后,色斑渐退,心情也开始变的好了,感�� �身体好多了,血流速度好像是加快了一样,做事也有气力了� ��两个周期后,色斑的边界变的模糊了,颜色也淡化了很多, 除了每天使用两次黛芙薇尔外,我还坚持每天做精油,再有�� �个周期斑就看不到了,真是开心 阅读了色斑怎样才能治疗好,再看脸上容易长斑的原因: 《色斑形成原因》 内部因素 一、压力 当人受到压力时,就会分泌肾上腺素,为对付压力而做�� �备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏� ��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃 。 二、荷尔蒙分泌失调 避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞�� �分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在� ��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕 中因女性荷尔蒙雌激素的增加, — 现斑,这时候出现的斑点在产后大部分会消失。可是,新陈�� �谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等� ��因,都会使斑加深。有时新长出的斑,产后也不会消失,所 以需要更加注意。 三、新陈代谢缓慢 肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑�� �因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态� ��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是 内分泌失调导致过敏体质而形成的。另外,身体状态不正常�� �时候,紫外线的照射也会加速斑的形成。 四、错误的使用化妆品 使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在�� �疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵� ��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的 问题。 外部因素 一、紫外线 照射紫外线的时候,人体为了保护皮肤,会在基底层产�� �很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更� ��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化, 还会引起黑斑、雀斑等色素沉着的皮肤疾患。 二、不良的清洁习惯 因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。�� �皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦� ��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的 问题。 三、遗传基因 父母中有长斑的,则本人长斑的概率就很高,这种情况�� �一定程度上就可判定是遗传基因的作用。所以家里特别是长� ��有长斑的人,要注意避免引发长斑的重要因素之一——紫外 线照射,这是预防斑必须注意的。 《有疑问帮你解决》 黛芙薇尔精华液真的有效果吗 真的可以把脸上的黄褐�� �去掉吗 答:黛芙薇尔精华液dna精华能够有效的修复周围难以触�� �的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必� ��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑 ,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时�� �,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的� ��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显 而易见。自产品上市以来,老顾客纷纷介绍新顾客, 的新�� �客都是通过老顾客介绍而来,口碑由此而来 ,服用黛芙薇尔美白,会伤身体吗 有副作用吗 答:黛芙薇尔精华液应用了精纯复合配方和领先的分类�� �斑科技,并将“dna美肤系统”疗法应用到了该产品中,能彻� ��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有 效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾�� �地的专家通力协作, �� �,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽� ��迹,令每一位爱美的女性都能享受到科技创新所带来的自然 之美。 专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数�� �百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖 ,去除黄褐斑之后,会反弹吗 答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔�� �白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家� ��据斑的形成原因精心研制而成用事实说话,让消费者打分。 树立权威品牌 我们的很多新客户都是老客户介绍而来,请问� ��如果效果不好,会有客户转介绍吗 ,你们的价格有点贵,能不能便宜一点 答: , , ,而这些毫无疑问,不会对彻底去� ��你的斑点有任何帮助 一分价钱,一份价值,我们现在做的�� �是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的� ��褐斑彻底去除,你还会觉得贵吗 你还会再去花那么多冤枉�� �,不但斑没去掉,还把自己的皮肤弄的越来越糟吗 ,我适合用黛芙薇尔精华液吗 答:黛芙薇尔适用人群: 、生理紊乱引起的黄褐斑人群 、生育引起的妊娠斑人群 、年纪增长引起的老年斑人群 、化妆品色素沉积、辐射斑人群 、长期日照引起的日晒斑人群 、肌肤暗淡急需美白的人群 《祛斑小方法》 色斑怎样才能治疗好,同时为您分享祛斑小方法 做法:将苹果去皮切块捣泥。 用法:将苹果泥均匀敷在面部,然后盖上面膜纸, 钟后用清水洗干净 隔天一次, 。 苹果适合所有肤质使用的保养品,具有使皮肤细滑、滋润�� �白腻的作用,还可消除皮肤雀斑、黑斑等症状。 original issue reported on code google com by additive gmail com on jul at | 1 |
59,162 | 14,532,972,542 | IssuesEvent | 2020-12-14 23:29:16 | hashicorp/terraform-provider-aws | https://api.github.com/repos/hashicorp/terraform-provider-aws | closed | aws_imagebuilder_image_recipe ebs kms_key_id should allow KMS Key Aliases | service/imagebuilder | <!---
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/backends/index.html) issues
* [Provisioner](https://www.terraform.io/docs/provisioners/index.html) issues
* [Registry](https://registry.terraform.io/) issues
* Spans resources across multiple providers
If you are running into one of these scenarios, we recommend opening an issue in the [Terraform core repository](https://github.com/hashicorp/terraform/) instead.
--->
<!--- Please keep this note for the community --->
### Community Note
* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request
* Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
<!--- Thank you for keeping this note for the community --->
### Terraform CLI and Terraform AWS Provider Version
<!--- Please run `terraform -v` to show the Terraform core version and provider version(s). If you are not running the latest version of Terraform or the provider, please upgrade because your issue may have already been fixed. [Terraform documentation on provider versioning](https://www.terraform.io/docs/configuration/providers.html#provider-versions). --->
Terraform v0.12.29
+ provider.aws v3.21.0
+ provider.random v3.0.0
### Affected Resource(s)
<!--- Please list the affected resources and data sources. --->
* aws_imagebuilder_image_recipe
### Terraform Configuration Files
<!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code --->
Please include all Terraform configurations required to reproduce the bug. Bug reports without a functional reproduction may be closed without investigation.
```hcl
resource "aws_imagebuilder_image_recipe" "main" {
description = "Image Builder Recipe"
name = "test1"
parent_image = "arn:aws:imagebuilder:us-west-2:aws:image/windows-server-2019-english-core-base-x86/x.x.x"
version = "1.0.0"
# root disk
block_device_mapping {
device_name = "/dev/sda1"
ebs {
delete_on_termination = true
encrypted = true
kms_key_id = "alias/aws/ebs"
volume_size = 40
volume_type = "gp2"
}
}
component {
component_arn = "arn:aws:imagebuilder:us-west-2:aws:component/update-windows/x.x.x"
}
}
```
### Expected Behavior
I would expect Terraform to attempt creation of the Image Builder Pipeline. Based on my previous experience managing Image Builder resources with CloudFormation, the API will accept KMS Key Aliases as well as KMS Key ARNs.
### Actual Behavior
I received an error stating that the provided value (`alias/aws/kms`) was not a valid ARN.
```
Error: "block_device_mapping.0.ebs.0.kms_key_id" (alias/aws/ebs) is an invalid ARN: arn: invalid prefix
on main.tf line 30, in resource "aws_imagebuilder_image_recipe" "main":
30: resource "aws_imagebuilder_image_recipe" "main" {
```
### Steps to Reproduce
<!--- Please list the steps required to reproduce the issue. --->
1. `terraform apply`
### Important Factoids
The AWS [API documentation](https://docs.aws.amazon.com/imagebuilder/latest/APIReference/API_EbsInstanceBlockDeviceSpecification.html) makes no mention of a specific KMS Key ARN requirement, only that the provided value should be between 1 and 1024 characters (inclusive).
### References
<!---
Information about referencing Github Issues: https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests
Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Vendor documentation? For example:
--->
* #11084
* #16218
| 1.0 | aws_imagebuilder_image_recipe ebs kms_key_id should allow KMS Key Aliases - <!---
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/backends/index.html) issues
* [Provisioner](https://www.terraform.io/docs/provisioners/index.html) issues
* [Registry](https://registry.terraform.io/) issues
* Spans resources across multiple providers
If you are running into one of these scenarios, we recommend opening an issue in the [Terraform core repository](https://github.com/hashicorp/terraform/) instead.
--->
<!--- Please keep this note for the community --->
### Community Note
* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request
* Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
<!--- Thank you for keeping this note for the community --->
### Terraform CLI and Terraform AWS Provider Version
<!--- Please run `terraform -v` to show the Terraform core version and provider version(s). If you are not running the latest version of Terraform or the provider, please upgrade because your issue may have already been fixed. [Terraform documentation on provider versioning](https://www.terraform.io/docs/configuration/providers.html#provider-versions). --->
Terraform v0.12.29
+ provider.aws v3.21.0
+ provider.random v3.0.0
### Affected Resource(s)
<!--- Please list the affected resources and data sources. --->
* aws_imagebuilder_image_recipe
### Terraform Configuration Files
<!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code --->
Please include all Terraform configurations required to reproduce the bug. Bug reports without a functional reproduction may be closed without investigation.
```hcl
resource "aws_imagebuilder_image_recipe" "main" {
description = "Image Builder Recipe"
name = "test1"
parent_image = "arn:aws:imagebuilder:us-west-2:aws:image/windows-server-2019-english-core-base-x86/x.x.x"
version = "1.0.0"
# root disk
block_device_mapping {
device_name = "/dev/sda1"
ebs {
delete_on_termination = true
encrypted = true
kms_key_id = "alias/aws/ebs"
volume_size = 40
volume_type = "gp2"
}
}
component {
component_arn = "arn:aws:imagebuilder:us-west-2:aws:component/update-windows/x.x.x"
}
}
```
### Expected Behavior
I would expect Terraform to attempt creation of the Image Builder Pipeline. Based on my previous experience managing Image Builder resources with CloudFormation, the API will accept KMS Key Aliases as well as KMS Key ARNs.
### Actual Behavior
I received an error stating that the provided value (`alias/aws/kms`) was not a valid ARN.
```
Error: "block_device_mapping.0.ebs.0.kms_key_id" (alias/aws/ebs) is an invalid ARN: arn: invalid prefix
on main.tf line 30, in resource "aws_imagebuilder_image_recipe" "main":
30: resource "aws_imagebuilder_image_recipe" "main" {
```
### Steps to Reproduce
<!--- Please list the steps required to reproduce the issue. --->
1. `terraform apply`
### Important Factoids
The AWS [API documentation](https://docs.aws.amazon.com/imagebuilder/latest/APIReference/API_EbsInstanceBlockDeviceSpecification.html) makes no mention of a specific KMS Key ARN requirement, only that the provided value should be between 1 and 1024 characters (inclusive).
### References
<!---
Information about referencing Github Issues: https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests
Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Vendor documentation? For example:
--->
* #11084
* #16218
| non_defect | aws imagebuilder image recipe ebs kms key id should allow kms key aliases 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 one of these scenarios we recommend opening an issue in the instead community note please vote on this issue by adding a 👍 to the original issue to help the community and maintainers prioritize this request please do not leave or other comments that do not add relevant new information or questions they generate extra noise for issue followers and do not help prioritize the request if you are interested in working on this issue or have submitted a pull request please leave a comment terraform cli and terraform aws provider version terraform provider aws provider random affected resource s aws imagebuilder image recipe terraform configuration files please include all terraform configurations required to reproduce the bug bug reports without a functional reproduction may be closed without investigation hcl resource aws imagebuilder image recipe main description image builder recipe name parent image arn aws imagebuilder us west aws image windows server english core base x x x version root disk block device mapping device name dev ebs delete on termination true encrypted true kms key id alias aws ebs volume size volume type component component arn arn aws imagebuilder us west aws component update windows x x x expected behavior i would expect terraform to attempt creation of the image builder pipeline based on my previous experience managing image builder resources with cloudformation the api will accept kms key aliases as well as kms key arns actual behavior i received an error stating that the provided value alias aws kms was not a valid arn error block device mapping ebs kms key id alias aws ebs is an invalid arn arn invalid prefix on main tf line in resource aws imagebuilder image recipe main resource aws imagebuilder image recipe main steps to reproduce terraform apply important factoids the aws makes no mention of a specific kms key arn requirement only that the provided value should be between and characters inclusive references information about referencing github issues are there any other github issues open or closed or pull requests that should be linked here vendor documentation for example | 0 |
338,703 | 10,236,027,344 | IssuesEvent | 2019-08-19 10:32:59 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | www.indiatoday.in - design is broken | browser-fenix engine-gecko priority-normal | <!-- @browser: Firefox Mobile 69.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 8.0.0; Mobile; rv:69.0) Gecko/69.0 Firefox/69.0 -->
<!-- @reported_with: -->
<!-- @extra_labels: browser-fenix -->
**URL**: https://www.indiatoday.in/world/story/pakistan-plays-victim-card-international-media-1581915-2019-08-18
**Browser / Version**: Firefox Mobile 69.0
**Operating System**: Android 8.0.0
**Tested Another Browser**: Unknown
**Problem type**: Design is broken
**Description**: Cant close cookie popup
**Steps to Reproduce**:
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | www.indiatoday.in - design is broken - <!-- @browser: Firefox Mobile 69.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 8.0.0; Mobile; rv:69.0) Gecko/69.0 Firefox/69.0 -->
<!-- @reported_with: -->
<!-- @extra_labels: browser-fenix -->
**URL**: https://www.indiatoday.in/world/story/pakistan-plays-victim-card-international-media-1581915-2019-08-18
**Browser / Version**: Firefox Mobile 69.0
**Operating System**: Android 8.0.0
**Tested Another Browser**: Unknown
**Problem type**: Design is broken
**Description**: Cant close cookie popup
**Steps to Reproduce**:
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_ | non_defect | design is broken url browser version firefox mobile operating system android tested another browser unknown problem type design is broken description cant close cookie popup steps to reproduce browser configuration none from with ❤️ | 0 |
80,031 | 9,975,830,634 | IssuesEvent | 2019-07-09 13:53:53 | semi-technologies/weaviate | https://api.github.com/repos/semi-technologies/weaviate | closed | Suggestion: Give user ability to set UUIDs | API design & UX Proposal | ## Todos
* non-batch
* [x] add missing unit tests for AddThing/AddAction UC to be able to safely make changes
* [x] if user sets valid uuid, don't assign new one
* [x] if user sets no uuid, assign automatically
* [x] if user sets invalid uuid, error
* [x] if user sets existing uuid, error
* batch
* [x] add missing unit tests for AddThingBatch/AddActionBatch UC to be able to safely make changes
* [x] if user sets valid uuid, don't assign new one
* [x] if user sets no uuid, assign automatically
* [x] if user sets invalid uuid, error
* [x] document that no alreadyexists validation is happening on batch
## Proposal
Currently importing things that depend on one another (i.e. cross-references) is hard, because we need to:
1. Import ThingA
2. Catch the ID of ThingA
3. Modify the payload of ThingB to include a beacon with a reference to Thing A
4. Import ThingB
If we allowed the user to set the UUID on Thing A, they could just assign UUIDs as they please and then import ThingA and ThingB without having to either catch an ID or modify a payload.
@bobvanluijt Thoughts? | 1.0 | Suggestion: Give user ability to set UUIDs - ## Todos
* non-batch
* [x] add missing unit tests for AddThing/AddAction UC to be able to safely make changes
* [x] if user sets valid uuid, don't assign new one
* [x] if user sets no uuid, assign automatically
* [x] if user sets invalid uuid, error
* [x] if user sets existing uuid, error
* batch
* [x] add missing unit tests for AddThingBatch/AddActionBatch UC to be able to safely make changes
* [x] if user sets valid uuid, don't assign new one
* [x] if user sets no uuid, assign automatically
* [x] if user sets invalid uuid, error
* [x] document that no alreadyexists validation is happening on batch
## Proposal
Currently importing things that depend on one another (i.e. cross-references) is hard, because we need to:
1. Import ThingA
2. Catch the ID of ThingA
3. Modify the payload of ThingB to include a beacon with a reference to Thing A
4. Import ThingB
If we allowed the user to set the UUID on Thing A, they could just assign UUIDs as they please and then import ThingA and ThingB without having to either catch an ID or modify a payload.
@bobvanluijt Thoughts? | non_defect | suggestion give user ability to set uuids todos non batch add missing unit tests for addthing addaction uc to be able to safely make changes if user sets valid uuid don t assign new one if user sets no uuid assign automatically if user sets invalid uuid error if user sets existing uuid error batch add missing unit tests for addthingbatch addactionbatch uc to be able to safely make changes if user sets valid uuid don t assign new one if user sets no uuid assign automatically if user sets invalid uuid error document that no alreadyexists validation is happening on batch proposal currently importing things that depend on one another i e cross references is hard because we need to import thinga catch the id of thinga modify the payload of thingb to include a beacon with a reference to thing a import thingb if we allowed the user to set the uuid on thing a they could just assign uuids as they please and then import thinga and thingb without having to either catch an id or modify a payload bobvanluijt thoughts | 0 |
72,106 | 3,372,112,677 | IssuesEvent | 2015-11-23 22:01:54 | kubernetes/kubernetes | https://api.github.com/repos/kubernetes/kubernetes | closed | Broken on soak cluster: Kubectl client Update Demo should do a rolling update of a replication controller [Conformance] | priority/P1 team/ux | http://kubekins.dls.corp.google.com/view/Critical%20Builds/job/kubernetes-soak-continuous-e2e-gce/3939/ | 1.0 | Broken on soak cluster: Kubectl client Update Demo should do a rolling update of a replication controller [Conformance] - http://kubekins.dls.corp.google.com/view/Critical%20Builds/job/kubernetes-soak-continuous-e2e-gce/3939/ | non_defect | broken on soak cluster kubectl client update demo should do a rolling update of a replication controller | 0 |
81,307 | 30,790,883,064 | IssuesEvent | 2023-07-31 16:04:47 | SeleniumHQ/selenium | https://api.github.com/repos/SeleniumHQ/selenium | closed | [🐛 Bug]: Selenium Manager binary not executing on Apple Sillicon | R-awaiting answer I-defect | ### What happened?
When SeleniumManager tries to download Firefox driver for MacOS, it is downloading wrong version. I'm getting " Bad CPU type in executable" error (same error message from this issue https://github.com/mozilla/geckodriver/issues/1984).
On release page has two versions https://github.com/mozilla/geckodriver/releases
- geckodriver-v0.33.0-macos-aarch64.tar.gz
- geckodriver-v0.33.0-macos.tar.gz
For Apple Silicon machines, it should download `aarch64` version.
Last year I solved this problem on [`webdrivers`](https://github.com/titusfortner/webdrivers) gem on this PR: https://github.com/titusfortner/webdrivers/pull/234
Basically: `System.apple_m1_architecture? ? 'macos-aarch64.tar.gz' : 'macos.tar.gz'`
The `apple_m1_architecture?` method (I would recommend to change method name to `apple_silicon?`:
```ruby
def apple_m1_architecture?
if platform == 'mac' && RUBY_PLATFORM.include?('arm64-darwin')
Webdrivers.logger.debug 'Apple architecture: M1 (arm64-darwin)'
return true
end
Webdrivers.logger.debug 'Apple architecture: Intel (mac64)'
false
end
```
### How can we reproduce the issue?
```shell
I'm not sure, I'm using capybara on a Rails project, and just removed `webdrivers` gem to use SeleniumManager automatically.
```
### Relevant log output
```shell
Selenium::WebDriver::Error::NoSuchDriverError:
Unable to obtain geckodriver using Selenium Manager; Unsuccessful command executed: ["/Users/stephann/.asdf/installs/ruby/3.2.2/lib/ruby/gems/3.2.0/gems/selenium-webdriver-4.10.0/bin/macos/selenium-manager", "--browser", "firefox", "--output", "json"]; Bad CPU type in executable - /Users/stephann/.asdf/installs/ruby/3.2.2/lib/ruby/gems/3.2.0/gems/selenium-webdriver-4.10.0/bin/macos/selenium-manager; For documentation on this error, please visit: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors/driver_location
# ./spec/system/checkout/add_items_to_cart_spec.rb:42:in `block (3 levels) in <top (required)>'
# ------------------
# --- Caused by: ---
# Errno::EBADARCH:
# Bad CPU type in executable - /Users/stephann/.asdf/installs/ruby/3.2.2/lib/ruby/gems/3.2.0/gems/selenium-webdriver-4.10.0/bin/macos/selenium-manager
# ./spec/system/checkout/add_items_to_cart_spec.rb:42:in `block (3 levels) in <top (required)>'
```
```
### Operating System
MacOS Monterey 12.6.7 (21G651)
### Selenium version
selenium-webdriver-4.10.0
### What are the browser(s) and version(s) where you see this issue?
Firefox 115.0.2 (64-bit)
### What are the browser driver(s) and version(s) where you see this issue?
geckodriver
### Are you using Selenium Grid?
I'm not sure, I don't think so | 1.0 | [🐛 Bug]: Selenium Manager binary not executing on Apple Sillicon - ### What happened?
When SeleniumManager tries to download Firefox driver for MacOS, it is downloading wrong version. I'm getting " Bad CPU type in executable" error (same error message from this issue https://github.com/mozilla/geckodriver/issues/1984).
On release page has two versions https://github.com/mozilla/geckodriver/releases
- geckodriver-v0.33.0-macos-aarch64.tar.gz
- geckodriver-v0.33.0-macos.tar.gz
For Apple Silicon machines, it should download `aarch64` version.
Last year I solved this problem on [`webdrivers`](https://github.com/titusfortner/webdrivers) gem on this PR: https://github.com/titusfortner/webdrivers/pull/234
Basically: `System.apple_m1_architecture? ? 'macos-aarch64.tar.gz' : 'macos.tar.gz'`
The `apple_m1_architecture?` method (I would recommend to change method name to `apple_silicon?`:
```ruby
def apple_m1_architecture?
if platform == 'mac' && RUBY_PLATFORM.include?('arm64-darwin')
Webdrivers.logger.debug 'Apple architecture: M1 (arm64-darwin)'
return true
end
Webdrivers.logger.debug 'Apple architecture: Intel (mac64)'
false
end
```
### How can we reproduce the issue?
```shell
I'm not sure, I'm using capybara on a Rails project, and just removed `webdrivers` gem to use SeleniumManager automatically.
```
### Relevant log output
```shell
Selenium::WebDriver::Error::NoSuchDriverError:
Unable to obtain geckodriver using Selenium Manager; Unsuccessful command executed: ["/Users/stephann/.asdf/installs/ruby/3.2.2/lib/ruby/gems/3.2.0/gems/selenium-webdriver-4.10.0/bin/macos/selenium-manager", "--browser", "firefox", "--output", "json"]; Bad CPU type in executable - /Users/stephann/.asdf/installs/ruby/3.2.2/lib/ruby/gems/3.2.0/gems/selenium-webdriver-4.10.0/bin/macos/selenium-manager; For documentation on this error, please visit: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors/driver_location
# ./spec/system/checkout/add_items_to_cart_spec.rb:42:in `block (3 levels) in <top (required)>'
# ------------------
# --- Caused by: ---
# Errno::EBADARCH:
# Bad CPU type in executable - /Users/stephann/.asdf/installs/ruby/3.2.2/lib/ruby/gems/3.2.0/gems/selenium-webdriver-4.10.0/bin/macos/selenium-manager
# ./spec/system/checkout/add_items_to_cart_spec.rb:42:in `block (3 levels) in <top (required)>'
```
```
### Operating System
MacOS Monterey 12.6.7 (21G651)
### Selenium version
selenium-webdriver-4.10.0
### What are the browser(s) and version(s) where you see this issue?
Firefox 115.0.2 (64-bit)
### What are the browser driver(s) and version(s) where you see this issue?
geckodriver
### Are you using Selenium Grid?
I'm not sure, I don't think so | defect | selenium manager binary not executing on apple sillicon what happened when seleniummanager tries to download firefox driver for macos it is downloading wrong version i m getting bad cpu type in executable error same error message from this issue on release page has two versions geckodriver macos tar gz geckodriver macos tar gz for apple silicon machines it should download version last year i solved this problem on gem on this pr basically system apple architecture macos tar gz macos tar gz the apple architecture method i would recommend to change method name to apple silicon ruby def apple architecture if platform mac ruby platform include darwin webdrivers logger debug apple architecture darwin return true end webdrivers logger debug apple architecture intel false end how can we reproduce the issue shell i m not sure i m using capybara on a rails project and just removed webdrivers gem to use seleniummanager automatically relevant log output shell selenium webdriver error nosuchdrivererror unable to obtain geckodriver using selenium manager unsuccessful command executed bad cpu type in executable users stephann asdf installs ruby lib ruby gems gems selenium webdriver bin macos selenium manager for documentation on this error please visit spec system checkout add items to cart spec rb in block levels in caused by errno ebadarch bad cpu type in executable users stephann asdf installs ruby lib ruby gems gems selenium webdriver bin macos selenium manager spec system checkout add items to cart spec rb in block levels in operating system macos monterey selenium version selenium webdriver what are the browser s and version s where you see this issue firefox bit what are the browser driver s and version s where you see this issue geckodriver are you using selenium grid i m not sure i don t think so | 1 |
25,386 | 4,309,283,730 | IssuesEvent | 2016-07-21 15:32:42 | jOOQ/jOOQ | https://api.github.com/repos/jOOQ/jOOQ | closed | Error in DefaultGeneratorStrategy documentation | C: Documentation P: Medium T: Defect | The documentation for [table naming with `DefaultGeneratorStrategy`](http://www.jooq.org/doc/3.8/manual/code-generation/codegen-generatorstrategy/#N3A39E) seems to be wrong.
If I read the code correctly
> // 2: strategy.getJavaClassName(table)
should be
> // 2: strategy.getJavaClassName(table, Mode.DEFAULT) | 1.0 | Error in DefaultGeneratorStrategy documentation - The documentation for [table naming with `DefaultGeneratorStrategy`](http://www.jooq.org/doc/3.8/manual/code-generation/codegen-generatorstrategy/#N3A39E) seems to be wrong.
If I read the code correctly
> // 2: strategy.getJavaClassName(table)
should be
> // 2: strategy.getJavaClassName(table, Mode.DEFAULT) | defect | error in defaultgeneratorstrategy documentation the documentation for seems to be wrong if i read the code correctly strategy getjavaclassname table should be strategy getjavaclassname table mode default | 1 |
52,703 | 13,039,166,887 | IssuesEvent | 2020-07-28 16:18:00 | haskell/haskell-language-server | https://api.github.com/repos/haskell/haskell-language-server | closed | Doesn't build on Mac with Stack either | build status: needs repro type: bug | MacOS Catalina 10.15.5, Xcode-11.5, GHC-8.10.1 and 8.8.3, stack-2.3.1 with resolver nightly-2020-07-13, Cabal-3.2.0.0.
Current haskell-language-server master.
```
$ stack ./install.hs hls-8.10.1 2>&1 | tee build-8.10.1-out.txt
. . . . .
shake > /private/var/folders/c6/lnc_0m093ys8w16md_fm1mnxhtfnj8/T/stack-ebd23766ae05ecba/shake-0.19.1/src/Development/Shake/Internal/Core/Database.hs:93:14: warning: [-Wname-shadowing]
shake > This binding for ‘is’ shadows the existing binding
shake > bound at src/Development/Shake/Internal/Core/Database.hs:89:5
shake > |
shake > 93 | (is, i)<- pure $ Intern.add k is
shake > | ^^
ormolu >
ormolu > /private/var/folders/c6/lnc_0m093ys8w16md_fm1mnxhtfnj8/T/stack-ebd23766ae05ecba/ormolu-0.1.2.0/<built-in>:15:10: error:
ormolu > warning: non-portable path to file '".stack-work/dist/x86_64-osx/Cabal-3.2.0.0/build/Ormolu/autogen/cabal_macros.h"'; specified path differs in case from file name on disk [-Wnonportable-include-path]
ormolu > #include ".stack-work/dist/x86_64-osx/Cabal-3.2.0.0/build/ormolu/autogen/cabal_macros.h"
ormolu > ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ormolu > ".stack-work/dist/x86_64-osx/Cabal-3.2.0.0/build/Ormolu/autogen/cabal_macros.h"
ormolu > 1 warning generated.
ormolu >
ormolu > /private/var/folders/c6/lnc_0m093ys8w16md_fm1mnxhtfnj8/T/stack-ebd23766ae05ecba/ormolu-0.1.2.0/<built-in>:15:10: error:
ormolu > warning: non-portable path to file '".stack-work/dist/x86_64-osx/Cabal-3.2.0.0/build/Ormolu/autogen/cabal_macros.h"'; specified path differs in case from file name on disk [-Wnonportable-include-path]
ormolu > #include ".stack-work/dist/x86_64-osx/Cabal-3.2.0.0/build/ormolu/autogen/cabal_macros.h"
ormolu > ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ormolu > ".stack-work/dist/x86_64-osx/Cabal-3.2.0.0/build/Ormolu/autogen/cabal_macros.h"
. . . . .
haskell-language-server > 517 | makeCompletions sps lf ideState params@(CompletionParams (TextDocumentIdentifier doc) pos _context _mt)
haskell-language-server > | ^^^^^^
haskell-language-server >
haskell-language-server > /Users/ur20980/src/haskell-language-server/src/Ide/Plugin.hs:565:19: error: [-Wname-shadowing, -Werror=name-shadowing]
haskell-language-server > This binding for ‘uri’ shadows the existing binding
haskell-language-server > imported from ‘Language.Haskell.LSP.Types.Lens’ at src/Ide/Plugin.hs:46:1-90
haskell-language-server > |
haskell-language-server > 565 | getPrefixAtPos lf uri pos = do
haskell-language-server > | ^^^
Warning: Failed to decode module interface:
/Users/ur20980/src/haskell-language-server/.stack-work/dist/x86_64-osx/Cabal-3.2.0.0/build/Ide/Cradle.hi
Decoding failure: Invalid magic: e49ceb0f
. . . . .
-- While building package haskell-language-server-0.2.0.0 using:
/Users/ur20980/.stack/setup-exe-cache/x86_64-osx/Cabal-simple_mPHDZzAJ_3.2.0.0_ghc-8.10.1 --builddir=.stack-work/dist/x86_64-osx/Cabal-3.2.0.0 build lib:haskell-language-server exe:haskell-language-server exe:haskell-language-server-wrapper --ghc-options ""
Process exited with code: ExitFailure 1
```
Complete build log [build-8.10.1-out.txt](https://github.com/haskell/haskell-language-server/files/4915625/build-8.10.1-out.txt)
Here's failing `stack` build with GHC-8.8.3: [build-8.8.3-out.txt](https://github.com/haskell/haskell-language-server/files/4915663/build-8.8.3-out.txt)
| 1.0 | Doesn't build on Mac with Stack either - MacOS Catalina 10.15.5, Xcode-11.5, GHC-8.10.1 and 8.8.3, stack-2.3.1 with resolver nightly-2020-07-13, Cabal-3.2.0.0.
Current haskell-language-server master.
```
$ stack ./install.hs hls-8.10.1 2>&1 | tee build-8.10.1-out.txt
. . . . .
shake > /private/var/folders/c6/lnc_0m093ys8w16md_fm1mnxhtfnj8/T/stack-ebd23766ae05ecba/shake-0.19.1/src/Development/Shake/Internal/Core/Database.hs:93:14: warning: [-Wname-shadowing]
shake > This binding for ‘is’ shadows the existing binding
shake > bound at src/Development/Shake/Internal/Core/Database.hs:89:5
shake > |
shake > 93 | (is, i)<- pure $ Intern.add k is
shake > | ^^
ormolu >
ormolu > /private/var/folders/c6/lnc_0m093ys8w16md_fm1mnxhtfnj8/T/stack-ebd23766ae05ecba/ormolu-0.1.2.0/<built-in>:15:10: error:
ormolu > warning: non-portable path to file '".stack-work/dist/x86_64-osx/Cabal-3.2.0.0/build/Ormolu/autogen/cabal_macros.h"'; specified path differs in case from file name on disk [-Wnonportable-include-path]
ormolu > #include ".stack-work/dist/x86_64-osx/Cabal-3.2.0.0/build/ormolu/autogen/cabal_macros.h"
ormolu > ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ormolu > ".stack-work/dist/x86_64-osx/Cabal-3.2.0.0/build/Ormolu/autogen/cabal_macros.h"
ormolu > 1 warning generated.
ormolu >
ormolu > /private/var/folders/c6/lnc_0m093ys8w16md_fm1mnxhtfnj8/T/stack-ebd23766ae05ecba/ormolu-0.1.2.0/<built-in>:15:10: error:
ormolu > warning: non-portable path to file '".stack-work/dist/x86_64-osx/Cabal-3.2.0.0/build/Ormolu/autogen/cabal_macros.h"'; specified path differs in case from file name on disk [-Wnonportable-include-path]
ormolu > #include ".stack-work/dist/x86_64-osx/Cabal-3.2.0.0/build/ormolu/autogen/cabal_macros.h"
ormolu > ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ormolu > ".stack-work/dist/x86_64-osx/Cabal-3.2.0.0/build/Ormolu/autogen/cabal_macros.h"
. . . . .
haskell-language-server > 517 | makeCompletions sps lf ideState params@(CompletionParams (TextDocumentIdentifier doc) pos _context _mt)
haskell-language-server > | ^^^^^^
haskell-language-server >
haskell-language-server > /Users/ur20980/src/haskell-language-server/src/Ide/Plugin.hs:565:19: error: [-Wname-shadowing, -Werror=name-shadowing]
haskell-language-server > This binding for ‘uri’ shadows the existing binding
haskell-language-server > imported from ‘Language.Haskell.LSP.Types.Lens’ at src/Ide/Plugin.hs:46:1-90
haskell-language-server > |
haskell-language-server > 565 | getPrefixAtPos lf uri pos = do
haskell-language-server > | ^^^
Warning: Failed to decode module interface:
/Users/ur20980/src/haskell-language-server/.stack-work/dist/x86_64-osx/Cabal-3.2.0.0/build/Ide/Cradle.hi
Decoding failure: Invalid magic: e49ceb0f
. . . . .
-- While building package haskell-language-server-0.2.0.0 using:
/Users/ur20980/.stack/setup-exe-cache/x86_64-osx/Cabal-simple_mPHDZzAJ_3.2.0.0_ghc-8.10.1 --builddir=.stack-work/dist/x86_64-osx/Cabal-3.2.0.0 build lib:haskell-language-server exe:haskell-language-server exe:haskell-language-server-wrapper --ghc-options ""
Process exited with code: ExitFailure 1
```
Complete build log [build-8.10.1-out.txt](https://github.com/haskell/haskell-language-server/files/4915625/build-8.10.1-out.txt)
Here's failing `stack` build with GHC-8.8.3: [build-8.8.3-out.txt](https://github.com/haskell/haskell-language-server/files/4915663/build-8.8.3-out.txt)
| non_defect | doesn t build on mac with stack either macos catalina xcode ghc and stack with resolver nightly cabal current haskell language server master stack install hs hls tee build out txt shake private var folders lnc t stack shake src development shake internal core database hs warning shake this binding for ‘is’ shadows the existing binding shake bound at src development shake internal core database hs shake shake is i pure intern add k is shake ormolu ormolu private var folders lnc t stack ormolu error ormolu warning non portable path to file stack work dist osx cabal build ormolu autogen cabal macros h specified path differs in case from file name on disk ormolu include stack work dist osx cabal build ormolu autogen cabal macros h ormolu ormolu stack work dist osx cabal build ormolu autogen cabal macros h ormolu warning generated ormolu ormolu private var folders lnc t stack ormolu error ormolu warning non portable path to file stack work dist osx cabal build ormolu autogen cabal macros h specified path differs in case from file name on disk ormolu include stack work dist osx cabal build ormolu autogen cabal macros h ormolu ormolu stack work dist osx cabal build ormolu autogen cabal macros h haskell language server makecompletions sps lf idestate params completionparams textdocumentidentifier doc pos context mt haskell language server haskell language server haskell language server users src haskell language server src ide plugin hs error haskell language server this binding for ‘uri’ shadows the existing binding haskell language server imported from ‘language haskell lsp types lens’ at src ide plugin hs haskell language server haskell language server getprefixatpos lf uri pos do haskell language server warning failed to decode module interface users src haskell language server stack work dist osx cabal build ide cradle hi decoding failure invalid magic while building package haskell language server using users stack setup exe cache osx cabal simple mphdzzaj ghc builddir stack work dist osx cabal build lib haskell language server exe haskell language server exe haskell language server wrapper ghc options process exited with code exitfailure complete build log here s failing stack build with ghc | 0 |
47,225 | 13,056,064,096 | IssuesEvent | 2020-07-30 03:32:49 | icecube-trac/tix2 | https://api.github.com/repos/icecube-trac/tix2 | closed | dataclasses std_map_indexing_suite_* tests failing on EL4/Python 2.3 (Trac #162) | Migrated from Trac dataclasses defect | these test scripts are failing on EL4/SL4 with python 2.3.4
Maybe this python is just too old. But should check.
Migrated from https://code.icecube.wisc.edu/ticket/162
```json
{
"status": "closed",
"changetime": "2014-11-23T03:37:56",
"description": "these test scripts are failing on EL4/SL4 with python 2.3.4\n\nMaybe this python is just too old. But should check.",
"reporter": "blaufuss",
"cc": "",
"resolution": "fixed",
"_ts": "1416713876862109",
"component": "dataclasses",
"summary": "dataclasses std_map_indexing_suite_* tests failing on EL4/Python 2.3",
"priority": "normal",
"keywords": "",
"time": "2009-06-12T20:41:25",
"milestone": "",
"owner": "jvansanten",
"type": "defect"
}
```
| 1.0 | dataclasses std_map_indexing_suite_* tests failing on EL4/Python 2.3 (Trac #162) - these test scripts are failing on EL4/SL4 with python 2.3.4
Maybe this python is just too old. But should check.
Migrated from https://code.icecube.wisc.edu/ticket/162
```json
{
"status": "closed",
"changetime": "2014-11-23T03:37:56",
"description": "these test scripts are failing on EL4/SL4 with python 2.3.4\n\nMaybe this python is just too old. But should check.",
"reporter": "blaufuss",
"cc": "",
"resolution": "fixed",
"_ts": "1416713876862109",
"component": "dataclasses",
"summary": "dataclasses std_map_indexing_suite_* tests failing on EL4/Python 2.3",
"priority": "normal",
"keywords": "",
"time": "2009-06-12T20:41:25",
"milestone": "",
"owner": "jvansanten",
"type": "defect"
}
```
| defect | dataclasses std map indexing suite tests failing on python trac these test scripts are failing on with python maybe this python is just too old but should check migrated from json status closed changetime description these test scripts are failing on with python n nmaybe this python is just too old but should check reporter blaufuss cc resolution fixed ts component dataclasses summary dataclasses std map indexing suite tests failing on python priority normal keywords time milestone owner jvansanten type defect | 1 |
379,170 | 11,216,968,191 | IssuesEvent | 2020-01-07 08:03:10 | Cidana-Developers/UnitTests-Task-manager | https://api.github.com/repos/Cidana-Developers/UnitTests-Task-manager | opened | [Test Framework] Setup a new environment for demo | High priority | - [ ] set up a new environment for demo and external usage.
- [ ] write "environment set up" documents
| 1.0 | [Test Framework] Setup a new environment for demo - - [ ] set up a new environment for demo and external usage.
- [ ] write "environment set up" documents
| non_defect | setup a new environment for demo set up a new environment for demo and external usage write environment set up documents | 0 |
313,738 | 9,575,600,558 | IssuesEvent | 2019-05-07 06:56:41 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | m.facebook.com - see bug description | browser-firefox-mobile engine-gecko priority-critical | <!-- @browser: Firefox Mobile 65.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 7.0; Mobile; rv:65.0) Gecko/65.0 Firefox/65.0 -->
<!-- @reported_with: -->
**URL**: https://m.facebook.com/?refsrc=https://www.facebook.com/
**Browser / Version**: Firefox Mobile 65.0
**Operating System**: Android 7.0
**Tested Another Browser**: No
**Problem type**: Something else
**Description**: it makes me to enter password 2times
**Steps to Reproduce**:
It said Firefox mobile 65,0.
That is not correct.
I use Huawai. media pad M3 Lite10,
Android 7,0
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | m.facebook.com - see bug description - <!-- @browser: Firefox Mobile 65.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 7.0; Mobile; rv:65.0) Gecko/65.0 Firefox/65.0 -->
<!-- @reported_with: -->
**URL**: https://m.facebook.com/?refsrc=https://www.facebook.com/
**Browser / Version**: Firefox Mobile 65.0
**Operating System**: Android 7.0
**Tested Another Browser**: No
**Problem type**: Something else
**Description**: it makes me to enter password 2times
**Steps to Reproduce**:
It said Firefox mobile 65,0.
That is not correct.
I use Huawai. media pad M3 Lite10,
Android 7,0
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_ | non_defect | m facebook com see bug description url browser version firefox mobile operating system android tested another browser no problem type something else description it makes me to enter password steps to reproduce it said firefox mobile that is not correct i use huawai media pad android browser configuration none from with ❤️ | 0 |
129,802 | 17,877,248,450 | IssuesEvent | 2021-09-07 06:31:09 | liqd/a4-meinberlin | https://api.github.com/repos/liqd/a4-meinberlin | closed | dashboard: in list view search filter and "new" button are not aligned | Type: UX/UI or design Prio: Medium | **URL:** https://meinberlin-dev.liqd.net/dashboard/organisations/caros-testorga/projects/
**user:** initiator
**expected behaviour:** in list view the search filter and the button to add new project/plan/bplan/external project are aligned
**behaviour:** they are not
**important screensize:**
**device & browser:** big sur, chrome, FF and safari
**Comment/Question:**
Screenshot?
<img width="919" alt="Bildschirmfoto 2021-09-06 um 11 35 51" src="https://user-images.githubusercontent.com/35491681/132196182-db5d8a73-4ed2-4f39-bc7c-aa9d4139faab.png">
| 1.0 | dashboard: in list view search filter and "new" button are not aligned - **URL:** https://meinberlin-dev.liqd.net/dashboard/organisations/caros-testorga/projects/
**user:** initiator
**expected behaviour:** in list view the search filter and the button to add new project/plan/bplan/external project are aligned
**behaviour:** they are not
**important screensize:**
**device & browser:** big sur, chrome, FF and safari
**Comment/Question:**
Screenshot?
<img width="919" alt="Bildschirmfoto 2021-09-06 um 11 35 51" src="https://user-images.githubusercontent.com/35491681/132196182-db5d8a73-4ed2-4f39-bc7c-aa9d4139faab.png">
| non_defect | dashboard in list view search filter and new button are not aligned url user initiator expected behaviour in list view the search filter and the button to add new project plan bplan external project are aligned behaviour they are not important screensize device browser big sur chrome ff and safari comment question screenshot img width alt bildschirmfoto um src | 0 |
15,281 | 2,850,532,924 | IssuesEvent | 2015-05-31 17:15:40 | damonkohler/android-scripting | https://api.github.com/repos/damonkohler/android-scripting | closed | pickPhone() and pickContact() problem | auto-migrated Priority-Medium Type-Defect | ```
What device(s) are you experiencing the problem on?
HTC Desire
What firmware version are you running on the device?
MIUI-1.12.30.0 Android 2.3.7
What steps will reproduce the problem?
1. Call pickPhone() or pickContact() or pick("content://contacts/phones")
2. Pick any contact (you just can pick contacts with pickPhone(), pick()
doesn't work )
What is the expected output? What do you see instead?
-pickPhone()
expected: Result(id=6, result=u'666666666', error=None) of the picked number
what I see: The output result is always the same, doesn't matter what you pick.
-pickContact()
expected: Result(id=6, result=u'Contact name', error=None)
what I see: Result(id=5, result=None, error=None) and Android Force Close of
the contacts list.
-pick("content://contacts/phones")
expected: the same that pickPhone()
what I see: org.json.JSONException: Failed to build JSON result.Result(id=7,
result=None, error=u'org.json.JSONException: Failed to build JSON result.')
What version of the product are you using? On what operating system?
sl4a r4 on android 2.3.7
Please provide any additional information below.
Logcats attached
```
Original issue reported on code.google.com by `dey...@gmail.com` on 19 Feb 2012 at 7:47
Attachments:
* [pickPhoneLog.txt](https://storage.googleapis.com/google-code-attachments/android-scripting/issue-602/comment-0/pickPhoneLog.txt)
* [pickContactsLog.txt](https://storage.googleapis.com/google-code-attachments/android-scripting/issue-602/comment-0/pickContactsLog.txt)
* [pickLog.txt](https://storage.googleapis.com/google-code-attachments/android-scripting/issue-602/comment-0/pickLog.txt)
| 1.0 | pickPhone() and pickContact() problem - ```
What device(s) are you experiencing the problem on?
HTC Desire
What firmware version are you running on the device?
MIUI-1.12.30.0 Android 2.3.7
What steps will reproduce the problem?
1. Call pickPhone() or pickContact() or pick("content://contacts/phones")
2. Pick any contact (you just can pick contacts with pickPhone(), pick()
doesn't work )
What is the expected output? What do you see instead?
-pickPhone()
expected: Result(id=6, result=u'666666666', error=None) of the picked number
what I see: The output result is always the same, doesn't matter what you pick.
-pickContact()
expected: Result(id=6, result=u'Contact name', error=None)
what I see: Result(id=5, result=None, error=None) and Android Force Close of
the contacts list.
-pick("content://contacts/phones")
expected: the same that pickPhone()
what I see: org.json.JSONException: Failed to build JSON result.Result(id=7,
result=None, error=u'org.json.JSONException: Failed to build JSON result.')
What version of the product are you using? On what operating system?
sl4a r4 on android 2.3.7
Please provide any additional information below.
Logcats attached
```
Original issue reported on code.google.com by `dey...@gmail.com` on 19 Feb 2012 at 7:47
Attachments:
* [pickPhoneLog.txt](https://storage.googleapis.com/google-code-attachments/android-scripting/issue-602/comment-0/pickPhoneLog.txt)
* [pickContactsLog.txt](https://storage.googleapis.com/google-code-attachments/android-scripting/issue-602/comment-0/pickContactsLog.txt)
* [pickLog.txt](https://storage.googleapis.com/google-code-attachments/android-scripting/issue-602/comment-0/pickLog.txt)
| defect | pickphone and pickcontact problem what device s are you experiencing the problem on htc desire what firmware version are you running on the device miui android what steps will reproduce the problem call pickphone or pickcontact or pick content contacts phones pick any contact you just can pick contacts with pickphone pick doesn t work what is the expected output what do you see instead pickphone expected result id result u error none of the picked number what i see the output result is always the same doesn t matter what you pick pickcontact expected result id result u contact name error none what i see result id result none error none and android force close of the contacts list pick content contacts phones expected the same that pickphone what i see org json jsonexception failed to build json result result id result none error u org json jsonexception failed to build json result what version of the product are you using on what operating system on android please provide any additional information below logcats attached original issue reported on code google com by dey gmail com on feb at attachments | 1 |
211,855 | 23,849,935,458 | IssuesEvent | 2022-09-06 16:56:56 | daniel-brown-ws-2/Baragon-test-1 | https://api.github.com/repos/daniel-brown-ws-2/Baragon-test-1 | opened | jetty-server-9.4.18.v20190429.jar: 1 vulnerabilities (highest severity is: 4.8) | security vulnerability | <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jetty-server-9.4.18.v20190429.jar</b></p></summary>
<p>The core jetty server artifact.</p>
<p>Library home page: <a href="http://www.eclipse.org/jetty">http://www.eclipse.org/jetty</a></p>
<p>Path to dependency file: /BaragonData/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/eclipse/jetty/jetty-server/9.4.18.v20190429/jetty-server-9.4.18.v20190429.jar,/sitory/org/eclipse/jetty/jetty-server/9.4.18.v20190429/jetty-server-9.4.18.v20190429.jar,/home/wss-scanner/.m2/repository/org/eclipse/jetty/jetty-server/9.4.18.v20190429/jetty-server-9.4.18.v20190429.jar</p>
<p>
<p>Found in HEAD commit: <a href="https://github.com/daniel-brown-ws-2/Baragon-test-1/commit/40d5ec96d38f2c1697a1928cd144b93f387bc0ae">40d5ec96d38f2c1697a1928cd144b93f387bc0ae</a></p></details>
## Vulnerabilities
| CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in | Remediation Available |
| ------------- | ------------- | ----- | ----- | ----- | --- | --- |
| [CVE-2020-27218](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-27218) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 4.8 | jetty-server-9.4.18.v20190429.jar | Direct | 9.4.35.v20201120 | ✅ |
## Details
<details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2020-27218</summary>
### Vulnerable Library - <b>jetty-server-9.4.18.v20190429.jar</b></p>
<p>The core jetty server artifact.</p>
<p>Library home page: <a href="http://www.eclipse.org/jetty">http://www.eclipse.org/jetty</a></p>
<p>Path to dependency file: /BaragonData/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/eclipse/jetty/jetty-server/9.4.18.v20190429/jetty-server-9.4.18.v20190429.jar,/sitory/org/eclipse/jetty/jetty-server/9.4.18.v20190429/jetty-server-9.4.18.v20190429.jar,/home/wss-scanner/.m2/repository/org/eclipse/jetty/jetty-server/9.4.18.v20190429/jetty-server-9.4.18.v20190429.jar</p>
<p>
Dependency Hierarchy:
- :x: **jetty-server-9.4.18.v20190429.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/daniel-brown-ws-2/Baragon-test-1/commit/40d5ec96d38f2c1697a1928cd144b93f387bc0ae">40d5ec96d38f2c1697a1928cd144b93f387bc0ae</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
In Eclipse Jetty version 9.4.0.RC0 to 9.4.34.v20201102, 10.0.0.alpha0 to 10.0.0.beta2, and 11.0.0.alpha0 to 11.0.0.beta2, if GZIP request body inflation is enabled and requests from different clients are multiplexed onto a single connection, and if an attacker can send a request with a body that is received entirely but not consumed by the application, then a subsequent request on the same connection will see that body prepended to its body. The attacker will not see any data but may inject data into the body of the subsequent request.
<p>Publish Date: 2020-11-28
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-27218>CVE-2020-27218</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>4.8</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: Low
- Availability Impact: Low
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/eclipse/jetty.project/security/advisories/GHSA-86wm-rrjm-8wh8">https://github.com/eclipse/jetty.project/security/advisories/GHSA-86wm-rrjm-8wh8</a></p>
<p>Release Date: 2020-11-28</p>
<p>Fix Resolution: 9.4.35.v20201120</p>
</p>
<p></p>
:rescue_worker_helmet: Automatic Remediation is available for this issue
</details>
***
<p>:rescue_worker_helmet: Automatic Remediation is available for this issue.</p> | True | jetty-server-9.4.18.v20190429.jar: 1 vulnerabilities (highest severity is: 4.8) - <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jetty-server-9.4.18.v20190429.jar</b></p></summary>
<p>The core jetty server artifact.</p>
<p>Library home page: <a href="http://www.eclipse.org/jetty">http://www.eclipse.org/jetty</a></p>
<p>Path to dependency file: /BaragonData/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/eclipse/jetty/jetty-server/9.4.18.v20190429/jetty-server-9.4.18.v20190429.jar,/sitory/org/eclipse/jetty/jetty-server/9.4.18.v20190429/jetty-server-9.4.18.v20190429.jar,/home/wss-scanner/.m2/repository/org/eclipse/jetty/jetty-server/9.4.18.v20190429/jetty-server-9.4.18.v20190429.jar</p>
<p>
<p>Found in HEAD commit: <a href="https://github.com/daniel-brown-ws-2/Baragon-test-1/commit/40d5ec96d38f2c1697a1928cd144b93f387bc0ae">40d5ec96d38f2c1697a1928cd144b93f387bc0ae</a></p></details>
## Vulnerabilities
| CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in | Remediation Available |
| ------------- | ------------- | ----- | ----- | ----- | --- | --- |
| [CVE-2020-27218](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-27218) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 4.8 | jetty-server-9.4.18.v20190429.jar | Direct | 9.4.35.v20201120 | ✅ |
## Details
<details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2020-27218</summary>
### Vulnerable Library - <b>jetty-server-9.4.18.v20190429.jar</b></p>
<p>The core jetty server artifact.</p>
<p>Library home page: <a href="http://www.eclipse.org/jetty">http://www.eclipse.org/jetty</a></p>
<p>Path to dependency file: /BaragonData/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/eclipse/jetty/jetty-server/9.4.18.v20190429/jetty-server-9.4.18.v20190429.jar,/sitory/org/eclipse/jetty/jetty-server/9.4.18.v20190429/jetty-server-9.4.18.v20190429.jar,/home/wss-scanner/.m2/repository/org/eclipse/jetty/jetty-server/9.4.18.v20190429/jetty-server-9.4.18.v20190429.jar</p>
<p>
Dependency Hierarchy:
- :x: **jetty-server-9.4.18.v20190429.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/daniel-brown-ws-2/Baragon-test-1/commit/40d5ec96d38f2c1697a1928cd144b93f387bc0ae">40d5ec96d38f2c1697a1928cd144b93f387bc0ae</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
In Eclipse Jetty version 9.4.0.RC0 to 9.4.34.v20201102, 10.0.0.alpha0 to 10.0.0.beta2, and 11.0.0.alpha0 to 11.0.0.beta2, if GZIP request body inflation is enabled and requests from different clients are multiplexed onto a single connection, and if an attacker can send a request with a body that is received entirely but not consumed by the application, then a subsequent request on the same connection will see that body prepended to its body. The attacker will not see any data but may inject data into the body of the subsequent request.
<p>Publish Date: 2020-11-28
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-27218>CVE-2020-27218</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>4.8</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: Low
- Availability Impact: Low
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/eclipse/jetty.project/security/advisories/GHSA-86wm-rrjm-8wh8">https://github.com/eclipse/jetty.project/security/advisories/GHSA-86wm-rrjm-8wh8</a></p>
<p>Release Date: 2020-11-28</p>
<p>Fix Resolution: 9.4.35.v20201120</p>
</p>
<p></p>
:rescue_worker_helmet: Automatic Remediation is available for this issue
</details>
***
<p>:rescue_worker_helmet: Automatic Remediation is available for this issue.</p> | non_defect | jetty server jar vulnerabilities highest severity is vulnerable library jetty server jar the core jetty server artifact library home page a href path to dependency file baragondata pom xml path to vulnerable library home wss scanner repository org eclipse jetty jetty server jetty server jar sitory org eclipse jetty jetty server jetty server jar home wss scanner repository org eclipse jetty jetty server jetty server jar found in head commit a href vulnerabilities cve severity cvss dependency type fixed in remediation available medium jetty server jar direct details cve vulnerable library jetty server jar the core jetty server artifact library home page a href path to dependency file baragondata pom xml path to vulnerable library home wss scanner repository org eclipse jetty jetty server jetty server jar sitory org eclipse jetty jetty server jetty server jar home wss scanner repository org eclipse jetty jetty server jetty server jar dependency hierarchy x jetty server jar vulnerable library found in head commit a href found in base branch master vulnerability details in eclipse jetty version to to and to if gzip request body inflation is enabled and requests from different clients are multiplexed onto a single connection and if an attacker can send a request with a body that is received entirely but not consumed by the application then a subsequent request on the same connection will see that body prepended to its body the attacker will not see any data but may inject data into the body of the subsequent request publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact low availability impact low for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution rescue worker helmet automatic remediation is available for this issue rescue worker helmet automatic remediation is available for this issue | 0 |
752 | 10,348,015,677 | IssuesEvent | 2019-09-04 18:46:02 | dotnet/corefx | https://api.github.com/repos/dotnet/corefx | closed | Cancelling Http requests can result in "The handle is invalid" or other WinHTTP state errors | area-System.Net.Http bug os-windows tenet-reliability | Http requests can be cancelled in various ways using a cancellation token or even a timeout. Sometimes the CI tests timeout contacting the Azure test server due to network congestion, so this results in the requests getting cancelled as well by the HttpClient.Timeout property.
When Http requests are cancelled in WinHttpHandler, the WinHTTP handle is closed. This cancels any outstanding async operations in WinHTTP. However, the current CancellationTokenRegistration code is closing the handle without first seeing if there is an active operation in flight.
``` c#
private async void StartRequest(object obj)
{
// ...
using (state.CancellationToken.Register(s => ((WinHttpRequestState)s).RequestHandle.Dispose(), state))
{
do
{
// ...
} while (state.RetryRequest);
}
```
Since this cancellation is happening on a different thread from the main StartRequest() logic, it results in in-deterministic behavior.
PR #8693 (Fix cancellation of WinHttpHandler response stream reads) has a similar CancellationToken.Register logic but it correctly checks for an active operation. This same logic needs to apply to the StartRequest() operation.
This is the root cause of the following issues:
#8928
#8496
#8426
#8061
#8000
## History of failures
```
System.Net.Http.HttpRequestException : An error occurred while sending the request.
---- System.Net.Http.WinHttpException : The handle is invalid
```
Day | Build | OS | Test
-- | -- | -- | --
5/9 | 20170509.01 | Win7 | Timeout_SetTo30AndGetResponseFromLoopbackQuickly_Success
5/10 | 20170510.01 | Win7 | GetAsync_AllowedSSLVersion_Succeeds
5/11 | 20170511.01 | Win7 | GetAsync_AllowedSSLVersion_Succeeds
5/19 | 20170519.04 | Win7 | PostAsync_CallMethod_StreamContent
5/26 | 20170526.01 | Win7 | PostLongerContentLengths_UsesChunkedSemantics
5/30 | 20170530.06 | Win7 | SetDelegate_ConnectionSucceeds
6/4 | 20170604.02 | Win7 | NoCallback_RevokedCertificate_NoRevocationChecking_Succeeds
6/7 | 20170607.01 | Win7 | PostSyncBlockingContentUsingChunkedEncoding_Success
6/13 | 20170613.02 | Win7 | SetDelegate_ConnectionSucceeds
6/14 | 20170614.01 | Win7 | PostAsync_CallMethod_StreamContent
6/15 | 20170615.03 | Win7 | NoCallback_RevokedCertificate_NoRevocationChecking_Succeeds
6/15 | 20170615.03 | Win8.1 | GetAsync_ServerNeedsNonStandardAuthAndSetCredential_StatusCodeUnauthorized
6/16 | 20170616.01 | Win7 | PostAsync_CallMethod_EmptyContent
9/26 | 20170926.06 | Win7 | ReadAsStreamAsync_ValidServerResponse_Success
10/10 | 20171010.03 | Win7 | GetStreamAsync_ReadToEnd_Success
10/11 | 20171011.02 | Win7 | PostAsync_CallMethod_StreamContent
10/20 | 20171020.01 | Win7 | SetDelegate_ConnectionSucceeds
10/22 | 20171022.01 | Win7 | MaxResponseContentBufferSize_ThrowsIfTooSmallForContent
10/22 | 20171022.02 | Win7 | MaxResponseContentBufferSize_ThrowsIfTooSmallForContent
10/23 | 20171023.02 | Win7 | ReadAsStreamAsync_ValidServerResponse_Success
10/25 | 20171025.04 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
10/25 | 20171025.08 | Win7 | PostRewindableContentUsingAuth_NoPreAuthenticate_Success
10/25 | 20171025.08 | Win7 | PostAsync_CallMethod_StreamContent
10/27 | 20171027.03 | Win7 | PostUsingContentLengthSemantics_Success
10/30 | 20171030.01 | Win7 | PostRewindableContentUsingAuth_NoPreAuthenticate_Success
10/30 | 20171030.02 | Win7 | GetAsync_SupportedSSLVersion_Succeeds
10/31 | 20171030.05 | Win7 | SetDelegate_ConnectionSucceeds
11/3 | 20171103.07 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
11/6 | 20171106.03 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
11/6 | 20171106.01 | Win7 | PostRewindableContentUsingAuth_NoPreAuthenticate_Success
11/7 | 20171107.02 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
11/9 | 20171109.04 | Win7 | ReadAsStreamAsync_ValidServerResponse_Success
11/15 | 20171115.02 | Win7 | PostAsync_EmptyContent_ContentTypeHeaderNotSent
11/15 | 20171115.03 | Win7 | GetAsync_TrailingHeaders_Ignored
11/18 | 20171118.04 | Win7 | GetStreamAsync_ReadZeroBytes_Success
11/20 | 20171120.01 | Win7 | GetAsync_TrailingHeaders_Ignored
11/20 | 20171120.02 | Win7 | GetAsync_AllowedSSLVersion_Succeeds
11/22 | 20171122.02 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
11/23 | 20171123.02 | Win7 | GetAsync_ServerNeedsNonStandardAuthAndSetCredential_StatusCodeUnauthorized
11/24 | 20171124.01 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
11/27 | 20171127.06 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
11/28 | 20171128.01 | Win7 | SetDelegate_ConnectionSucceeds
11/28 | 20171128.07 | Win10 | UseCallback_NotSecureConnection_CallbackNotCalled
12/5 | 20171205.05 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
12/5 | 20171205.06 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
12/8 | 20171208.01 | Win7 | PostAsync_EmptyContent_ContentTypeHeaderNotSent
12/12 | 20171212.02 | Win7 | GetStreamAsync_ReadToEnd_Success
12/23 | 20171223.01 | Win7 | GetAsync_MaxLimited_ConcurrentCallsStillSucceed - [link](https://mc.dot.net/#/product/netcore/master/source/official%7E2Fcorefx%7E2Fmaster%7E2F/type/test%7E2Ffunctional%7E2Fcli%7E2F/build/20171223.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_MaxConnectionsPerServer_Test%7E2FGetAsync_MaxLimited_ConcurrentCallsStillSucceed(maxConnections:%203,%20numRequests:%202,%20secure:%20True))
12/24 | 20171224.02 | Win7 | GetAsync_MaxLimited_ConcurrentCallsStillSucceed - [link](https://mc.dot.net/#/product/netcore/master/source/official%7E2Fcorefx%7E2Fmaster%7E2F/type/test%7E2Ffunctional%7E2Fcli%7E2F/build/20171224.02/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_MaxConnectionsPerServer_Test%7E2FGetAsync_MaxLimited_ConcurrentCallsStillSucceed(maxConnections:%203,%20numRequests:%202,%20secure:%20True))
12/31 | 20171231.01 | Win7 | GetAsync_ServerNeedsNonStandardAuthAndSetCredential_StatusCodeUnauthorized - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20171231.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandlerTest~2FGetAsync_ServerNeedsNonStandardAuthAndSetCredential_StatusCodeUnauthorized(authHeaders:%20%5C%22WWW-Authenticate:%20CustomAuth%5C%5Cr%5C%5Cn%5C%22))
1/5 | 20180105.01 | Win7 | SetDelegate_ConnectionSucceeds - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180105.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_DangerousAcceptAllCertificatesValidator_Test~2FSetDelegate_ConnectionSucceeds(acceptedProtocol:%20Tls,%20Tls11,%20Tls12,%20requestOnlyThisProtocol:%20True))
1/10 | 20180110.03 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180110.03/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpProtocolTests_Dribble~2FGetAsync_ExpectedStatusCodeAndReason_Success(statusLine:%20%5C%22HTTP~2F1.1%20201%20Created%5C%22,%20expectedStatusCode:%20201,%20expectedReason:%20%5C%22Created%5C%22))
1/11 | 20180111.02 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180111.02/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpProtocolTests_Dribble~2FGetAsync_ExpectedStatusCodeAndReason_Success(statusLine:%20%5C%22HTTP~2F1.1%20500%20Internal%20Server%20Error%5C%22,%20expectedStatusCode:%20500,%20expectedReason:%20%5C%22Inter))
1/14 | 20180114.01 | Win7 | PostAsync_EmptyContent_ContentTypeHeaderNotSent - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180114.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.PostScenarioTest~2FPostAsync_EmptyContent_ContentTypeHeaderNotSent(serverUri:%20https:~2F~2Fcorefx-net.cloudapp.net~2FEcho.ashx))
1/16 | 20180116.01 | Win7 | SetDelegate_ConnectionSucceeds - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180116.03/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_DangerousAcceptAllCertificatesValidator_Test~2FSetDelegate_ConnectionSucceeds(acceptedProtocol:%20None,%20requestOnlyThisProtocol:%20True))
1/18 | 20180118.04 | Win7 | MaxResponseContentBufferSize_ThrowsIfTooSmallForContent - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180118.04/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpProtocolTests~2FMaxResponseContentBufferSize_ThrowsIfTooSmallForContent(maxSize:%202,%20contentLength:%201,%20exceptionExpected:%20False))
1/19 | 20180119.02 | Win7 | GetAsync_AllowedSSLVersion_Succeeds - [link](https://mc.dot.net/#/product/netcore/master/source/official%7E2Fcorefx%7E2Fmaster%7E2F/type/test%7E2Ffunctional%7E2Fcli%7E2F/build/20180119.02/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_SslProtocols_Test%7E2FGetAsync_AllowedSSLVersion_Succeeds(acceptedProtocol:%20Tls11,%20requestOnlyThisProtocol:%20False))
1/19 | 20180119.04 | Win7 | PostUsingContentLengthSemantics_Success - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180119.04/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.PostScenarioTest~2FPostUsingContentLengthSemantics_Success(serverUri:%20http:~2F~2Fcorefx-net.cloudapp.net~2FEcho.ashx))
1/21 | 20180121.01 | Win7 | MaxResponseContentBufferSize_ThrowsIfTooSmallForContent - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180121.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpProtocolTests~2FMaxResponseContentBufferSize_ThrowsIfTooSmallForContent(maxSize:%202,%20contentLength:%201,%20exceptionExpected:%20False))
1/22 | 20180122.02 | Win7 | ReadAsStreamAsync_ValidServerResponse_Success - only in [catastrophic failure logs](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180122.02/workItem/System.Net.Http.Functional.Tests/wilogs)
1/23 | 20180123.01 | Win7 | PostRewindableContentUsingAuth_NoPreAuthenticate_Success - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180123.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.PostScenarioTest~2FPostRewindableContentUsingAuth_NoPreAuthenticate_Success(serverUri:%20http:~2F~2Fcorefx-net.cloudapp.net~2FEcho.ashx%3Fauth=basic&user=user1&password=password1))
1/23 | 20180123.01 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180123.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpProtocolTests~2FGetAsync_ExpectedStatusCodeAndReason_Success(statusLine:%20%5C%22HTTP~2F1.1%20200%20OK%C2%80%5C%22,%20expectedStatusCode:%20200,%20expectedReason:%20%5C%22OK%3F%5C%22))
1/23 | 20180123.01 | Win7 | GetAsync_MaxLimited_ConcurrentCallsStillSucceed - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180123.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_MaxConnectionsPerServer_Test~2FGetAsync_MaxLimited_ConcurrentCallsStillSucceed(maxConnections:%203,%20numRequests:%205,%20secure:%20False))
1/25 | 20180125.01 | Win7 | PostAsync_ReuseRequestContent_Success - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180125.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandlerTest~2FPostAsync_ReuseRequestContent_Success(remoteServer:%20http:~2F~2Fcorefx-net.cloudapp.net~2FEcho.ashx))
1/27 | 20180127.01 | Win7 | GetAsync_TrailingHeaders_Ignored - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180127.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandlerTest~2FGetAsync_TrailingHeaders_Ignored(includeTrailerHeader:%20True))
1/27 | 20180127.04 | Win10 | PostRepeatedFlushContentUsingChunkedEncoding_Success - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180127.04/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.PostScenarioTest~2FPostRepeatedFlushContentUsingChunkedEncoding_Success(serverUri:%20http:~2F~2Fcorefx-net.cloudapp.net~2FEcho.ashx))
1/27 | 20180127.04 | Win7 | GetAsync_RedirectResponseHasCookie_CookieSentToFinalUri - only in [catastrophic failure logs](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180127.04/workItem/System.Net.Http.Functional.Tests/wilogs)
1/29 | 20180129.05 | Win7 | GetAsync_MaxLimited_ConcurrentCallsStillSucceed - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180129.05/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_MaxConnectionsPerServer_Test~2FGetAsync_MaxLimited_ConcurrentCallsStillSucceed(maxConnections:%203,%20numRequests:%202,%20secure:%20True))
1/30 | 20180130.05 | Win7 | PostEmptyContentUsingConflictingSemantics_Success - only in [catastrophic failure logs](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180130.05/workItem/System.Net.Http.Functional.Tests/wilogs)
1/31 | 20180131.05 | Win7 | SetDelegate_ConnectionSucceeds - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180131.05/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_DangerousAcceptAllCertificatesValidator_Test~2FSetDelegate_ConnectionSucceeds(acceptedProtocol:%20Tls,%20Tls11,%20Tls12,%20requestOnlyThisProtocol:%20True))
2/1 | 20180201.01 | Win7 | PostUsingChunkedEncoding_Success - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180201.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.PostScenarioTest~2FPostUsingChunkedEncoding_Success(serverUri:%20https:~2F~2Fcorefx-net.cloudapp.net~2FEcho.ashx))
2/1 | 20180201.01 | Win7 | GetAsync_MaxLimited_ConcurrentCallsStillSucceed - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180201.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_MaxConnectionsPerServer_Test~2FGetAsync_MaxLimited_ConcurrentCallsStillSucceed(maxConnections:%203,%20numRequests:%205,%20secure:%20False))
2/1 | 20180201.05 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180201.05/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpProtocolTests~2FGetAsync_ExpectedStatusCodeAndReason_Success(statusLine:%20%5C%22HTTP~2F1.1%20200%20OK%C2%80%5C%22,%20expectedStatusCode:%20200,%20expectedReason:%20%5C%22OK%3F%5C%22))
2/5 | 20180205.01 | Win7 | SetDelegate_ConnectionSucceeds - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180205.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_DangerousAcceptAllCertificatesValidator_Test~2FSetDelegate_ConnectionSucceeds(acceptedProtocol:%20None,%20requestOnlyThisProtocol:%20False))
2/6 | 20180206.04 | Win7 | SetDelegate_ConnectionSucceeds - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180206.04/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_DangerousAcceptAllCertificatesValidator_Test~2FSetDelegate_ConnectionSucceeds(acceptedProtocol:%20None,%20requestOnlyThisProtocol:%20False))
2/6 | 20180206.05 | Win7 | UseCallback_NotSecureConnection_CallbackNotCalled - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180206.05/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_ServerCertificates_Test~2FUseCallback_NotSecureConnection_CallbackNotCalled)
2/8 | 20180208.01 | Win7 | 2x GetAsync_ExpectedStatusCodeAndReason_Success - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180208.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpProtocolTests~2FGetAsync_ExpectedStatusCodeAndReason_Success(statusLine:%20%5C%22HTTP~2F1.1%20200%20O%20K%5C%22,%20expectedStatusCode:%20200,%20expectedReason:%20%5C%22O%20K%5C%22)) and [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180208.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpProtocolTests~2FGetAsync_ExpectedStatusCodeAndReason_Success(statusLine:%20%5C%22HTTP~2F1.1%20600%20still%20valid%5C%22,%20expectedStatusCode:%20600,%20expectedReason:%20%5C%22still%20valid%5C%22))
2/9 | 20180209.05 | Win7 | ThresholdExceeded_ThrowsException - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180209.05/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_MaxResponseHeadersLength_Test~2FThresholdExceeded_ThrowsException(responseHeaders:%20%5C%22HTTP~2F1.1%20200%20OK%5C%5Cr%5C%5CnContent-Length:%200%5C%5Cr%5C%5CnCustom-000%5C%22...,%20maxResponseHeadersLe))
2/10 | 20180210.01 | Win7 | GetAsync_MaxLimited_ConcurrentCallsStillSucceed - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180210.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_MaxConnectionsPerServer_Test~2FGetAsync_MaxLimited_ConcurrentCallsStillSucceed(maxConnections:%203,%20numRequests:%205,%20secure:%20False))
2/10 | 20180210.01 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success - only in [catastrophic failure logs](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180210.01/workItem/System.Net.Http.Functional.Tests/wilogs)
2/13 | 20180213.01 | Win7 | ThresholdExceeded_ThrowsException
2/20 | 20180220.08 | Win7 | The handle is invalid | GetAsync_ExpectedStatusCodeAndReason_Success
2/21 | 20180221.01 | Win7 | The handle is invalid | GetAsync_ExpectedStatusCodeAndReason_Success
2/25 | 20180225.01 | Win7 | HttpClientHandler_IncorrectCredentials_Fails - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180225.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_Authentication_Test~2FHttpClientHandler_IncorrectCredentials_Fails(authenticateHeader:%20%5C%22WWW-Authenticate:%20Digest%20realm=%5C%5C%5C%22hello%5C%5C%5C%22,%20nonce=%5C%5C%5C%22%5C%22...))
2/25 | 20180225.02 | Win10 | HttpClientHandler_Authentication_Succeeds - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180225.02/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_Authentication_Test~2FHttpClientHandler_Authentication_Succeeds(authenticateHeader:%20%5C%22Basic%20something,%20Digest%20something%5C%22,%20result:%20False))
2/26 | 20180226.04 | Win7 | GetAsync_AllowedSSLVersion_Succeeds - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180226.04/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_SslProtocols_Test~2FGetAsync_AllowedSSLVersion_Succeeds(acceptedProtocol:%20Tls11,%20requestOnlyThisProtocol:%20True))
2/28 | 20180228.07 | Win7 | ThresholdExceeded_ThrowsException
3/1 | 20180301.01 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
3/2 | 20180302.06 | Win7 | ReadAsStreamAsync_ValidServerResponse_Success
3/4 | 20180304.01 | Win7 | ReadAsStreamAsync_ValidServerResponse_Success
3/7 | 20180307.03 | Win7 | GetAsync_MaxLimited_ConcurrentCallsStillSucceed
3/7 | 20180307.03 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
3/7 | 20180307.04 | Win7 | ReadAsStreamAsync_ValidServerResponse_Success
3/8 | 20180308.01 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
3/8 | 20180308.09 | Win7 | GetAsync_SetCookieContainer_CookieSent
3/10 | 20180310.02 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
3/14 | 20180314.01 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
3/17 | 20180317.03 | Win7 | GetAsync_MaxLimited_ConcurrentCallsStillSucceed
3/22 | 20180322.06 | Win7 | ThresholdExceeded_ThrowsException
#### Similar failure with IOException wrapped in the middle
```
System.Net.Http.HttpRequestException : Error while copying content to a stream.
---- System.IO.IOException : The write operation failed, see inner exception.
-------- System.Net.Http.WinHttpException : The handle is invalid
```
Day | Build | OS | Test
-- | -- | -- | --
11/17 | 20171117.04 | Win7 | PostUsingContentLengthSemantics_Success
12/2 | 20171202.01 | Win7 | PostAsync_ReuseRequestContent_Success | True | Cancelling Http requests can result in "The handle is invalid" or other WinHTTP state errors - Http requests can be cancelled in various ways using a cancellation token or even a timeout. Sometimes the CI tests timeout contacting the Azure test server due to network congestion, so this results in the requests getting cancelled as well by the HttpClient.Timeout property.
When Http requests are cancelled in WinHttpHandler, the WinHTTP handle is closed. This cancels any outstanding async operations in WinHTTP. However, the current CancellationTokenRegistration code is closing the handle without first seeing if there is an active operation in flight.
``` c#
private async void StartRequest(object obj)
{
// ...
using (state.CancellationToken.Register(s => ((WinHttpRequestState)s).RequestHandle.Dispose(), state))
{
do
{
// ...
} while (state.RetryRequest);
}
```
Since this cancellation is happening on a different thread from the main StartRequest() logic, it results in in-deterministic behavior.
PR #8693 (Fix cancellation of WinHttpHandler response stream reads) has a similar CancellationToken.Register logic but it correctly checks for an active operation. This same logic needs to apply to the StartRequest() operation.
This is the root cause of the following issues:
#8928
#8496
#8426
#8061
#8000
## History of failures
```
System.Net.Http.HttpRequestException : An error occurred while sending the request.
---- System.Net.Http.WinHttpException : The handle is invalid
```
Day | Build | OS | Test
-- | -- | -- | --
5/9 | 20170509.01 | Win7 | Timeout_SetTo30AndGetResponseFromLoopbackQuickly_Success
5/10 | 20170510.01 | Win7 | GetAsync_AllowedSSLVersion_Succeeds
5/11 | 20170511.01 | Win7 | GetAsync_AllowedSSLVersion_Succeeds
5/19 | 20170519.04 | Win7 | PostAsync_CallMethod_StreamContent
5/26 | 20170526.01 | Win7 | PostLongerContentLengths_UsesChunkedSemantics
5/30 | 20170530.06 | Win7 | SetDelegate_ConnectionSucceeds
6/4 | 20170604.02 | Win7 | NoCallback_RevokedCertificate_NoRevocationChecking_Succeeds
6/7 | 20170607.01 | Win7 | PostSyncBlockingContentUsingChunkedEncoding_Success
6/13 | 20170613.02 | Win7 | SetDelegate_ConnectionSucceeds
6/14 | 20170614.01 | Win7 | PostAsync_CallMethod_StreamContent
6/15 | 20170615.03 | Win7 | NoCallback_RevokedCertificate_NoRevocationChecking_Succeeds
6/15 | 20170615.03 | Win8.1 | GetAsync_ServerNeedsNonStandardAuthAndSetCredential_StatusCodeUnauthorized
6/16 | 20170616.01 | Win7 | PostAsync_CallMethod_EmptyContent
9/26 | 20170926.06 | Win7 | ReadAsStreamAsync_ValidServerResponse_Success
10/10 | 20171010.03 | Win7 | GetStreamAsync_ReadToEnd_Success
10/11 | 20171011.02 | Win7 | PostAsync_CallMethod_StreamContent
10/20 | 20171020.01 | Win7 | SetDelegate_ConnectionSucceeds
10/22 | 20171022.01 | Win7 | MaxResponseContentBufferSize_ThrowsIfTooSmallForContent
10/22 | 20171022.02 | Win7 | MaxResponseContentBufferSize_ThrowsIfTooSmallForContent
10/23 | 20171023.02 | Win7 | ReadAsStreamAsync_ValidServerResponse_Success
10/25 | 20171025.04 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
10/25 | 20171025.08 | Win7 | PostRewindableContentUsingAuth_NoPreAuthenticate_Success
10/25 | 20171025.08 | Win7 | PostAsync_CallMethod_StreamContent
10/27 | 20171027.03 | Win7 | PostUsingContentLengthSemantics_Success
10/30 | 20171030.01 | Win7 | PostRewindableContentUsingAuth_NoPreAuthenticate_Success
10/30 | 20171030.02 | Win7 | GetAsync_SupportedSSLVersion_Succeeds
10/31 | 20171030.05 | Win7 | SetDelegate_ConnectionSucceeds
11/3 | 20171103.07 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
11/6 | 20171106.03 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
11/6 | 20171106.01 | Win7 | PostRewindableContentUsingAuth_NoPreAuthenticate_Success
11/7 | 20171107.02 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
11/9 | 20171109.04 | Win7 | ReadAsStreamAsync_ValidServerResponse_Success
11/15 | 20171115.02 | Win7 | PostAsync_EmptyContent_ContentTypeHeaderNotSent
11/15 | 20171115.03 | Win7 | GetAsync_TrailingHeaders_Ignored
11/18 | 20171118.04 | Win7 | GetStreamAsync_ReadZeroBytes_Success
11/20 | 20171120.01 | Win7 | GetAsync_TrailingHeaders_Ignored
11/20 | 20171120.02 | Win7 | GetAsync_AllowedSSLVersion_Succeeds
11/22 | 20171122.02 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
11/23 | 20171123.02 | Win7 | GetAsync_ServerNeedsNonStandardAuthAndSetCredential_StatusCodeUnauthorized
11/24 | 20171124.01 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
11/27 | 20171127.06 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
11/28 | 20171128.01 | Win7 | SetDelegate_ConnectionSucceeds
11/28 | 20171128.07 | Win10 | UseCallback_NotSecureConnection_CallbackNotCalled
12/5 | 20171205.05 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
12/5 | 20171205.06 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
12/8 | 20171208.01 | Win7 | PostAsync_EmptyContent_ContentTypeHeaderNotSent
12/12 | 20171212.02 | Win7 | GetStreamAsync_ReadToEnd_Success
12/23 | 20171223.01 | Win7 | GetAsync_MaxLimited_ConcurrentCallsStillSucceed - [link](https://mc.dot.net/#/product/netcore/master/source/official%7E2Fcorefx%7E2Fmaster%7E2F/type/test%7E2Ffunctional%7E2Fcli%7E2F/build/20171223.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_MaxConnectionsPerServer_Test%7E2FGetAsync_MaxLimited_ConcurrentCallsStillSucceed(maxConnections:%203,%20numRequests:%202,%20secure:%20True))
12/24 | 20171224.02 | Win7 | GetAsync_MaxLimited_ConcurrentCallsStillSucceed - [link](https://mc.dot.net/#/product/netcore/master/source/official%7E2Fcorefx%7E2Fmaster%7E2F/type/test%7E2Ffunctional%7E2Fcli%7E2F/build/20171224.02/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_MaxConnectionsPerServer_Test%7E2FGetAsync_MaxLimited_ConcurrentCallsStillSucceed(maxConnections:%203,%20numRequests:%202,%20secure:%20True))
12/31 | 20171231.01 | Win7 | GetAsync_ServerNeedsNonStandardAuthAndSetCredential_StatusCodeUnauthorized - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20171231.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandlerTest~2FGetAsync_ServerNeedsNonStandardAuthAndSetCredential_StatusCodeUnauthorized(authHeaders:%20%5C%22WWW-Authenticate:%20CustomAuth%5C%5Cr%5C%5Cn%5C%22))
1/5 | 20180105.01 | Win7 | SetDelegate_ConnectionSucceeds - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180105.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_DangerousAcceptAllCertificatesValidator_Test~2FSetDelegate_ConnectionSucceeds(acceptedProtocol:%20Tls,%20Tls11,%20Tls12,%20requestOnlyThisProtocol:%20True))
1/10 | 20180110.03 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180110.03/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpProtocolTests_Dribble~2FGetAsync_ExpectedStatusCodeAndReason_Success(statusLine:%20%5C%22HTTP~2F1.1%20201%20Created%5C%22,%20expectedStatusCode:%20201,%20expectedReason:%20%5C%22Created%5C%22))
1/11 | 20180111.02 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180111.02/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpProtocolTests_Dribble~2FGetAsync_ExpectedStatusCodeAndReason_Success(statusLine:%20%5C%22HTTP~2F1.1%20500%20Internal%20Server%20Error%5C%22,%20expectedStatusCode:%20500,%20expectedReason:%20%5C%22Inter))
1/14 | 20180114.01 | Win7 | PostAsync_EmptyContent_ContentTypeHeaderNotSent - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180114.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.PostScenarioTest~2FPostAsync_EmptyContent_ContentTypeHeaderNotSent(serverUri:%20https:~2F~2Fcorefx-net.cloudapp.net~2FEcho.ashx))
1/16 | 20180116.01 | Win7 | SetDelegate_ConnectionSucceeds - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180116.03/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_DangerousAcceptAllCertificatesValidator_Test~2FSetDelegate_ConnectionSucceeds(acceptedProtocol:%20None,%20requestOnlyThisProtocol:%20True))
1/18 | 20180118.04 | Win7 | MaxResponseContentBufferSize_ThrowsIfTooSmallForContent - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180118.04/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpProtocolTests~2FMaxResponseContentBufferSize_ThrowsIfTooSmallForContent(maxSize:%202,%20contentLength:%201,%20exceptionExpected:%20False))
1/19 | 20180119.02 | Win7 | GetAsync_AllowedSSLVersion_Succeeds - [link](https://mc.dot.net/#/product/netcore/master/source/official%7E2Fcorefx%7E2Fmaster%7E2F/type/test%7E2Ffunctional%7E2Fcli%7E2F/build/20180119.02/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_SslProtocols_Test%7E2FGetAsync_AllowedSSLVersion_Succeeds(acceptedProtocol:%20Tls11,%20requestOnlyThisProtocol:%20False))
1/19 | 20180119.04 | Win7 | PostUsingContentLengthSemantics_Success - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180119.04/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.PostScenarioTest~2FPostUsingContentLengthSemantics_Success(serverUri:%20http:~2F~2Fcorefx-net.cloudapp.net~2FEcho.ashx))
1/21 | 20180121.01 | Win7 | MaxResponseContentBufferSize_ThrowsIfTooSmallForContent - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180121.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpProtocolTests~2FMaxResponseContentBufferSize_ThrowsIfTooSmallForContent(maxSize:%202,%20contentLength:%201,%20exceptionExpected:%20False))
1/22 | 20180122.02 | Win7 | ReadAsStreamAsync_ValidServerResponse_Success - only in [catastrophic failure logs](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180122.02/workItem/System.Net.Http.Functional.Tests/wilogs)
1/23 | 20180123.01 | Win7 | PostRewindableContentUsingAuth_NoPreAuthenticate_Success - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180123.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.PostScenarioTest~2FPostRewindableContentUsingAuth_NoPreAuthenticate_Success(serverUri:%20http:~2F~2Fcorefx-net.cloudapp.net~2FEcho.ashx%3Fauth=basic&user=user1&password=password1))
1/23 | 20180123.01 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180123.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpProtocolTests~2FGetAsync_ExpectedStatusCodeAndReason_Success(statusLine:%20%5C%22HTTP~2F1.1%20200%20OK%C2%80%5C%22,%20expectedStatusCode:%20200,%20expectedReason:%20%5C%22OK%3F%5C%22))
1/23 | 20180123.01 | Win7 | GetAsync_MaxLimited_ConcurrentCallsStillSucceed - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180123.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_MaxConnectionsPerServer_Test~2FGetAsync_MaxLimited_ConcurrentCallsStillSucceed(maxConnections:%203,%20numRequests:%205,%20secure:%20False))
1/25 | 20180125.01 | Win7 | PostAsync_ReuseRequestContent_Success - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180125.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandlerTest~2FPostAsync_ReuseRequestContent_Success(remoteServer:%20http:~2F~2Fcorefx-net.cloudapp.net~2FEcho.ashx))
1/27 | 20180127.01 | Win7 | GetAsync_TrailingHeaders_Ignored - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180127.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandlerTest~2FGetAsync_TrailingHeaders_Ignored(includeTrailerHeader:%20True))
1/27 | 20180127.04 | Win10 | PostRepeatedFlushContentUsingChunkedEncoding_Success - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180127.04/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.PostScenarioTest~2FPostRepeatedFlushContentUsingChunkedEncoding_Success(serverUri:%20http:~2F~2Fcorefx-net.cloudapp.net~2FEcho.ashx))
1/27 | 20180127.04 | Win7 | GetAsync_RedirectResponseHasCookie_CookieSentToFinalUri - only in [catastrophic failure logs](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180127.04/workItem/System.Net.Http.Functional.Tests/wilogs)
1/29 | 20180129.05 | Win7 | GetAsync_MaxLimited_ConcurrentCallsStillSucceed - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180129.05/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_MaxConnectionsPerServer_Test~2FGetAsync_MaxLimited_ConcurrentCallsStillSucceed(maxConnections:%203,%20numRequests:%202,%20secure:%20True))
1/30 | 20180130.05 | Win7 | PostEmptyContentUsingConflictingSemantics_Success - only in [catastrophic failure logs](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180130.05/workItem/System.Net.Http.Functional.Tests/wilogs)
1/31 | 20180131.05 | Win7 | SetDelegate_ConnectionSucceeds - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180131.05/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_DangerousAcceptAllCertificatesValidator_Test~2FSetDelegate_ConnectionSucceeds(acceptedProtocol:%20Tls,%20Tls11,%20Tls12,%20requestOnlyThisProtocol:%20True))
2/1 | 20180201.01 | Win7 | PostUsingChunkedEncoding_Success - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180201.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.PostScenarioTest~2FPostUsingChunkedEncoding_Success(serverUri:%20https:~2F~2Fcorefx-net.cloudapp.net~2FEcho.ashx))
2/1 | 20180201.01 | Win7 | GetAsync_MaxLimited_ConcurrentCallsStillSucceed - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180201.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_MaxConnectionsPerServer_Test~2FGetAsync_MaxLimited_ConcurrentCallsStillSucceed(maxConnections:%203,%20numRequests:%205,%20secure:%20False))
2/1 | 20180201.05 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180201.05/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpProtocolTests~2FGetAsync_ExpectedStatusCodeAndReason_Success(statusLine:%20%5C%22HTTP~2F1.1%20200%20OK%C2%80%5C%22,%20expectedStatusCode:%20200,%20expectedReason:%20%5C%22OK%3F%5C%22))
2/5 | 20180205.01 | Win7 | SetDelegate_ConnectionSucceeds - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180205.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_DangerousAcceptAllCertificatesValidator_Test~2FSetDelegate_ConnectionSucceeds(acceptedProtocol:%20None,%20requestOnlyThisProtocol:%20False))
2/6 | 20180206.04 | Win7 | SetDelegate_ConnectionSucceeds - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180206.04/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_DangerousAcceptAllCertificatesValidator_Test~2FSetDelegate_ConnectionSucceeds(acceptedProtocol:%20None,%20requestOnlyThisProtocol:%20False))
2/6 | 20180206.05 | Win7 | UseCallback_NotSecureConnection_CallbackNotCalled - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180206.05/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_ServerCertificates_Test~2FUseCallback_NotSecureConnection_CallbackNotCalled)
2/8 | 20180208.01 | Win7 | 2x GetAsync_ExpectedStatusCodeAndReason_Success - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180208.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpProtocolTests~2FGetAsync_ExpectedStatusCodeAndReason_Success(statusLine:%20%5C%22HTTP~2F1.1%20200%20O%20K%5C%22,%20expectedStatusCode:%20200,%20expectedReason:%20%5C%22O%20K%5C%22)) and [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180208.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpProtocolTests~2FGetAsync_ExpectedStatusCodeAndReason_Success(statusLine:%20%5C%22HTTP~2F1.1%20600%20still%20valid%5C%22,%20expectedStatusCode:%20600,%20expectedReason:%20%5C%22still%20valid%5C%22))
2/9 | 20180209.05 | Win7 | ThresholdExceeded_ThrowsException - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180209.05/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_MaxResponseHeadersLength_Test~2FThresholdExceeded_ThrowsException(responseHeaders:%20%5C%22HTTP~2F1.1%20200%20OK%5C%5Cr%5C%5CnContent-Length:%200%5C%5Cr%5C%5CnCustom-000%5C%22...,%20maxResponseHeadersLe))
2/10 | 20180210.01 | Win7 | GetAsync_MaxLimited_ConcurrentCallsStillSucceed - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180210.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_MaxConnectionsPerServer_Test~2FGetAsync_MaxLimited_ConcurrentCallsStillSucceed(maxConnections:%203,%20numRequests:%205,%20secure:%20False))
2/10 | 20180210.01 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success - only in [catastrophic failure logs](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180210.01/workItem/System.Net.Http.Functional.Tests/wilogs)
2/13 | 20180213.01 | Win7 | ThresholdExceeded_ThrowsException
2/20 | 20180220.08 | Win7 | The handle is invalid | GetAsync_ExpectedStatusCodeAndReason_Success
2/21 | 20180221.01 | Win7 | The handle is invalid | GetAsync_ExpectedStatusCodeAndReason_Success
2/25 | 20180225.01 | Win7 | HttpClientHandler_IncorrectCredentials_Fails - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180225.01/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_Authentication_Test~2FHttpClientHandler_IncorrectCredentials_Fails(authenticateHeader:%20%5C%22WWW-Authenticate:%20Digest%20realm=%5C%5C%5C%22hello%5C%5C%5C%22,%20nonce=%5C%5C%5C%22%5C%22...))
2/25 | 20180225.02 | Win10 | HttpClientHandler_Authentication_Succeeds - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180225.02/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_Authentication_Test~2FHttpClientHandler_Authentication_Succeeds(authenticateHeader:%20%5C%22Basic%20something,%20Digest%20something%5C%22,%20result:%20False))
2/26 | 20180226.04 | Win7 | GetAsync_AllowedSSLVersion_Succeeds - [link](https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20180226.04/workItem/System.Net.Http.Functional.Tests/analysis/xunit/System.Net.Http.Functional.Tests.HttpClientHandler_SslProtocols_Test~2FGetAsync_AllowedSSLVersion_Succeeds(acceptedProtocol:%20Tls11,%20requestOnlyThisProtocol:%20True))
2/28 | 20180228.07 | Win7 | ThresholdExceeded_ThrowsException
3/1 | 20180301.01 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
3/2 | 20180302.06 | Win7 | ReadAsStreamAsync_ValidServerResponse_Success
3/4 | 20180304.01 | Win7 | ReadAsStreamAsync_ValidServerResponse_Success
3/7 | 20180307.03 | Win7 | GetAsync_MaxLimited_ConcurrentCallsStillSucceed
3/7 | 20180307.03 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
3/7 | 20180307.04 | Win7 | ReadAsStreamAsync_ValidServerResponse_Success
3/8 | 20180308.01 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
3/8 | 20180308.09 | Win7 | GetAsync_SetCookieContainer_CookieSent
3/10 | 20180310.02 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
3/14 | 20180314.01 | Win7 | GetAsync_ExpectedStatusCodeAndReason_Success
3/17 | 20180317.03 | Win7 | GetAsync_MaxLimited_ConcurrentCallsStillSucceed
3/22 | 20180322.06 | Win7 | ThresholdExceeded_ThrowsException
#### Similar failure with IOException wrapped in the middle
```
System.Net.Http.HttpRequestException : Error while copying content to a stream.
---- System.IO.IOException : The write operation failed, see inner exception.
-------- System.Net.Http.WinHttpException : The handle is invalid
```
Day | Build | OS | Test
-- | -- | -- | --
11/17 | 20171117.04 | Win7 | PostUsingContentLengthSemantics_Success
12/2 | 20171202.01 | Win7 | PostAsync_ReuseRequestContent_Success | non_defect | cancelling http requests can result in the handle is invalid or other winhttp state errors http requests can be cancelled in various ways using a cancellation token or even a timeout sometimes the ci tests timeout contacting the azure test server due to network congestion so this results in the requests getting cancelled as well by the httpclient timeout property when http requests are cancelled in winhttphandler the winhttp handle is closed this cancels any outstanding async operations in winhttp however the current cancellationtokenregistration code is closing the handle without first seeing if there is an active operation in flight c private async void startrequest object obj using state cancellationtoken register s winhttprequeststate s requesthandle dispose state do while state retryrequest since this cancellation is happening on a different thread from the main startrequest logic it results in in deterministic behavior pr fix cancellation of winhttphandler response stream reads has a similar cancellationtoken register logic but it correctly checks for an active operation this same logic needs to apply to the startrequest operation this is the root cause of the following issues history of failures system net http httprequestexception an error occurred while sending the request system net http winhttpexception the handle is invalid day build os test timeout success getasync allowedsslversion succeeds getasync allowedsslversion succeeds postasync callmethod streamcontent postlongercontentlengths useschunkedsemantics setdelegate connectionsucceeds nocallback revokedcertificate norevocationchecking succeeds postsyncblockingcontentusingchunkedencoding success setdelegate connectionsucceeds postasync callmethod streamcontent nocallback revokedcertificate norevocationchecking succeeds getasync serverneedsnonstandardauthandsetcredential statuscodeunauthorized postasync callmethod emptycontent readasstreamasync validserverresponse success getstreamasync readtoend success postasync callmethod streamcontent setdelegate connectionsucceeds maxresponsecontentbuffersize throwsiftoosmallforcontent maxresponsecontentbuffersize throwsiftoosmallforcontent readasstreamasync validserverresponse success getasync expectedstatuscodeandreason success postrewindablecontentusingauth nopreauthenticate success postasync callmethod streamcontent postusingcontentlengthsemantics success postrewindablecontentusingauth nopreauthenticate success getasync supportedsslversion succeeds setdelegate connectionsucceeds getasync expectedstatuscodeandreason success getasync expectedstatuscodeandreason success postrewindablecontentusingauth nopreauthenticate success getasync expectedstatuscodeandreason success readasstreamasync validserverresponse success postasync emptycontent contenttypeheadernotsent getasync trailingheaders ignored getstreamasync readzerobytes success getasync trailingheaders ignored getasync allowedsslversion succeeds getasync expectedstatuscodeandreason success getasync serverneedsnonstandardauthandsetcredential statuscodeunauthorized getasync expectedstatuscodeandreason success getasync expectedstatuscodeandreason success setdelegate connectionsucceeds usecallback notsecureconnection callbacknotcalled getasync expectedstatuscodeandreason success getasync expectedstatuscodeandreason success postasync emptycontent contenttypeheadernotsent getstreamasync readtoend success getasync maxlimited concurrentcallsstillsucceed getasync maxlimited concurrentcallsstillsucceed getasync serverneedsnonstandardauthandsetcredential statuscodeunauthorized setdelegate connectionsucceeds getasync expectedstatuscodeandreason success getasync expectedstatuscodeandreason success postasync emptycontent contenttypeheadernotsent setdelegate connectionsucceeds maxresponsecontentbuffersize throwsiftoosmallforcontent getasync allowedsslversion succeeds postusingcontentlengthsemantics success maxresponsecontentbuffersize throwsiftoosmallforcontent readasstreamasync validserverresponse success only in postrewindablecontentusingauth nopreauthenticate success getasync expectedstatuscodeandreason success getasync maxlimited concurrentcallsstillsucceed postasync reuserequestcontent success getasync trailingheaders ignored postrepeatedflushcontentusingchunkedencoding success getasync redirectresponsehascookie cookiesenttofinaluri only in getasync maxlimited concurrentcallsstillsucceed postemptycontentusingconflictingsemantics success only in setdelegate connectionsucceeds postusingchunkedencoding success getasync maxlimited concurrentcallsstillsucceed getasync expectedstatuscodeandreason success setdelegate connectionsucceeds setdelegate connectionsucceeds usecallback notsecureconnection callbacknotcalled getasync expectedstatuscodeandreason success and thresholdexceeded throwsexception getasync maxlimited concurrentcallsstillsucceed getasync expectedstatuscodeandreason success only in thresholdexceeded throwsexception the handle is invalid getasync expectedstatuscodeandreason success the handle is invalid getasync expectedstatuscodeandreason success httpclienthandler incorrectcredentials fails httpclienthandler authentication succeeds getasync allowedsslversion succeeds thresholdexceeded throwsexception getasync expectedstatuscodeandreason success readasstreamasync validserverresponse success readasstreamasync validserverresponse success getasync maxlimited concurrentcallsstillsucceed getasync expectedstatuscodeandreason success readasstreamasync validserverresponse success getasync expectedstatuscodeandreason success getasync setcookiecontainer cookiesent getasync expectedstatuscodeandreason success getasync expectedstatuscodeandreason success getasync maxlimited concurrentcallsstillsucceed thresholdexceeded throwsexception similar failure with ioexception wrapped in the middle system net http httprequestexception error while copying content to a stream system io ioexception the write operation failed see inner exception system net http winhttpexception the handle is invalid day build os test postusingcontentlengthsemantics success postasync reuserequestcontent success | 0 |
1,326 | 2,603,785,427 | IssuesEvent | 2015-02-24 17:54:57 | chrsmith/nishazi6 | https://api.github.com/repos/chrsmith/nishazi6 | opened | 沈阳龟头长东西怎么办 | auto-migrated Priority-Medium Type-Defect | ```
沈阳龟头长东西怎么办〓沈陽軍區政治部醫院性病〓TEL:024-3
1023308〓成立于1946年,68年專注于性傳播疾病的研究和治療。�
��于沈陽市沈河區二緯路32號。是一所與新中國同建立共輝煌�
��歷史悠久、設備精良、技術權威、專家云集,是預防、保健
、醫療、科研康復為一體的綜合性醫院。是國家首批公立甲��
�部隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、�
��南大學等知名高等院校的教學醫院。曾被中國人民解放軍空
軍后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體��
�等功。
```
-----
Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 8:23 | 1.0 | 沈阳龟头长东西怎么办 - ```
沈阳龟头长东西怎么办〓沈陽軍區政治部醫院性病〓TEL:024-3
1023308〓成立于1946年,68年專注于性傳播疾病的研究和治療。�
��于沈陽市沈河區二緯路32號。是一所與新中國同建立共輝煌�
��歷史悠久、設備精良、技術權威、專家云集,是預防、保健
、醫療、科研康復為一體的綜合性醫院。是國家首批公立甲��
�部隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、�
��南大學等知名高等院校的教學醫院。曾被中國人民解放軍空
軍后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體��
�等功。
```
-----
Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 8:23 | defect | 沈阳龟头长东西怎么办 沈阳龟头长东西怎么办〓沈陽軍區政治部醫院性病〓tel: 〓 , 。� �� 。是一所與新中國同建立共輝煌� ��歷史悠久、設備精良、技術權威、專家云集,是預防、保健 、醫療、科研康復為一體的綜合性醫院。是國家首批公立甲�� �部隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、� ��南大學等知名高等院校的教學醫院。曾被中國人民解放軍空 軍后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體�� �等功。 original issue reported on code google com by gmail com on jun at | 1 |
6,750 | 2,610,275,687 | IssuesEvent | 2015-02-26 19:28:13 | chrsmith/scribefire-chrome | https://api.github.com/repos/chrsmith/scribefire-chrome | closed | Scribe Won't Post to Posterous | auto-migrated Priority-Medium Type-Defect | ```
What's the problem?
When I click the publish button to publish to Posterous it freezes and doesn't
post the item to the blog.
What browser are you using?
Firefox Beta 4.11?
What version of ScribeFire are you running?
1.5.1
```
-----
Original issue reported on code.google.com by `receivel...@gmail.com` on 28 Mar 2011 at 9:23 | 1.0 | Scribe Won't Post to Posterous - ```
What's the problem?
When I click the publish button to publish to Posterous it freezes and doesn't
post the item to the blog.
What browser are you using?
Firefox Beta 4.11?
What version of ScribeFire are you running?
1.5.1
```
-----
Original issue reported on code.google.com by `receivel...@gmail.com` on 28 Mar 2011 at 9:23 | defect | scribe won t post to posterous what s the problem when i click the publish button to publish to posterous it freezes and doesn t post the item to the blog what browser are you using firefox beta what version of scribefire are you running original issue reported on code google com by receivel gmail com on mar at | 1 |
63,180 | 17,409,799,808 | IssuesEvent | 2021-08-03 10:48:07 | vector-im/element-web | https://api.github.com/repos/vector-im/element-web | closed | Unable to copy text from room description if no permission to change it | T-Defect | #### Steps to reproduce
- Go to the room settings for any room which you are not a moderator of
- Text in the room description is greyed out because you don’t have permission to change it. You can still select parts of it. Select text.
- Right click on it.
Expected: “Copy” is possible.
Actual result: “Copy” is disabled.

This was discovered because a room description was too long to be displayed completely in the header and I went to the room settings to copy a link from there.
#### Version information
- **Platform**: web
- **Browser**: Firefox 90.0.2
- **OS**: Fedora 34
- **URL**: app.element.io
| 1.0 | Unable to copy text from room description if no permission to change it - #### Steps to reproduce
- Go to the room settings for any room which you are not a moderator of
- Text in the room description is greyed out because you don’t have permission to change it. You can still select parts of it. Select text.
- Right click on it.
Expected: “Copy” is possible.
Actual result: “Copy” is disabled.

This was discovered because a room description was too long to be displayed completely in the header and I went to the room settings to copy a link from there.
#### Version information
- **Platform**: web
- **Browser**: Firefox 90.0.2
- **OS**: Fedora 34
- **URL**: app.element.io
| defect | unable to copy text from room description if no permission to change it steps to reproduce go to the room settings for any room which you are not a moderator of text in the room description is greyed out because you don’t have permission to change it you can still select parts of it select text right click on it expected “copy” is possible actual result “copy” is disabled this was discovered because a room description was too long to be displayed completely in the header and i went to the room settings to copy a link from there version information platform web browser firefox os fedora url app element io | 1 |
12,845 | 8,015,150,675 | IssuesEvent | 2018-07-25 09:06:41 | rust-lang-nursery/packed_simd | https://api.github.com/repos/rust-lang-nursery/packed_simd | opened | Mandelbrot example should use rayon | Example Performance enhancement | The Mandelbrot example should use rayon to split the number of lines into the number of available threads and process those in parallel. | True | Mandelbrot example should use rayon - The Mandelbrot example should use rayon to split the number of lines into the number of available threads and process those in parallel. | non_defect | mandelbrot example should use rayon the mandelbrot example should use rayon to split the number of lines into the number of available threads and process those in parallel | 0 |
43,921 | 11,348,841,267 | IssuesEvent | 2020-01-24 02:01:05 | angular/angular-cli | https://api.github.com/repos/angular/angular-cli | closed | Imported Sass/Scss files do not trigger a refresh when using ng serve in aot mode | comp: devkit/build-angular freq2: medium severity3: broken type: bug/fix workaround2: non-obvious | # 🐞 Bug report
### Command (mark with an `x`)
<!-- Can you pin-point the command or commands that are effected by this bug? -->
<!-- ✍️edit: -->
- [ ] new
- [ ] build
- [x] serve
- [ ] test
- [ ] e2e
- [ ] generate
- [ ] add
- [ ] update
- [ ] lint
- [ ] xi18n
- [ ] run
- [ ] config
- [ ] help
- [ ] version
- [ ] doc
### Is this a regression?
It doesn't seem to be a regression as I have the exact same problem with both angular 8 and 9
For the sake of helping figure out the problem, I created a fresh project, did some tests, then upgraded to angular 9 and did some tests again.
### Description
#### Angular 8 :
When using "ng serve --aot", modifying an imported scss file does not trigger a refresh. It does however when using only "ng serve"
#### Angular 9
When using "ng serve" (aot is enabled by default when upgrading from 8 to 9), modifying an imported scss file does not trigger a refresh. If you disable aot in angular.json, then it works.
## 🔬 Minimal Reproduction
<!--
Simple steps to reproduce this bug.
Please include: commands run (including args), packages added, related code changes.
If reproduction steps are not enough for reproduction of your issue, please create a minimal GitHub repository with the reproduction of the issue.
A good way to make a minimal reproduction is to create a new app via `ng new repro-app` and add the minimum possible code to show the problem.
Share the link to the repo below along with step-by-step instructions to reproduce the problem, as well as expected and actual behavior.
Issues that don't have enough info and can't be reproduced will be closed.
You can read more about issue submission guidelines here: https://github.com/angular/angular-cli/blob/master/CONTRIBUTING.md#-submitting-an-issue
-->
#### Angular 8
1. Create a new angular project : "ng new test-css". Chose no routing, and scss style format
2. Modify app.component.html to contain only that :
```
<div class="my-class">
Text
</div>
```
3. Modify app.component.scss to contain only that :
```
@import '../custom.scss';
.my-class {
color: $color;
}
```
4. Create a file named custom.scss in the src folder that contains this :
```
// $color: green;
$color: red;
```
5. run "ng serve --aot" => the text is red
6. comment the red color line and uncomment the green one, then save => nothing happens
7. save app.component.scss => a refresh is done but the color is still red, save again, the color is green.
## 🔥 Exception or Error
Not applicable.
## 🌍 Your Environment
Using visual studio code insiders 1.42.0
<!-- run `ng version` and paste output below -->
<pre><code>
Angular CLI: 8.3.21
Node: 12.13.1
OS: win32 x64
Angular: 8.2.14
... animations, common, compiler, compiler-cli, core, forms
... language-service, platform-browser, platform-browser-dynamic
... router
Package Version
-----------------------------------------------------------
@angular-devkit/architect 0.803.21
@angular-devkit/build-angular 0.803.21
@angular-devkit/build-optimizer 0.803.21
@angular-devkit/build-webpack 0.803.21
@angular-devkit/core 8.3.21
@angular-devkit/schematics 8.3.21
@angular/cli 8.3.21
@ngtools/webpack 8.3.21
@schematics/angular 8.3.21
@schematics/update 0.803.21
rxjs 6.4.0
typescript 3.5.3
webpack 4.39.2 0.803.21
rxjs 6.4.0
</code></pre>
<pre><code>
Angular CLI: 9.0.0-rc.7
Node: 12.13.1
OS: win32 x64
Angular: 9.0.0-rc.7
... animations, cli, common, compiler, compiler-cli, core, forms
... language-service, platform-browser, platform-browser-dynamic
... router
Ivy Workspace: Yes
Package Version
-----------------------------------------------------------
@angular-devkit/architect 0.900.0-rc.7
@angular-devkit/build-angular 0.900.0-rc.7
@angular-devkit/build-optimizer 0.900.0-rc.7
@angular-devkit/build-webpack 0.900.0-rc.7
@angular-devkit/core 9.0.0-rc.7
@angular-devkit/schematics 9.0.0-rc.7
@ngtools/webpack 9.0.0-rc.7
@schematics/angular 9.0.0-rc.7
@schematics/update 0.900.0-rc.7
rxjs 6.5.4
typescript 3.6.4
webpack 4.41.2
</code></pre>
**Anything else relevant?**
<!-- ✍️Is this a browser specific issue? If so, please specify the browser and version. -->
<!-- ✍️Do any of these matter: operating system, IDE, package manager, HTTP server, ...? If so, please mention it below. -->
| 1.0 | Imported Sass/Scss files do not trigger a refresh when using ng serve in aot mode - # 🐞 Bug report
### Command (mark with an `x`)
<!-- Can you pin-point the command or commands that are effected by this bug? -->
<!-- ✍️edit: -->
- [ ] new
- [ ] build
- [x] serve
- [ ] test
- [ ] e2e
- [ ] generate
- [ ] add
- [ ] update
- [ ] lint
- [ ] xi18n
- [ ] run
- [ ] config
- [ ] help
- [ ] version
- [ ] doc
### Is this a regression?
It doesn't seem to be a regression as I have the exact same problem with both angular 8 and 9
For the sake of helping figure out the problem, I created a fresh project, did some tests, then upgraded to angular 9 and did some tests again.
### Description
#### Angular 8 :
When using "ng serve --aot", modifying an imported scss file does not trigger a refresh. It does however when using only "ng serve"
#### Angular 9
When using "ng serve" (aot is enabled by default when upgrading from 8 to 9), modifying an imported scss file does not trigger a refresh. If you disable aot in angular.json, then it works.
## 🔬 Minimal Reproduction
<!--
Simple steps to reproduce this bug.
Please include: commands run (including args), packages added, related code changes.
If reproduction steps are not enough for reproduction of your issue, please create a minimal GitHub repository with the reproduction of the issue.
A good way to make a minimal reproduction is to create a new app via `ng new repro-app` and add the minimum possible code to show the problem.
Share the link to the repo below along with step-by-step instructions to reproduce the problem, as well as expected and actual behavior.
Issues that don't have enough info and can't be reproduced will be closed.
You can read more about issue submission guidelines here: https://github.com/angular/angular-cli/blob/master/CONTRIBUTING.md#-submitting-an-issue
-->
#### Angular 8
1. Create a new angular project : "ng new test-css". Chose no routing, and scss style format
2. Modify app.component.html to contain only that :
```
<div class="my-class">
Text
</div>
```
3. Modify app.component.scss to contain only that :
```
@import '../custom.scss';
.my-class {
color: $color;
}
```
4. Create a file named custom.scss in the src folder that contains this :
```
// $color: green;
$color: red;
```
5. run "ng serve --aot" => the text is red
6. comment the red color line and uncomment the green one, then save => nothing happens
7. save app.component.scss => a refresh is done but the color is still red, save again, the color is green.
## 🔥 Exception or Error
Not applicable.
## 🌍 Your Environment
Using visual studio code insiders 1.42.0
<!-- run `ng version` and paste output below -->
<pre><code>
Angular CLI: 8.3.21
Node: 12.13.1
OS: win32 x64
Angular: 8.2.14
... animations, common, compiler, compiler-cli, core, forms
... language-service, platform-browser, platform-browser-dynamic
... router
Package Version
-----------------------------------------------------------
@angular-devkit/architect 0.803.21
@angular-devkit/build-angular 0.803.21
@angular-devkit/build-optimizer 0.803.21
@angular-devkit/build-webpack 0.803.21
@angular-devkit/core 8.3.21
@angular-devkit/schematics 8.3.21
@angular/cli 8.3.21
@ngtools/webpack 8.3.21
@schematics/angular 8.3.21
@schematics/update 0.803.21
rxjs 6.4.0
typescript 3.5.3
webpack 4.39.2 0.803.21
rxjs 6.4.0
</code></pre>
<pre><code>
Angular CLI: 9.0.0-rc.7
Node: 12.13.1
OS: win32 x64
Angular: 9.0.0-rc.7
... animations, cli, common, compiler, compiler-cli, core, forms
... language-service, platform-browser, platform-browser-dynamic
... router
Ivy Workspace: Yes
Package Version
-----------------------------------------------------------
@angular-devkit/architect 0.900.0-rc.7
@angular-devkit/build-angular 0.900.0-rc.7
@angular-devkit/build-optimizer 0.900.0-rc.7
@angular-devkit/build-webpack 0.900.0-rc.7
@angular-devkit/core 9.0.0-rc.7
@angular-devkit/schematics 9.0.0-rc.7
@ngtools/webpack 9.0.0-rc.7
@schematics/angular 9.0.0-rc.7
@schematics/update 0.900.0-rc.7
rxjs 6.5.4
typescript 3.6.4
webpack 4.41.2
</code></pre>
**Anything else relevant?**
<!-- ✍️Is this a browser specific issue? If so, please specify the browser and version. -->
<!-- ✍️Do any of these matter: operating system, IDE, package manager, HTTP server, ...? If so, please mention it below. -->
| non_defect | imported sass scss files do not trigger a refresh when using ng serve in aot mode 🐞 bug report command mark with an x new build serve test generate add update lint run config help version doc is this a regression it doesn t seem to be a regression as i have the exact same problem with both angular and for the sake of helping figure out the problem i created a fresh project did some tests then upgraded to angular and did some tests again description angular when using ng serve aot modifying an imported scss file does not trigger a refresh it does however when using only ng serve angular when using ng serve aot is enabled by default when upgrading from to modifying an imported scss file does not trigger a refresh if you disable aot in angular json then it works 🔬 minimal reproduction simple steps to reproduce this bug please include commands run including args packages added related code changes if reproduction steps are not enough for reproduction of your issue please create a minimal github repository with the reproduction of the issue a good way to make a minimal reproduction is to create a new app via ng new repro app and add the minimum possible code to show the problem share the link to the repo below along with step by step instructions to reproduce the problem as well as expected and actual behavior issues that don t have enough info and can t be reproduced will be closed you can read more about issue submission guidelines here angular create a new angular project ng new test css chose no routing and scss style format modify app component html to contain only that text modify app component scss to contain only that import custom scss my class color color create a file named custom scss in the src folder that contains this color green color red run ng serve aot the text is red comment the red color line and uncomment the green one then save nothing happens save app component scss a refresh is done but the color is still red save again the color is green 🔥 exception or error not applicable 🌍 your environment using visual studio code insiders angular cli node os angular animations common compiler compiler cli core forms language service platform browser platform browser dynamic router package version angular devkit architect angular devkit build angular angular devkit build optimizer angular devkit build webpack angular devkit core angular devkit schematics angular cli ngtools webpack schematics angular schematics update rxjs typescript webpack rxjs angular cli rc node os angular rc animations cli common compiler compiler cli core forms language service platform browser platform browser dynamic router ivy workspace yes package version angular devkit architect rc angular devkit build angular rc angular devkit build optimizer rc angular devkit build webpack rc angular devkit core rc angular devkit schematics rc ngtools webpack rc schematics angular rc schematics update rc rxjs typescript webpack anything else relevant | 0 |
15,834 | 2,869,080,875 | IssuesEvent | 2015-06-05 23:10:45 | dart-lang/sdk | https://api.github.com/repos/dart-lang/sdk | closed | importing 'packages/polymer/polymer.dart' breaks element registering | Area-Pkg Pkg-Polymer Priority-Medium Triaged Type-Defect | We should warn if users try to import 'packages/polymer/polymer.dart' instead of 'package:polymer/polymer.dart'. | 1.0 | importing 'packages/polymer/polymer.dart' breaks element registering - We should warn if users try to import 'packages/polymer/polymer.dart' instead of 'package:polymer/polymer.dart'. | defect | importing packages polymer polymer dart breaks element registering we should warn if users try to import packages polymer polymer dart instead of package polymer polymer dart | 1 |
147,886 | 13,218,645,923 | IssuesEvent | 2020-08-17 09:06:01 | iamousseni/runtheons-validate | https://api.github.com/repos/iamousseni/runtheons-validate | opened | Documentation improvement advice | documentation | It would be great if you put some examples of using a certain type, such as date and datetime.
For example an example showing how I can use the min (or other) property for the date type. | 1.0 | Documentation improvement advice - It would be great if you put some examples of using a certain type, such as date and datetime.
For example an example showing how I can use the min (or other) property for the date type. | non_defect | documentation improvement advice it would be great if you put some examples of using a certain type such as date and datetime for example an example showing how i can use the min or other property for the date type | 0 |
51,303 | 13,207,425,584 | IssuesEvent | 2020-08-14 23:03:21 | icecube-trac/tix4 | https://api.github.com/repos/icecube-trac/tix4 | opened | terst (Trac #165) | Incomplete Migration Migrated from Trac combo reconstruction defect | <details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/165">https://code.icecube.wisc.edu/projects/icecube/ticket/165</a>, reported by cgilsand owned by kislat</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2009-06-30T13:34:54",
"_ts": "1246368894000000",
"description": "test test",
"reporter": "cgils",
"cc": "",
"resolution": "fixed",
"time": "2009-06-30T13:33:04",
"component": "combo reconstruction",
"summary": "terst",
"priority": "normal",
"keywords": "",
"milestone": "",
"owner": "kislat",
"type": "defect"
}
```
</p>
</details>
| 1.0 | terst (Trac #165) - <details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/165">https://code.icecube.wisc.edu/projects/icecube/ticket/165</a>, reported by cgilsand owned by kislat</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2009-06-30T13:34:54",
"_ts": "1246368894000000",
"description": "test test",
"reporter": "cgils",
"cc": "",
"resolution": "fixed",
"time": "2009-06-30T13:33:04",
"component": "combo reconstruction",
"summary": "terst",
"priority": "normal",
"keywords": "",
"milestone": "",
"owner": "kislat",
"type": "defect"
}
```
</p>
</details>
| defect | terst trac migrated from json status closed changetime ts description test test reporter cgils cc resolution fixed time component combo reconstruction summary terst priority normal keywords milestone owner kislat type defect | 1 |
61,531 | 17,023,717,696 | IssuesEvent | 2021-07-03 03:28:09 | tomhughes/trac-tickets | https://api.github.com/repos/tomhughes/trac-tickets | closed | Grünwald is NOT part of GroÃhesselohe | Component: nominatim Priority: major Resolution: duplicate Type: defect | **[Submitted to the original trac issue database at 11.27am, Saturday, 4th June 2011]**
All Grnwald streets I checked via nominatim are marked:
"Pommernstrae, Grohesselohe, Grnwald, Landkreis Mnchen, Regierungsbezirk Oberbayern, Bayern, 82031, Deutschland"
Grohesselohe is the northern part of Pullach im Isartal - the other side of the river Isar. (see also http://de.wikipedia.org/wiki/Pullach_im_Isartal ) | 1.0 | Grünwald is NOT part of GroÃhesselohe - **[Submitted to the original trac issue database at 11.27am, Saturday, 4th June 2011]**
All Grnwald streets I checked via nominatim are marked:
"Pommernstrae, Grohesselohe, Grnwald, Landkreis Mnchen, Regierungsbezirk Oberbayern, Bayern, 82031, Deutschland"
Grohesselohe is the northern part of Pullach im Isartal - the other side of the river Isar. (see also http://de.wikipedia.org/wiki/Pullach_im_Isartal ) | defect | grã¼nwald is not part of groãhesselohe all grnwald streets i checked via nominatim are marked pommernstrae grohesselohe grnwald landkreis mnchen regierungsbezirk oberbayern bayern deutschland grohesselohe is the northern part of pullach im isartal the other side of the river isar see also | 1 |
180,758 | 14,798,906,896 | IssuesEvent | 2021-01-13 00:56:58 | Qiskit/qiskit-tutorials | https://api.github.com/repos/Qiskit/qiskit-tutorials | closed | Typo in the algorithm tutorial 1 "01_algorithm_introduction" | documentation | ### What is the current behavior?
There is a typo in [01_algorithm_introduction.ipynb](https://github.com/Qiskit/qiskit-tutorials/blob/master/tutorials/algorithms/01_algorithms_introduction.ipynb)
It is at the last of the paragraph right after 5th code cell;
"... for the specific chemistry problem being solved. which it has to do the same thing."
### Suggested solutions
Modify the sentence as below;
"... for the specific chemistry problem being solved, which it has to do the same thing."
Or simply delete the last part as below;
"... for the specific chemistry problem being solved." | 1.0 | Typo in the algorithm tutorial 1 "01_algorithm_introduction" - ### What is the current behavior?
There is a typo in [01_algorithm_introduction.ipynb](https://github.com/Qiskit/qiskit-tutorials/blob/master/tutorials/algorithms/01_algorithms_introduction.ipynb)
It is at the last of the paragraph right after 5th code cell;
"... for the specific chemistry problem being solved. which it has to do the same thing."
### Suggested solutions
Modify the sentence as below;
"... for the specific chemistry problem being solved, which it has to do the same thing."
Or simply delete the last part as below;
"... for the specific chemistry problem being solved." | non_defect | typo in the algorithm tutorial algorithm introduction what is the current behavior there is a typo in it is at the last of the paragraph right after code cell for the specific chemistry problem being solved which it has to do the same thing suggested solutions modify the sentence as below for the specific chemistry problem being solved which it has to do the same thing or simply delete the last part as below for the specific chemistry problem being solved | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.