Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1 value | created_at stringlengths 19 19 | repo stringlengths 7 112 | repo_url stringlengths 36 141 | action stringclasses 3 values | title stringlengths 2 665 | labels stringlengths 4 554 | body stringlengths 3 235k | index stringclasses 6 values | text_combine stringlengths 96 235k | label stringclasses 2 values | text stringlengths 96 196k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
10,187 | 8,407,863,190 | IssuesEvent | 2018-10-11 22:29:37 | brave/brave-browser | https://api.github.com/repos/brave/brave-browser | opened | Test Windows installer for brave-core; ensure silent install possible | infrastructure setup/installer | We'll want to try (via CLI) the stub installer on Windows to ensure we can do a silent install. We can capture the exact shell command ran here too
If (for some reason) we run into problems doing that, we can ask folks who may be familiar with the installer (ex: @simonhong or @emerick) for help ๐ | 1.0 | Test Windows installer for brave-core; ensure silent install possible - We'll want to try (via CLI) the stub installer on Windows to ensure we can do a silent install. We can capture the exact shell command ran here too
If (for some reason) we run into problems doing that, we can ask folks who may be familiar with the installer (ex: @simonhong or @emerick) for help ๐ | infrastructure | test windows installer for brave core ensure silent install possible we ll want to try via cli the stub installer on windows to ensure we can do a silent install we can capture the exact shell command ran here too if for some reason we run into problems doing that we can ask folks who may be familiar with the installer ex simonhong or emerick for help ๐ | 1 |
575,030 | 17,023,913,381 | IssuesEvent | 2021-07-03 04:31:36 | tomhughes/trac-tickets | https://api.github.com/repos/tomhughes/trac-tickets | closed | Search difference address interpolation | Component: nominatim Priority: major Resolution: duplicate Type: enhancement | **[Submitted to the original trac issue database at 4.39pm, Monday, 17th November 2014]**
Install the latest version of nominatim clone with the latest source code from Github.
But have difference answer for search in my local server, please note the example:
Incorrect answer:
http://192.168.1.117/nominatim/search?q=cr+10.43765,-83.6435383333333&format=xml&addressdetails=18&limit=0
Display: Finca Altagracia
Correct answer:
http://nominatim.openstreetmap.org/search?q=cr+10.43765,-83.6435383333333&format=xml&addressdetails=18&limit=0
Display: Finca Esterlina
Need run some script or adjust some in my server for identical answer that OpenStreetmap server ? | 1.0 | Search difference address interpolation - **[Submitted to the original trac issue database at 4.39pm, Monday, 17th November 2014]**
Install the latest version of nominatim clone with the latest source code from Github.
But have difference answer for search in my local server, please note the example:
Incorrect answer:
http://192.168.1.117/nominatim/search?q=cr+10.43765,-83.6435383333333&format=xml&addressdetails=18&limit=0
Display: Finca Altagracia
Correct answer:
http://nominatim.openstreetmap.org/search?q=cr+10.43765,-83.6435383333333&format=xml&addressdetails=18&limit=0
Display: Finca Esterlina
Need run some script or adjust some in my server for identical answer that OpenStreetmap server ? | non_infrastructure | search difference address interpolation install the latest version of nominatim clone with the latest source code from github but have difference answer for search in my local server please note the example incorrect answer display finca altagracia correct answer display finca esterlina need run some script or adjust some in my server for identical answer that openstreetmap server | 0 |
98,369 | 4,020,427,406 | IssuesEvent | 2016-05-16 18:22:57 | esea48/MoelisIR | https://api.github.com/repos/esea48/MoelisIR | opened | Press Releases - edits | 1st Priority | - Filter works slow
- Header text in lightbox should now be light blue to match style of main site
| 1.0 | Press Releases - edits - - Filter works slow
- Header text in lightbox should now be light blue to match style of main site
| non_infrastructure | press releases edits filter works slow header text in lightbox should now be light blue to match style of main site | 0 |
25,090 | 18,105,017,073 | IssuesEvent | 2021-09-22 18:13:21 | dotnet/fsharp | https://api.github.com/repos/dotnet/fsharp | closed | If NuGet restore fails then build still continues | Area-Infrastructure | We should let the build fail if a restore doesn't work.

#### Repro steps
get on slow internet connection and run build. | 1.0 | If NuGet restore fails then build still continues - We should let the build fail if a restore doesn't work.

#### Repro steps
get on slow internet connection and run build. | infrastructure | if nuget restore fails then build still continues we should let the build fail if a restore doesn t work repro steps get on slow internet connection and run build | 1 |
111,405 | 9,530,194,602 | IssuesEvent | 2019-04-29 13:21:13 | golang/go | https://api.github.com/repos/golang/go | closed | encoding/json: add sample fuzz test for prototype of "fuzzing as a first class citizen" | NeedsInvestigation Testing | ### Summary
In #30719 and #30979, `dvyukov/go-fuzz` compatible fuzz functions were landed in:
* the standard library in [src/image/png/fuzz.go](https://github.com/golang/go/blob/master/src/image/png/fuzz.go)
* `golang.org/x` in [golang.org/x/image/tiff/fuzz.go](https://github.com/golang/image/blob/master/tiff/fuzz.go)
That was done primarily to help with the exploration requested by the core Go team in discussion of the #19109 proposal to "make fuzzing a first class citizen" (in addition to other benefits).
The follow-up suggestion here is to add a `Fuzz` function to the standard library `encoding/json` package.
The starting point most likely should be the `Fuzz` function in https://github.com/dvyukov/go-fuzz-corpus/blob/master/json/json.go.
This is a particularly interesting example given the `Fuzz` function there is a bit more complex than the first two samples landed, and hopefully there is some value especially given @mvdan has recently been landing a nice series of performance-related changes to `encoding/json`.
There would be no corpus checked in for now. (The approach to the corpus is being discussed elsewhere, e.g., #31215).
### Background
See the "Background" section of #30719 or https://github.com/golang/go/issues/19109#issuecomment-441442080.
### Additional Details
Following the pattern set by #30719 and https://golang.org/cl/167097, the following are likely true for how to proceed here:
1. The build tag should be `// +build gofuzz`
2. The name of the files should be `fuzz.go`
3. The license header should be the Go standard library license. @dvyukov might need to make a similar statement as he made in [CL 167097](https://go-review.googlesource.com/c/image/+/167097/1/tiff/fuzz.go#1).
4. In general, even for `Fuzz` functions guarded by a build tag, new dependencies should be avoided, especially with the introduction of modules.
For reference, here is a gist showing the [diff](https://gist.github.com/thepudds/de47bc3558e2d4613bc8bf3392359725/revisions) between [dvyukov/go-fuzz-corpus/tiff/tiff.go](https://github.com/dvyukov/go-fuzz-corpus/blob/master/tiff/tiff.go) and the [final form](https://github.com/golang/image/blob/master/tiff/fuzz.go) as merged into `x/image/tiff`.
Two issues that likely would need to be resolved prior to merging into the standard library:
1. The current `dvyukov/go-fuzz-corpus` [json fuzzing function](https://github.com/dvyukov/go-fuzz-corpus/blob/master/json/json.go#L45) has a dependency on `github.com/dvyukov/go-fuzz-corpus/fuzz` for `fuzz.DeepEqual`. This dependency would need to be eliminated. An initial solution might be (a) eliminating that round-trip test for now, or (b) the longer term solution might be open coding the comparison (e.g., comment from @dvyukov in https://github.com/golang/go/issues/30979#issuecomment-475225947) or perhaps rely on an existing comparison function in an existing `_test.go` or similar, or some other solution.
2. The current `dvyukov/go-fuzz-corpus` json fuzzing function can trigger a false positive when round-tripping through Unmarshal/Marshal in the presence of duplicate keys (e.g., see comments from @josharian in https://github.com/google/oss-fuzz/pull/2188#issuecomment-468329478 or dvyukov/go-fuzz-corpus#3). An initial solution might be (a) temporarily eliminating that round-trip test, or (b) perhaps scan the serialized JSON for duplicate keys to avoid the false positive, or other possible longer term solutions.
Happy to be corrected if any of the above is different than how people would like to proceed here.
Finally, @mvdan, I don't want to put you on the spot, but in other discussions you had expressed some interest in this. Are you still interested? And of course no worries if too busy with other things.
CC @dvyukov @josharian @FiloSottile @acln0
| 1.0 | encoding/json: add sample fuzz test for prototype of "fuzzing as a first class citizen" - ### Summary
In #30719 and #30979, `dvyukov/go-fuzz` compatible fuzz functions were landed in:
* the standard library in [src/image/png/fuzz.go](https://github.com/golang/go/blob/master/src/image/png/fuzz.go)
* `golang.org/x` in [golang.org/x/image/tiff/fuzz.go](https://github.com/golang/image/blob/master/tiff/fuzz.go)
That was done primarily to help with the exploration requested by the core Go team in discussion of the #19109 proposal to "make fuzzing a first class citizen" (in addition to other benefits).
The follow-up suggestion here is to add a `Fuzz` function to the standard library `encoding/json` package.
The starting point most likely should be the `Fuzz` function in https://github.com/dvyukov/go-fuzz-corpus/blob/master/json/json.go.
This is a particularly interesting example given the `Fuzz` function there is a bit more complex than the first two samples landed, and hopefully there is some value especially given @mvdan has recently been landing a nice series of performance-related changes to `encoding/json`.
There would be no corpus checked in for now. (The approach to the corpus is being discussed elsewhere, e.g., #31215).
### Background
See the "Background" section of #30719 or https://github.com/golang/go/issues/19109#issuecomment-441442080.
### Additional Details
Following the pattern set by #30719 and https://golang.org/cl/167097, the following are likely true for how to proceed here:
1. The build tag should be `// +build gofuzz`
2. The name of the files should be `fuzz.go`
3. The license header should be the Go standard library license. @dvyukov might need to make a similar statement as he made in [CL 167097](https://go-review.googlesource.com/c/image/+/167097/1/tiff/fuzz.go#1).
4. In general, even for `Fuzz` functions guarded by a build tag, new dependencies should be avoided, especially with the introduction of modules.
For reference, here is a gist showing the [diff](https://gist.github.com/thepudds/de47bc3558e2d4613bc8bf3392359725/revisions) between [dvyukov/go-fuzz-corpus/tiff/tiff.go](https://github.com/dvyukov/go-fuzz-corpus/blob/master/tiff/tiff.go) and the [final form](https://github.com/golang/image/blob/master/tiff/fuzz.go) as merged into `x/image/tiff`.
Two issues that likely would need to be resolved prior to merging into the standard library:
1. The current `dvyukov/go-fuzz-corpus` [json fuzzing function](https://github.com/dvyukov/go-fuzz-corpus/blob/master/json/json.go#L45) has a dependency on `github.com/dvyukov/go-fuzz-corpus/fuzz` for `fuzz.DeepEqual`. This dependency would need to be eliminated. An initial solution might be (a) eliminating that round-trip test for now, or (b) the longer term solution might be open coding the comparison (e.g., comment from @dvyukov in https://github.com/golang/go/issues/30979#issuecomment-475225947) or perhaps rely on an existing comparison function in an existing `_test.go` or similar, or some other solution.
2. The current `dvyukov/go-fuzz-corpus` json fuzzing function can trigger a false positive when round-tripping through Unmarshal/Marshal in the presence of duplicate keys (e.g., see comments from @josharian in https://github.com/google/oss-fuzz/pull/2188#issuecomment-468329478 or dvyukov/go-fuzz-corpus#3). An initial solution might be (a) temporarily eliminating that round-trip test, or (b) perhaps scan the serialized JSON for duplicate keys to avoid the false positive, or other possible longer term solutions.
Happy to be corrected if any of the above is different than how people would like to proceed here.
Finally, @mvdan, I don't want to put you on the spot, but in other discussions you had expressed some interest in this. Are you still interested? And of course no worries if too busy with other things.
CC @dvyukov @josharian @FiloSottile @acln0
| non_infrastructure | encoding json add sample fuzz test for prototype of fuzzing as a first class citizen summary in and dvyukov go fuzz compatible fuzz functions were landed in the standard library in golang org x in that was done primarily to help with the exploration requested by the core go team in discussion of the proposal to make fuzzing a first class citizen in addition to other benefits the follow up suggestion here is to add a fuzz function to the standard library encoding json package the starting point most likely should be the fuzz function in this is a particularly interesting example given the fuzz function there is a bit more complex than the first two samples landed and hopefully there is some value especially given mvdan has recently been landing a nice series of performance related changes to encoding json there would be no corpus checked in for now the approach to the corpus is being discussed elsewhere e g background see the background section of or additional details following the pattern set by and the following are likely true for how to proceed here the build tag should be build gofuzz the name of the files should be fuzz go the license header should be the go standard library license dvyukov might need to make a similar statement as he made in in general even for fuzz functions guarded by a build tag new dependencies should be avoided especially with the introduction of modules for reference here is a gist showing the between and the as merged into x image tiff two issues that likely would need to be resolved prior to merging into the standard library the current dvyukov go fuzz corpus has a dependency on github com dvyukov go fuzz corpus fuzz for fuzz deepequal this dependency would need to be eliminated an initial solution might be a eliminating that round trip test for now or b the longer term solution might be open coding the comparison e g comment from dvyukov in or perhaps rely on an existing comparison function in an existing test go or similar or some other solution the current dvyukov go fuzz corpus json fuzzing function can trigger a false positive when round tripping through unmarshal marshal in the presence of duplicate keys e g see comments from josharian in or dvyukov go fuzz corpus an initial solution might be a temporarily eliminating that round trip test or b perhaps scan the serialized json for duplicate keys to avoid the false positive or other possible longer term solutions happy to be corrected if any of the above is different than how people would like to proceed here finally mvdan i don t want to put you on the spot but in other discussions you had expressed some interest in this are you still interested and of course no worries if too busy with other things cc dvyukov josharian filosottile | 0 |
646,005 | 21,034,621,258 | IssuesEvent | 2022-03-31 06:28:00 | SAGIRI-kawaii/sagiri-bot | https://api.github.com/repos/SAGIRI-kawaii/sagiri-bot | closed | ๆจก็ณๅน้
ๅ
ณ้ฎ่ฏ่ฟ่กๅๅค | enhancement low priority | ๆบๅจไบบๅฏๅฏน่ฎพๅฎๅฅฝ็ๅ
ณ้ฎ่ฏ่ฟ่กๅๅค๏ผไฝๆฏ็ฎๅไป
ๅฑ้ไบไธ่ฎพๅฎๅ
ณ้ฎ่ฏ**ๅฎๅ
จไธ่ด**็ๆ
ๅตใ
ๅปบ่ฎฎๆฐๅขๆจก็ณๅน้
ๅ่ฝ๏ผๆฏๅฆ่ฎพๅฎๅ
ณ้ฎ่ฏ"Hello World!"๏ผๅฏๅๅบ"Hello World", "Hello world", "hello world"็ญไธๅ
ณ้ฎ่ฏ้ซๅบฆ็ธไผผไฝไธๅฎๅ
จไธ่ด็ๅ
ณ้ฎ่ฏใ | 1.0 | ๆจก็ณๅน้
ๅ
ณ้ฎ่ฏ่ฟ่กๅๅค - ๆบๅจไบบๅฏๅฏน่ฎพๅฎๅฅฝ็ๅ
ณ้ฎ่ฏ่ฟ่กๅๅค๏ผไฝๆฏ็ฎๅไป
ๅฑ้ไบไธ่ฎพๅฎๅ
ณ้ฎ่ฏ**ๅฎๅ
จไธ่ด**็ๆ
ๅตใ
ๅปบ่ฎฎๆฐๅขๆจก็ณๅน้
ๅ่ฝ๏ผๆฏๅฆ่ฎพๅฎๅ
ณ้ฎ่ฏ"Hello World!"๏ผๅฏๅๅบ"Hello World", "Hello world", "hello world"็ญไธๅ
ณ้ฎ่ฏ้ซๅบฆ็ธไผผไฝไธๅฎๅ
จไธ่ด็ๅ
ณ้ฎ่ฏใ | non_infrastructure | ๆจก็ณๅน้
ๅ
ณ้ฎ่ฏ่ฟ่กๅๅค ๆบๅจไบบๅฏๅฏน่ฎพๅฎๅฅฝ็ๅ
ณ้ฎ่ฏ่ฟ่กๅๅค๏ผไฝๆฏ็ฎๅไป
ๅฑ้ไบไธ่ฎพๅฎๅ
ณ้ฎ่ฏ ๅฎๅ
จไธ่ด ็ๆ
ๅตใ ๅปบ่ฎฎๆฐๅขๆจก็ณๅน้
ๅ่ฝ๏ผๆฏๅฆ่ฎพๅฎๅ
ณ้ฎ่ฏ hello world ๏ผๅฏๅๅบ hello world hello world hello world ็ญไธๅ
ณ้ฎ่ฏ้ซๅบฆ็ธไผผไฝไธๅฎๅ
จไธ่ด็ๅ
ณ้ฎ่ฏใ | 0 |
28,493 | 23,293,111,216 | IssuesEvent | 2022-08-06 06:01:36 | MadBrains/AppMetrica-Push-Flutter | https://api.github.com/repos/MadBrains/AppMetrica-Push-Flutter | opened | Close instances of "dart.core.Sink" in appmetrica_push_platform_interface | infrastructure | `lib/src/appmetrica_push_platform_interface.dart:32:34`
```
โท
32 โ final StreamController<String> onMessageController =
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ^
33 โ โ StreamController<String>.broadcast();
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ^
โต
```
`lib/src/appmetrica_push_platform_interface.dart:36:34`
```
โท
36 โ final StreamController<String> onMessageOpenedAppController =
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ^
37 โ โ StreamController<String>.broadcast();
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ^
โต
```
To reproduce make sure you are using the [lints_core](https://pub.dev/packages/lints) and run `flutter analyze lib/src/appmetrica_push_platform_interface.dart` | 1.0 | Close instances of "dart.core.Sink" in appmetrica_push_platform_interface - `lib/src/appmetrica_push_platform_interface.dart:32:34`
```
โท
32 โ final StreamController<String> onMessageController =
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ^
33 โ โ StreamController<String>.broadcast();
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ^
โต
```
`lib/src/appmetrica_push_platform_interface.dart:36:34`
```
โท
36 โ final StreamController<String> onMessageOpenedAppController =
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ^
37 โ โ StreamController<String>.broadcast();
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ^
โต
```
To reproduce make sure you are using the [lints_core](https://pub.dev/packages/lints) and run `flutter analyze lib/src/appmetrica_push_platform_interface.dart` | infrastructure | close instances of dart core sink in appmetrica push platform interface lib src appmetrica push platform interface dart โท โ final streamcontroller onmessagecontroller โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ โ streamcontroller broadcast โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โต lib src appmetrica push platform interface dart โท โ final streamcontroller onmessageopenedappcontroller โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ โ streamcontroller broadcast โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โต to reproduce make sure you are using the and run flutter analyze lib src appmetrica push platform interface dart | 1 |
126,127 | 10,384,676,816 | IssuesEvent | 2019-09-10 12:33:20 | legion-platform/legion | https://api.github.com/repos/legion-platform/legion | opened | Jenkins agent networking issues | CI/CD/tests bug | We have constant issues with network connectivity from jenkins agent to external resources such as git repos, aws api, gcp api, etc.
We should find out the root cause and fix the issue. | 1.0 | Jenkins agent networking issues - We have constant issues with network connectivity from jenkins agent to external resources such as git repos, aws api, gcp api, etc.
We should find out the root cause and fix the issue. | non_infrastructure | jenkins agent networking issues we have constant issues with network connectivity from jenkins agent to external resources such as git repos aws api gcp api etc we should find out the root cause and fix the issue | 0 |
35,586 | 31,848,701,196 | IssuesEvent | 2023-09-14 22:27:34 | getodk/central-frontend | https://api.github.com/repos/getodk/central-frontend | opened | destructure.js throws error for JSON structure mismatch | infrastructure i18n | For a JSON file of translations in the transifex/ directory (e.g., transifex/strings_fr.json), destructure.js expects that the structure of the file exactly matches the structure of the source file (transifex/strings_en.json). If it doesn't, it throws an error:
```
central-frontend/bin/util/transifex.js:877
const value = this.get(k).toJSON(k);
^
TypeError: Cannot read properties of undefined (reading 'toJSON')
at Translations.toJSON (central-frontend/bin/util/transifex.js:877:32)
at JSON.stringify (<anonymous>)
at writeTranslations (central-frontend/bin/util/transifex.js:1059:25)
at Object.<anonymous> (central-frontend/bin/transifex/destructure.js:25:3)
```
This error comes up in practice. If you don't pull the latest commit on the `master` branch before pulling translations, then there may be a mismatch in structure. Currently, the error doesn't explain the issue, but it'd be helpful if it did:
- `Translations.toJSON()` could check whether `this.get(k)` is `undefined`. It may have to do this in a few places.
- Probably better: `writeTranslations()` could check for this upfront by comparing the structure of `source` and `translated`, maybe using `translations.walk()`.
- Alternatively, I was thinking that destructure.js could check whether `HEAD` is ahead of `origin/master`. However, I'm now thinking that even then, there could be ways for this error to show up. Examples: the working directory isn't clean; you're on a local branch that's made changes to transifex/strings_en.json. | 1.0 | destructure.js throws error for JSON structure mismatch - For a JSON file of translations in the transifex/ directory (e.g., transifex/strings_fr.json), destructure.js expects that the structure of the file exactly matches the structure of the source file (transifex/strings_en.json). If it doesn't, it throws an error:
```
central-frontend/bin/util/transifex.js:877
const value = this.get(k).toJSON(k);
^
TypeError: Cannot read properties of undefined (reading 'toJSON')
at Translations.toJSON (central-frontend/bin/util/transifex.js:877:32)
at JSON.stringify (<anonymous>)
at writeTranslations (central-frontend/bin/util/transifex.js:1059:25)
at Object.<anonymous> (central-frontend/bin/transifex/destructure.js:25:3)
```
This error comes up in practice. If you don't pull the latest commit on the `master` branch before pulling translations, then there may be a mismatch in structure. Currently, the error doesn't explain the issue, but it'd be helpful if it did:
- `Translations.toJSON()` could check whether `this.get(k)` is `undefined`. It may have to do this in a few places.
- Probably better: `writeTranslations()` could check for this upfront by comparing the structure of `source` and `translated`, maybe using `translations.walk()`.
- Alternatively, I was thinking that destructure.js could check whether `HEAD` is ahead of `origin/master`. However, I'm now thinking that even then, there could be ways for this error to show up. Examples: the working directory isn't clean; you're on a local branch that's made changes to transifex/strings_en.json. | infrastructure | destructure js throws error for json structure mismatch for a json file of translations in the transifex directory e g transifex strings fr json destructure js expects that the structure of the file exactly matches the structure of the source file transifex strings en json if it doesn t it throws an error central frontend bin util transifex js const value this get k tojson k typeerror cannot read properties of undefined reading tojson at translations tojson central frontend bin util transifex js at json stringify at writetranslations central frontend bin util transifex js at object central frontend bin transifex destructure js this error comes up in practice if you don t pull the latest commit on the master branch before pulling translations then there may be a mismatch in structure currently the error doesn t explain the issue but it d be helpful if it did translations tojson could check whether this get k is undefined it may have to do this in a few places probably better writetranslations could check for this upfront by comparing the structure of source and translated maybe using translations walk alternatively i was thinking that destructure js could check whether head is ahead of origin master however i m now thinking that even then there could be ways for this error to show up examples the working directory isn t clean you re on a local branch that s made changes to transifex strings en json | 1 |
17,543 | 12,422,914,026 | IssuesEvent | 2020-05-24 01:36:40 | Jumpi96/helpo | https://api.github.com/repos/Jumpi96/helpo | closed | Cambiar logo en emails | bug cosmetic infrastructure | ## Expected Behavior
<!--- MANDATORY -->
El logo de Helpo se visualiza correctamente en los emails automรกticos
## Current Behavior
<!--- OPTIONAL -->
El logo de Helpo no se visualiza correctamente en los emails automรกticos
## Steps to Reproduce
<!--- OPTIONAL -->
1. Registrarse a Helpo (o cualquier otro evento que genere un email
2. Abrir el mail
3. El logo no se visualiza
## Possible Solution
<!--- OPTIONAL -->
Subir el nuevo logo a un bucket de S3 de la cuenta de AWS actual y actualizar el link
## Detailed Description
<!--- OPTIONAL -->
Borramos todos los buckets de S3 de la cuenta anterior y lo rompimos | 1.0 | Cambiar logo en emails - ## Expected Behavior
<!--- MANDATORY -->
El logo de Helpo se visualiza correctamente en los emails automรกticos
## Current Behavior
<!--- OPTIONAL -->
El logo de Helpo no se visualiza correctamente en los emails automรกticos
## Steps to Reproduce
<!--- OPTIONAL -->
1. Registrarse a Helpo (o cualquier otro evento que genere un email
2. Abrir el mail
3. El logo no se visualiza
## Possible Solution
<!--- OPTIONAL -->
Subir el nuevo logo a un bucket de S3 de la cuenta de AWS actual y actualizar el link
## Detailed Description
<!--- OPTIONAL -->
Borramos todos los buckets de S3 de la cuenta anterior y lo rompimos | infrastructure | cambiar logo en emails expected behavior el logo de helpo se visualiza correctamente en los emails automรกticos current behavior el logo de helpo no se visualiza correctamente en los emails automรกticos steps to reproduce registrarse a helpo o cualquier otro evento que genere un email abrir el mail el logo no se visualiza possible solution subir el nuevo logo a un bucket de de la cuenta de aws actual y actualizar el link detailed description borramos todos los buckets de de la cuenta anterior y lo rompimos | 1 |
110,772 | 9,477,056,399 | IssuesEvent | 2019-04-19 17:13:10 | golang/go | https://api.github.com/repos/golang/go | closed | runtime: TestGdbPythonCgo flaky on linux-386 and linux-amd64-race | NeedsInvestigation Soon Testing | https://build.golang.org/log/885863bc2258399f10791b6508f8eef0dbdbd840:
```
--- FAIL: TestGdbPythonCgo (1.26s)
runtime-gdb_test.go:66: gdb version 7.7
runtime-gdb_test.go:229: gdb output: Loading Go Runtime support.
Loading Go Runtime support.
Breakpoint 1 at 0x80c7ac8: file /workdir/tmp/go-build679205063/main.go, line 15.
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
[New Thread 0xe7b83b40 (LWP 18609)]
[New Thread 0xe7382b40 (LWP 18610)]
[New Thread 0xe6b81b40 (LWP 18611)]
[New Thread 0xe6180b40 (LWP 18612)]
Breakpoint 1, main.main () at /workdir/tmp/go-build679205063/main.go:15
15 fmt.Println("hi")
BEGIN info goroutines
* 1 running runtime.systemstack_switch
2 runnable runtime.forcegchelper
3 waiting runtime.gopark
4 runnable runtime.runfinq
END
BEGIN print mapvar
$1 = map[string]string = {["abc"] = "def", ["ghi"] = "jkl"}
END
BEGIN print strvar
$2 = "abc"
END
BEGIN info locals
mapvar = map[string]string = {["abc"] = "def", ["ghi"] = "jkl"}
strvar = "abc"
slicevar = []string
END
BEGIN goroutine 1 bt
[New Thread 0xe597fb40 (LWP 18613)]
#0 main.main () at /workdir/tmp/go-build679205063/main.go:15
END
BEGIN goroutine 2 bt
#0 runtime.forcegchelper () at /workdir/go/src/runtime/proc.go:242
#1 0x08092b01 in runtime.goexit () at /workdir/go/src/runtime/asm_386.s:1324
#2 0x00000000 in ?? ()
END
Breakpoint 2 at 0x80c7b45: file /workdir/tmp/go-build679205063/main.go, line 19.
hi
Breakpoint 2, main.main () at /workdir/tmp/go-build679205063/main.go:20
20 } // END_OF_PROGRAM
BEGIN goroutine 1 bt at the end
#0 main.main () at /workdir/tmp/go-build679205063/main.go:20
END
runtime-gdb_test.go:95: malformed backtrace at line 0: [New Thread 0xe597fb40 (LWP 18613)]
FAIL
FAIL runtime 20.821s
```
Other examples:
https://build.golang.org/log/ed9084a3e43222de6c5bba9a79936fd3801aa9b4
https://storage.googleapis.com/go-build-log/e5feffcb/linux-386_8f68fa68.log
https://storage.googleapis.com/go-build-log/b5410280/linux-amd64-race_dcb972b2.log
See also #25697. | 1.0 | runtime: TestGdbPythonCgo flaky on linux-386 and linux-amd64-race - https://build.golang.org/log/885863bc2258399f10791b6508f8eef0dbdbd840:
```
--- FAIL: TestGdbPythonCgo (1.26s)
runtime-gdb_test.go:66: gdb version 7.7
runtime-gdb_test.go:229: gdb output: Loading Go Runtime support.
Loading Go Runtime support.
Breakpoint 1 at 0x80c7ac8: file /workdir/tmp/go-build679205063/main.go, line 15.
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
[New Thread 0xe7b83b40 (LWP 18609)]
[New Thread 0xe7382b40 (LWP 18610)]
[New Thread 0xe6b81b40 (LWP 18611)]
[New Thread 0xe6180b40 (LWP 18612)]
Breakpoint 1, main.main () at /workdir/tmp/go-build679205063/main.go:15
15 fmt.Println("hi")
BEGIN info goroutines
* 1 running runtime.systemstack_switch
2 runnable runtime.forcegchelper
3 waiting runtime.gopark
4 runnable runtime.runfinq
END
BEGIN print mapvar
$1 = map[string]string = {["abc"] = "def", ["ghi"] = "jkl"}
END
BEGIN print strvar
$2 = "abc"
END
BEGIN info locals
mapvar = map[string]string = {["abc"] = "def", ["ghi"] = "jkl"}
strvar = "abc"
slicevar = []string
END
BEGIN goroutine 1 bt
[New Thread 0xe597fb40 (LWP 18613)]
#0 main.main () at /workdir/tmp/go-build679205063/main.go:15
END
BEGIN goroutine 2 bt
#0 runtime.forcegchelper () at /workdir/go/src/runtime/proc.go:242
#1 0x08092b01 in runtime.goexit () at /workdir/go/src/runtime/asm_386.s:1324
#2 0x00000000 in ?? ()
END
Breakpoint 2 at 0x80c7b45: file /workdir/tmp/go-build679205063/main.go, line 19.
hi
Breakpoint 2, main.main () at /workdir/tmp/go-build679205063/main.go:20
20 } // END_OF_PROGRAM
BEGIN goroutine 1 bt at the end
#0 main.main () at /workdir/tmp/go-build679205063/main.go:20
END
runtime-gdb_test.go:95: malformed backtrace at line 0: [New Thread 0xe597fb40 (LWP 18613)]
FAIL
FAIL runtime 20.821s
```
Other examples:
https://build.golang.org/log/ed9084a3e43222de6c5bba9a79936fd3801aa9b4
https://storage.googleapis.com/go-build-log/e5feffcb/linux-386_8f68fa68.log
https://storage.googleapis.com/go-build-log/b5410280/linux-amd64-race_dcb972b2.log
See also #25697. | non_infrastructure | runtime testgdbpythoncgo flaky on linux and linux race fail testgdbpythoncgo runtime gdb test go gdb version runtime gdb test go gdb output loading go runtime support loading go runtime support breakpoint at file workdir tmp go main go line using host libthread db library lib linux gnu libthread db so breakpoint main main at workdir tmp go main go fmt println hi begin info goroutines running runtime systemstack switch runnable runtime forcegchelper waiting runtime gopark runnable runtime runfinq end begin print mapvar map string def jkl end begin print strvar abc end begin info locals mapvar map string def jkl strvar abc slicevar string end begin goroutine bt main main at workdir tmp go main go end begin goroutine bt runtime forcegchelper at workdir go src runtime proc go in runtime goexit at workdir go src runtime asm s in end breakpoint at file workdir tmp go main go line hi breakpoint main main at workdir tmp go main go end of program begin goroutine bt at the end main main at workdir tmp go main go end runtime gdb test go malformed backtrace at line fail fail runtime other examples see also | 0 |
28,781 | 23,491,608,318 | IssuesEvent | 2022-08-17 19:20:41 | dotnet/runtime | https://api.github.com/repos/dotnet/runtime | opened | Add support for running pipelines on PRs, with *arguments* | area-Infrastructure | I'm aware that AzDO doesn't support this with `/azp run`. But maybe this can be implemented with the help of a GitHub action? or @akoeplinger suggested that maybe we can read comments from the PR to get the PR.
- This would allow not having to incur the cost of running entire pipelines (like runtime-extra-platforms, or runtime-wasm), and having faster turnaround times for developers. This can be achieved very crudely, and manually right now by editing `platform-matrix.yml`, and then the jobs in the relevant pipelines.
- Or for example running *all* the wasm AOT tests, and not just the smoke ones
- Same for `runtime-wasm-perf` - which runs only sanity checks by default, but with an argument, it could run all the benchmarks
/cc @akoeplinger @directhex | 1.0 | Add support for running pipelines on PRs, with *arguments* - I'm aware that AzDO doesn't support this with `/azp run`. But maybe this can be implemented with the help of a GitHub action? or @akoeplinger suggested that maybe we can read comments from the PR to get the PR.
- This would allow not having to incur the cost of running entire pipelines (like runtime-extra-platforms, or runtime-wasm), and having faster turnaround times for developers. This can be achieved very crudely, and manually right now by editing `platform-matrix.yml`, and then the jobs in the relevant pipelines.
- Or for example running *all* the wasm AOT tests, and not just the smoke ones
- Same for `runtime-wasm-perf` - which runs only sanity checks by default, but with an argument, it could run all the benchmarks
/cc @akoeplinger @directhex | infrastructure | add support for running pipelines on prs with arguments i m aware that azdo doesn t support this with azp run but maybe this can be implemented with the help of a github action or akoeplinger suggested that maybe we can read comments from the pr to get the pr this would allow not having to incur the cost of running entire pipelines like runtime extra platforms or runtime wasm and having faster turnaround times for developers this can be achieved very crudely and manually right now by editing platform matrix yml and then the jobs in the relevant pipelines or for example running all the wasm aot tests and not just the smoke ones same for runtime wasm perf which runs only sanity checks by default but with an argument it could run all the benchmarks cc akoeplinger directhex | 1 |
26,566 | 11,348,475,532 | IssuesEvent | 2020-01-24 00:32:00 | emilva/Maturity-Models | https://api.github.com/repos/emilva/Maturity-Models | opened | CVE-2019-11069 (High) detected in sequelize-5.1.0.tgz | security vulnerability | ## CVE-2019-11069 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>sequelize-5.1.0.tgz</b></p></summary>
<p>Multi dialect ORM for Node.JS</p>
<p>Library home page: <a href="https://registry.npmjs.org/sequelize/-/sequelize-5.1.0.tgz">https://registry.npmjs.org/sequelize/-/sequelize-5.1.0.tgz</a></p>
<p>Path to dependency file: /tmp/ws-scm/Maturity-Models/package.json</p>
<p>Path to vulnerable library: /Maturity-Models/node_modules/sequelize/package.json</p>
<p>
Dependency Hierarchy:
- :x: **sequelize-5.1.0.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/emilva/Maturity-Models/commit/cf0c9b31ae72db6bc32ab8c2611f3b020d273c11">cf0c9b31ae72db6bc32ab8c2611f3b020d273c11</a></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>
Sequelize version 5 before 5.3.0 does not properly ensure that standard conforming strings are used.
<p>Publish Date: 2019-04-10
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-11069>CVE-2019-11069</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>7.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- 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>
</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-11069">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-11069</a></p>
<p>Release Date: 2019-04-10</p>
<p>Fix Resolution: v5.3.0</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2019-11069 (High) detected in sequelize-5.1.0.tgz - ## CVE-2019-11069 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>sequelize-5.1.0.tgz</b></p></summary>
<p>Multi dialect ORM for Node.JS</p>
<p>Library home page: <a href="https://registry.npmjs.org/sequelize/-/sequelize-5.1.0.tgz">https://registry.npmjs.org/sequelize/-/sequelize-5.1.0.tgz</a></p>
<p>Path to dependency file: /tmp/ws-scm/Maturity-Models/package.json</p>
<p>Path to vulnerable library: /Maturity-Models/node_modules/sequelize/package.json</p>
<p>
Dependency Hierarchy:
- :x: **sequelize-5.1.0.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/emilva/Maturity-Models/commit/cf0c9b31ae72db6bc32ab8c2611f3b020d273c11">cf0c9b31ae72db6bc32ab8c2611f3b020d273c11</a></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>
Sequelize version 5 before 5.3.0 does not properly ensure that standard conforming strings are used.
<p>Publish Date: 2019-04-10
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-11069>CVE-2019-11069</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>7.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- 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>
</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-11069">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-11069</a></p>
<p>Release Date: 2019-04-10</p>
<p>Fix Resolution: v5.3.0</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_infrastructure | cve high detected in sequelize tgz cve high severity vulnerability vulnerable library sequelize tgz multi dialect orm for node js library home page a href path to dependency file tmp ws scm maturity models package json path to vulnerable library maturity models node modules sequelize package json dependency hierarchy x sequelize tgz vulnerable library found in head commit a href vulnerability details sequelize version before does not properly ensure that standard conforming strings are used 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 none 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 step up your open source security game with whitesource | 0 |
117,066 | 17,407,939,953 | IssuesEvent | 2021-08-03 08:36:31 | elikkatzgit/TestingPOM | https://api.github.com/repos/elikkatzgit/TestingPOM | closed | CVE-2019-17531 (High) detected in jackson-databind-2.7.2.jar - autoclosed | security vulnerability | ## CVE-2019-17531 - 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.7.2.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>
Dependency Hierarchy:
- :x: **jackson-databind-2.7.2.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/elikkatzgit/TestingPOM/commit/349fffeed7cf25f2cf5b8b6a05b5e4367130406e">349fffeed7cf25f2cf5b8b6a05b5e4367130406e</a></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>
A Polymorphic Typing issue was discovered in FasterXML jackson-databind 2.0.0 through 2.9.10. When Default Typing is enabled (either globally or for a specific property) for an externally exposed JSON endpoint and the service has the apache-log4j-extra (version 1.2.x) jar in the classpath, and an attacker can provide a JNDI service to access, it is possible to make the service execute a malicious payload.
<p>Publish Date: 2019-10-12
<p>URL: <a href=https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-17531>CVE-2019-17531</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>9.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: N/A
- Attack Complexity: N/A
- Privileges Required: N/A
- User Interaction: N/A
- Scope: N/A
- Impact Metrics:
- Confidentiality Impact: N/A
- Integrity Impact: N/A
- Availability Impact: N/A
</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-17531">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-17531</a></p>
<p>Release Date: 2019-10-12</p>
<p>Fix Resolution: 2.10</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.7.2","isTransitiveDependency":false,"dependencyTree":"com.fasterxml.jackson.core:jackson-databind:2.7.2","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.10"}],"vulnerabilityIdentifier":"CVE-2019-17531","vulnerabilityDetails":"A Polymorphic Typing issue was discovered in FasterXML jackson-databind 2.0.0 through 2.9.10. When Default Typing is enabled (either globally or for a specific property) for an externally exposed JSON endpoint and the service has the apache-log4j-extra (version 1.2.x) jar in the classpath, and an attacker can provide a JNDI service to access, it is possible to make the service execute a malicious payload.","vulnerabilityUrl":"https://cve.mitre.org/cgi-bin/cvename.cgi?name\u003dCVE-2019-17531","cvss3Severity":"high","cvss3Score":"9.8","cvss3Metrics":{"A":"N/A","AC":"N/A","PR":"N/A","S":"N/A","C":"N/A","UI":"N/A","AV":"N/A","I":"N/A"},"extraData":{}}</REMEDIATE> --> | True | CVE-2019-17531 (High) detected in jackson-databind-2.7.2.jar - autoclosed - ## CVE-2019-17531 - 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.7.2.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>
Dependency Hierarchy:
- :x: **jackson-databind-2.7.2.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/elikkatzgit/TestingPOM/commit/349fffeed7cf25f2cf5b8b6a05b5e4367130406e">349fffeed7cf25f2cf5b8b6a05b5e4367130406e</a></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>
A Polymorphic Typing issue was discovered in FasterXML jackson-databind 2.0.0 through 2.9.10. When Default Typing is enabled (either globally or for a specific property) for an externally exposed JSON endpoint and the service has the apache-log4j-extra (version 1.2.x) jar in the classpath, and an attacker can provide a JNDI service to access, it is possible to make the service execute a malicious payload.
<p>Publish Date: 2019-10-12
<p>URL: <a href=https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-17531>CVE-2019-17531</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>9.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: N/A
- Attack Complexity: N/A
- Privileges Required: N/A
- User Interaction: N/A
- Scope: N/A
- Impact Metrics:
- Confidentiality Impact: N/A
- Integrity Impact: N/A
- Availability Impact: N/A
</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-17531">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-17531</a></p>
<p>Release Date: 2019-10-12</p>
<p>Fix Resolution: 2.10</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.7.2","isTransitiveDependency":false,"dependencyTree":"com.fasterxml.jackson.core:jackson-databind:2.7.2","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.10"}],"vulnerabilityIdentifier":"CVE-2019-17531","vulnerabilityDetails":"A Polymorphic Typing issue was discovered in FasterXML jackson-databind 2.0.0 through 2.9.10. When Default Typing is enabled (either globally or for a specific property) for an externally exposed JSON endpoint and the service has the apache-log4j-extra (version 1.2.x) jar in the classpath, and an attacker can provide a JNDI service to access, it is possible to make the service execute a malicious payload.","vulnerabilityUrl":"https://cve.mitre.org/cgi-bin/cvename.cgi?name\u003dCVE-2019-17531","cvss3Severity":"high","cvss3Score":"9.8","cvss3Metrics":{"A":"N/A","AC":"N/A","PR":"N/A","S":"N/A","C":"N/A","UI":"N/A","AV":"N/A","I":"N/A"},"extraData":{}}</REMEDIATE> --> | non_infrastructure | 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 dependency hierarchy x jackson databind jar vulnerable library found in head commit a href vulnerability details a polymorphic typing issue was discovered in fasterxml jackson databind through when default typing is enabled either globally or for a specific property for an externally exposed json endpoint and the service has the apache extra version x jar in the classpath and an attacker can provide a jndi service to access it is possible to make the service execute a malicious payload publish date url a href cvss score details base score metrics exploitability metrics attack vector n a attack complexity n a privileges required n a user interaction n a scope n a impact metrics confidentiality impact n a integrity impact n a availability impact n a 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 vulnerabilityidentifier cve vulnerabilitydetails a polymorphic typing issue was discovered in fasterxml jackson databind through when default typing is enabled either globally or for a specific property for an externally exposed json endpoint and the service has the apache extra version x jar in the classpath and an attacker can provide a jndi service to access it is possible to make the service execute a malicious payload vulnerabilityurl | 0 |
11,355 | 16,997,740,257 | IssuesEvent | 2021-07-01 08:41:35 | SimonSchiebler/my-thai-star | https://api.github.com/repos/SimonSchiebler/my-thai-star | closed | REQ - Cancel order | Alexa Requirement | ## Description
The Waiter needs to be able to cancel an order in the waiter cockpit. "Canceled" should be a separate order state that when applied to an order also moves it into the archive.
## Linked Enhancements
## DoR
- [ ] Prioritized
- [ ] Clearly Written
- [ ] All subfeatures are ready
- [ ] Estimated
## DoD
- [ ] All linked Features are done
- [ ] Requirement is documented in the User Documentation
| 1.0 | REQ - Cancel order - ## Description
The Waiter needs to be able to cancel an order in the waiter cockpit. "Canceled" should be a separate order state that when applied to an order also moves it into the archive.
## Linked Enhancements
## DoR
- [ ] Prioritized
- [ ] Clearly Written
- [ ] All subfeatures are ready
- [ ] Estimated
## DoD
- [ ] All linked Features are done
- [ ] Requirement is documented in the User Documentation
| non_infrastructure | req cancel order description the waiter needs to be able to cancel an order in the waiter cockpit canceled should be a separate order state that when applied to an order also moves it into the archive linked enhancements dor prioritized clearly written all subfeatures are ready estimated dod all linked features are done requirement is documented in the user documentation | 0 |
163,579 | 25,839,477,130 | IssuesEvent | 2022-12-12 22:38:50 | CIDBioScience/901-D | https://api.github.com/repos/CIDBioScience/901-D | opened | Add multiple sensor capability | Design Requirement | Requires:
Break-out board with multiple AFE boards
Manifold or sensor holder for additional sensors | 1.0 | Add multiple sensor capability - Requires:
Break-out board with multiple AFE boards
Manifold or sensor holder for additional sensors | non_infrastructure | add multiple sensor capability requires break out board with multiple afe boards manifold or sensor holder for additional sensors | 0 |
18,328 | 12,893,222,256 | IssuesEvent | 2020-07-13 21:09:55 | algorand/go-algorand-sdk | https://api.github.com/repos/algorand/go-algorand-sdk | closed | Implement Application Transaction support | Infrastructure | Implementation
- [x] Implement support for `Application` Transaction type
- [ ] Implement a wrapper for each of the 7 types
- [ ] Write an example
Testing
- [x] Implement cucumber unitTests steps
- [x] Implement cucumber Integreation steps
| 1.0 | Implement Application Transaction support - Implementation
- [x] Implement support for `Application` Transaction type
- [ ] Implement a wrapper for each of the 7 types
- [ ] Write an example
Testing
- [x] Implement cucumber unitTests steps
- [x] Implement cucumber Integreation steps
| infrastructure | implement application transaction support implementation implement support for application transaction type implement a wrapper for each of the types write an example testing implement cucumber unittests steps implement cucumber integreation steps | 1 |
20,623 | 14,098,918,661 | IssuesEvent | 2020-11-06 00:02:48 | dotnet/aspnetcore | https://api.github.com/repos/dotnet/aspnetcore | closed | Debug the source and get an error about nuget | area-infrastructure | When built the source of aspnetcore according the url (https://github.com/dotnet/aspnetcore/blob/master/docs/BuildFromSource.md)๏ผI got an error on running the restore command. The error is showed as below:
C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\CommonExtensions\Microsoft\NuGet\NuGet.targe
ts(123,5): error : can not load source https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-corefx-0f7f38c4/nuget/v3/i
ndex.json service indexใ [C:\Users\WQ\.nuget\packages\microsoft.dotnet.arcade.sdk\1.0.0-beta.19607.3\tools\Tools.proj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\CommonExtensions\Microsoft\NuGet\NuGet.targe ts(123,5): error : response code shows failed: 404 (Not Found - The feed with ID 'darc-pub-dotnet-corefx-0f7f38c4' doesn't exist. (D
evOps Activity ID: 157F7673-97AC-4DA2-80F6-9369EE659F5B))ใ [C:\Users\WQ\.nuget\packages\microsoft.dotnet.arcade.sdk\1.0.0-beta.19607.3\tools\Tools.proj]
Build failed.
I have reinstall the visual studio 2019 enterprise๏ผbut it have no use. Can anybody help me ? Thanks very much!
| 1.0 | Debug the source and get an error about nuget - When built the source of aspnetcore according the url (https://github.com/dotnet/aspnetcore/blob/master/docs/BuildFromSource.md)๏ผI got an error on running the restore command. The error is showed as below:
C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\CommonExtensions\Microsoft\NuGet\NuGet.targe
ts(123,5): error : can not load source https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-corefx-0f7f38c4/nuget/v3/i
ndex.json service indexใ [C:\Users\WQ\.nuget\packages\microsoft.dotnet.arcade.sdk\1.0.0-beta.19607.3\tools\Tools.proj] C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\CommonExtensions\Microsoft\NuGet\NuGet.targe ts(123,5): error : response code shows failed: 404 (Not Found - The feed with ID 'darc-pub-dotnet-corefx-0f7f38c4' doesn't exist. (D
evOps Activity ID: 157F7673-97AC-4DA2-80F6-9369EE659F5B))ใ [C:\Users\WQ\.nuget\packages\microsoft.dotnet.arcade.sdk\1.0.0-beta.19607.3\tools\Tools.proj]
Build failed.
I have reinstall the visual studio 2019 enterprise๏ผbut it have no use. Can anybody help me ? Thanks very much!
| infrastructure | debug the source and get an error about nuget when built the source of aspnetcore according the url got an error on running the restore command the error is showed as below c program files microsoft visual studio enterprise ide commonextensions microsoft nuget nuget targe ts error can not load source ndex json service indexใ c program files microsoft visual studio enterprise ide commonextensions microsoft nuget nuget targe ts error response code shows failed not found the feed with id darc pub dotnet corefx doesn t exist d evops activity id ใ build failed i have reinstall the visual studio enterprise๏ผbut it have no use can anybody help me thanks very much | 1 |
80,219 | 30,119,461,663 | IssuesEvent | 2023-06-30 14:06:56 | zed-industries/community | https://api.github.com/repos/zed-industries/community | closed | Incorrect code action implemented in rust | defect triage admin read | ### Check for existing issues
- [X] Completed
### Describe the bug / provide steps to reproduce it
Running the 'Fill match arms' code action causes some unwanted outcome, as shown in the video attached below
### Environment
Zed: v0.92.3 (stable)
OS: macOS 13.4.0
Memory: 16 GiB
Architecture: aarch64
### If applicable, add mockups / screenshots to help explain present your vision of the feature
https://github.com/zed-industries/community/assets/69788046/fb6f4082-ad2a-4635-916f-b69eddfa50e6
### If applicable, attach your `~/Library/Logs/Zed/Zed.log` file to this issue.
If you only need the most recent lines, you can run the `zed: open log` command palette action to see the last 1000.
_No response_ | 1.0 | Incorrect code action implemented in rust - ### Check for existing issues
- [X] Completed
### Describe the bug / provide steps to reproduce it
Running the 'Fill match arms' code action causes some unwanted outcome, as shown in the video attached below
### Environment
Zed: v0.92.3 (stable)
OS: macOS 13.4.0
Memory: 16 GiB
Architecture: aarch64
### If applicable, add mockups / screenshots to help explain present your vision of the feature
https://github.com/zed-industries/community/assets/69788046/fb6f4082-ad2a-4635-916f-b69eddfa50e6
### If applicable, attach your `~/Library/Logs/Zed/Zed.log` file to this issue.
If you only need the most recent lines, you can run the `zed: open log` command palette action to see the last 1000.
_No response_ | non_infrastructure | incorrect code action implemented in rust check for existing issues completed describe the bug provide steps to reproduce it running the fill match arms code action causes some unwanted outcome as shown in the video attached below environment zed stable os macos memory gib architecture if applicable add mockups screenshots to help explain present your vision of the feature if applicable attach your library logs zed zed log file to this issue if you only need the most recent lines you can run the zed open log command palette action to see the last no response | 0 |
15,536 | 11,578,432,035 | IssuesEvent | 2020-02-21 15:56:30 | finos-plexus/finos-plexus.github.io | https://api.github.com/repos/finos-plexus/finos-plexus.github.io | closed | Confirm and change "finos-plexus.github.io" repository and project name to "Plexus Interop API" | atomic infrastructure prior-high | ### Description of Problem:
The repository "finos-plexus.github.io" might not be appropriately named for the Plexus Interop APIย Project as the original intention for the repository was to host the Plexus microsite.
### Potential Solutions:
The Plexus PMC should discuss the naming of the Plexus Interop APIย Project repository and action the repository name change appropriately.
### Success Criteria
- [ ] The "finos-plexus.github.io" repository is renamed "Plexus Interop API".
- [ ] The amended repository name should be reflected in the Plexus project metadata. | 1.0 | Confirm and change "finos-plexus.github.io" repository and project name to "Plexus Interop API" - ### Description of Problem:
The repository "finos-plexus.github.io" might not be appropriately named for the Plexus Interop APIย Project as the original intention for the repository was to host the Plexus microsite.
### Potential Solutions:
The Plexus PMC should discuss the naming of the Plexus Interop APIย Project repository and action the repository name change appropriately.
### Success Criteria
- [ ] The "finos-plexus.github.io" repository is renamed "Plexus Interop API".
- [ ] The amended repository name should be reflected in the Plexus project metadata. | infrastructure | confirm and change finos plexus github io repository and project name to plexus interop api description of problem the repository finos plexus github io might not be appropriately named for the plexus interop apiย project as the original intention for the repository was to host the plexus microsite potential solutions the plexus pmc should discuss the naming of the plexus interop apiย project repository and action the repository name change appropriately success criteria the finos plexus github io repository is renamed plexus interop api the amended repository name should be reflected in the plexus project metadata | 1 |
34,068 | 28,149,946,746 | IssuesEvent | 2023-04-02 22:47:23 | openxla/iree | https://api.github.com/repos/openxla/iree | closed | Noisy x86_64 latency benchmarks that need adjusting flagging threshold | awaiting-triage infrastructure/benchmark | There are a few x86_64 benchmarks having their numbers fluctuate a lot. We should consider changing their flagging threshold to avoid always being confusing to folks looking at the dashboard:
* MobileNetV2_fp32 https://perf.iree.dev/serie?IREE?6272e089c33b7c5333b6188b6f61fbb15e7b6a0e9fcd9d54b3b7271cd730e0da
* PoseNet https://perf.iree.dev/serie?IREE?51181aae886260ff3c24d829e8bf9e3a892aa93305321c1012476aace79f9e65
* MobileSSD https://perf.iree.dev/serie?IREE?d15406ab9fa52f130a4947059f1616c6ee94c1c2b36a6078ec708d475556a9a4
* MobileBert https://perf.iree.dev/serie?IREE?4d92c9901b7c73d8e02e63adfdcdf63ef0fb529360a908f93b888dee1c3f9c31
* MobileNetV1 https://perf.iree.dev/serie?IREE?175234258abc061d624fad12b5f814c63c5031f71d59e1bafa0df468cb756f38
* ...
Some of them are just because one inference latency is small so that 5% is not a good threshold. We could use absolute time as the flagging threshold too. | 1.0 | Noisy x86_64 latency benchmarks that need adjusting flagging threshold - There are a few x86_64 benchmarks having their numbers fluctuate a lot. We should consider changing their flagging threshold to avoid always being confusing to folks looking at the dashboard:
* MobileNetV2_fp32 https://perf.iree.dev/serie?IREE?6272e089c33b7c5333b6188b6f61fbb15e7b6a0e9fcd9d54b3b7271cd730e0da
* PoseNet https://perf.iree.dev/serie?IREE?51181aae886260ff3c24d829e8bf9e3a892aa93305321c1012476aace79f9e65
* MobileSSD https://perf.iree.dev/serie?IREE?d15406ab9fa52f130a4947059f1616c6ee94c1c2b36a6078ec708d475556a9a4
* MobileBert https://perf.iree.dev/serie?IREE?4d92c9901b7c73d8e02e63adfdcdf63ef0fb529360a908f93b888dee1c3f9c31
* MobileNetV1 https://perf.iree.dev/serie?IREE?175234258abc061d624fad12b5f814c63c5031f71d59e1bafa0df468cb756f38
* ...
Some of them are just because one inference latency is small so that 5% is not a good threshold. We could use absolute time as the flagging threshold too. | infrastructure | noisy latency benchmarks that need adjusting flagging threshold there are a few benchmarks having their numbers fluctuate a lot we should consider changing their flagging threshold to avoid always being confusing to folks looking at the dashboard posenet mobilessd mobilebert some of them are just because one inference latency is small so that is not a good threshold we could use absolute time as the flagging threshold too | 1 |
76,203 | 21,219,264,567 | IssuesEvent | 2022-04-11 10:18:18 | cnosdb/cnosdb | https://api.github.com/repos/cnosdb/cnosdb | closed | Add build process | ๅขๅ ไปฃ็ ๆๅปบ็จๅบ | type/feature-request component/build | # English Version | [ไธญๆ็](#chinese)
## Feature Request
### Describe the feature:
Add code packaging programs, such as rpm, deb, exe, etc.
<h1 id="chinese">ไธญๆ็</h2>
## ๆฐๅ่ฝ
### ๅ่ฝๆ่ฟฐ
ๅขๅ ไปฃ็ ๆๅ
็จๅบ๏ผๅฆrpm๏ผdeb๏ผexe็ญ
| 1.0 | Add build process | ๅขๅ ไปฃ็ ๆๅปบ็จๅบ - # English Version | [ไธญๆ็](#chinese)
## Feature Request
### Describe the feature:
Add code packaging programs, such as rpm, deb, exe, etc.
<h1 id="chinese">ไธญๆ็</h2>
## ๆฐๅ่ฝ
### ๅ่ฝๆ่ฟฐ
ๅขๅ ไปฃ็ ๆๅ
็จๅบ๏ผๅฆrpm๏ผdeb๏ผexe็ญ
| non_infrastructure | add build process ๅขๅ ไปฃ็ ๆๅปบ็จๅบ english version chinese feature request describe the feature add code packaging programs such as rpm deb exe etc ไธญๆ็ ๆฐๅ่ฝ ๅ่ฝๆ่ฟฐ ๅขๅ ไปฃ็ ๆๅ
็จๅบ๏ผๅฆrpm๏ผdeb๏ผexe็ญ | 0 |
26,752 | 20,648,562,736 | IssuesEvent | 2022-03-09 00:01:02 | dotnet/runtime | https://api.github.com/repos/dotnet/runtime | closed | build.sh - Adding an option "static" that would build the native lib statically | area-Infrastructure-coreclr no-recent-activity backlog-cleanup-candidate | The idea of this flag is that it will allow to build the library statically so that the dotnetcli bootstrapping package use to build coreclr and corefx would only contain statically linked native library.
This will help on a lot on issue that poeples are facing because of the lib version difference (mainly icu and curl)
The param name : static
./build.sh static
| 1.0 | build.sh - Adding an option "static" that would build the native lib statically - The idea of this flag is that it will allow to build the library statically so that the dotnetcli bootstrapping package use to build coreclr and corefx would only contain statically linked native library.
This will help on a lot on issue that poeples are facing because of the lib version difference (mainly icu and curl)
The param name : static
./build.sh static
| infrastructure | build sh adding an option static that would build the native lib statically the idea of this flag is that it will allow to build the library statically so that the dotnetcli bootstrapping package use to build coreclr and corefx would only contain statically linked native library this will help on a lot on issue that poeples are facing because of the lib version difference mainly icu and curl the param name static build sh static | 1 |
30,578 | 24,938,880,176 | IssuesEvent | 2022-10-31 17:12:53 | GoogleForCreators/web-stories-wp | https://api.github.com/repos/GoogleForCreators/web-stories-wp | closed | Increase E2E Tests Confidence | Type: Infrastructure Epic Pod: WP Package: E2E Tests | <!-- NOTE: For help requests, support questions, or general feedback, please use the WordPress.org forums instead: https://wordpress.org/support/plugin/web-stories/ -->
## Task Description
<!-- A clear and concise description of what this task is about. -->
- Reduce amount of flaky tests
- Ensure e2e tests consistently pass
- Improve their value for contributors | 1.0 | Increase E2E Tests Confidence - <!-- NOTE: For help requests, support questions, or general feedback, please use the WordPress.org forums instead: https://wordpress.org/support/plugin/web-stories/ -->
## Task Description
<!-- A clear and concise description of what this task is about. -->
- Reduce amount of flaky tests
- Ensure e2e tests consistently pass
- Improve their value for contributors | infrastructure | increase tests confidence task description reduce amount of flaky tests ensure tests consistently pass improve their value for contributors | 1 |
31,886 | 26,226,619,566 | IssuesEvent | 2023-01-04 19:19:44 | SteeltoeOSS/Samples | https://api.github.com/repos/SteeltoeOSS/Samples | closed | Deprecation warnings in integration tests | integration-test infrastructure | 1) Deprecation warning: Use of the '--hostname' command-line flag option is deprecated in favor of the 'routes' property in the manifest. Please see https://docs.cloudfoundry.org/devguide/deploy-apps/manifest-attributes.html#routes for usage information. The '--hostname' command-line flag option will be removed in the future.
2) Deprecation warning: Route component attributes 'domain', 'domains', 'host', 'hosts' and 'no-hostname' are deprecated. Found: host.
Example in : https://dev.azure.com/SteeltoeOSS/Steeltoe/_build/results?buildId=1221 | 1.0 | Deprecation warnings in integration tests - 1) Deprecation warning: Use of the '--hostname' command-line flag option is deprecated in favor of the 'routes' property in the manifest. Please see https://docs.cloudfoundry.org/devguide/deploy-apps/manifest-attributes.html#routes for usage information. The '--hostname' command-line flag option will be removed in the future.
2) Deprecation warning: Route component attributes 'domain', 'domains', 'host', 'hosts' and 'no-hostname' are deprecated. Found: host.
Example in : https://dev.azure.com/SteeltoeOSS/Steeltoe/_build/results?buildId=1221 | infrastructure | deprecation warnings in integration tests deprecation warning use of the hostname command line flag option is deprecated in favor of the routes property in the manifest please see for usage information the hostname command line flag option will be removed in the future deprecation warning route component attributes domain domains host hosts and no hostname are deprecated found host example in | 1 |
312,792 | 26,876,626,400 | IssuesEvent | 2023-02-05 04:50:11 | Uuvana-Studios/longvinter-windows-client | https://api.github.com/repos/Uuvana-Studios/longvinter-windows-client | opened | Uvana 1 server is strange | Bug Not Tested | **Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See an error
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- OS: [e.g. Windows]
- Game Version [e.g. 1.0]
- Steam Version [e.g. 1.0]
**Additional context**
Add any other context about the problem here.
### ****All items are gone
there is nothing at home
And even if I want to leave the house, I can't
and die for no reason
When will the server be back to normal?****


| 1.0 | Uvana 1 server is strange - **Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See an error
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- OS: [e.g. Windows]
- Game Version [e.g. 1.0]
- Steam Version [e.g. 1.0]
**Additional context**
Add any other context about the problem here.
### ****All items are gone
there is nothing at home
And even if I want to leave the house, I can't
and die for no reason
When will the server be back to normal?****


| non_infrastructure | uvana server is strange describe the bug a clear and concise description of what the bug is to reproduce steps to reproduce the behavior go to click on scroll down to see an error expected behavior a clear and concise description of what you expected to happen screenshots if applicable add screenshots to help explain your problem desktop please complete the following information os game version steam version additional context add any other context about the problem here all items are gone there is nothing at home and even if i want to leave the house i can t and die for no reason when will the server be back to normal | 0 |
33,599 | 27,615,116,120 | IssuesEvent | 2023-03-09 18:43:14 | sufst/wireless-telemetry-gui | https://api.github.com/repos/sufst/wireless-telemetry-gui | opened | chore: add linting for typescript | infrastructure | ### Description
Adds Typescript linting to the project. Once this is complete, a check should be added before each PR to make sure there are no linting issues.
Currently being worked in the `refactoring-work` branch | 1.0 | chore: add linting for typescript - ### Description
Adds Typescript linting to the project. Once this is complete, a check should be added before each PR to make sure there are no linting issues.
Currently being worked in the `refactoring-work` branch | infrastructure | chore add linting for typescript description adds typescript linting to the project once this is complete a check should be added before each pr to make sure there are no linting issues currently being worked in the refactoring work branch | 1 |
179,291 | 21,558,222,074 | IssuesEvent | 2022-04-30 19:44:22 | DemoOrgGHECDaveBurnisonMS/PartsUnlimitedGitHub | https://api.github.com/repos/DemoOrgGHECDaveBurnisonMS/PartsUnlimitedGitHub | closed | Prototype Pollution in minimist | Security Issue | Minimist <=1.2.5 is vulnerable to Prototype Pollution via file index.js, function setKey() (lines 69-95).
**See the following Dependabot Alert:** https://github.com/DemoOrgGHECDaveBurnisonMS/PartsUnlimitedGitHub/security/dependabot/3
[AB#5235](https://dev.azure.com/daveburnisonms/9e115ed7-bf32-4a6f-b516-88552f9357de/_workitems/edit/5235) | True | Prototype Pollution in minimist - Minimist <=1.2.5 is vulnerable to Prototype Pollution via file index.js, function setKey() (lines 69-95).
**See the following Dependabot Alert:** https://github.com/DemoOrgGHECDaveBurnisonMS/PartsUnlimitedGitHub/security/dependabot/3
[AB#5235](https://dev.azure.com/daveburnisonms/9e115ed7-bf32-4a6f-b516-88552f9357de/_workitems/edit/5235) | non_infrastructure | prototype pollution in minimist minimist is vulnerable to prototype pollution via file index js function setkey lines see the following dependabot alert | 0 |
12,796 | 9,957,658,192 | IssuesEvent | 2019-07-05 17:42:57 | dotnet/docker-tools | https://api.github.com/repos/dotnet/docker-tools | closed | Rename and move subscriptions.json file | area:infrastructure enhancement triaged | The subscriptions.json file describes metadata of the manifest files that should be scanned for checking whether a base image has been updated and the pipeline to queue if one has changed. The file should be renamed to something that's more descriptive of the intent.
It should also be moved into the eng folder once that's available. | 1.0 | Rename and move subscriptions.json file - The subscriptions.json file describes metadata of the manifest files that should be scanned for checking whether a base image has been updated and the pipeline to queue if one has changed. The file should be renamed to something that's more descriptive of the intent.
It should also be moved into the eng folder once that's available. | infrastructure | rename and move subscriptions json file the subscriptions json file describes metadata of the manifest files that should be scanned for checking whether a base image has been updated and the pipeline to queue if one has changed the file should be renamed to something that s more descriptive of the intent it should also be moved into the eng folder once that s available | 1 |
496,586 | 14,350,103,227 | IssuesEvent | 2020-11-29 19:24:59 | RobotLocomotion/drake | https://api.github.com/repos/RobotLocomotion/drake | closed | AddEqualTimeConstraints() should return (a vector of) Bindings | priority: low team: robot locomotion group type: cleanup | Having proclaimed the usefulness of naming constraints with e.g.
```
AddConstraint(...).evaluator().set_description('equal_time')
```
I got the natural question about naming the equal time constraints. I believe this one is my fault; and that the method should return those values.
| 1.0 | AddEqualTimeConstraints() should return (a vector of) Bindings - Having proclaimed the usefulness of naming constraints with e.g.
```
AddConstraint(...).evaluator().set_description('equal_time')
```
I got the natural question about naming the equal time constraints. I believe this one is my fault; and that the method should return those values.
| non_infrastructure | addequaltimeconstraints should return a vector of bindings having proclaimed the usefulness of naming constraints with e g addconstraint evaluator set description equal time i got the natural question about naming the equal time constraints i believe this one is my fault and that the method should return those values | 0 |
53,048 | 13,260,846,551 | IssuesEvent | 2020-08-20 18:51:39 | icecube-trac/tix4 | https://api.github.com/repos/icecube-trac/tix4 | closed | root 5.28.00(d) fail to build if there is a system installation of cfitsio (Trac #629) | Migrated from Trac defect tools/ports | ROOT automatically detects the existence of libcfitsio in system directories. It, however, does not make sure that there is a cfitsio shared object, leading to compilation failures on amd64 systems (by default only libcfitsio.a is built).
Solution: either make sure to only use cfitsio from ports, or disable it entirely by adding --disable-fitsio to the configure.args in the portfile.
<details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/629">https://code.icecube.wisc.edu/projects/icecube/ticket/629</a>, reported by kislatand owned by dladieu</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2011-05-11T19:06:53",
"_ts": "1305140813000000",
"description": "ROOT automatically detects the existence of libcfitsio in system directories. It, however, does not make sure that there is a cfitsio shared object, leading to compilation failures on amd64 systems (by default only libcfitsio.a is built).\n\nSolution: either make sure to only use cfitsio from ports, or disable it entirely by adding --disable-fitsio to the configure.args in the portfile.",
"reporter": "kislat",
"cc": "",
"resolution": "fixed",
"time": "2011-05-11T10:14:59",
"component": "tools/ports",
"summary": "root 5.28.00(d) fail to build if there is a system installation of cfitsio",
"priority": "normal",
"keywords": "",
"milestone": "",
"owner": "dladieu",
"type": "defect"
}
```
</p>
</details>
| 1.0 | root 5.28.00(d) fail to build if there is a system installation of cfitsio (Trac #629) - ROOT automatically detects the existence of libcfitsio in system directories. It, however, does not make sure that there is a cfitsio shared object, leading to compilation failures on amd64 systems (by default only libcfitsio.a is built).
Solution: either make sure to only use cfitsio from ports, or disable it entirely by adding --disable-fitsio to the configure.args in the portfile.
<details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/629">https://code.icecube.wisc.edu/projects/icecube/ticket/629</a>, reported by kislatand owned by dladieu</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2011-05-11T19:06:53",
"_ts": "1305140813000000",
"description": "ROOT automatically detects the existence of libcfitsio in system directories. It, however, does not make sure that there is a cfitsio shared object, leading to compilation failures on amd64 systems (by default only libcfitsio.a is built).\n\nSolution: either make sure to only use cfitsio from ports, or disable it entirely by adding --disable-fitsio to the configure.args in the portfile.",
"reporter": "kislat",
"cc": "",
"resolution": "fixed",
"time": "2011-05-11T10:14:59",
"component": "tools/ports",
"summary": "root 5.28.00(d) fail to build if there is a system installation of cfitsio",
"priority": "normal",
"keywords": "",
"milestone": "",
"owner": "dladieu",
"type": "defect"
}
```
</p>
</details>
| non_infrastructure | root d fail to build if there is a system installation of cfitsio trac root automatically detects the existence of libcfitsio in system directories it however does not make sure that there is a cfitsio shared object leading to compilation failures on systems by default only libcfitsio a is built solution either make sure to only use cfitsio from ports or disable it entirely by adding disable fitsio to the configure args in the portfile migrated from json status closed changetime ts description root automatically detects the existence of libcfitsio in system directories it however does not make sure that there is a cfitsio shared object leading to compilation failures on systems by default only libcfitsio a is built n nsolution either make sure to only use cfitsio from ports or disable it entirely by adding disable fitsio to the configure args in the portfile reporter kislat cc resolution fixed time component tools ports summary root d fail to build if there is a system installation of cfitsio priority normal keywords milestone owner dladieu type defect | 0 |
53,029 | 13,104,272,990 | IssuesEvent | 2020-08-04 09:58:51 | googleapis/java-cloudbuild | https://api.github.com/repos/googleapis/java-cloudbuild | closed | Synthesis failed for java-cloudbuild | api: cloudbuild autosynth failure priority: p1 type: bug | Hello! Autosynth couldn't regenerate java-cloudbuild. :broken_heart:
Here's the output from running `synth.py`:
```
placed '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpy6nhmv2q/google-cloud-devtools-cloudbuild-v1-java/proto-google-cloud-devtools-cloudbuild-v1-java/src/main/java/com/google/cloudbuild/v1/PushFilter.java.
2020-08-03 16:05:34,914 synthtool [INFO] > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpy6nhmv2q/google-cloud-devtools-cloudbuild-v1-java/proto-google-cloud-devtools-cloudbuild-v1-java/src/main/java/com/google/cloudbuild/v1/SourceProvenanceOrBuilder.java.
2020-08-03 16:05:34,914 synthtool [INFO] > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpy6nhmv2q/google-cloud-devtools-cloudbuild-v1-java/proto-google-cloud-devtools-cloudbuild-v1-java/src/main/java/com/google/cloudbuild/v1/Build.java.
2020-08-03 16:05:34,919 synthtool [WARNING] > No replacements made in [PosixPath('/tmpfs/tmp/tmpy6nhmv2q/google-cloud-devtools-cloudbuild-v1-java/proto-google-cloud-devtools-cloudbuild-v1-java/src/**/*Name.java'), PosixPath('/tmpfs/tmp/tmpy6nhmv2q/google-cloud-devtools-cloudbuild-v1-java/proto-google-cloud-devtools-cloudbuild-v1-java/src/**/*Names.java')] for pattern /\*
\* Copyright \d{4} Google LLC
\*
\* Licensed under the Apache License, Version 2.0 \(the "License"\); you may not use this file except
\* in compliance with the License. You may obtain a copy of the License at
\*
\* http://www.apache.org/licenses/LICENSE-2.0
\*
\* Unless required by applicable law or agreed to in writing, software distributed under the License
\* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
\* or implied. See the License for the specific language governing permissions and limitations under
\* the License.
\*/
, maybe replacement is no longer needed?
2020-08-03 16:05:34,921 synthtool [INFO] > Replaced '^package (.*);' in /tmpfs/tmp/tmpy6nhmv2q/google-cloud-devtools-cloudbuild-v1-java/grpc-google-cloud-devtools-cloudbuild-v1-java/src/main/java/com/google/cloudbuild/v1/CloudBuildGrpc.java.
2020-08-03 16:05:35,038 synthtool [INFO] > Running java formatter on 10 files
2020-08-03 16:05:37,697 synthtool [INFO] > Running java formatter on 1 files
2020-08-03 16:05:40,059 synthtool [INFO] > Running java formatter on 87 files
2020-08-03 16:05:49,749 synthtool [DEBUG] > Using precloned repo /home/kbuilder/.cache/synthtool/synthtool
.github/CODEOWNERS
.github/ISSUE_TEMPLATE/bug_report.md
.github/ISSUE_TEMPLATE/feature_request.md
.github/ISSUE_TEMPLATE/support_request.md
.github/PULL_REQUEST_TEMPLATE.md
.github/release-please.yml
.github/trusted-contribution.yml
.github/workflows/ci.yaml
.kokoro/build.bat
.kokoro/build.sh
.kokoro/coerce_logs.sh
.kokoro/common.cfg
.kokoro/common.sh
.kokoro/continuous/common.cfg
.kokoro/continuous/dependencies.cfg
.kokoro/continuous/integration.cfg
.kokoro/continuous/java11.cfg
.kokoro/continuous/java7.cfg
.kokoro/continuous/java8-osx.cfg
.kokoro/continuous/java8-win.cfg
.kokoro/continuous/java8.cfg
.kokoro/continuous/lint.cfg
.kokoro/continuous/propose_release.cfg
.kokoro/continuous/samples.cfg
.kokoro/dependencies.sh
.kokoro/linkage-monitor.sh
.kokoro/nightly/common.cfg
.kokoro/nightly/dependencies.cfg
.kokoro/nightly/integration.cfg
.kokoro/nightly/java11.cfg
.kokoro/nightly/java7.cfg
.kokoro/nightly/java8-osx.cfg
.kokoro/nightly/java8-win.cfg
.kokoro/nightly/java8.cfg
.kokoro/nightly/lint.cfg
.kokoro/nightly/samples.cfg
.kokoro/populate-secrets.sh
.kokoro/presubmit/clirr.cfg
.kokoro/presubmit/common.cfg
.kokoro/presubmit/dependencies.cfg
.kokoro/presubmit/integration.cfg
.kokoro/presubmit/java11.cfg
.kokoro/presubmit/java7.cfg
.kokoro/presubmit/java8-osx.cfg
.kokoro/presubmit/java8-win.cfg
.kokoro/presubmit/java8.cfg
.kokoro/presubmit/linkage-monitor.cfg
.kokoro/presubmit/lint.cfg
.kokoro/presubmit/samples.cfg
.kokoro/release/bump_snapshot.cfg
.kokoro/release/common.cfg
.kokoro/release/common.sh
.kokoro/release/drop.cfg
.kokoro/release/drop.sh
.kokoro/release/promote.cfg
.kokoro/release/promote.sh
.kokoro/release/publish_javadoc.cfg
.kokoro/release/publish_javadoc.sh
.kokoro/release/snapshot.cfg
.kokoro/release/snapshot.sh
.kokoro/release/stage.cfg
.kokoro/release/stage.sh
.kokoro/trampoline.sh
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
README.md
codecov.yaml
java.header
license-checks.xml
renovate.json
samples/install-without-bom/pom.xml
samples/pom.xml
samples/snapshot/pom.xml
samples/snippets/pom.xml
2020-08-03 16:05:49,906 synthtool [DEBUG] > existing pom file found (samples/pom.xml) - keeping the existing
2020-08-03 16:05:49,907 synthtool [DEBUG] > existing pom file found (samples/snapshot/pom.xml) - keeping the existing
2020-08-03 16:05:49,908 synthtool [DEBUG] > existing pom file found (samples/install-without-bom/pom.xml) - keeping the existing
2020-08-03 16:05:49,908 synthtool [DEBUG] > existing pom file found (samples/snippets/pom.xml) - keeping the existing
2020-08-03 16:05:52,949 synthtool [DEBUG] > Wrote metadata to synth.metadata.
2020-08-03 16:05:53,006 autosynth [INFO] > Changed files:
2020-08-03 16:05:53,006 autosynth [INFO] > M .kokoro/release/publish_javadoc.cfg
M .kokoro/release/publish_javadoc.sh
M proto-google-cloud-build-v1/src/main/java/com/google/cloudbuild/v1/BuildOptions.java
M proto-google-cloud-build-v1/src/main/java/com/google/cloudbuild/v1/BuildOptionsOrBuilder.java
M proto-google-cloud-build-v1/src/main/proto/google/devtools/cloudbuild/v1/cloudbuild.proto
M synth.metadata
2020-08-03 16:05:53,006 autosynth [DEBUG] > Running: git log fbf9396664b766a08d92da9d4f31be019a847c39 -1 --no-decorate --pretty=%s
2020-08-03 16:05:53,010 autosynth [DEBUG] > Running: git log fbf9396664b766a08d92da9d4f31be019a847c39 -1 --no-decorate --pretty=%b%n%nSource-Author: %an <%ae>%nSource-Date: %ad
2020-08-03 16:05:53,013 autosynth [DEBUG] > Running: git add -A
2020-08-03 16:05:53,019 autosynth [DEBUG] > Running: git commit -m Synchronize new proto/yaml changes.
PiperOrigin-RevId: 324209019
Source-Author: Google APIs <noreply@google.com>
Source-Date: Fri Jul 31 08:04:53 2020 -0700
Source-Repo: googleapis/googleapis
Source-Sha: fbf9396664b766a08d92da9d4f31be019a847c39
Source-Link: https://github.com/googleapis/googleapis/commit/fbf9396664b766a08d92da9d4f31be019a847c39
[autosynth-80 eb9deb8] Synchronize new proto/yaml changes.
6 files changed, 47 insertions(+), 16 deletions(-)
2020-08-03 16:05:53,032 autosynth [DEBUG] > Running: git reset --hard HEAD
HEAD is now at eb9deb8 Synchronize new proto/yaml changes.
2020-08-03 16:05:53,037 autosynth [DEBUG] > Running: git checkout autosynth
Switched to branch 'autosynth'
2020-08-03 16:05:53,043 autosynth [DEBUG] > Running: git diff HEAD..autosynth-80 -- . :(exclude)synth.metadata
2020-08-03 16:05:53,051 autosynth [DEBUG] > Running: git diff HEAD autosynth-80
2020-08-03 16:05:53,058 autosynth [DEBUG] > Running: git apply /tmpfs/tmp/tmp0_vloqfb/autosynth-80.patch
2020-08-03 16:05:53,062 autosynth [DEBUG] > Running: git add -A
2020-08-03 16:05:53,068 autosynth [DEBUG] > Running: git commit -m Synchronize new proto/yaml changes.
PiperOrigin-RevId: 324209019
Source-Author: Google APIs <noreply@google.com>
Source-Date: Fri Jul 31 08:04:53 2020 -0700
Source-Repo: googleapis/googleapis
Source-Sha: fbf9396664b766a08d92da9d4f31be019a847c39
Source-Link: https://github.com/googleapis/googleapis/commit/fbf9396664b766a08d92da9d4f31be019a847c39
[autosynth edc91f9] Synchronize new proto/yaml changes.
4 files changed, 13 insertions(+), 13 deletions(-)
2020-08-03 16:05:53,081 autosynth [DEBUG] > Running: git diff HEAD..autosynth-81 -- . :(exclude)synth.metadata
2020-08-03 16:05:53,085 autosynth [DEBUG] > Running: git diff HEAD..autosynth-81 -- synth.metadata
2020-08-03 16:05:53,089 autosynth [DEBUG] > Running: git diff autosynth-81..autosynth-84 -- . :(exclude)synth.metadata
2020-08-03 16:05:53,092 autosynth [DEBUG] > Running: git diff autosynth-81..autosynth-84 -- synth.metadata
2020-08-03 16:05:53,096 autosynth [DEBUG] > Running: git push --force origin autosynth
remote:
remote: Create a pull request for 'autosynth' on GitHub by visiting:
remote: https://github.com/googleapis/java-cloudbuild/pull/new/autosynth
remote:
To https://github.com/googleapis/java-cloudbuild.git
* [new branch] autosynth -> autosynth
2020-08-03 16:05:56,771 autosynth [DEBUG] > Running: git log -2 --pretty=%b
2020-08-03 16:05:59,121 autosynth [DEBUG] > Running: git clean -fdx
Removing __pycache__/
Traceback (most recent call last):
File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/runpy.py", line 193, in _run_module_as_main
"__main__", mod_spec)
File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 657, in <module>
main()
File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 506, in main
return _inner_main(temp_dir)
File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 637, in _inner_main
commit_count = synthesize_loop(x, multiple_prs, change_pusher, synthesizer)
File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 367, in synthesize_loop
synthesize_inner_loop(fork, synthesizer)
File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 411, in synthesize_inner_loop
synthesizer, len(toolbox.versions) - 1
File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 266, in synthesize_version_in_new_branch
synthesizer.synthesize(synth_log_path, self.environ)
File "/tmpfs/src/github/synthtool/autosynth/synthesizer.py", line 120, in synthesize
synth_proc.check_returncode() # Raise an exception.
File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/subprocess.py", line 389, in check_returncode
self.stderr)
subprocess.CalledProcessError: Command '['/tmpfs/src/github/synthtool/env/bin/python3', '-m', 'synthtool', '--metadata', 'synth.metadata', 'synth.py', '--']' returned non-zero exit status 1.
```
Google internal developers can see the full log [here](http://sponge2/results/invocations/c7d53254-5b4e-45c6-9d3d-99cfa62398c0/targets/github%2Fsynthtool;config=default/tests;query=java-cloudbuild;failed=false).
| 1.0 | Synthesis failed for java-cloudbuild - Hello! Autosynth couldn't regenerate java-cloudbuild. :broken_heart:
Here's the output from running `synth.py`:
```
placed '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpy6nhmv2q/google-cloud-devtools-cloudbuild-v1-java/proto-google-cloud-devtools-cloudbuild-v1-java/src/main/java/com/google/cloudbuild/v1/PushFilter.java.
2020-08-03 16:05:34,914 synthtool [INFO] > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpy6nhmv2q/google-cloud-devtools-cloudbuild-v1-java/proto-google-cloud-devtools-cloudbuild-v1-java/src/main/java/com/google/cloudbuild/v1/SourceProvenanceOrBuilder.java.
2020-08-03 16:05:34,914 synthtool [INFO] > Replaced '// Generated by the protocol buffer compiler. DO NOT EDIT!' in /tmpfs/tmp/tmpy6nhmv2q/google-cloud-devtools-cloudbuild-v1-java/proto-google-cloud-devtools-cloudbuild-v1-java/src/main/java/com/google/cloudbuild/v1/Build.java.
2020-08-03 16:05:34,919 synthtool [WARNING] > No replacements made in [PosixPath('/tmpfs/tmp/tmpy6nhmv2q/google-cloud-devtools-cloudbuild-v1-java/proto-google-cloud-devtools-cloudbuild-v1-java/src/**/*Name.java'), PosixPath('/tmpfs/tmp/tmpy6nhmv2q/google-cloud-devtools-cloudbuild-v1-java/proto-google-cloud-devtools-cloudbuild-v1-java/src/**/*Names.java')] for pattern /\*
\* Copyright \d{4} Google LLC
\*
\* Licensed under the Apache License, Version 2.0 \(the "License"\); you may not use this file except
\* in compliance with the License. You may obtain a copy of the License at
\*
\* http://www.apache.org/licenses/LICENSE-2.0
\*
\* Unless required by applicable law or agreed to in writing, software distributed under the License
\* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
\* or implied. See the License for the specific language governing permissions and limitations under
\* the License.
\*/
, maybe replacement is no longer needed?
2020-08-03 16:05:34,921 synthtool [INFO] > Replaced '^package (.*);' in /tmpfs/tmp/tmpy6nhmv2q/google-cloud-devtools-cloudbuild-v1-java/grpc-google-cloud-devtools-cloudbuild-v1-java/src/main/java/com/google/cloudbuild/v1/CloudBuildGrpc.java.
2020-08-03 16:05:35,038 synthtool [INFO] > Running java formatter on 10 files
2020-08-03 16:05:37,697 synthtool [INFO] > Running java formatter on 1 files
2020-08-03 16:05:40,059 synthtool [INFO] > Running java formatter on 87 files
2020-08-03 16:05:49,749 synthtool [DEBUG] > Using precloned repo /home/kbuilder/.cache/synthtool/synthtool
.github/CODEOWNERS
.github/ISSUE_TEMPLATE/bug_report.md
.github/ISSUE_TEMPLATE/feature_request.md
.github/ISSUE_TEMPLATE/support_request.md
.github/PULL_REQUEST_TEMPLATE.md
.github/release-please.yml
.github/trusted-contribution.yml
.github/workflows/ci.yaml
.kokoro/build.bat
.kokoro/build.sh
.kokoro/coerce_logs.sh
.kokoro/common.cfg
.kokoro/common.sh
.kokoro/continuous/common.cfg
.kokoro/continuous/dependencies.cfg
.kokoro/continuous/integration.cfg
.kokoro/continuous/java11.cfg
.kokoro/continuous/java7.cfg
.kokoro/continuous/java8-osx.cfg
.kokoro/continuous/java8-win.cfg
.kokoro/continuous/java8.cfg
.kokoro/continuous/lint.cfg
.kokoro/continuous/propose_release.cfg
.kokoro/continuous/samples.cfg
.kokoro/dependencies.sh
.kokoro/linkage-monitor.sh
.kokoro/nightly/common.cfg
.kokoro/nightly/dependencies.cfg
.kokoro/nightly/integration.cfg
.kokoro/nightly/java11.cfg
.kokoro/nightly/java7.cfg
.kokoro/nightly/java8-osx.cfg
.kokoro/nightly/java8-win.cfg
.kokoro/nightly/java8.cfg
.kokoro/nightly/lint.cfg
.kokoro/nightly/samples.cfg
.kokoro/populate-secrets.sh
.kokoro/presubmit/clirr.cfg
.kokoro/presubmit/common.cfg
.kokoro/presubmit/dependencies.cfg
.kokoro/presubmit/integration.cfg
.kokoro/presubmit/java11.cfg
.kokoro/presubmit/java7.cfg
.kokoro/presubmit/java8-osx.cfg
.kokoro/presubmit/java8-win.cfg
.kokoro/presubmit/java8.cfg
.kokoro/presubmit/linkage-monitor.cfg
.kokoro/presubmit/lint.cfg
.kokoro/presubmit/samples.cfg
.kokoro/release/bump_snapshot.cfg
.kokoro/release/common.cfg
.kokoro/release/common.sh
.kokoro/release/drop.cfg
.kokoro/release/drop.sh
.kokoro/release/promote.cfg
.kokoro/release/promote.sh
.kokoro/release/publish_javadoc.cfg
.kokoro/release/publish_javadoc.sh
.kokoro/release/snapshot.cfg
.kokoro/release/snapshot.sh
.kokoro/release/stage.cfg
.kokoro/release/stage.sh
.kokoro/trampoline.sh
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
README.md
codecov.yaml
java.header
license-checks.xml
renovate.json
samples/install-without-bom/pom.xml
samples/pom.xml
samples/snapshot/pom.xml
samples/snippets/pom.xml
2020-08-03 16:05:49,906 synthtool [DEBUG] > existing pom file found (samples/pom.xml) - keeping the existing
2020-08-03 16:05:49,907 synthtool [DEBUG] > existing pom file found (samples/snapshot/pom.xml) - keeping the existing
2020-08-03 16:05:49,908 synthtool [DEBUG] > existing pom file found (samples/install-without-bom/pom.xml) - keeping the existing
2020-08-03 16:05:49,908 synthtool [DEBUG] > existing pom file found (samples/snippets/pom.xml) - keeping the existing
2020-08-03 16:05:52,949 synthtool [DEBUG] > Wrote metadata to synth.metadata.
2020-08-03 16:05:53,006 autosynth [INFO] > Changed files:
2020-08-03 16:05:53,006 autosynth [INFO] > M .kokoro/release/publish_javadoc.cfg
M .kokoro/release/publish_javadoc.sh
M proto-google-cloud-build-v1/src/main/java/com/google/cloudbuild/v1/BuildOptions.java
M proto-google-cloud-build-v1/src/main/java/com/google/cloudbuild/v1/BuildOptionsOrBuilder.java
M proto-google-cloud-build-v1/src/main/proto/google/devtools/cloudbuild/v1/cloudbuild.proto
M synth.metadata
2020-08-03 16:05:53,006 autosynth [DEBUG] > Running: git log fbf9396664b766a08d92da9d4f31be019a847c39 -1 --no-decorate --pretty=%s
2020-08-03 16:05:53,010 autosynth [DEBUG] > Running: git log fbf9396664b766a08d92da9d4f31be019a847c39 -1 --no-decorate --pretty=%b%n%nSource-Author: %an <%ae>%nSource-Date: %ad
2020-08-03 16:05:53,013 autosynth [DEBUG] > Running: git add -A
2020-08-03 16:05:53,019 autosynth [DEBUG] > Running: git commit -m Synchronize new proto/yaml changes.
PiperOrigin-RevId: 324209019
Source-Author: Google APIs <noreply@google.com>
Source-Date: Fri Jul 31 08:04:53 2020 -0700
Source-Repo: googleapis/googleapis
Source-Sha: fbf9396664b766a08d92da9d4f31be019a847c39
Source-Link: https://github.com/googleapis/googleapis/commit/fbf9396664b766a08d92da9d4f31be019a847c39
[autosynth-80 eb9deb8] Synchronize new proto/yaml changes.
6 files changed, 47 insertions(+), 16 deletions(-)
2020-08-03 16:05:53,032 autosynth [DEBUG] > Running: git reset --hard HEAD
HEAD is now at eb9deb8 Synchronize new proto/yaml changes.
2020-08-03 16:05:53,037 autosynth [DEBUG] > Running: git checkout autosynth
Switched to branch 'autosynth'
2020-08-03 16:05:53,043 autosynth [DEBUG] > Running: git diff HEAD..autosynth-80 -- . :(exclude)synth.metadata
2020-08-03 16:05:53,051 autosynth [DEBUG] > Running: git diff HEAD autosynth-80
2020-08-03 16:05:53,058 autosynth [DEBUG] > Running: git apply /tmpfs/tmp/tmp0_vloqfb/autosynth-80.patch
2020-08-03 16:05:53,062 autosynth [DEBUG] > Running: git add -A
2020-08-03 16:05:53,068 autosynth [DEBUG] > Running: git commit -m Synchronize new proto/yaml changes.
PiperOrigin-RevId: 324209019
Source-Author: Google APIs <noreply@google.com>
Source-Date: Fri Jul 31 08:04:53 2020 -0700
Source-Repo: googleapis/googleapis
Source-Sha: fbf9396664b766a08d92da9d4f31be019a847c39
Source-Link: https://github.com/googleapis/googleapis/commit/fbf9396664b766a08d92da9d4f31be019a847c39
[autosynth edc91f9] Synchronize new proto/yaml changes.
4 files changed, 13 insertions(+), 13 deletions(-)
2020-08-03 16:05:53,081 autosynth [DEBUG] > Running: git diff HEAD..autosynth-81 -- . :(exclude)synth.metadata
2020-08-03 16:05:53,085 autosynth [DEBUG] > Running: git diff HEAD..autosynth-81 -- synth.metadata
2020-08-03 16:05:53,089 autosynth [DEBUG] > Running: git diff autosynth-81..autosynth-84 -- . :(exclude)synth.metadata
2020-08-03 16:05:53,092 autosynth [DEBUG] > Running: git diff autosynth-81..autosynth-84 -- synth.metadata
2020-08-03 16:05:53,096 autosynth [DEBUG] > Running: git push --force origin autosynth
remote:
remote: Create a pull request for 'autosynth' on GitHub by visiting:
remote: https://github.com/googleapis/java-cloudbuild/pull/new/autosynth
remote:
To https://github.com/googleapis/java-cloudbuild.git
* [new branch] autosynth -> autosynth
2020-08-03 16:05:56,771 autosynth [DEBUG] > Running: git log -2 --pretty=%b
2020-08-03 16:05:59,121 autosynth [DEBUG] > Running: git clean -fdx
Removing __pycache__/
Traceback (most recent call last):
File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/runpy.py", line 193, in _run_module_as_main
"__main__", mod_spec)
File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 657, in <module>
main()
File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 506, in main
return _inner_main(temp_dir)
File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 637, in _inner_main
commit_count = synthesize_loop(x, multiple_prs, change_pusher, synthesizer)
File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 367, in synthesize_loop
synthesize_inner_loop(fork, synthesizer)
File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 411, in synthesize_inner_loop
synthesizer, len(toolbox.versions) - 1
File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 266, in synthesize_version_in_new_branch
synthesizer.synthesize(synth_log_path, self.environ)
File "/tmpfs/src/github/synthtool/autosynth/synthesizer.py", line 120, in synthesize
synth_proc.check_returncode() # Raise an exception.
File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/subprocess.py", line 389, in check_returncode
self.stderr)
subprocess.CalledProcessError: Command '['/tmpfs/src/github/synthtool/env/bin/python3', '-m', 'synthtool', '--metadata', 'synth.metadata', 'synth.py', '--']' returned non-zero exit status 1.
```
Google internal developers can see the full log [here](http://sponge2/results/invocations/c7d53254-5b4e-45c6-9d3d-99cfa62398c0/targets/github%2Fsynthtool;config=default/tests;query=java-cloudbuild;failed=false).
| non_infrastructure | synthesis failed for java cloudbuild hello autosynth couldn t regenerate java cloudbuild broken heart here s the output from running synth py placed generated by the protocol buffer compiler do not edit in tmpfs tmp google cloud devtools cloudbuild java proto google cloud devtools cloudbuild java src main java com google cloudbuild pushfilter java synthtool replaced generated by the protocol buffer compiler do not edit in tmpfs tmp google cloud devtools cloudbuild java proto google cloud devtools cloudbuild java src main java com google cloudbuild sourceprovenanceorbuilder java synthtool replaced generated by the protocol buffer compiler do not edit in tmpfs tmp google cloud devtools cloudbuild java proto google cloud devtools cloudbuild java src main java com google cloudbuild build java synthtool no replacements made in for pattern copyright d google llc licensed under the apache license version the license you may not use this file except in compliance with the license you may obtain a copy of the license at unless required by applicable law or agreed to in writing software distributed under the license is distributed on an as is basis without warranties or conditions of any kind either express or implied see the license for the specific language governing permissions and limitations under the license maybe replacement is no longer needed synthtool replaced package in tmpfs tmp google cloud devtools cloudbuild java grpc google cloud devtools cloudbuild java src main java com google cloudbuild cloudbuildgrpc java synthtool running java formatter on files synthtool running java formatter on files synthtool running java formatter on files synthtool using precloned repo home kbuilder cache synthtool synthtool github codeowners github issue template bug report md github issue template feature request md github issue template support request md github pull request template md github release please yml github trusted contribution yml github workflows ci yaml kokoro build bat kokoro build sh kokoro coerce logs sh kokoro common cfg kokoro common sh kokoro continuous common cfg kokoro continuous dependencies cfg kokoro continuous integration cfg kokoro continuous cfg kokoro continuous cfg kokoro continuous osx cfg kokoro continuous win cfg kokoro continuous cfg kokoro continuous lint cfg kokoro continuous propose release cfg kokoro continuous samples cfg kokoro dependencies sh kokoro linkage monitor sh kokoro nightly common cfg kokoro nightly dependencies cfg kokoro nightly integration cfg kokoro nightly cfg kokoro nightly cfg kokoro nightly osx cfg kokoro nightly win cfg kokoro nightly cfg kokoro nightly lint cfg kokoro nightly samples cfg kokoro populate secrets sh kokoro presubmit clirr cfg kokoro presubmit common cfg kokoro presubmit dependencies cfg kokoro presubmit integration cfg kokoro presubmit cfg kokoro presubmit cfg kokoro presubmit osx cfg kokoro presubmit win cfg kokoro presubmit cfg kokoro presubmit linkage monitor cfg kokoro presubmit lint cfg kokoro presubmit samples cfg kokoro release bump snapshot cfg kokoro release common cfg kokoro release common sh kokoro release drop cfg kokoro release drop sh kokoro release promote cfg kokoro release promote sh kokoro release publish javadoc cfg kokoro release publish javadoc sh kokoro release snapshot cfg kokoro release snapshot sh kokoro release stage cfg kokoro release stage sh kokoro trampoline sh code of conduct md contributing md license readme md codecov yaml java header license checks xml renovate json samples install without bom pom xml samples pom xml samples snapshot pom xml samples snippets pom xml synthtool existing pom file found samples pom xml keeping the existing synthtool existing pom file found samples snapshot pom xml keeping the existing synthtool existing pom file found samples install without bom pom xml keeping the existing synthtool existing pom file found samples snippets pom xml keeping the existing synthtool wrote metadata to synth metadata autosynth changed files autosynth m kokoro release publish javadoc cfg m kokoro release publish javadoc sh m proto google cloud build src main java com google cloudbuild buildoptions java m proto google cloud build src main java com google cloudbuild buildoptionsorbuilder java m proto google cloud build src main proto google devtools cloudbuild cloudbuild proto m synth metadata autosynth running git log no decorate pretty s autosynth running git log no decorate pretty b n nsource author an nsource date ad autosynth running git add a autosynth running git commit m synchronize new proto yaml changes piperorigin revid source author google apis source date fri jul source repo googleapis googleapis source sha source link synchronize new proto yaml changes files changed insertions deletions autosynth running git reset hard head head is now at synchronize new proto yaml changes autosynth running git checkout autosynth switched to branch autosynth autosynth running git diff head autosynth exclude synth metadata autosynth running git diff head autosynth autosynth running git apply tmpfs tmp vloqfb autosynth patch autosynth running git add a autosynth running git commit m synchronize new proto yaml changes piperorigin revid source author google apis source date fri jul source repo googleapis googleapis source sha source link synchronize new proto yaml changes files changed insertions deletions autosynth running git diff head autosynth exclude synth metadata autosynth running git diff head autosynth synth metadata autosynth running git diff autosynth autosynth exclude synth metadata autosynth running git diff autosynth autosynth synth metadata autosynth running git push force origin autosynth remote remote create a pull request for autosynth on github by visiting remote remote to autosynth autosynth autosynth running git log pretty b autosynth running git clean fdx removing pycache traceback most recent call last file home kbuilder pyenv versions lib runpy py line in run module as main main mod spec file home kbuilder pyenv versions lib runpy py line in run code exec code run globals file tmpfs src github synthtool autosynth synth py line in main file tmpfs src github synthtool autosynth synth py line in main return inner main temp dir file tmpfs src github synthtool autosynth synth py line in inner main commit count synthesize loop x multiple prs change pusher synthesizer file tmpfs src github synthtool autosynth synth py line in synthesize loop synthesize inner loop fork synthesizer file tmpfs src github synthtool autosynth synth py line in synthesize inner loop synthesizer len toolbox versions file tmpfs src github synthtool autosynth synth py line in synthesize version in new branch synthesizer synthesize synth log path self environ file tmpfs src github synthtool autosynth synthesizer py line in synthesize synth proc check returncode raise an exception file home kbuilder pyenv versions lib subprocess py line in check returncode self stderr subprocess calledprocesserror command returned non zero exit status google internal developers can see the full log | 0 |
12,726 | 9,935,823,036 | IssuesEvent | 2019-07-02 17:31:32 | dart-lang/sdk | https://api.github.com/repos/dart-lang/sdk | closed | Test output elided | area-infrastructure p2-medium type-bug | I found this in the middle of a stack trace:
CONSOLE MESSAGE: line 78: {
"type": "print",
"value": "[verbose info] Inferring types...",
"timestamp": 18.748
*****************************************************************************
Data removed due to excessive length
*****************************************************************************
ntal/library_updater.dart:506:26)\n#ยญ2 LibraryUpdater.computeUpdateJs (package:dart2js_incremental/library_updater.dart:540:49)\n#ยญ3 IncrementalCompiler.compileUpdates.<anonymous closure> (package:dart2js_incremental/dart2js_incremental.dart:132:48)\n#ยญ4 _RootZone.runUnary (dart:async/zone.dart:1155)\n#ยญ5 _Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:484)\n#ยญ6 _Future._propagateToListeners (dart:async/future_impl.dart:567)\n#ยญ7 _Future._completeWithValue (dart:async/future_impl.dart:358)\n#ยญ8 Future.wait.<anonymous closure> (dart:async/future.dart:282)\n#ยญ9 _RootZone.runUnary (dart:async/zone.dart:1155)\n#ยญ10 _Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:484)\n#ยญ11 _Future._propagateToListeners (dart:async/future_impl.dart:567)\n#ยญ12 _Future._completeWithValue (dart:async/future_impl.dart:358)\n#ยญ13 _Future._asyncComplete.<anonymous closure> (dart:async/future_impl.dart:412)\n#ยญ14 _asyncRunCallbackLoop (dart:async/schedule_microtask.dart:41)\n#ยญ15 _asyncRunCallback (dart:async/schedule_microtask.dart:48)\n#ยญ16 _handleMutation (dart:html:41799)\n\n\n",
"timestamp": 31.437
}
Content-Type: text/plain
Running /Users/ahe/Dart/all/dart/tests/try/web/incremental_compilation_update_test.dart
That makes the stack trace unreadable.
| 1.0 | Test output elided - I found this in the middle of a stack trace:
CONSOLE MESSAGE: line 78: {
"type": "print",
"value": "[verbose info] Inferring types...",
"timestamp": 18.748
*****************************************************************************
Data removed due to excessive length
*****************************************************************************
ntal/library_updater.dart:506:26)\n#ยญ2 LibraryUpdater.computeUpdateJs (package:dart2js_incremental/library_updater.dart:540:49)\n#ยญ3 IncrementalCompiler.compileUpdates.<anonymous closure> (package:dart2js_incremental/dart2js_incremental.dart:132:48)\n#ยญ4 _RootZone.runUnary (dart:async/zone.dart:1155)\n#ยญ5 _Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:484)\n#ยญ6 _Future._propagateToListeners (dart:async/future_impl.dart:567)\n#ยญ7 _Future._completeWithValue (dart:async/future_impl.dart:358)\n#ยญ8 Future.wait.<anonymous closure> (dart:async/future.dart:282)\n#ยญ9 _RootZone.runUnary (dart:async/zone.dart:1155)\n#ยญ10 _Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:484)\n#ยญ11 _Future._propagateToListeners (dart:async/future_impl.dart:567)\n#ยญ12 _Future._completeWithValue (dart:async/future_impl.dart:358)\n#ยญ13 _Future._asyncComplete.<anonymous closure> (dart:async/future_impl.dart:412)\n#ยญ14 _asyncRunCallbackLoop (dart:async/schedule_microtask.dart:41)\n#ยญ15 _asyncRunCallback (dart:async/schedule_microtask.dart:48)\n#ยญ16 _handleMutation (dart:html:41799)\n\n\n",
"timestamp": 31.437
}
Content-Type: text/plain
Running /Users/ahe/Dart/all/dart/tests/try/web/incremental_compilation_update_test.dart
That makes the stack trace unreadable.
| infrastructure | test output elided i found this in the middle of a stack trace console message line nbsp nbsp quot type quot quot print quot nbsp nbsp quot value quot quot inferring types quot nbsp nbsp quot timestamp quot data removed due to excessive length ntal library updater dart n ยญ libraryupdater computeupdatejs package incremental library updater dart n ยญ incrementalcompiler compileupdates lt anonymous closure gt package incremental incremental dart n ยญ rootzone rununary dart async zone dart n ยญ future propagatetolisteners handlevaluecallback dart async future impl dart n ยญ future propagatetolisteners dart async future impl dart n ยญ future completewithvalue dart async future impl dart n ยญ future wait lt anonymous closure gt dart async future dart n ยญ rootzone rununary dart async zone dart n ยญ future propagatetolisteners handlevaluecallback dart async future impl dart n ยญ future propagatetolisteners dart async future impl dart n ยญ future completewithvalue dart async future impl dart n ยญ future asynccomplete lt anonymous closure gt dart async future impl dart n ยญ asyncruncallbackloop dart async schedule microtask dart n ยญ asyncruncallback dart async schedule microtask dart n ยญ handlemutation dart html n n n quot nbsp nbsp quot timestamp quot content type text plain running users ahe dart all dart tests try web incremental compilation update test dart that makes the stack trace unreadable | 1 |
11,484 | 9,203,344,244 | IssuesEvent | 2019-03-08 02:02:24 | GSA/datagov-deploy | https://api.github.com/repos/GSA/datagov-deploy | closed | Document: Detail changes | infrastructure java search server | Task: Document how repo should be used and how it integrates with its parent repo.
Repo: datagov-deploy-solr | 1.0 | Document: Detail changes - Task: Document how repo should be used and how it integrates with its parent repo.
Repo: datagov-deploy-solr | infrastructure | document detail changes task document how repo should be used and how it integrates with its parent repo repo datagov deploy solr | 1 |
16,031 | 11,802,784,973 | IssuesEvent | 2020-03-18 22:22:30 | dotnet/runtime | https://api.github.com/repos/dotnet/runtime | closed | CoreCLR product build on Linux fails in Initialize job due to access denied | area-Infrastructure blocking-clean-ci untriaged | Example run:
https://dev.azure.com/dnceng/public/_build/results?buildId=549999&view=logs&j=94ace3f6-c714-5cff-e8e5-0680920d3f7c&t=66ef0891-4e1f-542b-423c-e03b9751fda9
Diagnostic output:
<pre>
Initialize job
View raw log
Starting: Initialize job
Agent name: 'NetCorePublic-Pool 101'
Agent machine name: 'a00067I'
Current agent version: '2.165.0'
Agent running as: 'helixbot'
Prepare build directory.
##[error]One or more errors occurred. (One or more errors occurred. (Access to the path '/datadisks/disk1/workspace/_work/1/s/artifacts/bin/Microsoft.Extensions.DependencyModel.Tests/Debug/netcoreapp5.0/Microsoft.DotNet.InternalAbstractions.dll' is denied.)) (One or more errors occurred. (Access to the path '/datadisks/disk1/workspace/_work/1/s/artifacts/bin/Microsoft.Extensions.DependencyModel.Tests/Debug/netcoreapp5.0/xunit.execution.dotnet.dll' is denied.)) (One or more errors occurred. (Access to the path '/datadisks/disk1/workspace/_work/1/s/artifacts/bin/Microsoft.Extensions.DependencyModel.Tests/Debug/netcoreapp5.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll' is denied.)) (Access to the path '/datadisks/disk1/workspace/_work/1/s/artifacts/bin/Microsoft.Extensions.DependencyModel.Tests/Debug/netcoreapp5.0/Microsoft.DotNet.InternalAbstractions.dll' is denied.) (Access to the path '/datadisks/disk1/workspace/_work/1/s/artifacts/bin/Microsoft.Extensions.DependencyModel.Tests/Debug/netcoreapp5.0/xunit.execution.dotnet.dll' is denied.) (Access to the path '/datadisks/disk1/workspace/_work/1/s/artifacts/bin/Microsoft.Extensions.DependencyModel.Tests/Debug/netcoreapp5.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll' is denied.)
Finishing: Initialize job
</pre> | 1.0 | CoreCLR product build on Linux fails in Initialize job due to access denied - Example run:
https://dev.azure.com/dnceng/public/_build/results?buildId=549999&view=logs&j=94ace3f6-c714-5cff-e8e5-0680920d3f7c&t=66ef0891-4e1f-542b-423c-e03b9751fda9
Diagnostic output:
<pre>
Initialize job
View raw log
Starting: Initialize job
Agent name: 'NetCorePublic-Pool 101'
Agent machine name: 'a00067I'
Current agent version: '2.165.0'
Agent running as: 'helixbot'
Prepare build directory.
##[error]One or more errors occurred. (One or more errors occurred. (Access to the path '/datadisks/disk1/workspace/_work/1/s/artifacts/bin/Microsoft.Extensions.DependencyModel.Tests/Debug/netcoreapp5.0/Microsoft.DotNet.InternalAbstractions.dll' is denied.)) (One or more errors occurred. (Access to the path '/datadisks/disk1/workspace/_work/1/s/artifacts/bin/Microsoft.Extensions.DependencyModel.Tests/Debug/netcoreapp5.0/xunit.execution.dotnet.dll' is denied.)) (One or more errors occurred. (Access to the path '/datadisks/disk1/workspace/_work/1/s/artifacts/bin/Microsoft.Extensions.DependencyModel.Tests/Debug/netcoreapp5.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll' is denied.)) (Access to the path '/datadisks/disk1/workspace/_work/1/s/artifacts/bin/Microsoft.Extensions.DependencyModel.Tests/Debug/netcoreapp5.0/Microsoft.DotNet.InternalAbstractions.dll' is denied.) (Access to the path '/datadisks/disk1/workspace/_work/1/s/artifacts/bin/Microsoft.Extensions.DependencyModel.Tests/Debug/netcoreapp5.0/xunit.execution.dotnet.dll' is denied.) (Access to the path '/datadisks/disk1/workspace/_work/1/s/artifacts/bin/Microsoft.Extensions.DependencyModel.Tests/Debug/netcoreapp5.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll' is denied.)
Finishing: Initialize job
</pre> | infrastructure | coreclr product build on linux fails in initialize job due to access denied example run diagnostic output initialize job view raw log starting initialize job agent name netcorepublic pool agent machine name current agent version agent running as helixbot prepare build directory one or more errors occurred one or more errors occurred access to the path datadisks workspace work s artifacts bin microsoft extensions dependencymodel tests debug microsoft dotnet internalabstractions dll is denied one or more errors occurred access to the path datadisks workspace work s artifacts bin microsoft extensions dependencymodel tests debug xunit execution dotnet dll is denied one or more errors occurred access to the path datadisks workspace work s artifacts bin microsoft extensions dependencymodel tests debug it microsoft visualstudio testplatform objectmodel resources dll is denied access to the path datadisks workspace work s artifacts bin microsoft extensions dependencymodel tests debug microsoft dotnet internalabstractions dll is denied access to the path datadisks workspace work s artifacts bin microsoft extensions dependencymodel tests debug xunit execution dotnet dll is denied access to the path datadisks workspace work s artifacts bin microsoft extensions dependencymodel tests debug it microsoft visualstudio testplatform objectmodel resources dll is denied finishing initialize job | 1 |
20,046 | 13,639,270,585 | IssuesEvent | 2020-09-25 10:43:19 | robotology/QA | https://api.github.com/repos/robotology/QA | closed | icubosaka01: how to reset up on icubsrv ? | how-to infrastructure software | I ran into [a login loop issue](https://github.com/robotology/icub-tech-support/issues/983). Now I am considering whether I need to reinstall all software on icubsrv. Is it complicated? Could you give me some tutorials? | 1.0 | icubosaka01: how to reset up on icubsrv ? - I ran into [a login loop issue](https://github.com/robotology/icub-tech-support/issues/983). Now I am considering whether I need to reinstall all software on icubsrv. Is it complicated? Could you give me some tutorials? | infrastructure | how to reset up on icubsrv i ran into now i am considering whether i need to reinstall all software on icubsrv is it complicated could you give me some tutorials | 1 |
397,336 | 11,727,073,708 | IssuesEvent | 2020-03-10 15:25:20 | hotosm/tasking-manager | https://api.github.com/repos/hotosm/tasking-manager | closed | Error when POST on projects comments endpoint with username reference | Component: Backend Priority: High Status: Needs implementation Type: Bug | When trying to make a POST request to `/api/v2/projects/3/comments/` with a username reference on the message, it fails with 500 Error: `{"Error": "Unable to add chat message"}`
Payload of the request: `{"message":"@[maption] it's a fake one with tests purpose"}`
I could reproduce it both on TM4 instance and on my machine.
| 1.0 | Error when POST on projects comments endpoint with username reference - When trying to make a POST request to `/api/v2/projects/3/comments/` with a username reference on the message, it fails with 500 Error: `{"Error": "Unable to add chat message"}`
Payload of the request: `{"message":"@[maption] it's a fake one with tests purpose"}`
I could reproduce it both on TM4 instance and on my machine.
| non_infrastructure | error when post on projects comments endpoint with username reference when trying to make a post request to api projects comments with a username reference on the message it fails with error error unable to add chat message payload of the request message it s a fake one with tests purpose i could reproduce it both on instance and on my machine | 0 |
73,922 | 7,369,554,137 | IssuesEvent | 2018-03-13 03:27:35 | eclipse/jetty.project | https://api.github.com/repos/eclipse/jetty.project | closed | JDK9 Test failure: org.eclipse.jetty.io.IdleTimeoutTest.testShorten | Java 9 Test | `jetty-9.4.x` branch.
Linux build.
Bare metal build. (no container / docker)
```
Stacktrace
java.lang.AssertionError
at org.eclipse.jetty.io.IdleTimeoutTest.testShorten(IdleTimeoutTest.java:130)
```
(sorry, that's all that is reported for this failure) | 1.0 | JDK9 Test failure: org.eclipse.jetty.io.IdleTimeoutTest.testShorten - `jetty-9.4.x` branch.
Linux build.
Bare metal build. (no container / docker)
```
Stacktrace
java.lang.AssertionError
at org.eclipse.jetty.io.IdleTimeoutTest.testShorten(IdleTimeoutTest.java:130)
```
(sorry, that's all that is reported for this failure) | non_infrastructure | test failure org eclipse jetty io idletimeouttest testshorten jetty x branch linux build bare metal build no container docker stacktrace java lang assertionerror at org eclipse jetty io idletimeouttest testshorten idletimeouttest java sorry that s all that is reported for this failure | 0 |
32,689 | 26,910,080,035 | IssuesEvent | 2023-02-06 22:40:17 | deathandmayhem/jolly-roger | https://api.github.com/repos/deathandmayhem/jolly-roger | closed | Setup a TURN server for problematic firewalls | audio-calls infrastructure | When we switched from peer-to-peer WebRTC to our Mediasoup-based SFU in #484, we had hoped that because we were always directly connecting to a remote server that we'd run into fewer firewall issues. However, this year we found that the MIT GUEST network blocks outbound UDP connections to the ephemeral port range, which meant that clients on that network weren't able to send or receive RTC packets.
In this situation, the best solution is to have a TURN server listening on port 443 that clients can tunnel traffic through. (This appears to be, e.g., what Google Meet does) We should set one up - ideally one that is accepting TLS traffic so to avoid being filtered for not looking like standard port 443 traffic. | 1.0 | Setup a TURN server for problematic firewalls - When we switched from peer-to-peer WebRTC to our Mediasoup-based SFU in #484, we had hoped that because we were always directly connecting to a remote server that we'd run into fewer firewall issues. However, this year we found that the MIT GUEST network blocks outbound UDP connections to the ephemeral port range, which meant that clients on that network weren't able to send or receive RTC packets.
In this situation, the best solution is to have a TURN server listening on port 443 that clients can tunnel traffic through. (This appears to be, e.g., what Google Meet does) We should set one up - ideally one that is accepting TLS traffic so to avoid being filtered for not looking like standard port 443 traffic. | infrastructure | setup a turn server for problematic firewalls when we switched from peer to peer webrtc to our mediasoup based sfu in we had hoped that because we were always directly connecting to a remote server that we d run into fewer firewall issues however this year we found that the mit guest network blocks outbound udp connections to the ephemeral port range which meant that clients on that network weren t able to send or receive rtc packets in this situation the best solution is to have a turn server listening on port that clients can tunnel traffic through this appears to be e g what google meet does we should set one up ideally one that is accepting tls traffic so to avoid being filtered for not looking like standard port traffic | 1 |
1,268 | 2,615,157,096 | IssuesEvent | 2015-03-01 06:35:21 | chrsmith/html5rocks | https://api.github.com/repos/chrsmith/html5rocks | closed | Code Review for IndexedDB tutorial | auto-migrated CodeReview Priority-P1 Type-CodeReview | ```
http://code.google.com/p/html5rocks/source/detail?r=1a980cca804acdb77d14dd843feb
32fdf0858e83
And
http://code.google.com/p/html5rocks/source/detail?r=6d81afa206ce0251ed74eaca9478
5f0888814900
```
Original issue reported on code.google.com by `paulkinlan@google.com` on 20 Dec 2010 at 1:52 | 2.0 | Code Review for IndexedDB tutorial - ```
http://code.google.com/p/html5rocks/source/detail?r=1a980cca804acdb77d14dd843feb
32fdf0858e83
And
http://code.google.com/p/html5rocks/source/detail?r=6d81afa206ce0251ed74eaca9478
5f0888814900
```
Original issue reported on code.google.com by `paulkinlan@google.com` on 20 Dec 2010 at 1:52 | non_infrastructure | code review for indexeddb tutorial and original issue reported on code google com by paulkinlan google com on dec at | 0 |
59,817 | 3,117,564,621 | IssuesEvent | 2015-09-04 02:40:27 | framingeinstein/issues-test | https://api.github.com/repos/framingeinstein/issues-test | opened | SPK-520: Implement Pixel Tracking w/o affecting site/checkout | priority:normal priority:normal priority:normal priority:normal priority:normal resolution:fixed resolution:fixed | Hello,
When a user visits the site using Firefox, Chrome, Safari, or a recent version of IE, the pixel tracking should be invisible to the user, and not interfere with any user flow or checkout. Please ensure that is the case.
Thanks,
Abe | 5.0 | SPK-520: Implement Pixel Tracking w/o affecting site/checkout - Hello,
When a user visits the site using Firefox, Chrome, Safari, or a recent version of IE, the pixel tracking should be invisible to the user, and not interfere with any user flow or checkout. Please ensure that is the case.
Thanks,
Abe | non_infrastructure | spk implement pixel tracking w o affecting site checkout hello when a user visits the site using firefox chrome safari or a recent version of ie the pixel tracking should be invisible to the user and not interfere with any user flow or checkout please ensure that is the case thanks abe | 0 |
1,672 | 3,322,480,796 | IssuesEvent | 2015-11-09 14:43:07 | nilearn/nilearn | https://api.github.com/repos/nilearn/nilearn | opened | Segmentation fault on AppVeyor when installing matplotlib | Infrastructure | The segmentation fault happens after running the tests. I was able to reproduce it on my laptop.
For now we don't install matplotlib on AppVeyor meaning that the plotting tests are not run. This was a stop-gap solution to get the AppVeyor continuous integration up and running.
A few of suggestions:
* try to install matplotlib with conda rather than pip. Full disclosure I had trouble when doing that on my laptop (unable to import matplotlib._png if I remember correctly), but it's worth a try.
* try to install different matplotlib/numpy versions to see whether the same problem persists. | 1.0 | Segmentation fault on AppVeyor when installing matplotlib - The segmentation fault happens after running the tests. I was able to reproduce it on my laptop.
For now we don't install matplotlib on AppVeyor meaning that the plotting tests are not run. This was a stop-gap solution to get the AppVeyor continuous integration up and running.
A few of suggestions:
* try to install matplotlib with conda rather than pip. Full disclosure I had trouble when doing that on my laptop (unable to import matplotlib._png if I remember correctly), but it's worth a try.
* try to install different matplotlib/numpy versions to see whether the same problem persists. | infrastructure | segmentation fault on appveyor when installing matplotlib the segmentation fault happens after running the tests i was able to reproduce it on my laptop for now we don t install matplotlib on appveyor meaning that the plotting tests are not run this was a stop gap solution to get the appveyor continuous integration up and running a few of suggestions try to install matplotlib with conda rather than pip full disclosure i had trouble when doing that on my laptop unable to import matplotlib png if i remember correctly but it s worth a try try to install different matplotlib numpy versions to see whether the same problem persists | 1 |
6,893 | 6,655,720,698 | IssuesEvent | 2017-09-29 17:35:43 | zulip/zulip | https://api.github.com/repos/zulip/zulip | opened | Improve error handling of import failures | area: testing-infrastructure bug priority: medium | If you try to import something that doesn't exist, our test suite provides a pretty unhelpful error message. Technically, you can read from the logs that the problem is in `test_audit_log` (example problem in the diff below), but I think only because I ran that file rather than the whole suite.
```
(zulip-py3-venv) tabbott@zaset:~/zulip$ ./tools/test-backend test_audit_log
-- Running tests in serial mode.
Destroying test database for alias 'default'...
Using existing clone for alias 'default'...
======================================================================
ERROR: test_audit_log (unittest.loader._FailedTest)
----------------------------------------------------------------------
Exception: Test doesn't have _pre_setup; something is wrong.
----------------------------------------------------------------------
Ran 0 tests in 0.000s
FAILED (errors=1)
Destroying test database for alias 'default'...
(zulip-py3-venv) tabbott@zaset:~/zulip$ git diff
diff --git a/zerver/tests/test_audit_log.py b/zerver/tests/test_audit_log.py
index 7502643..29673ab 100644
--- a/zerver/tests/test_audit_log.py
+++ b/zerver/tests/test_audit_log.py
@@ -1,5 +1,5 @@
-from django.utils.timezone import now as timezone_now
+from django.utils.timezone import no as timezone_now
from zerver.lib.actions import do_create_user, do_deactivate_user, \
do_activate_user, do_reactivate_user, do_change_password, \
```
In particular, if you run the whole suite, you get this instead:
```
======================================================================
ERROR: zerver (unittest.loader._FailedTest)
----------------------------------------------------------------------
Exception: Test doesn't have _pre_setup; something is wrong.
----------------------------------------------------------------------
```
Ideally, we'd provide a nice clear message that we got a failure importing the given file, and print both the file and ideally, the actual exception one gets trying to import it. If you look in `test_runner.py`, there's a section for `_pre_setup` that should help here, but it seems to not be working now. | 1.0 | Improve error handling of import failures - If you try to import something that doesn't exist, our test suite provides a pretty unhelpful error message. Technically, you can read from the logs that the problem is in `test_audit_log` (example problem in the diff below), but I think only because I ran that file rather than the whole suite.
```
(zulip-py3-venv) tabbott@zaset:~/zulip$ ./tools/test-backend test_audit_log
-- Running tests in serial mode.
Destroying test database for alias 'default'...
Using existing clone for alias 'default'...
======================================================================
ERROR: test_audit_log (unittest.loader._FailedTest)
----------------------------------------------------------------------
Exception: Test doesn't have _pre_setup; something is wrong.
----------------------------------------------------------------------
Ran 0 tests in 0.000s
FAILED (errors=1)
Destroying test database for alias 'default'...
(zulip-py3-venv) tabbott@zaset:~/zulip$ git diff
diff --git a/zerver/tests/test_audit_log.py b/zerver/tests/test_audit_log.py
index 7502643..29673ab 100644
--- a/zerver/tests/test_audit_log.py
+++ b/zerver/tests/test_audit_log.py
@@ -1,5 +1,5 @@
-from django.utils.timezone import now as timezone_now
+from django.utils.timezone import no as timezone_now
from zerver.lib.actions import do_create_user, do_deactivate_user, \
do_activate_user, do_reactivate_user, do_change_password, \
```
In particular, if you run the whole suite, you get this instead:
```
======================================================================
ERROR: zerver (unittest.loader._FailedTest)
----------------------------------------------------------------------
Exception: Test doesn't have _pre_setup; something is wrong.
----------------------------------------------------------------------
```
Ideally, we'd provide a nice clear message that we got a failure importing the given file, and print both the file and ideally, the actual exception one gets trying to import it. If you look in `test_runner.py`, there's a section for `_pre_setup` that should help here, but it seems to not be working now. | infrastructure | improve error handling of import failures if you try to import something that doesn t exist our test suite provides a pretty unhelpful error message technically you can read from the logs that the problem is in test audit log example problem in the diff below but i think only because i ran that file rather than the whole suite zulip venv tabbott zaset zulip tools test backend test audit log running tests in serial mode destroying test database for alias default using existing clone for alias default error test audit log unittest loader failedtest exception test doesn t have pre setup something is wrong ran tests in failed errors destroying test database for alias default zulip venv tabbott zaset zulip git diff diff git a zerver tests test audit log py b zerver tests test audit log py index a zerver tests test audit log py b zerver tests test audit log py from django utils timezone import now as timezone now from django utils timezone import no as timezone now from zerver lib actions import do create user do deactivate user do activate user do reactivate user do change password in particular if you run the whole suite you get this instead error zerver unittest loader failedtest exception test doesn t have pre setup something is wrong ideally we d provide a nice clear message that we got a failure importing the given file and print both the file and ideally the actual exception one gets trying to import it if you look in test runner py there s a section for pre setup that should help here but it seems to not be working now | 1 |
4,917 | 5,331,120,015 | IssuesEvent | 2017-02-15 18:42:38 | morganey-lang/Morganey | https://api.github.com/repos/morganey-lang/Morganey | closed | Cannot resolve hidden-args after using Morganey 0.0.1 from JCenter | bug infrastructure version: 0.0.1 wontfix | Blocks #261
### Reproduction steps
- Write a small sbt project that uses Morgnaey 0.0.1 as a dependency:
``` scala
resolvers += Resolver.jcenterRepo
libraryDependencies ++= Seq(
"me.rexim" %% "morganey" % "0.0.1"
)
```
- Build the project
### Observed
```
[error] (*:update) sbt.ResolveException: unresolved dependency: hidden-args#hidden-args_2.11;0.0.1-SNAPSHOT: not found
[error] unresolved dependency: me.rexim#morganey-std_2.11;0.0.1: not found
[error] Total time: 3 s, completed Oct 21, 2016 8:39:08 AM
```
### Expected
The project build successfully.
---
Probably [hidden-args](https://github.com/keddelzz/hidden-args) needs to be published somewhere.
| 1.0 | Cannot resolve hidden-args after using Morganey 0.0.1 from JCenter - Blocks #261
### Reproduction steps
- Write a small sbt project that uses Morgnaey 0.0.1 as a dependency:
``` scala
resolvers += Resolver.jcenterRepo
libraryDependencies ++= Seq(
"me.rexim" %% "morganey" % "0.0.1"
)
```
- Build the project
### Observed
```
[error] (*:update) sbt.ResolveException: unresolved dependency: hidden-args#hidden-args_2.11;0.0.1-SNAPSHOT: not found
[error] unresolved dependency: me.rexim#morganey-std_2.11;0.0.1: not found
[error] Total time: 3 s, completed Oct 21, 2016 8:39:08 AM
```
### Expected
The project build successfully.
---
Probably [hidden-args](https://github.com/keddelzz/hidden-args) needs to be published somewhere.
| infrastructure | cannot resolve hidden args after using morganey from jcenter blocks reproduction steps write a small sbt project that uses morgnaey as a dependency scala resolvers resolver jcenterrepo librarydependencies seq me rexim morganey build the project observed update sbt resolveexception unresolved dependency hidden args hidden args snapshot not found unresolved dependency me rexim morganey std not found total time s completed oct am expected the project build successfully probably needs to be published somewhere | 1 |
201,248 | 22,946,848,816 | IssuesEvent | 2022-07-19 01:27:23 | Chiencc/Spring5-Login_Prioritize-Sample | https://api.github.com/repos/Chiencc/Spring5-Login_Prioritize-Sample | closed | CVE-2018-14042 (Medium) detected in bootstrap-4.1.1.min.js - autoclosed | security vulnerability | ## CVE-2018-14042 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>bootstrap-4.1.1.min.js</b></p></summary>
<p>The most popular front-end framework for developing responsive, mobile first projects on the web.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.1/js/bootstrap.min.js">https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.1/js/bootstrap.min.js</a></p>
<p>Path to dependency file: /src/main/resources/templates/login.html</p>
<p>Path to vulnerable library: /src/main/resources/templates/login.html</p>
<p>
Dependency Hierarchy:
- :x: **bootstrap-4.1.1.min.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/Chiencc/Spring5-Login_Prioritize-Sample/commit/0c3ecc11668698a0cc14027974dc1381483dcfa8">0c3ecc11668698a0cc14027974dc1381483dcfa8</a></p>
<p>Found in base branch: <b>master</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>
In Bootstrap before 4.1.2, XSS is possible in the data-container property of tooltip.
<p>Publish Date: 2018-07-13
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-14042>CVE-2018-14042</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>6.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: Low
- 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>
</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/twbs/bootstrap/pull/26630">https://github.com/twbs/bootstrap/pull/26630</a></p>
<p>Release Date: 2018-07-13</p>
<p>Fix Resolution: org.webjars.npm:bootstrap:4.1.2.org.webjars:bootstrap:3.4.0</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2018-14042 (Medium) detected in bootstrap-4.1.1.min.js - autoclosed - ## CVE-2018-14042 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>bootstrap-4.1.1.min.js</b></p></summary>
<p>The most popular front-end framework for developing responsive, mobile first projects on the web.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.1/js/bootstrap.min.js">https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.1/js/bootstrap.min.js</a></p>
<p>Path to dependency file: /src/main/resources/templates/login.html</p>
<p>Path to vulnerable library: /src/main/resources/templates/login.html</p>
<p>
Dependency Hierarchy:
- :x: **bootstrap-4.1.1.min.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/Chiencc/Spring5-Login_Prioritize-Sample/commit/0c3ecc11668698a0cc14027974dc1381483dcfa8">0c3ecc11668698a0cc14027974dc1381483dcfa8</a></p>
<p>Found in base branch: <b>master</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>
In Bootstrap before 4.1.2, XSS is possible in the data-container property of tooltip.
<p>Publish Date: 2018-07-13
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-14042>CVE-2018-14042</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>6.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: Low
- 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>
</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/twbs/bootstrap/pull/26630">https://github.com/twbs/bootstrap/pull/26630</a></p>
<p>Release Date: 2018-07-13</p>
<p>Fix Resolution: org.webjars.npm:bootstrap:4.1.2.org.webjars:bootstrap:3.4.0</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_infrastructure | cve medium detected in bootstrap min js autoclosed cve medium severity vulnerability vulnerable library bootstrap min js the most popular front end framework for developing responsive mobile first projects on the web library home page a href path to dependency file src main resources templates login html path to vulnerable library src main resources templates login html dependency hierarchy x bootstrap min js vulnerable library found in head commit a href found in base branch master vulnerability details in bootstrap before xss is possible in the data container property of tooltip 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 changed impact metrics confidentiality impact low 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 org webjars npm bootstrap org webjars bootstrap step up your open source security game with whitesource | 0 |
119,868 | 17,643,897,776 | IssuesEvent | 2021-08-20 01:10:12 | rsoreq/grafana | https://api.github.com/repos/rsoreq/grafana | opened | CVE-2021-23424 (High) detected in ansi-html-0.0.7.tgz | security vulnerability | ## CVE-2021-23424 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>ansi-html-0.0.7.tgz</b></p></summary>
<p>An elegant lib that converts the chalked (ANSI) text to HTML.</p>
<p>Library home page: <a href="https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz">https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz</a></p>
<p>Path to dependency file: grafana/yarn.lock</p>
<p>Path to vulnerable library: grafana/node_modules/ansi-html/package.json</p>
<p>
Dependency Hierarchy:
- webpack-dev-server-3.2.1.tgz (Root Library)
- :x: **ansi-html-0.0.7.tgz** (Vulnerable Library)
<p>Found in base branch: <b>master</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>
This affects all versions of package ansi-html. If an attacker provides a malicious string, it will get stuck processing the input for an extremely long time.
<p>Publish Date: 2021-08-18
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23424>CVE-2021-23424</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>7.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- 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>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"ansi-html","packageVersion":"0.0.7","packageFilePaths":["/yarn.lock"],"isTransitiveDependency":true,"dependencyTree":"webpack-dev-server:3.2.1;ansi-html:0.0.7","isMinimumFixVersionAvailable":false}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2021-23424","vulnerabilityDetails":"This affects all versions of package ansi-html. If an attacker provides a malicious string, it will get stuck processing the input for an extremely long time.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23424","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> --> | True | CVE-2021-23424 (High) detected in ansi-html-0.0.7.tgz - ## CVE-2021-23424 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>ansi-html-0.0.7.tgz</b></p></summary>
<p>An elegant lib that converts the chalked (ANSI) text to HTML.</p>
<p>Library home page: <a href="https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz">https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz</a></p>
<p>Path to dependency file: grafana/yarn.lock</p>
<p>Path to vulnerable library: grafana/node_modules/ansi-html/package.json</p>
<p>
Dependency Hierarchy:
- webpack-dev-server-3.2.1.tgz (Root Library)
- :x: **ansi-html-0.0.7.tgz** (Vulnerable Library)
<p>Found in base branch: <b>master</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>
This affects all versions of package ansi-html. If an attacker provides a malicious string, it will get stuck processing the input for an extremely long time.
<p>Publish Date: 2021-08-18
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23424>CVE-2021-23424</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>7.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- 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>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"ansi-html","packageVersion":"0.0.7","packageFilePaths":["/yarn.lock"],"isTransitiveDependency":true,"dependencyTree":"webpack-dev-server:3.2.1;ansi-html:0.0.7","isMinimumFixVersionAvailable":false}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2021-23424","vulnerabilityDetails":"This affects all versions of package ansi-html. If an attacker provides a malicious string, it will get stuck processing the input for an extremely long time.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23424","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> --> | non_infrastructure | cve high detected in ansi html tgz cve high severity vulnerability vulnerable library ansi html tgz an elegant lib that converts the chalked ansi text to html library home page a href path to dependency file grafana yarn lock path to vulnerable library grafana node modules ansi html package json dependency hierarchy webpack dev server tgz root library x ansi html tgz vulnerable library found in base branch master vulnerability details this affects all versions of package ansi html if an attacker provides a malicious string it will get stuck processing the input for an extremely long time 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 none integrity impact none availability impact high for more information on scores click a href isopenpronvulnerability true ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree webpack dev server ansi html isminimumfixversionavailable false basebranches vulnerabilityidentifier cve vulnerabilitydetails this affects all versions of package ansi html if an attacker provides a malicious string it will get stuck processing the input for an extremely long time vulnerabilityurl | 0 |
31,696 | 26,011,015,371 | IssuesEvent | 2022-12-21 01:43:49 | sematic-ai/sematic | https://api.github.com/repos/sematic-ai/sematic | opened | Support for non-deterministic cached builds in Bazel | bug infrastructure | PROBLEM
During the Bazel build phase, we write out a `{}_push.digest` file to the filesystem which contains the sha2 hashes of the various built images. This hash file is then used to push all images to the Docker repository. It is also used by the Python launch script, since the script needs to send a message to the Sematic server, so that it knows which images to run the pipeline with.
However, there are two distinct workflows that trigger these different phases of the build:
1) `build` + `push` + `launch`
2) `launch`
In 1) things are straightforward, since the digest file is known to contain to correspond exactly to the pushed images that are then launched.
However, in 2) there are a few possible outcomes that are different. In the base case, the user has not made any changes to their code, and therefore the build system (if rerun) would have resulted in the exact same set digest file, which means the launch script can safely use the written digest file to tell the Sematic server to start the pipeline.
But another possibility in 2) is that the user either made changes to their code, _or their Bazel build is itself not deterministic_, and yet they want to continue to use the image digests that were generated by their last most recent build. Here, Bazel detects changes to the filesystem and builds new images with new hashes, but _does not push them_ since a push is not a desired part of this workflow, and the launcher script ends up using the new set of hashes in the digest file. This results in pipeline execution failure, because the launcher tells the Sematic server to use hashes for images that were never pushed.
PROPOSED SOLUTION
While the "Bazel correct" way of solving this is clearly to ensure that the build _is_ actually deterministic, this is not always an easily achieved goal for some users due to other unrelated build system complexities. So the solution intended here is very much a hack/workaround.
We plan to modify `_sematic_push_and_run()` in `bazel/pipeline.bzl` to
1) read the digest file _after push_ (rather than after build)
2) pass through the image hashes as an environment variable to the launch script that is then read by the Python code
This should ensure that in scenario 2) we start the Sematic pipeline with images that were actually pushed at some point.
Alternatively, we could look into refactoring the `bazel/pipeline.bzl` implementation to see if it's possible to make the launch script more directly depend on the results of the `container_push` rule so that the digest file is no longer necessary and the image hashes are always correct.
cc @augray | 1.0 | Support for non-deterministic cached builds in Bazel - PROBLEM
During the Bazel build phase, we write out a `{}_push.digest` file to the filesystem which contains the sha2 hashes of the various built images. This hash file is then used to push all images to the Docker repository. It is also used by the Python launch script, since the script needs to send a message to the Sematic server, so that it knows which images to run the pipeline with.
However, there are two distinct workflows that trigger these different phases of the build:
1) `build` + `push` + `launch`
2) `launch`
In 1) things are straightforward, since the digest file is known to contain to correspond exactly to the pushed images that are then launched.
However, in 2) there are a few possible outcomes that are different. In the base case, the user has not made any changes to their code, and therefore the build system (if rerun) would have resulted in the exact same set digest file, which means the launch script can safely use the written digest file to tell the Sematic server to start the pipeline.
But another possibility in 2) is that the user either made changes to their code, _or their Bazel build is itself not deterministic_, and yet they want to continue to use the image digests that were generated by their last most recent build. Here, Bazel detects changes to the filesystem and builds new images with new hashes, but _does not push them_ since a push is not a desired part of this workflow, and the launcher script ends up using the new set of hashes in the digest file. This results in pipeline execution failure, because the launcher tells the Sematic server to use hashes for images that were never pushed.
PROPOSED SOLUTION
While the "Bazel correct" way of solving this is clearly to ensure that the build _is_ actually deterministic, this is not always an easily achieved goal for some users due to other unrelated build system complexities. So the solution intended here is very much a hack/workaround.
We plan to modify `_sematic_push_and_run()` in `bazel/pipeline.bzl` to
1) read the digest file _after push_ (rather than after build)
2) pass through the image hashes as an environment variable to the launch script that is then read by the Python code
This should ensure that in scenario 2) we start the Sematic pipeline with images that were actually pushed at some point.
Alternatively, we could look into refactoring the `bazel/pipeline.bzl` implementation to see if it's possible to make the launch script more directly depend on the results of the `container_push` rule so that the digest file is no longer necessary and the image hashes are always correct.
cc @augray | infrastructure | support for non deterministic cached builds in bazel problem during the bazel build phase we write out a push digest file to the filesystem which contains the hashes of the various built images this hash file is then used to push all images to the docker repository it is also used by the python launch script since the script needs to send a message to the sematic server so that it knows which images to run the pipeline with however there are two distinct workflows that trigger these different phases of the build build push launch launch in things are straightforward since the digest file is known to contain to correspond exactly to the pushed images that are then launched however in there are a few possible outcomes that are different in the base case the user has not made any changes to their code and therefore the build system if rerun would have resulted in the exact same set digest file which means the launch script can safely use the written digest file to tell the sematic server to start the pipeline but another possibility in is that the user either made changes to their code or their bazel build is itself not deterministic and yet they want to continue to use the image digests that were generated by their last most recent build here bazel detects changes to the filesystem and builds new images with new hashes but does not push them since a push is not a desired part of this workflow and the launcher script ends up using the new set of hashes in the digest file this results in pipeline execution failure because the launcher tells the sematic server to use hashes for images that were never pushed proposed solution while the bazel correct way of solving this is clearly to ensure that the build is actually deterministic this is not always an easily achieved goal for some users due to other unrelated build system complexities so the solution intended here is very much a hack workaround we plan to modify sematic push and run in bazel pipeline bzl to read the digest file after push rather than after build pass through the image hashes as an environment variable to the launch script that is then read by the python code this should ensure that in scenario we start the sematic pipeline with images that were actually pushed at some point alternatively we could look into refactoring the bazel pipeline bzl implementation to see if it s possible to make the launch script more directly depend on the results of the container push rule so that the digest file is no longer necessary and the image hashes are always correct cc augray | 1 |
51,795 | 12,809,180,154 | IssuesEvent | 2020-07-03 15:05:18 | pwa-builder/PWABuilder | https://api.github.com/repos/pwa-builder/PWABuilder | closed | [Keyboard Navigation - PWA Builder - PWA Builder Inking] : Heading hierarchy is not correct, h1 used after h3. | A11yCT A11yMAS A11yMediumImpact Accessibility HCL- PWABuilder MAS2.4.6 Severity3 bug :bug: fixed needs triage :mag: | **User Experience:**
If headings are not clear and descriptive, it would be difficult for screen reader dependent users to find the information they seek, and cannot understand the relationships between different parts of the content. Also if labels are not Descriptive users can not identify specific components within the content.
**Test Environment:**
OS: Windows 10 build 19608.1006
Browser: Edge - Anaheim - Version 85.0.545.0 (Official build) dev (64-bit)
URL: https://pwabuilderfeatures.z22.web.core.windows.net/component/inking
**Repro Steps:**
1. Open URL: https://pwabuilderfeatures.z22.web.core.windows.net/component/inking in Edge Anaheim dev browser.
2. Navigate to pwa-inking Heading.
3. Check for heading structure for the headings from the code.
4. Observe the issue.
**Actual Result:**
Heading level not correct, H3 used after H1 heading level. And H2 used after H3, i.e. randomly structured.
**Expected Result:**
Heading level should be in a correct structure, i.e. in a ascending or descending order
**MAS Reference:**
https://microsoft.sharepoint.com/:w:/r/teams/msenable/_layouts/15/WopiFrame.aspx?sourcedoc={0cf80872-800d-4643-90cf-0c1c3d3e6260}

| 1.0 | [Keyboard Navigation - PWA Builder - PWA Builder Inking] : Heading hierarchy is not correct, h1 used after h3. - **User Experience:**
If headings are not clear and descriptive, it would be difficult for screen reader dependent users to find the information they seek, and cannot understand the relationships between different parts of the content. Also if labels are not Descriptive users can not identify specific components within the content.
**Test Environment:**
OS: Windows 10 build 19608.1006
Browser: Edge - Anaheim - Version 85.0.545.0 (Official build) dev (64-bit)
URL: https://pwabuilderfeatures.z22.web.core.windows.net/component/inking
**Repro Steps:**
1. Open URL: https://pwabuilderfeatures.z22.web.core.windows.net/component/inking in Edge Anaheim dev browser.
2. Navigate to pwa-inking Heading.
3. Check for heading structure for the headings from the code.
4. Observe the issue.
**Actual Result:**
Heading level not correct, H3 used after H1 heading level. And H2 used after H3, i.e. randomly structured.
**Expected Result:**
Heading level should be in a correct structure, i.e. in a ascending or descending order
**MAS Reference:**
https://microsoft.sharepoint.com/:w:/r/teams/msenable/_layouts/15/WopiFrame.aspx?sourcedoc={0cf80872-800d-4643-90cf-0c1c3d3e6260}

| non_infrastructure | heading hierarchy is not correct used after user experience if headings are not clear and descriptive it would be difficult for screen reader dependent users to find the information they seek and cannot understand the relationships between different parts of the content also if labels are not descriptive users can not identify specific components within the content test environment os windows build browser edge anaheim version official build dev bit url repro steps open url in edge anaheim dev browser navigate to pwa inking heading check for heading structure for the headings from the code observe the issue actual result heading level not correct used after heading level and used after i e randomly structured expected result heading level should be in a correct structure i e in a ascending or descending order mas reference | 0 |
16,950 | 12,152,151,964 | IssuesEvent | 2020-04-24 21:31:41 | BCDevOps/developer-experience | https://api.github.com/repos/BCDevOps/developer-experience | closed | Project object backups | Infrastructure closed | https://trello.com/c/WPDtY8KP/26-project-object-backups
Create a system to back up the API objects in projects to aid in disaster recovery.
https://docs.openshift.com/container-platform/3.10/day_two_guide/project_level_tasks.html
https://github.com/bcgov-c/ocp-backup | 1.0 | Project object backups - https://trello.com/c/WPDtY8KP/26-project-object-backups
Create a system to back up the API objects in projects to aid in disaster recovery.
https://docs.openshift.com/container-platform/3.10/day_two_guide/project_level_tasks.html
https://github.com/bcgov-c/ocp-backup | infrastructure | project object backups create a system to back up the api objects in projects to aid in disaster recovery | 1 |
91,512 | 8,306,652,311 | IssuesEvent | 2018-09-22 21:11:05 | kartoza/LEDET_BIMS | https://api.github.com/repos/kartoza/LEDET_BIMS | closed | FR10 upload biodiversity data with geometry | bug testing | this refers to standard biodiversity observation data ('distribution' refers to the location as xy point coordinates or polygon) i.e. the generic biodiversity record class.
In this ticket, handle upload from shapefile. also see the requirements document for further context.
GeoPackage or GML or even GeoJSON are preferable to shapefile unless they take longer to code. We want to be standards compliant rather than just go with shapefile because it is ubiquitous.
While #5 will handle most cases (all cases with point geometry as x/y or long/lat)), this is specifically for users who have data with geometry already and especially for records with polygon or line geometry, which are not handled by csv. All other fields should be the same as for csv (except no x/y or long/lat)
child of #5
For testing:
[fishshapefile.zip](https://waffleio-direct-uploads-production.s3.amazonaws.com/uploads/53ba46167953d2fd0f723be0/125516c66e82c728ace21e0d46ee9d892b918ba89fecb94aa858b2d86b56357c2301a03f32dfa17dbe437f505e591caa470c0c41fdf9892af4b368238e5f0effcd7f1d2598694ef1e1c84afd13b032894f8fb7b9894fc6ed3526ef88894e3a0c48.zip)
[birdshapefile.zip](https://waffleio-direct-uploads-production.s3.amazonaws.com/uploads/53ba46167953d2fd0f723be0/125516c66e82c728ace21e0d46ea9d8827918ba89fecb94aa858b2d86b56357c2301a03f32dfa17dbe437f505e591caa470c0c41fdf9892af4b368238e5f0effcd7f1d2598694ef1e1c84afd13b0328a488fb7b9894fc6ed3526ef88894e360c48.zip) | 1.0 | FR10 upload biodiversity data with geometry - this refers to standard biodiversity observation data ('distribution' refers to the location as xy point coordinates or polygon) i.e. the generic biodiversity record class.
In this ticket, handle upload from shapefile. also see the requirements document for further context.
GeoPackage or GML or even GeoJSON are preferable to shapefile unless they take longer to code. We want to be standards compliant rather than just go with shapefile because it is ubiquitous.
While #5 will handle most cases (all cases with point geometry as x/y or long/lat)), this is specifically for users who have data with geometry already and especially for records with polygon or line geometry, which are not handled by csv. All other fields should be the same as for csv (except no x/y or long/lat)
child of #5
For testing:
[fishshapefile.zip](https://waffleio-direct-uploads-production.s3.amazonaws.com/uploads/53ba46167953d2fd0f723be0/125516c66e82c728ace21e0d46ee9d892b918ba89fecb94aa858b2d86b56357c2301a03f32dfa17dbe437f505e591caa470c0c41fdf9892af4b368238e5f0effcd7f1d2598694ef1e1c84afd13b032894f8fb7b9894fc6ed3526ef88894e3a0c48.zip)
[birdshapefile.zip](https://waffleio-direct-uploads-production.s3.amazonaws.com/uploads/53ba46167953d2fd0f723be0/125516c66e82c728ace21e0d46ea9d8827918ba89fecb94aa858b2d86b56357c2301a03f32dfa17dbe437f505e591caa470c0c41fdf9892af4b368238e5f0effcd7f1d2598694ef1e1c84afd13b0328a488fb7b9894fc6ed3526ef88894e360c48.zip) | non_infrastructure | upload biodiversity data with geometry this refers to standard biodiversity observation data distribution refers to the location as xy point coordinates or polygon i e the generic biodiversity record class in this ticket handle upload from shapefile also see the requirements document for further context geopackage or gml or even geojson are preferable to shapefile unless they take longer to code we want to be standards compliant rather than just go with shapefile because it is ubiquitous while will handle most cases all cases with point geometry as x y or long lat this is specifically for users who have data with geometry already and especially for records with polygon or line geometry which are not handled by csv all other fields should be the same as for csv except no x y or long lat child of for testing | 0 |
3,105 | 4,057,290,242 | IssuesEvent | 2016-05-24 21:33:36 | rust-lang/rust | https://api.github.com/repos/rust-lang/rust | closed | Have bots sign snapshots | A-infrastructure A-security I-wishlist | cc #13252. In order to have increased confidence that any given Rust hasn't been MITMed we need to go all the way to the source and sign the binary snaps. | 1.0 | Have bots sign snapshots - cc #13252. In order to have increased confidence that any given Rust hasn't been MITMed we need to go all the way to the source and sign the binary snaps. | infrastructure | have bots sign snapshots cc in order to have increased confidence that any given rust hasn t been mitmed we need to go all the way to the source and sign the binary snaps | 1 |
7,057 | 6,733,759,382 | IssuesEvent | 2017-10-18 15:44:57 | aiidateam/aiida_core | https://api.github.com/repos/aiidateam/aiida_core | closed | Add test that quicksetup works in a clean (virtual) environment | topic/PipInstall topic/TestInfrastructure topic/VerdiCommandLine type/enhancement type/task | Originally reported by: **Tiziano Mรผller (Bitbucket: [dev-zero](https://bitbucket.org/dev-zero), GitHub: [dev-zero](https://github.com/dev-zero))**
----------------------------------------
In ` setup.py` there is currently a `from aiida import get_version` to keep the version in sync.
This means that 'import aiida' can only import packages which are part of a Python installation.
The easiest test for that is to do a `python -c "import aiida"` inside a virtual environment (created using `virtualenv venv` and activated using `. ./venv/bin/activate`).
Furthermore we need tests to ensure that `verdi install` always works without an already defined database and without existing configuration.
----------------------------------------
- Bitbucket: https://bitbucket.org/aiida_team/aiida_core/issue/291
| 1.0 | Add test that quicksetup works in a clean (virtual) environment - Originally reported by: **Tiziano Mรผller (Bitbucket: [dev-zero](https://bitbucket.org/dev-zero), GitHub: [dev-zero](https://github.com/dev-zero))**
----------------------------------------
In ` setup.py` there is currently a `from aiida import get_version` to keep the version in sync.
This means that 'import aiida' can only import packages which are part of a Python installation.
The easiest test for that is to do a `python -c "import aiida"` inside a virtual environment (created using `virtualenv venv` and activated using `. ./venv/bin/activate`).
Furthermore we need tests to ensure that `verdi install` always works without an already defined database and without existing configuration.
----------------------------------------
- Bitbucket: https://bitbucket.org/aiida_team/aiida_core/issue/291
| infrastructure | add test that quicksetup works in a clean virtual environment originally reported by tiziano mรผller bitbucket github in setup py there is currently a from aiida import get version to keep the version in sync this means that import aiida can only import packages which are part of a python installation the easiest test for that is to do a python c import aiida inside a virtual environment created using virtualenv venv and activated using venv bin activate furthermore we need tests to ensure that verdi install always works without an already defined database and without existing configuration bitbucket | 1 |
81,103 | 10,097,886,606 | IssuesEvent | 2019-07-28 10:25:06 | Leopotam/vscode-csharpfixformat | https://api.github.com/repos/Leopotam/vscode-csharpfixformat | closed | Nesting an enum inside class adds extra indentation to following properties | by design | ## Environment data
### C# FixFormat extension version:
0.0.66
### VsCode version:
1.21.1
## Steps to reproduce
Adding a nested enum to any class seems to cause all the following properties to be indented up to the first method. For example in this class:
```cs
public class PlayerState : MonoBehaviour {
public enum Mode {
Starting,
Racing,
Finished,
};
public Player player;
public int lap = 1;
// snip...
void Start() {
// snip...
}
void Update() {
// snip...
}
}
```
## Expected behavior
```cs
public class PlayerState : MonoBehaviour {
public enum Mode {
Starting,
Racing,
Finished,
};
public Player player;
public int lap = 1;
// snip...
void Start() {
// snip...
}
void Update() {
// snip...
}
}
```
## Actual behavior
```cs
public class PlayerState : MonoBehaviour {
public enum Mode {
Starting,
Racing,
Finished,
};
public Player player;
public int lap = 1;
// snip...
void Start() {
// snip...
}
void Update() {
// snip...
}
}
``` | 1.0 | Nesting an enum inside class adds extra indentation to following properties - ## Environment data
### C# FixFormat extension version:
0.0.66
### VsCode version:
1.21.1
## Steps to reproduce
Adding a nested enum to any class seems to cause all the following properties to be indented up to the first method. For example in this class:
```cs
public class PlayerState : MonoBehaviour {
public enum Mode {
Starting,
Racing,
Finished,
};
public Player player;
public int lap = 1;
// snip...
void Start() {
// snip...
}
void Update() {
// snip...
}
}
```
## Expected behavior
```cs
public class PlayerState : MonoBehaviour {
public enum Mode {
Starting,
Racing,
Finished,
};
public Player player;
public int lap = 1;
// snip...
void Start() {
// snip...
}
void Update() {
// snip...
}
}
```
## Actual behavior
```cs
public class PlayerState : MonoBehaviour {
public enum Mode {
Starting,
Racing,
Finished,
};
public Player player;
public int lap = 1;
// snip...
void Start() {
// snip...
}
void Update() {
// snip...
}
}
``` | non_infrastructure | nesting an enum inside class adds extra indentation to following properties environment data c fixformat extension version vscode version steps to reproduce adding a nested enum to any class seems to cause all the following properties to be indented up to the first method for example in this class cs public class playerstate monobehaviour public enum mode starting racing finished public player player public int lap snip void start snip void update snip expected behavior cs public class playerstate monobehaviour public enum mode starting racing finished public player player public int lap snip void start snip void update snip actual behavior cs public class playerstate monobehaviour public enum mode starting racing finished public player player public int lap snip void start snip void update snip | 0 |
32,845 | 27,033,868,927 | IssuesEvent | 2023-02-12 14:41:36 | openforis/fra-platform | https://api.github.com/repos/openforis/fra-platform | closed | Table 8 Sub-Indicator 3 | infrastructure | @minotogna
High priority
Please remove 1990 since SDG starts at 2000

| 1.0 | Table 8 Sub-Indicator 3 - @minotogna
High priority
Please remove 1990 since SDG starts at 2000

| infrastructure | table sub indicator minotogna high priority please remove since sdg starts at | 1 |
543,270 | 15,879,340,069 | IssuesEvent | 2021-04-09 12:19:46 | wso2/product-is | https://api.github.com/repos/wso2/product-is | closed | BPS profile name front end validation missing which must only contain letters and numbers | Affected/5.4.0 Affected/5.4.0-Update3 Priority/High bug | When creating BPS profile, ** Profile Name** must only contain letters and numbers. But in fronted its not validated and only giving error as
> Error when adding the BPS profile.
Below error can be seen in the backend
```
[-1234] [] [2018-01-05 07:51:38,255] ERROR {org.wso2.carbon.identity.workflow.impl.WorkflowImplAdminService} - Server error when adding the profile bps_1
org.wso2.carbon.identity.workflow.impl.WorkflowImplException: Profile name should be a not null alpha numeric string, if its not the default embedded BPS.
at org.wso2.carbon.identity.workflow.impl.listener.WorkflowImplValidationListener.doPreAddBPSProfile(WorkflowImplValidationListener.java:46)
at org.wso2.carbon.identity.workflow.impl.WorkflowImplServiceImpl.addBPSProfile(WorkflowImplServiceImpl.java:85)
at org.wso2.carbon.identity.workflow.impl.WorkflowImplAdminService.addBPSProfile(WorkflowImplAdminService.java:50)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:212)
at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:117)
at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40)
at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:110)
at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:180)
at org.apache.axis2.transport.local.LocalTransportReceiver.processMessage(LocalTransportReceiver.java:169)
at org.apache.axis2.transport.local.LocalTransportReceiver.processMessage(LocalTransportReceiver.java:82)
at org.wso2.carbon.core.transports.local.CarbonLocalTransportSender.finalizeSendWithToAddress(CarbonLocalTransportSender.java:45)
at org.apache.axis2.transport.local.LocalTransportSender.invoke(LocalTransportSender.java:77)
at org.apache.axis2.engine.AxisEngine.send(AxisEngine.java:442)
at org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:430)
at org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:225)
at org.apache.axis2.client.OperationClient.execute(OperationClient.java:149)
at org.wso2.carbon.identity.workflow.impl.stub.WorkflowImplAdminServiceStub.addBPSProfile(WorkflowImplAdminServiceStub.java:1354)
at org.wso2.carbon.identity.workflow.impl.ui.WorkflowImplAdminServiceClient.addBPSProfile(WorkflowImplAdminServiceClient.java:62)
at org.apache.jsp.workflow_002dimpl.update_002dbps_002dprofile_002dfinish_002dajaxprocessor_jsp._jspService(update_002dbps_002dprofile_002dfinish_002dajaxprocessor_jsp.java:157)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:439)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:395)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:339)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.wso2.carbon.ui.JspServlet.service(JspServlet.java:155)
at org.wso2.carbon.ui.TilesJspServlet.service(TilesJspServlet.java:80)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.eclipse.equinox.http.helper.ContextPathServletAdaptor.service(ContextPathServletAdaptor.java:37)
at org.eclipse.equinox.http.servlet.internal.ServletRegistration.service(ServletRegistration.java:61)
at org.eclipse.equinox.http.servlet.internal.ProxyServlet.processAlias(ProxyServlet.java:128)
at org.eclipse.equinox.http.servlet.internal.ProxyServlet.service(ProxyServlet.java:68)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.wso2.carbon.tomcat.ext.servlet.DelegationServlet.service(DelegationServlet.java:68)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.owasp.csrfguard.CsrfGuardFilter.doFilter(CsrfGuardFilter.java:88)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.filters.HttpHeaderSecurityFilter.doFilter(HttpHeaderSecurityFilter.java:124)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.wso2.carbon.tomcat.ext.filter.CharacterSetFilter.doFilter(CharacterSetFilter.java:65)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.filters.HttpHeaderSecurityFilter.doFilter(HttpHeaderSecurityFilter.java:124)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:219)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:110)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:506)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:169)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)
at org.wso2.carbon.identity.context.rewrite.valve.TenantContextRewriteValve.invoke(TenantContextRewriteValve.java:80)
at org.wso2.carbon.identity.authz.valve.AuthorizationValve.invoke(AuthorizationValve.java:91)
at org.wso2.carbon.identity.auth.valve.AuthenticationValve.invoke(AuthenticationValve.java:60)
at org.wso2.carbon.tomcat.ext.valves.CompositeValve.continueInvocation(CompositeValve.java:99)
at org.wso2.carbon.tomcat.ext.valves.CarbonTomcatValve$1.invoke(CarbonTomcatValve.java:47)
at org.wso2.carbon.webapp.mgt.TenantLazyLoaderValve.invoke(TenantLazyLoaderValve.java:57)
at org.wso2.carbon.tomcat.ext.valves.TomcatValveContainer.invokeValves(TomcatValveContainer.java:47)
at org.wso2.carbon.tomcat.ext.valves.CompositeValve.invoke(CompositeValve.java:62)
at org.wso2.carbon.tomcat.ext.valves.CarbonStuckThreadDetectionValve.invoke(CarbonStuckThreadDetectionValve.java:159)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:962)
at org.wso2.carbon.tomcat.ext.valves.CarbonContextCreatorValve.invoke(CarbonContextCreatorValve.java:57)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:445)
at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1115)
at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:637)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1775)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.run(NioEndpoint.java:1734)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:745)
TID
```: | 1.0 | BPS profile name front end validation missing which must only contain letters and numbers - When creating BPS profile, ** Profile Name** must only contain letters and numbers. But in fronted its not validated and only giving error as
> Error when adding the BPS profile.
Below error can be seen in the backend
```
[-1234] [] [2018-01-05 07:51:38,255] ERROR {org.wso2.carbon.identity.workflow.impl.WorkflowImplAdminService} - Server error when adding the profile bps_1
org.wso2.carbon.identity.workflow.impl.WorkflowImplException: Profile name should be a not null alpha numeric string, if its not the default embedded BPS.
at org.wso2.carbon.identity.workflow.impl.listener.WorkflowImplValidationListener.doPreAddBPSProfile(WorkflowImplValidationListener.java:46)
at org.wso2.carbon.identity.workflow.impl.WorkflowImplServiceImpl.addBPSProfile(WorkflowImplServiceImpl.java:85)
at org.wso2.carbon.identity.workflow.impl.WorkflowImplAdminService.addBPSProfile(WorkflowImplAdminService.java:50)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:212)
at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:117)
at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40)
at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:110)
at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:180)
at org.apache.axis2.transport.local.LocalTransportReceiver.processMessage(LocalTransportReceiver.java:169)
at org.apache.axis2.transport.local.LocalTransportReceiver.processMessage(LocalTransportReceiver.java:82)
at org.wso2.carbon.core.transports.local.CarbonLocalTransportSender.finalizeSendWithToAddress(CarbonLocalTransportSender.java:45)
at org.apache.axis2.transport.local.LocalTransportSender.invoke(LocalTransportSender.java:77)
at org.apache.axis2.engine.AxisEngine.send(AxisEngine.java:442)
at org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:430)
at org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:225)
at org.apache.axis2.client.OperationClient.execute(OperationClient.java:149)
at org.wso2.carbon.identity.workflow.impl.stub.WorkflowImplAdminServiceStub.addBPSProfile(WorkflowImplAdminServiceStub.java:1354)
at org.wso2.carbon.identity.workflow.impl.ui.WorkflowImplAdminServiceClient.addBPSProfile(WorkflowImplAdminServiceClient.java:62)
at org.apache.jsp.workflow_002dimpl.update_002dbps_002dprofile_002dfinish_002dajaxprocessor_jsp._jspService(update_002dbps_002dprofile_002dfinish_002dajaxprocessor_jsp.java:157)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:439)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:395)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:339)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.wso2.carbon.ui.JspServlet.service(JspServlet.java:155)
at org.wso2.carbon.ui.TilesJspServlet.service(TilesJspServlet.java:80)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.eclipse.equinox.http.helper.ContextPathServletAdaptor.service(ContextPathServletAdaptor.java:37)
at org.eclipse.equinox.http.servlet.internal.ServletRegistration.service(ServletRegistration.java:61)
at org.eclipse.equinox.http.servlet.internal.ProxyServlet.processAlias(ProxyServlet.java:128)
at org.eclipse.equinox.http.servlet.internal.ProxyServlet.service(ProxyServlet.java:68)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.wso2.carbon.tomcat.ext.servlet.DelegationServlet.service(DelegationServlet.java:68)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.owasp.csrfguard.CsrfGuardFilter.doFilter(CsrfGuardFilter.java:88)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.filters.HttpHeaderSecurityFilter.doFilter(HttpHeaderSecurityFilter.java:124)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.wso2.carbon.tomcat.ext.filter.CharacterSetFilter.doFilter(CharacterSetFilter.java:65)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.filters.HttpHeaderSecurityFilter.doFilter(HttpHeaderSecurityFilter.java:124)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:219)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:110)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:506)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:169)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)
at org.wso2.carbon.identity.context.rewrite.valve.TenantContextRewriteValve.invoke(TenantContextRewriteValve.java:80)
at org.wso2.carbon.identity.authz.valve.AuthorizationValve.invoke(AuthorizationValve.java:91)
at org.wso2.carbon.identity.auth.valve.AuthenticationValve.invoke(AuthenticationValve.java:60)
at org.wso2.carbon.tomcat.ext.valves.CompositeValve.continueInvocation(CompositeValve.java:99)
at org.wso2.carbon.tomcat.ext.valves.CarbonTomcatValve$1.invoke(CarbonTomcatValve.java:47)
at org.wso2.carbon.webapp.mgt.TenantLazyLoaderValve.invoke(TenantLazyLoaderValve.java:57)
at org.wso2.carbon.tomcat.ext.valves.TomcatValveContainer.invokeValves(TomcatValveContainer.java:47)
at org.wso2.carbon.tomcat.ext.valves.CompositeValve.invoke(CompositeValve.java:62)
at org.wso2.carbon.tomcat.ext.valves.CarbonStuckThreadDetectionValve.invoke(CarbonStuckThreadDetectionValve.java:159)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:962)
at org.wso2.carbon.tomcat.ext.valves.CarbonContextCreatorValve.invoke(CarbonContextCreatorValve.java:57)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:445)
at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1115)
at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:637)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1775)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.run(NioEndpoint.java:1734)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:745)
TID
```: | non_infrastructure | bps profile name front end validation missing which must only contain letters and numbers when creating bps profile profile name must only contain letters and numbers but in fronted its not validated and only giving error as error when adding the bps profile below error can be seen in the backend error org carbon identity workflow impl workflowimpladminservice server error when adding the profile bps org carbon identity workflow impl workflowimplexception profile name should be a not null alpha numeric string if its not the default embedded bps at org carbon identity workflow impl listener workflowimplvalidationlistener dopreaddbpsprofile workflowimplvalidationlistener java at org carbon identity workflow impl workflowimplserviceimpl addbpsprofile workflowimplserviceimpl java at org carbon identity workflow impl workflowimpladminservice addbpsprofile workflowimpladminservice java at sun reflect nativemethodaccessorimpl native method at sun reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at sun reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java lang reflect method invoke method java at org apache rpc receivers rpcutil invokeserviceclass rpcutil java at org apache rpc receivers rpcmessagereceiver invokebusinesslogic rpcmessagereceiver java at org apache receivers abstractinoutmessagereceiver invokebusinesslogic abstractinoutmessagereceiver java at org apache receivers abstractmessagereceiver receive abstractmessagereceiver java at org apache engine axisengine receive axisengine java at org apache transport local localtransportreceiver processmessage localtransportreceiver java at org apache transport local localtransportreceiver processmessage localtransportreceiver java at org carbon core transports local carbonlocaltransportsender finalizesendwithtoaddress carbonlocaltransportsender java at org apache transport local localtransportsender invoke localtransportsender java at org apache engine axisengine send axisengine java at org apache description outinaxisoperationclient send outinaxisoperation java at org apache description outinaxisoperationclient executeimpl outinaxisoperation java at org apache client operationclient execute operationclient java at org carbon identity workflow impl stub workflowimpladminservicestub addbpsprofile workflowimpladminservicestub java at org carbon identity workflow impl ui workflowimpladminserviceclient addbpsprofile workflowimpladminserviceclient java at org apache jsp workflow update jsp jspservice update jsp java at org apache jasper runtime httpjspbase service httpjspbase java at javax servlet http httpservlet service httpservlet java at org apache jasper servlet jspservletwrapper service jspservletwrapper java at org apache jasper servlet jspservlet servicejspfile jspservlet java at org apache jasper servlet jspservlet service jspservlet java at javax servlet http httpservlet service httpservlet java at org carbon ui jspservlet service jspservlet java at org carbon ui tilesjspservlet service tilesjspservlet java at javax servlet http httpservlet service httpservlet java at org eclipse equinox http helper contextpathservletadaptor service contextpathservletadaptor java at org eclipse equinox http servlet internal servletregistration service servletregistration java at org eclipse equinox http servlet internal proxyservlet processalias proxyservlet java at org eclipse equinox http servlet internal proxyservlet service proxyservlet java at javax servlet http httpservlet service httpservlet java at org carbon tomcat ext servlet delegationservlet service delegationservlet java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org apache tomcat websocket server wsfilter dofilter wsfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org owasp csrfguard csrfguardfilter dofilter csrfguardfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org apache catalina filters httpheadersecurityfilter dofilter httpheadersecurityfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org carbon tomcat ext filter charactersetfilter dofilter charactersetfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org apache catalina filters httpheadersecurityfilter dofilter httpheadersecurityfilter java at org apache catalina core applicationfilterchain internaldofilter applicationfilterchain java at org apache catalina core applicationfilterchain dofilter applicationfilterchain java at org apache catalina core standardwrappervalve invoke standardwrappervalve java at org apache catalina core standardcontextvalve invoke standardcontextvalve java at org apache catalina authenticator authenticatorbase invoke authenticatorbase java at org apache catalina core standardhostvalve invoke standardhostvalve java at org apache catalina valves errorreportvalve invoke errorreportvalve java at org carbon identity context rewrite valve tenantcontextrewritevalve invoke tenantcontextrewritevalve java at org carbon identity authz valve authorizationvalve invoke authorizationvalve java at org carbon identity auth valve authenticationvalve invoke authenticationvalve java at org carbon tomcat ext valves compositevalve continueinvocation compositevalve java at org carbon tomcat ext valves carbontomcatvalve invoke carbontomcatvalve java at org carbon webapp mgt tenantlazyloadervalve invoke tenantlazyloadervalve java at org carbon tomcat ext valves tomcatvalvecontainer invokevalves tomcatvalvecontainer java at org carbon tomcat ext valves compositevalve invoke compositevalve java at org carbon tomcat ext valves carbonstuckthreaddetectionvalve invoke carbonstuckthreaddetectionvalve java at org apache catalina valves accesslogvalve invoke accesslogvalve java at org carbon tomcat ext valves carboncontextcreatorvalve invoke carboncontextcreatorvalve java at org apache catalina core standardenginevalve invoke standardenginevalve java at org apache catalina connector coyoteadapter service coyoteadapter java at org apache coyote process java at org apache coyote abstractprotocol abstractconnectionhandler process abstractprotocol java at org apache tomcat util net nioendpoint socketprocessor dorun nioendpoint java at org apache tomcat util net nioendpoint socketprocessor run nioendpoint java at java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java util concurrent threadpoolexecutor worker run threadpoolexecutor java at org apache tomcat util threads taskthread wrappingrunnable run taskthread java at java lang thread run thread java tid | 0 |
306,203 | 26,447,400,174 | IssuesEvent | 2023-01-16 08:36:54 | cockroachdb/cockroach | https://api.github.com/repos/cockroachdb/cockroach | closed | roachtest: jepsen/bank-multitable/parts-start-kill-2 failed | C-test-failure O-robot O-roachtest branch-master release-blocker T-testeng | roachtest.jepsen/bank-multitable/parts-start-kill-2 [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/8299491?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/8299491?buildTab=artifacts#/jepsen/bank-multitable/parts-start-kill-2) on master @ [a3d53668ff52c2306f37fcad8e9212ff665ca115](https://github.com/cockroachdb/cockroach/commits/a3d53668ff52c2306f37fcad8e9212ff665ca115):
```
test artifacts and logs in: /artifacts/jepsen/bank-multitable/parts-start-kill-2/run_1
(cluster.go:1933).Run: output in run_115338.081767845_n1-6_sh: sh -c "sudo DEBIAN_FRONTEND=noninteractive apt-get -y upgrade -o Dpkg::Options::='--force-confold' -o DPkg::options::='--force-confdef' > logs/apt-upgrade.log 2>&1" returned: COMMAND_PROBLEM: exit status 100
```
<p>Parameters: <code>ROACHTEST_cloud=gce</code>
, <code>ROACHTEST_cpu=4</code>
, <code>ROACHTEST_encrypted=false</code>
, <code>ROACHTEST_fs=ext4</code>
, <code>ROACHTEST_localSSD=true</code>
, <code>ROACHTEST_ssd=0</code>
</p>
<details><summary>Help</summary>
<p>
See: [roachtest README](https://github.com/cockroachdb/cockroach/blob/master/pkg/cmd/roachtest/README.md)
See: [How To Investigate \(internal\)](https://cockroachlabs.atlassian.net/l/c/SSSBr8c7)
</p>
</details>
/cc @cockroachdb/test-eng
<sub>
[This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*jepsen/bank-multitable/parts-start-kill-2.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)
</sub>
Jira issue: CRDB-23396 | 3.0 | roachtest: jepsen/bank-multitable/parts-start-kill-2 failed - roachtest.jepsen/bank-multitable/parts-start-kill-2 [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/8299491?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/8299491?buildTab=artifacts#/jepsen/bank-multitable/parts-start-kill-2) on master @ [a3d53668ff52c2306f37fcad8e9212ff665ca115](https://github.com/cockroachdb/cockroach/commits/a3d53668ff52c2306f37fcad8e9212ff665ca115):
```
test artifacts and logs in: /artifacts/jepsen/bank-multitable/parts-start-kill-2/run_1
(cluster.go:1933).Run: output in run_115338.081767845_n1-6_sh: sh -c "sudo DEBIAN_FRONTEND=noninteractive apt-get -y upgrade -o Dpkg::Options::='--force-confold' -o DPkg::options::='--force-confdef' > logs/apt-upgrade.log 2>&1" returned: COMMAND_PROBLEM: exit status 100
```
<p>Parameters: <code>ROACHTEST_cloud=gce</code>
, <code>ROACHTEST_cpu=4</code>
, <code>ROACHTEST_encrypted=false</code>
, <code>ROACHTEST_fs=ext4</code>
, <code>ROACHTEST_localSSD=true</code>
, <code>ROACHTEST_ssd=0</code>
</p>
<details><summary>Help</summary>
<p>
See: [roachtest README](https://github.com/cockroachdb/cockroach/blob/master/pkg/cmd/roachtest/README.md)
See: [How To Investigate \(internal\)](https://cockroachlabs.atlassian.net/l/c/SSSBr8c7)
</p>
</details>
/cc @cockroachdb/test-eng
<sub>
[This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*jepsen/bank-multitable/parts-start-kill-2.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)
</sub>
Jira issue: CRDB-23396 | non_infrastructure | roachtest jepsen bank multitable parts start kill failed roachtest jepsen bank multitable parts start kill with on master test artifacts and logs in artifacts jepsen bank multitable parts start kill run cluster go run output in run sh sh c sudo debian frontend noninteractive apt get y upgrade o dpkg options force confold o dpkg options force confdef logs apt upgrade log returned command problem exit status parameters roachtest cloud gce roachtest cpu roachtest encrypted false roachtest fs roachtest localssd true roachtest ssd help see see cc cockroachdb test eng jira issue crdb | 0 |
4,195 | 3,762,459,270 | IssuesEvent | 2016-03-15 00:12:58 | opengovfoundation/madison | https://api.github.com/repos/opengovfoundation/madison | opened | Do more for the user if they can't sign up. | Difficulty (1): Easy enough! Help Wanted Needs: Laravel Status: 0 Back Burner Type: Feature Request Type: UX / Usability | * [ ] If a user tries to sign up with an existing email address and they aren't confirmed, automatically re-send their confirmation.
* [ ] If a user tries to sign up with an existing email address and they are confirmed, provide a link to the "forgot password" link. | True | Do more for the user if they can't sign up. - * [ ] If a user tries to sign up with an existing email address and they aren't confirmed, automatically re-send their confirmation.
* [ ] If a user tries to sign up with an existing email address and they are confirmed, provide a link to the "forgot password" link. | non_infrastructure | do more for the user if they can t sign up if a user tries to sign up with an existing email address and they aren t confirmed automatically re send their confirmation if a user tries to sign up with an existing email address and they are confirmed provide a link to the forgot password link | 0 |
17,241 | 12,260,537,978 | IssuesEvent | 2020-05-06 18:28:31 | fuchicorp/cluster-infrastructure | https://api.github.com/repos/fuchicorp/cluster-infrastructure | closed | Deploy cluster-infrastructure into google account | cluster-infrastructure | Hello Team,
Please go ahead and deploy cluster-infrastructure into your google account and make sure you have up and running cluster.
https://github.com/fuchicorp/cluster-infrastructure/blob/bc80ea392f55dce04cebd810ea3cb0fcd750c09a/kube-cluster/kubecluster-deployment.tf#L1
Thank you | 1.0 | Deploy cluster-infrastructure into google account - Hello Team,
Please go ahead and deploy cluster-infrastructure into your google account and make sure you have up and running cluster.
https://github.com/fuchicorp/cluster-infrastructure/blob/bc80ea392f55dce04cebd810ea3cb0fcd750c09a/kube-cluster/kubecluster-deployment.tf#L1
Thank you | infrastructure | deploy cluster infrastructure into google account hello team please go ahead and deploy cluster infrastructure into your google account and make sure you have up and running cluster thank you | 1 |
22,175 | 15,028,231,525 | IssuesEvent | 2021-02-02 02:36:11 | dotnet/aspnetcore | https://api.github.com/repos/dotnet/aspnetcore | opened | Building IIS test assets results in file contention | area-infrastructure area-servers servers-iis | Build: https://dev.azure.com/dnceng/public/_build/results?buildId=974192&view=results
Error:
```
Unhandled exception. System.IO.IOException: The process cannot access the file 'F:\workspace\_work\1\s\src\Servers\IIS\IIS\test\testassets\InProcessWebSite\bin\Release\net6.0\InProcessWebSite.deps.json' because it is being used by another process.
at System.IO.FileStream.ValidateFileHandle(SafeFileHandle fileHandle)
at System.IO.FileStream.CreateFileOpenHandle(FileMode mode, FileShare share, FileOptions options)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options)
at System.IO.StreamWriter.ValidateArgsAndOpenPath(String path, Boolean append, Encoding encoding, Int32 bufferSize)
at System.IO.StreamWriter..ctor(String path, Boolean append)
at System.IO.File.CreateText(String path)
at TestTasks.InjectRequestHandler.Main(String[] args) in F:\workspace\_work\1\s\src\Servers\IIS\IIS\test\testassets\TestTasks\InjectRequestHandler.cs:line 81
F:\workspace\_work\1\s\src\Servers\IIS\build\testsite.props(70,5): error MSB3073: The command "dotnet F:\workspace\_work\1\s\src\Servers\IIS\build\..\IIS\test\testassets\TestTasks\bin\Release\net6.0\TestTasks.dll "F:\workspace\_work\1\s\src\Servers\IIS\IIS\test\testassets\InProcessWebSite\bin\Release\net6.0\InProcessWebSite.deps.json" " exited with code -532462766. [F:\workspace\_work\1\s\src\Servers\IIS\IIS\test\testassets\InProcessWebSite\InProcessWebSite.csproj]
##[error]src\Servers\IIS\build\testsite.props(70,5): error MSB3073: (NETCORE_ENGINEERING_TELEMETRY=Build) The command "dotnet F:\workspace\_work\1\s\src\Servers\IIS\build\..\IIS\test\testassets\TestTasks\bin\Release\net6.0\TestTasks.dll "F:\workspace\_work\1\s\src\Servers\IIS\IIS\test\testassets\InProcessWebSite\bin\Release\net6.0\InProcessWebSite.deps.json" " exited with code -532462766.
```
Looks like the IIS test asset build is flaky. It would be good to fix this but so far it hasn't been failing very frequently. | 1.0 | Building IIS test assets results in file contention - Build: https://dev.azure.com/dnceng/public/_build/results?buildId=974192&view=results
Error:
```
Unhandled exception. System.IO.IOException: The process cannot access the file 'F:\workspace\_work\1\s\src\Servers\IIS\IIS\test\testassets\InProcessWebSite\bin\Release\net6.0\InProcessWebSite.deps.json' because it is being used by another process.
at System.IO.FileStream.ValidateFileHandle(SafeFileHandle fileHandle)
at System.IO.FileStream.CreateFileOpenHandle(FileMode mode, FileShare share, FileOptions options)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options)
at System.IO.StreamWriter.ValidateArgsAndOpenPath(String path, Boolean append, Encoding encoding, Int32 bufferSize)
at System.IO.StreamWriter..ctor(String path, Boolean append)
at System.IO.File.CreateText(String path)
at TestTasks.InjectRequestHandler.Main(String[] args) in F:\workspace\_work\1\s\src\Servers\IIS\IIS\test\testassets\TestTasks\InjectRequestHandler.cs:line 81
F:\workspace\_work\1\s\src\Servers\IIS\build\testsite.props(70,5): error MSB3073: The command "dotnet F:\workspace\_work\1\s\src\Servers\IIS\build\..\IIS\test\testassets\TestTasks\bin\Release\net6.0\TestTasks.dll "F:\workspace\_work\1\s\src\Servers\IIS\IIS\test\testassets\InProcessWebSite\bin\Release\net6.0\InProcessWebSite.deps.json" " exited with code -532462766. [F:\workspace\_work\1\s\src\Servers\IIS\IIS\test\testassets\InProcessWebSite\InProcessWebSite.csproj]
##[error]src\Servers\IIS\build\testsite.props(70,5): error MSB3073: (NETCORE_ENGINEERING_TELEMETRY=Build) The command "dotnet F:\workspace\_work\1\s\src\Servers\IIS\build\..\IIS\test\testassets\TestTasks\bin\Release\net6.0\TestTasks.dll "F:\workspace\_work\1\s\src\Servers\IIS\IIS\test\testassets\InProcessWebSite\bin\Release\net6.0\InProcessWebSite.deps.json" " exited with code -532462766.
```
Looks like the IIS test asset build is flaky. It would be good to fix this but so far it hasn't been failing very frequently. | infrastructure | building iis test assets results in file contention build error unhandled exception system io ioexception the process cannot access the file f workspace work s src servers iis iis test testassets inprocesswebsite bin release inprocesswebsite deps json because it is being used by another process at system io filestream validatefilehandle safefilehandle filehandle at system io filestream createfileopenhandle filemode mode fileshare share fileoptions options at system io filestream ctor string path filemode mode fileaccess access fileshare share buffersize fileoptions options at system io streamwriter validateargsandopenpath string path boolean append encoding encoding buffersize at system io streamwriter ctor string path boolean append at system io file createtext string path at testtasks injectrequesthandler main string args in f workspace work s src servers iis iis test testassets testtasks injectrequesthandler cs line f workspace work s src servers iis build testsite props error the command dotnet f workspace work s src servers iis build iis test testassets testtasks bin release testtasks dll f workspace work s src servers iis iis test testassets inprocesswebsite bin release inprocesswebsite deps json exited with code src servers iis build testsite props error netcore engineering telemetry build the command dotnet f workspace work s src servers iis build iis test testassets testtasks bin release testtasks dll f workspace work s src servers iis iis test testassets inprocesswebsite bin release inprocesswebsite deps json exited with code looks like the iis test asset build is flaky it would be good to fix this but so far it hasn t been failing very frequently | 1 |
77,374 | 3,506,362,749 | IssuesEvent | 2016-01-08 06:07:32 | OregonCore/OregonCore | https://api.github.com/repos/OregonCore/OregonCore | closed | Incorrect usage of MySQL comments in core DB files (BB #420) | migrated Priority: Medium Type: Bug | This issue was migrated from bitbucket.
**Original Reporter:** Siarkowy
**Original Date:** 29.04.2012 13:46:18 GMT+0000
**Original Priority:** major
**Original Type:** bug
**Original State:** resolved
**Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/420
<hr>
All files in {{{sql/}}} folder begin with the following block:
{{{
-----------------------------------------
-- Oregon World Database for Rev 1600+ --
-----------------------------------------
}}}
which causes issues as of MySQL 5.5.13. I'm getting the following error when trying to import files to local database (when using both command line and phpMyAdmin, tested with Windows and UNIX line endings):
{{{
# 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '---------------------------------------------
-- Oregon Character Database for R' at line 1
}}}
I found out that comments **have to** begin with '{{{-- }}}' (2 dashes followed by whitespace), so the line consisting only of dashes is not a valid comment. Source for this: http://dev.mysql.com/doc/refman/5.5/en/comments.html. | 1.0 | Incorrect usage of MySQL comments in core DB files (BB #420) - This issue was migrated from bitbucket.
**Original Reporter:** Siarkowy
**Original Date:** 29.04.2012 13:46:18 GMT+0000
**Original Priority:** major
**Original Type:** bug
**Original State:** resolved
**Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/420
<hr>
All files in {{{sql/}}} folder begin with the following block:
{{{
-----------------------------------------
-- Oregon World Database for Rev 1600+ --
-----------------------------------------
}}}
which causes issues as of MySQL 5.5.13. I'm getting the following error when trying to import files to local database (when using both command line and phpMyAdmin, tested with Windows and UNIX line endings):
{{{
# 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '---------------------------------------------
-- Oregon Character Database for R' at line 1
}}}
I found out that comments **have to** begin with '{{{-- }}}' (2 dashes followed by whitespace), so the line consisting only of dashes is not a valid comment. Source for this: http://dev.mysql.com/doc/refman/5.5/en/comments.html. | non_infrastructure | incorrect usage of mysql comments in core db files bb this issue was migrated from bitbucket original reporter siarkowy original date gmt original priority major original type bug original state resolved direct link all files in sql folder begin with the following block oregon world database for rev which causes issues as of mysql i m getting the following error when trying to import files to local database when using both command line and phpmyadmin tested with windows and unix line endings you have an error in your sql syntax check the manual that corresponds to your mysql server version for the right syntax to use near oregon character database for r at line i found out that comments have to begin with dashes followed by whitespace so the line consisting only of dashes is not a valid comment source for this | 0 |
394,173 | 11,632,976,081 | IssuesEvent | 2020-02-28 06:59:47 | Dragoon-Lab/topomath | https://api.github.com/repos/Dragoon-Lab/topomath | closed | Give yellow after 3 attempts instead of 2 | Priority: Must Have | * Currently, students are allowed 2 incorrect attempts. If the third attempt is incorrect, they get yellow. Increase the number of incorrect attempts to 3.
Kurt clarified this should affect all fields, not just equations.
Ritesh will go through the code and get a time estimate for this task on Wednesday. Due to hard coding it may take a non-trivial amount of time. | 1.0 | Give yellow after 3 attempts instead of 2 - * Currently, students are allowed 2 incorrect attempts. If the third attempt is incorrect, they get yellow. Increase the number of incorrect attempts to 3.
Kurt clarified this should affect all fields, not just equations.
Ritesh will go through the code and get a time estimate for this task on Wednesday. Due to hard coding it may take a non-trivial amount of time. | non_infrastructure | give yellow after attempts instead of currently students are allowed incorrect attempts if the third attempt is incorrect they get yellow increase the number of incorrect attempts to kurt clarified this should affect all fields not just equations ritesh will go through the code and get a time estimate for this task on wednesday due to hard coding it may take a non trivial amount of time | 0 |
28,760 | 23,477,318,862 | IssuesEvent | 2022-08-17 07:28:19 | Altinn/altinn-studio | https://api.github.com/repos/Altinn/altinn-studio | opened | Upgrade ssl certificates for altinn.studio | area/infrastructure team/studio kind/chore | ### Description
Upgrade ssl certificates for dev, staging and prod
### Additional Information
_No response_
### Tasks
- [ ] upgrade ssl for staging.altinn.studio
- [ ] upgrade ssl for dev.altinn.studio
- [ ] upgrade ssl for altinn.studio
### Acceptance Criterias
All ssl certificates updated | 1.0 | Upgrade ssl certificates for altinn.studio - ### Description
Upgrade ssl certificates for dev, staging and prod
### Additional Information
_No response_
### Tasks
- [ ] upgrade ssl for staging.altinn.studio
- [ ] upgrade ssl for dev.altinn.studio
- [ ] upgrade ssl for altinn.studio
### Acceptance Criterias
All ssl certificates updated | infrastructure | upgrade ssl certificates for altinn studio description upgrade ssl certificates for dev staging and prod additional information no response tasks upgrade ssl for staging altinn studio upgrade ssl for dev altinn studio upgrade ssl for altinn studio acceptance criterias all ssl certificates updated | 1 |
10,524 | 8,614,884,843 | IssuesEvent | 2018-11-19 18:50:47 | firebase/firebase-ios-sdk | https://api.github.com/repos/firebase/firebase-ios-sdk | closed | Signing warnings in XCode 10 GM | Infrastructure | Hello,
i get this warnings when using building my application with Xcode10 GM
- "Skipping code signing because the target does not have an Info.plist file. (in target 'FirebaseCore')"
- "Skipping code signing because the target does not have an Info.plist file. (in target 'FirebaseDatabase')"
- "Skipping code signing because the target does not have an Info.plist file. (in target 'FirebaseMessaging')"
I've read several post in other forums to this issue but there seems to be no solution or workaround.
#### Environment
* Xcode version: Xcode 10 GM
* Firebase SDK version: 5.8.0
* Firebase Component: Core, Database, Analytics, Messaging
* Component version: Core(5.1.3),Database(5.0.3), Analytics(5.1.2), Messaging(3.1.1)
#### Steps to reproduce:
1. Install Xcode 10 GM
2. Init cocoapods
3. Install firebase component via podfile
4. Build the application
| 1.0 | Signing warnings in XCode 10 GM - Hello,
i get this warnings when using building my application with Xcode10 GM
- "Skipping code signing because the target does not have an Info.plist file. (in target 'FirebaseCore')"
- "Skipping code signing because the target does not have an Info.plist file. (in target 'FirebaseDatabase')"
- "Skipping code signing because the target does not have an Info.plist file. (in target 'FirebaseMessaging')"
I've read several post in other forums to this issue but there seems to be no solution or workaround.
#### Environment
* Xcode version: Xcode 10 GM
* Firebase SDK version: 5.8.0
* Firebase Component: Core, Database, Analytics, Messaging
* Component version: Core(5.1.3),Database(5.0.3), Analytics(5.1.2), Messaging(3.1.1)
#### Steps to reproduce:
1. Install Xcode 10 GM
2. Init cocoapods
3. Install firebase component via podfile
4. Build the application
| infrastructure | signing warnings in xcode gm hello i get this warnings when using building my application with gm skipping code signing because the target does not have an info plist file in target firebasecore skipping code signing because the target does not have an info plist file in target firebasedatabase skipping code signing because the target does not have an info plist file in target firebasemessaging i ve read several post in other forums to this issue but there seems to be no solution or workaround environment xcode version xcode gm firebase sdk version firebase component core database analytics messaging component version core database analytics messaging steps to reproduce install xcode gm init cocoapods install firebase component via podfile build the application | 1 |
18,896 | 5,730,295,176 | IssuesEvent | 2017-04-21 09:02:09 | joomla/joomla-cms | https://api.github.com/repos/joomla/joomla-cms | closed | Javascript Error Calender is not defined, when using JHtmlBehavior::calendar with Joomla! 3.7.0-rc4 | No Code Attached Yet | The function calendar() in JHtmlBehavior class is public static and can therefore be used directly in Joomla! component development. The function adds javascript and css files to the document.
In Joomla! 3.7. the function body of this function is empty (with exception of the code that adds a log entry, that the function is deprecated).
As a result any code, which uses the public static function calender() of the JHtmlBehavior class does not work as expected anymore and throws the Javascript error mentioned above.
The problem could be fixed by adding the original code from Joomla! 3.6.5 back into the function. Further on, the protected static function calendartranslation() which is used by calendar(), and was removed in Joomla! 3.7, is also needed.
Regards,
Aicha | 1.0 | Javascript Error Calender is not defined, when using JHtmlBehavior::calendar with Joomla! 3.7.0-rc4 - The function calendar() in JHtmlBehavior class is public static and can therefore be used directly in Joomla! component development. The function adds javascript and css files to the document.
In Joomla! 3.7. the function body of this function is empty (with exception of the code that adds a log entry, that the function is deprecated).
As a result any code, which uses the public static function calender() of the JHtmlBehavior class does not work as expected anymore and throws the Javascript error mentioned above.
The problem could be fixed by adding the original code from Joomla! 3.6.5 back into the function. Further on, the protected static function calendartranslation() which is used by calendar(), and was removed in Joomla! 3.7, is also needed.
Regards,
Aicha | non_infrastructure | javascript error calender is not defined when using jhtmlbehavior calendar with joomla the function calendar in jhtmlbehavior class is public static and can therefore be used directly in joomla component development the function adds javascript and css files to the document in joomla the function body of this function is empty with exception of the code that adds a log entry that the function is deprecated as a result any code which uses the public static function calender of the jhtmlbehavior class does not work as expected anymore and throws the javascript error mentioned above the problem could be fixed by adding the original code from joomla back into the function further on the protected static function calendartranslation which is used by calendar and was removed in joomla is also needed regards aicha | 0 |
183,178 | 31,167,821,226 | IssuesEvent | 2023-08-16 21:17:59 | matomo-org/matomo | https://api.github.com/repos/matomo-org/matomo | closed | Accessible designs for notifications & inline messages | Enhancement c: Design / UI c: Accessibility | <!-- Please provide a short summary of the issue in the *Title* above -->
Problem: (some of) the current notifications / banners / inline messages arenโt WCAG compliant
Solution: create & implement on-brand WCAG compliant designs for each of the elements
Actions:
1. List all relevant elements (done)
2. Create new designs (done)
3. Implement designs
Component: Notifications
1. Informative
2. Success
3. Warning
4. Error (alert)
Analysis
There are four types of notifications (as mentioned above) that are commonly used across products, the fonts used in them should have enough contrast (4.5:1 minimum requirement) to comply with accessibility standards and same goes with UI elements (3:1).
We currently have these notifications but they donโt fully comply with accessibility and have different variations of these which are not being used consistently across the product, some can be found on github and some are not there.
Proposed solution
Notifications:
- Notifications are unified = consistency โ we donโt have two different versions for each type
- Colours are now accessible
- black font
- light shade of colour in the background
- icon and border comply with accessibility standards for UI element
- if notification has a subject, it goes in bold โ hierarchy
Inline messages:
- Colours are now accessible
- Dark grey font
- light shade of grey in the background











| 1.0 | Accessible designs for notifications & inline messages - <!-- Please provide a short summary of the issue in the *Title* above -->
Problem: (some of) the current notifications / banners / inline messages arenโt WCAG compliant
Solution: create & implement on-brand WCAG compliant designs for each of the elements
Actions:
1. List all relevant elements (done)
2. Create new designs (done)
3. Implement designs
Component: Notifications
1. Informative
2. Success
3. Warning
4. Error (alert)
Analysis
There are four types of notifications (as mentioned above) that are commonly used across products, the fonts used in them should have enough contrast (4.5:1 minimum requirement) to comply with accessibility standards and same goes with UI elements (3:1).
We currently have these notifications but they donโt fully comply with accessibility and have different variations of these which are not being used consistently across the product, some can be found on github and some are not there.
Proposed solution
Notifications:
- Notifications are unified = consistency โ we donโt have two different versions for each type
- Colours are now accessible
- black font
- light shade of colour in the background
- icon and border comply with accessibility standards for UI element
- if notification has a subject, it goes in bold โ hierarchy
Inline messages:
- Colours are now accessible
- Dark grey font
- light shade of grey in the background











| non_infrastructure | accessible designs for notifications inline messages problem some of the current notifications banners inline messages arenโt wcag compliant solution create implement on brand wcag compliant designs for each of the elements actions list all relevant elements done create new designs done implement designs component notifications informative success warning error alert analysis there are four types of notifications as mentioned above that are commonly used across products the fonts used in them should have enough contrast minimum requirement to comply with accessibility standards and same goes with ui elements we currently have these notifications but they donโt fully comply with accessibility and have different variations of these which are not being used consistently across the product some can be found on github and some are not there proposed solution notifications notifications are unified consistency โ we donโt have two different versions for each type colours are now accessible black font light shade of colour in the background icon and border comply with accessibility standards for ui element if notification has a subject it goes in bold โ hierarchy inline messages colours are now accessible dark grey font light shade of grey in the background | 0 |
27,934 | 22,613,349,788 | IssuesEvent | 2022-06-29 19:18:32 | department-of-veterans-affairs/va.gov-team | https://api.github.com/repos/department-of-veterans-affairs/va.gov-team | closed | [Beats agent] Investigate reports of duplicate logs being sent to CSOC | operations devops security logging infrastructure infrastructure-request | ## Description
@joeniquette received a question from the CLS folks around the current logging sent to CSOC via the beats agent. They said yesterday that the logs sent took up about 40% of all bandwidth resources.
Their question is: "It appeared that the auditd log was going crazy. When you guys create your images do you clean the old logs off the system before redeploying? If that is not the case it could be that when you guys redeploy it's gathering all of the audit logs on all of the systems. resulting in non-needed logs/duplicate logs."
## Background/context
Related issue:
- #40935
- #41791
## Technical notes
_Notes around work that is happening, if applicable (optional, please delete if unused)_
---
## Tasks
- [ ] Investigate the possibility that duplicate logs are being sent due to the way the images are built/deployed
- [ ] Implement a fix for the issue
## Acceptance Criteria
- [ ] Ensure that duplicate logs are not being sent to CSOC
- [ ] Confirm with Joe Niquette, CLS, or others as needed | 2.0 | [Beats agent] Investigate reports of duplicate logs being sent to CSOC - ## Description
@joeniquette received a question from the CLS folks around the current logging sent to CSOC via the beats agent. They said yesterday that the logs sent took up about 40% of all bandwidth resources.
Their question is: "It appeared that the auditd log was going crazy. When you guys create your images do you clean the old logs off the system before redeploying? If that is not the case it could be that when you guys redeploy it's gathering all of the audit logs on all of the systems. resulting in non-needed logs/duplicate logs."
## Background/context
Related issue:
- #40935
- #41791
## Technical notes
_Notes around work that is happening, if applicable (optional, please delete if unused)_
---
## Tasks
- [ ] Investigate the possibility that duplicate logs are being sent due to the way the images are built/deployed
- [ ] Implement a fix for the issue
## Acceptance Criteria
- [ ] Ensure that duplicate logs are not being sent to CSOC
- [ ] Confirm with Joe Niquette, CLS, or others as needed | infrastructure | investigate reports of duplicate logs being sent to csoc description joeniquette received a question from the cls folks around the current logging sent to csoc via the beats agent they said yesterday that the logs sent took up about of all bandwidth resources their question is it appeared that the auditd log was going crazy when you guys create your images do you clean the old logs off the system before redeploying if that is not the case it could be that when you guys redeploy it s gathering all of the audit logs on all of the systems resulting in non needed logs duplicate logs background context related issue technical notes notes around work that is happening if applicable optional please delete if unused tasks investigate the possibility that duplicate logs are being sent due to the way the images are built deployed implement a fix for the issue acceptance criteria ensure that duplicate logs are not being sent to csoc confirm with joe niquette cls or others as needed | 1 |
135,924 | 19,683,955,702 | IssuesEvent | 2022-01-11 19:47:12 | department-of-veterans-affairs/va.gov-team | https://api.github.com/repos/department-of-veterans-affairs/va.gov-team | closed | Follow up on IA Things | design vsa vsa-ebenefits POA-View POA-Search | ## Background
Need responses from a few different folks
## Considerations
## Tasks
- [x] Follow up with Mikki, set up a time to chat if possible
- [x] Follow up with Nathan Kroes, set up a time to chat if possible (e2e check in)
- [x] Follow up with Melissa Rebstock, set up a time to chat if possible (e2e check in)
## Acceptance Criteria
- [x] Start an email with Mikki, set up a time to chat if possible
- [ ] Start an email with Nathan Kroes, set up a time to chat if possible
- [x] Start an email with Melissa Rebstock, set up a time to chat if possible | 1.0 | Follow up on IA Things - ## Background
Need responses from a few different folks
## Considerations
## Tasks
- [x] Follow up with Mikki, set up a time to chat if possible
- [x] Follow up with Nathan Kroes, set up a time to chat if possible (e2e check in)
- [x] Follow up with Melissa Rebstock, set up a time to chat if possible (e2e check in)
## Acceptance Criteria
- [x] Start an email with Mikki, set up a time to chat if possible
- [ ] Start an email with Nathan Kroes, set up a time to chat if possible
- [x] Start an email with Melissa Rebstock, set up a time to chat if possible | non_infrastructure | follow up on ia things background need responses from a few different folks considerations tasks follow up with mikki set up a time to chat if possible follow up with nathan kroes set up a time to chat if possible check in follow up with melissa rebstock set up a time to chat if possible check in acceptance criteria start an email with mikki set up a time to chat if possible start an email with nathan kroes set up a time to chat if possible start an email with melissa rebstock set up a time to chat if possible | 0 |
19,025 | 13,186,540,567 | IssuesEvent | 2020-08-13 00:29:52 | icecube-trac/tix3 | https://api.github.com/repos/icecube-trac/tix3 | opened | it's not the 80's anymore. let's send unicode emails (Trac #1033) | Incomplete Migration Migrated from Trac enhancement infrastructure | <details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/ticket/1033">https://code.icecube.wisc.edu/ticket/1033</a>, reported by nega and owned by nega</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2015-08-14T21:18:08",
"description": "",
"reporter": "nega",
"cc": "",
"resolution": "fixed",
"_ts": "1439587088448040",
"component": "infrastructure",
"summary": "it's not the 80's anymore. let's send unicode emails",
"priority": "minor",
"keywords": "",
"time": "2015-06-25T20:53:45",
"milestone": "",
"owner": "nega",
"type": "enhancement"
}
```
</p>
</details>
| 1.0 | it's not the 80's anymore. let's send unicode emails (Trac #1033) - <details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/ticket/1033">https://code.icecube.wisc.edu/ticket/1033</a>, reported by nega and owned by nega</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2015-08-14T21:18:08",
"description": "",
"reporter": "nega",
"cc": "",
"resolution": "fixed",
"_ts": "1439587088448040",
"component": "infrastructure",
"summary": "it's not the 80's anymore. let's send unicode emails",
"priority": "minor",
"keywords": "",
"time": "2015-06-25T20:53:45",
"milestone": "",
"owner": "nega",
"type": "enhancement"
}
```
</p>
</details>
| infrastructure | it s not the s anymore let s send unicode emails trac migrated from json status closed changetime description reporter nega cc resolution fixed ts component infrastructure summary it s not the s anymore let s send unicode emails priority minor keywords time milestone owner nega type enhancement | 1 |
43,697 | 5,682,930,321 | IssuesEvent | 2017-04-13 11:09:54 | ludumdare/ludumdare | https://api.github.com/repos/ludumdare/ludumdare | closed | Nodes: Add support for $nodes | core design In Progress Mike | As an alternative to slugs, support using raw IDs in the path, prefixed by a character. The node must still correctly match the hierarchy though (parent must still be the parent node), but the initial lookup is done via the ID and not the slug.
The purpose of this is to allow games to be created without a name. If the slug matches the `$node`, then treat the game as being nameless. Then any URLs to either the slug or the ID will correctly resolve.
Users should be unable to set a slug equal to an `$node`. If `Name` is blank though, it's assumed the slug should be the `$node`. Node IDs will never change, so it should be fine to set the slug to its own node (an ID is always unique, and that's the restriction nodes have).
Valid non-alphanumeric non-escaped characters in URLs include:
```
$-_.+!*'(),
```
Source: https://perishablepress.com/stop-using-unsafe-characters-in-urls/
We use `-` in slugs, and `+` in API calls. `.` is used in domains, and `_` and `'` I guess I'm ignoring.
That mainly leaves `$`, `!`, `*` and `()`.
Actually brackets would be interesting. `https://ldjam.com/events/ludum-dare/37/(5224)/`. I should do some homework, see if it's truly well supported, as that's kind-of interesting. | 1.0 | Nodes: Add support for $nodes - As an alternative to slugs, support using raw IDs in the path, prefixed by a character. The node must still correctly match the hierarchy though (parent must still be the parent node), but the initial lookup is done via the ID and not the slug.
The purpose of this is to allow games to be created without a name. If the slug matches the `$node`, then treat the game as being nameless. Then any URLs to either the slug or the ID will correctly resolve.
Users should be unable to set a slug equal to an `$node`. If `Name` is blank though, it's assumed the slug should be the `$node`. Node IDs will never change, so it should be fine to set the slug to its own node (an ID is always unique, and that's the restriction nodes have).
Valid non-alphanumeric non-escaped characters in URLs include:
```
$-_.+!*'(),
```
Source: https://perishablepress.com/stop-using-unsafe-characters-in-urls/
We use `-` in slugs, and `+` in API calls. `.` is used in domains, and `_` and `'` I guess I'm ignoring.
That mainly leaves `$`, `!`, `*` and `()`.
Actually brackets would be interesting. `https://ldjam.com/events/ludum-dare/37/(5224)/`. I should do some homework, see if it's truly well supported, as that's kind-of interesting. | non_infrastructure | nodes add support for nodes as an alternative to slugs support using raw ids in the path prefixed by a character the node must still correctly match the hierarchy though parent must still be the parent node but the initial lookup is done via the id and not the slug the purpose of this is to allow games to be created without a name if the slug matches the node then treat the game as being nameless then any urls to either the slug or the id will correctly resolve users should be unable to set a slug equal to an node if name is blank though it s assumed the slug should be the node node ids will never change so it should be fine to set the slug to its own node an id is always unique and that s the restriction nodes have valid non alphanumeric non escaped characters in urls include source we use in slugs and in api calls is used in domains and and i guess i m ignoring that mainly leaves and actually brackets would be interesting i should do some homework see if it s truly well supported as that s kind of interesting | 0 |
24,505 | 12,306,637,876 | IssuesEvent | 2020-05-12 02:04:59 | Vector35/binaryninja-api | https://api.github.com/repos/Vector35/binaryninja-api | closed | windows performance issues | performance | Some binaries have huge analysis performance degradation only on Windows. It may be related to multi-threading/locking, but needs further investigation. | True | windows performance issues - Some binaries have huge analysis performance degradation only on Windows. It may be related to multi-threading/locking, but needs further investigation. | non_infrastructure | windows performance issues some binaries have huge analysis performance degradation only on windows it may be related to multi threading locking but needs further investigation | 0 |
17,166 | 12,239,525,962 | IssuesEvent | 2020-05-04 21:52:42 | dotnet/runtime | https://api.github.com/repos/dotnet/runtime | closed | 'build.cmd -subset clr -arch x86' fails | area-Infrastructure-coreclr untriaged | Currently, running `build.cmd -subset clr -arch 86` locally fails with the following:
```
D:\tagoo\Repos\runtime\.dotnet\sdk\5.0.100-preview.4.20202.8\Microsoft.Common.CurrentVersion.targets(4643,5): error MSB3030: Could not copy the file "D:\tagoo\Repos\runtime_base\artifacts\obj\coreclr\dotnet-pgo\x86\Debug\dotnet-pgo.exe" because it was not found. [D:\tagoo\Repos\runtime_base\src\coreclr\src\tools\dotnet-pgo\dotnet-pgo.csproj]
D:\tagoo\Repos\runtime\.dotnet\sdk\5.0.100-preview.4.20202.8\Microsoft.Common.CurrentVersion.targets(4643,5): error MSB3030: Could not copy the file "D:\tagoo\Repos\runtime_base\artifacts\obj\coreclr\R2RTest\x86\Debug\R2RTest.exe" because it was not found. [D:\tagoo\Repos\runtime_base\src\coreclr\src\tools\r2rtest\R2RTest.csproj]
D:\tagoo\Repos\runtime\.dotnet\sdk\5.0.100-preview.4.20202.8\Microsoft.Common.CurrentVersion.targets(4643,5): error MSB3030: Could not copy the file "D:\tagoo\Repos\runtime_base\artifacts\obj\coreclr\R2RDump\x86\Debug\R2RDump.exe" because it was not found. [D:\tagoo\Repos\runtime_base\src\coreclr\src\tools\r2rdump\R2RDump.csproj]
```
x64 does not have this problem. The projects are all building successfully but no `*.exe` is being created or placed next to the respective `*.dll` | 1.0 | 'build.cmd -subset clr -arch x86' fails - Currently, running `build.cmd -subset clr -arch 86` locally fails with the following:
```
D:\tagoo\Repos\runtime\.dotnet\sdk\5.0.100-preview.4.20202.8\Microsoft.Common.CurrentVersion.targets(4643,5): error MSB3030: Could not copy the file "D:\tagoo\Repos\runtime_base\artifacts\obj\coreclr\dotnet-pgo\x86\Debug\dotnet-pgo.exe" because it was not found. [D:\tagoo\Repos\runtime_base\src\coreclr\src\tools\dotnet-pgo\dotnet-pgo.csproj]
D:\tagoo\Repos\runtime\.dotnet\sdk\5.0.100-preview.4.20202.8\Microsoft.Common.CurrentVersion.targets(4643,5): error MSB3030: Could not copy the file "D:\tagoo\Repos\runtime_base\artifacts\obj\coreclr\R2RTest\x86\Debug\R2RTest.exe" because it was not found. [D:\tagoo\Repos\runtime_base\src\coreclr\src\tools\r2rtest\R2RTest.csproj]
D:\tagoo\Repos\runtime\.dotnet\sdk\5.0.100-preview.4.20202.8\Microsoft.Common.CurrentVersion.targets(4643,5): error MSB3030: Could not copy the file "D:\tagoo\Repos\runtime_base\artifacts\obj\coreclr\R2RDump\x86\Debug\R2RDump.exe" because it was not found. [D:\tagoo\Repos\runtime_base\src\coreclr\src\tools\r2rdump\R2RDump.csproj]
```
x64 does not have this problem. The projects are all building successfully but no `*.exe` is being created or placed next to the respective `*.dll` | infrastructure | build cmd subset clr arch fails currently running build cmd subset clr arch locally fails with the following d tagoo repos runtime dotnet sdk preview microsoft common currentversion targets error could not copy the file d tagoo repos runtime base artifacts obj coreclr dotnet pgo debug dotnet pgo exe because it was not found d tagoo repos runtime dotnet sdk preview microsoft common currentversion targets error could not copy the file d tagoo repos runtime base artifacts obj coreclr debug exe because it was not found d tagoo repos runtime dotnet sdk preview microsoft common currentversion targets error could not copy the file d tagoo repos runtime base artifacts obj coreclr debug exe because it was not found does not have this problem the projects are all building successfully but no exe is being created or placed next to the respective dll | 1 |
761,451 | 26,681,626,940 | IssuesEvent | 2023-01-26 18:10:47 | pytorch/pytorch | https://api.github.com/repos/pytorch/pytorch | closed | Nightly conda CUDA builds timeout since Sat Jan 21th 2023 | high priority releng triaged | Failing conda nightly :
https://hud.pytorch.org/hud/pytorch/pytorch/nightly
Here are the failures:
https://github.com/pytorch/pytorch/actions/runs/3984411372/jobs/6842256518
cc @ezyang @gchanan @zou3519 | 1.0 | Nightly conda CUDA builds timeout since Sat Jan 21th 2023 - Failing conda nightly :
https://hud.pytorch.org/hud/pytorch/pytorch/nightly
Here are the failures:
https://github.com/pytorch/pytorch/actions/runs/3984411372/jobs/6842256518
cc @ezyang @gchanan @zou3519 | non_infrastructure | nightly conda cuda builds timeout since sat jan failing conda nightly here are the failures cc ezyang gchanan | 0 |
6,760 | 6,587,033,147 | IssuesEvent | 2017-09-13 19:30:02 | dotnet/corefx | https://api.github.com/repos/dotnet/corefx | opened | System.Runtime.CompilerServices.Unsafe does not have Windows file metadata | area-Infrastructure | Due to the way we build ilproj files, System.Runtime.CompilerServices.Unsafe.dll does not have Windows file metadata.

We do have the equivalent managed attributes defined in IL: https://github.com/dotnet/corefx/blob/master/src/System.Runtime.CompilerServices.Unsafe/src/System.Runtime.CompilerServices.Unsafe.il#L12-L17.
Apparently, getting the Windows file metadata embedded can be accomplished using a .res file. We could easily pass that file into the parameters of ILAsm (/RESOURCE:<file>), assuming the option is supported everywhere -- including non-Windows platforms. I'm not sure there is an easy way to generate this resource file, though.
@eerhardt | 1.0 | System.Runtime.CompilerServices.Unsafe does not have Windows file metadata - Due to the way we build ilproj files, System.Runtime.CompilerServices.Unsafe.dll does not have Windows file metadata.

We do have the equivalent managed attributes defined in IL: https://github.com/dotnet/corefx/blob/master/src/System.Runtime.CompilerServices.Unsafe/src/System.Runtime.CompilerServices.Unsafe.il#L12-L17.
Apparently, getting the Windows file metadata embedded can be accomplished using a .res file. We could easily pass that file into the parameters of ILAsm (/RESOURCE:<file>), assuming the option is supported everywhere -- including non-Windows platforms. I'm not sure there is an easy way to generate this resource file, though.
@eerhardt | infrastructure | system runtime compilerservices unsafe does not have windows file metadata due to the way we build ilproj files system runtime compilerservices unsafe dll does not have windows file metadata we do have the equivalent managed attributes defined in il apparently getting the windows file metadata embedded can be accomplished using a res file we could easily pass that file into the parameters of ilasm resource assuming the option is supported everywhere including non windows platforms i m not sure there is an easy way to generate this resource file though eerhardt | 1 |
506,791 | 14,673,021,153 | IssuesEvent | 2020-12-30 12:04:32 | teamforus/forus | https://api.github.com/repos/teamforus/forus | closed | Show provider activity per fund (on the list of providers | Difficulty: Medium Priority: Should have | ## Main asssignee: @aghimpu
## Context/goal:
https://www.figma.com/file/Xo6zjqJtKYUqTQU57acxmS/Provider-activity?node-id=1%3A4266
Use the text information option (not the one with dots)
<img width="957" alt="Screenshot 2020-12-08 at 08 52 59" src="https://user-images.githubusercontent.com/33207036/101455407-d3d48380-3932-11eb-9be3-0e87edd9e907.png">
**Show activity based on:**
days / weeks / months / years.
**Example:**
- Today
- 1 day ago
- 5 days ago
- 1 week ago
- 2 weeks ago
- 1 month ago
- 2 months ago
- more than a year ago
| 1.0 | Show provider activity per fund (on the list of providers - ## Main asssignee: @aghimpu
## Context/goal:
https://www.figma.com/file/Xo6zjqJtKYUqTQU57acxmS/Provider-activity?node-id=1%3A4266
Use the text information option (not the one with dots)
<img width="957" alt="Screenshot 2020-12-08 at 08 52 59" src="https://user-images.githubusercontent.com/33207036/101455407-d3d48380-3932-11eb-9be3-0e87edd9e907.png">
**Show activity based on:**
days / weeks / months / years.
**Example:**
- Today
- 1 day ago
- 5 days ago
- 1 week ago
- 2 weeks ago
- 1 month ago
- 2 months ago
- more than a year ago
| non_infrastructure | show provider activity per fund on the list of providers main asssignee aghimpu context goal use the text information option not the one with dots img width alt screenshot at src show activity based on days weeks months years example today day ago days ago week ago weeks ago month ago months ago more than a year ago | 0 |
34,728 | 30,323,480,667 | IssuesEvent | 2023-07-10 21:14:19 | APSIMInitiative/ApsimX | https://api.github.com/repos/APSIMInitiative/ApsimX | closed | Hard to diff manager scripts in .apsimx files | newfeature interface/infrastructure | ### Describe the new feature
I often need to diff .apsimx files with a diff tool. This works well except that manager script 'code' are on one line like this:
```json
"$type": "Models.Manager, Models",
"Code": "using Models.Soils.Nutrients;\r\nusing APSIM.Shared.Utilities;\r\nusing Models.Surface;\r\nusing Models.Utilities;\r\nusing Models.Soils.Nutrients;\r\nusing Models.Soils;\r\n//using Models.PMF;\r\nusing Models.Core;\r\nusing System;\r\nusing Models.Interfaces;\r\n\r\nnamespace Models\r\n{\r\n [Serializable]\r\n public class Script : Model\r\n {\r\n [Link] private Clock Clock;\r\n //[Link] private Plant Wheat;\r\n [Link] private ISoilWater SoilWater;\r\n [Link] private Nutrient nutrient;\r\n [Link] private SurfaceOrganicMatter SOM;\r\n [Link] private Summary Summary;\r\n\r\n [Description(\"Date to reset on:\")]\r\n public string ResetDate {get;set;}\r\n\r\n [Description(\"Reset Water? (Yes or No)\")]\r\n public string ResetWater {get;set;}\r\n\r\n [Description(\"Reset Soil Nutrients ? (Yes or No)\")]\r\n public string ResetNutrients {get;set;}\r\n\r\n [Description(\"Reset Surface Organic Matter? (Yes or No)\")]\r\n public string ResetSOM {get;set;}\r\n\r\n [EventSubscribe(\"DoManagement\")]\r\n private void OnDoManagement(object sender, EventArgs e)\r\n {\r\n if (DateUtilities.WithinDates(ResetDate, Clock.Today, ResetDate))\r\n {\r\n if (ResetWater == \"Yes\")\r\n {\r\n Summary.WriteMessage(this, \"Reset Water\", MessageType.Diagnostic);\r\n SoilWater.Reset();\r\n }\r\n if (ResetNutrients == \"Yes\")\r\n {\r\n Summary.WriteMessage(this, \"Reset Nitrogen\", MessageType.Diagnostic);\r\n nutrient.Reset();\r\n }\r\n if (ResetSOM == \"Yes\")\r\n {\r\n Summary.WriteMessage(this, \"Reset Surface OM\", MessageType.Diagnostic);\r\n SOM.Reset();\r\n }\r\n }\r\n }\r\n }\r\n}\r\n",
"Parameters": [
{
"Key": "ResetDate",
"Value": "12-SEP"
}
],
"Name": "Reset on date",
"ResourceName": null,
"Children": [],
"Enabled": true,
"ReadOnly": false
}
```
Can we format the 'code' line so that each line of script is on a separate line in the .apsimx file? Diff tools will work a lot better. | 1.0 | Hard to diff manager scripts in .apsimx files - ### Describe the new feature
I often need to diff .apsimx files with a diff tool. This works well except that manager script 'code' are on one line like this:
```json
"$type": "Models.Manager, Models",
"Code": "using Models.Soils.Nutrients;\r\nusing APSIM.Shared.Utilities;\r\nusing Models.Surface;\r\nusing Models.Utilities;\r\nusing Models.Soils.Nutrients;\r\nusing Models.Soils;\r\n//using Models.PMF;\r\nusing Models.Core;\r\nusing System;\r\nusing Models.Interfaces;\r\n\r\nnamespace Models\r\n{\r\n [Serializable]\r\n public class Script : Model\r\n {\r\n [Link] private Clock Clock;\r\n //[Link] private Plant Wheat;\r\n [Link] private ISoilWater SoilWater;\r\n [Link] private Nutrient nutrient;\r\n [Link] private SurfaceOrganicMatter SOM;\r\n [Link] private Summary Summary;\r\n\r\n [Description(\"Date to reset on:\")]\r\n public string ResetDate {get;set;}\r\n\r\n [Description(\"Reset Water? (Yes or No)\")]\r\n public string ResetWater {get;set;}\r\n\r\n [Description(\"Reset Soil Nutrients ? (Yes or No)\")]\r\n public string ResetNutrients {get;set;}\r\n\r\n [Description(\"Reset Surface Organic Matter? (Yes or No)\")]\r\n public string ResetSOM {get;set;}\r\n\r\n [EventSubscribe(\"DoManagement\")]\r\n private void OnDoManagement(object sender, EventArgs e)\r\n {\r\n if (DateUtilities.WithinDates(ResetDate, Clock.Today, ResetDate))\r\n {\r\n if (ResetWater == \"Yes\")\r\n {\r\n Summary.WriteMessage(this, \"Reset Water\", MessageType.Diagnostic);\r\n SoilWater.Reset();\r\n }\r\n if (ResetNutrients == \"Yes\")\r\n {\r\n Summary.WriteMessage(this, \"Reset Nitrogen\", MessageType.Diagnostic);\r\n nutrient.Reset();\r\n }\r\n if (ResetSOM == \"Yes\")\r\n {\r\n Summary.WriteMessage(this, \"Reset Surface OM\", MessageType.Diagnostic);\r\n SOM.Reset();\r\n }\r\n }\r\n }\r\n }\r\n}\r\n",
"Parameters": [
{
"Key": "ResetDate",
"Value": "12-SEP"
}
],
"Name": "Reset on date",
"ResourceName": null,
"Children": [],
"Enabled": true,
"ReadOnly": false
}
```
Can we format the 'code' line so that each line of script is on a separate line in the .apsimx file? Diff tools will work a lot better. | infrastructure | hard to diff manager scripts in apsimx files describe the new feature i often need to diff apsimx files with a diff tool this works well except that manager script code are on one line like this json type models manager models code using models soils nutrients r nusing apsim shared utilities r nusing models surface r nusing models utilities r nusing models soils nutrients r nusing models soils r n using models pmf r nusing models core r nusing system r nusing models interfaces r n r nnamespace models r n r n r n public class script model r n r n private clock clock r n private plant wheat r n private isoilwater soilwater r n private nutrient nutrient r n private surfaceorganicmatter som r n private summary summary r n r n r n public string resetdate get set r n r n r n public string resetwater get set r n r n r n public string resetnutrients get set r n r n r n public string resetsom get set r n r n r n private void ondomanagement object sender eventargs e r n r n if dateutilities withindates resetdate clock today resetdate r n r n if resetwater yes r n r n summary writemessage this reset water messagetype diagnostic r n soilwater reset r n r n if resetnutrients yes r n r n summary writemessage this reset nitrogen messagetype diagnostic r n nutrient reset r n r n if resetsom yes r n r n summary writemessage this reset surface om messagetype diagnostic r n som reset r n r n r n r n r n r n parameters key resetdate value sep name reset on date resourcename null children enabled true readonly false can we format the code line so that each line of script is on a separate line in the apsimx file diff tools will work a lot better | 1 |
244,551 | 20,676,843,535 | IssuesEvent | 2022-03-10 10:05:42 | rancher/dashboard | https://api.github.com/repos/rancher/dashboard | closed | Create Namespace form in Cluster Explorer UI does not contain a Project by default | kind/bug area/namespace [zube]: To Test internal | Internal reference: SURE-2913
Reported in 2.5.7
Issue description:
The Project field within the Create Namespace form in the Cluster Explorer UI is blank by default, enabling an un-privileged user to easily create a Namespace outside of a Project which they are then unable to view
Business impact:
User can easily create a Namespace outside of a Project and is unable to view it afterwards
Repro steps:
Navigate to the Namespace view in the Cluster Explorer UI and click 'Create' (dashboard/c/<cluster_id>/explorer/namespace/create)
Specify a name for the namespace and click create
Actual behavior:
Project field is blank, and Namespace is created outside of any Project
Expected behavior:
The Project field is populated with a 'default' Project upon which the user has access or is a mandatory field. Whilst is would still be possible to create a Namespace outside of a Project via the Kubernetes API/kubectl, customer does not expect this behavior via the Rancher UI, which is Project aware. In Cluster Manager UI, 'Add Namespace' button is nested under a Project, and that Project is selected in the form by default. | 1.0 | Create Namespace form in Cluster Explorer UI does not contain a Project by default - Internal reference: SURE-2913
Reported in 2.5.7
Issue description:
The Project field within the Create Namespace form in the Cluster Explorer UI is blank by default, enabling an un-privileged user to easily create a Namespace outside of a Project which they are then unable to view
Business impact:
User can easily create a Namespace outside of a Project and is unable to view it afterwards
Repro steps:
Navigate to the Namespace view in the Cluster Explorer UI and click 'Create' (dashboard/c/<cluster_id>/explorer/namespace/create)
Specify a name for the namespace and click create
Actual behavior:
Project field is blank, and Namespace is created outside of any Project
Expected behavior:
The Project field is populated with a 'default' Project upon which the user has access or is a mandatory field. Whilst is would still be possible to create a Namespace outside of a Project via the Kubernetes API/kubectl, customer does not expect this behavior via the Rancher UI, which is Project aware. In Cluster Manager UI, 'Add Namespace' button is nested under a Project, and that Project is selected in the form by default. | non_infrastructure | create namespace form in cluster explorer ui does not contain a project by default internal reference sure reported in issue description the project field within the create namespace form in the cluster explorer ui is blank by default enabling an un privileged user to easily create a namespace outside of a project which they are then unable to view business impact user can easily create a namespace outside of a project and is unable to view it afterwards repro steps navigate to the namespace view in the cluster explorer ui and click create dashboard c explorer namespace create specify a name for the namespace and click create actual behavior project field is blank and namespace is created outside of any project expected behavior the project field is populated with a default project upon which the user has access or is a mandatory field whilst is would still be possible to create a namespace outside of a project via the kubernetes api kubectl customer does not expect this behavior via the rancher ui which is project aware in cluster manager ui add namespace button is nested under a project and that project is selected in the form by default | 0 |
25,772 | 19,142,739,300 | IssuesEvent | 2021-12-02 01:59:54 | deneb-viz/deneb | https://api.github.com/repos/deneb-viz/deneb | closed | Refactor and Unify the Create/Import Components Export Dataset Components | enhancement infrastructure housekeeping | The create/import dialog and screen need streamlining a little bit, as it would be ideal to re-use a lot of this for the process of re-mapping fields (or allocating new ones if added/removed accordingly). It's a bit too difficult to see where we can integrate this in the current state, so we ideally need to make this easier to hook into. | 1.0 | Refactor and Unify the Create/Import Components Export Dataset Components - The create/import dialog and screen need streamlining a little bit, as it would be ideal to re-use a lot of this for the process of re-mapping fields (or allocating new ones if added/removed accordingly). It's a bit too difficult to see where we can integrate this in the current state, so we ideally need to make this easier to hook into. | infrastructure | refactor and unify the create import components export dataset components the create import dialog and screen need streamlining a little bit as it would be ideal to re use a lot of this for the process of re mapping fields or allocating new ones if added removed accordingly it s a bit too difficult to see where we can integrate this in the current state so we ideally need to make this easier to hook into | 1 |
30,912 | 25,166,756,444 | IssuesEvent | 2022-11-10 21:37:58 | dotnet/aspnetcore | https://api.github.com/repos/dotnet/aspnetcore | closed | ASPNetCore v7.0.0 failing to build: Missing NuGet's | area-infrastructure | ### Is there an existing issue for this?
- [X] I have searched the existing issues
### Describe the bug
Attempting to build ASPNetCore from tags/v7.0.0 results in restore failures due to missing NuGet: `System.Threading.RateLimiting with version (>= 7.0.0)`
```
/home/azure/myagent/_work/7/s/aspnetcore/src/Middleware/ConcurrencyLimiter/perf/Microbenchmarks/Microsoft.AspNetCore.ConcurrencyLimiter.Microbenchmarks.csproj : error NU1102: Unable to find package System.Threading.RateLimiting with version (>= 7.0.0) [/home/azure/myagent/_work/7/s/aspnetcore/.dotnet/sdk/7.0.100-rtm.22478.12/NuGet.targets]
/home/azure/myagent/_work/7/s/aspnetcore/src/Middleware/ConcurrencyLimiter/perf/Microbenchmarks/Microsoft.AspNetCore.ConcurrencyLimiter.Microbenchmarks.csproj : error NU1102: - Found 1069 version(s) in dotnet7 [ Nearest version: 7.0.0-rtm.22511.4 ] [/home/azure/myagent/_work/7/s/aspnetcore/.dotnet/sdk/7.0.100-rtm.22478.12/NuGet.targets]
/home/azure/myagent/_work/7/s/aspnetcore/src/Middleware/ConcurrencyLimiter/perf/Microbenchmarks/Microsoft.AspNetCore.ConcurrencyLimiter.Microbenchmarks.csproj : error NU1102: - Found 35 version(s) in dotnet6-transport [ Nearest version: 0.1.0-alpha.22110.1 ] [/home/azure/myagent/_work/7/s/aspnetcore/.dotnet/sdk/7.0.100-rtm.22478.12/NuGet.targets]
/home/azure/myagent/_work/7/s/aspnetcore/src/Middleware/ConcurrencyLimiter/perf/Microbenchmarks/Microsoft.AspNetCore.ConcurrencyLimiter.Microbenchmarks.csproj : error NU1102: - Found 1 version(s) in dotnet7-transport [ Nearest version: 7.0.0-rc.1.22426.10 ] [/home/azure/myagent/_work/7/s/aspnetcore/.dotnet/sdk/7.0.100-rtm.22478.12/NuGet.targets]
```
### Expected Behavior
Build completes
### Steps To Reproduce
from pipelines:
```
git init "/home/azure/myagent/_work/7/s/aspnetcore"
Initialized empty Git repository in /home/azure/myagent/_work/7/s/aspnetcore/.git/
git remote add origin https://github.com/dotnet/aspnetcore
git config gc.auto 0
git config --get-all http.https://github.com/dotnet/aspnetcore.extraheader
git config --get-all http.extraheader
git config --get-regexp .*extraheader
git config --get-all http.proxy
git config http.version HTTP/1.1
git -c http.extraheader="AUTHORIZATION: basic ***" fetch --force --tags --prune --prune-tags --progress --no-recurse-submodules origin --depth=1
git checkout --progress --force 1f76c0ce943d25257f512e4afb3a79fa5a3ba7c0
aspnetcore/eng/build.sh -c Release -ci -pack /p:CrossgenOutput=false /p:OfficialBuildId=$OFFICIALBUILDID
```
### Exceptions (if any)
_No response_
### .NET Version
_No response_
### Anything else?
_No response_ | 1.0 | ASPNetCore v7.0.0 failing to build: Missing NuGet's - ### Is there an existing issue for this?
- [X] I have searched the existing issues
### Describe the bug
Attempting to build ASPNetCore from tags/v7.0.0 results in restore failures due to missing NuGet: `System.Threading.RateLimiting with version (>= 7.0.0)`
```
/home/azure/myagent/_work/7/s/aspnetcore/src/Middleware/ConcurrencyLimiter/perf/Microbenchmarks/Microsoft.AspNetCore.ConcurrencyLimiter.Microbenchmarks.csproj : error NU1102: Unable to find package System.Threading.RateLimiting with version (>= 7.0.0) [/home/azure/myagent/_work/7/s/aspnetcore/.dotnet/sdk/7.0.100-rtm.22478.12/NuGet.targets]
/home/azure/myagent/_work/7/s/aspnetcore/src/Middleware/ConcurrencyLimiter/perf/Microbenchmarks/Microsoft.AspNetCore.ConcurrencyLimiter.Microbenchmarks.csproj : error NU1102: - Found 1069 version(s) in dotnet7 [ Nearest version: 7.0.0-rtm.22511.4 ] [/home/azure/myagent/_work/7/s/aspnetcore/.dotnet/sdk/7.0.100-rtm.22478.12/NuGet.targets]
/home/azure/myagent/_work/7/s/aspnetcore/src/Middleware/ConcurrencyLimiter/perf/Microbenchmarks/Microsoft.AspNetCore.ConcurrencyLimiter.Microbenchmarks.csproj : error NU1102: - Found 35 version(s) in dotnet6-transport [ Nearest version: 0.1.0-alpha.22110.1 ] [/home/azure/myagent/_work/7/s/aspnetcore/.dotnet/sdk/7.0.100-rtm.22478.12/NuGet.targets]
/home/azure/myagent/_work/7/s/aspnetcore/src/Middleware/ConcurrencyLimiter/perf/Microbenchmarks/Microsoft.AspNetCore.ConcurrencyLimiter.Microbenchmarks.csproj : error NU1102: - Found 1 version(s) in dotnet7-transport [ Nearest version: 7.0.0-rc.1.22426.10 ] [/home/azure/myagent/_work/7/s/aspnetcore/.dotnet/sdk/7.0.100-rtm.22478.12/NuGet.targets]
```
### Expected Behavior
Build completes
### Steps To Reproduce
from pipelines:
```
git init "/home/azure/myagent/_work/7/s/aspnetcore"
Initialized empty Git repository in /home/azure/myagent/_work/7/s/aspnetcore/.git/
git remote add origin https://github.com/dotnet/aspnetcore
git config gc.auto 0
git config --get-all http.https://github.com/dotnet/aspnetcore.extraheader
git config --get-all http.extraheader
git config --get-regexp .*extraheader
git config --get-all http.proxy
git config http.version HTTP/1.1
git -c http.extraheader="AUTHORIZATION: basic ***" fetch --force --tags --prune --prune-tags --progress --no-recurse-submodules origin --depth=1
git checkout --progress --force 1f76c0ce943d25257f512e4afb3a79fa5a3ba7c0
aspnetcore/eng/build.sh -c Release -ci -pack /p:CrossgenOutput=false /p:OfficialBuildId=$OFFICIALBUILDID
```
### Exceptions (if any)
_No response_
### .NET Version
_No response_
### Anything else?
_No response_ | infrastructure | aspnetcore failing to build missing nuget s is there an existing issue for this i have searched the existing issues describe the bug attempting to build aspnetcore from tags results in restore failures due to missing nuget system threading ratelimiting with version home azure myagent work s aspnetcore src middleware concurrencylimiter perf microbenchmarks microsoft aspnetcore concurrencylimiter microbenchmarks csproj error unable to find package system threading ratelimiting with version home azure myagent work s aspnetcore src middleware concurrencylimiter perf microbenchmarks microsoft aspnetcore concurrencylimiter microbenchmarks csproj error found version s in home azure myagent work s aspnetcore src middleware concurrencylimiter perf microbenchmarks microsoft aspnetcore concurrencylimiter microbenchmarks csproj error found version s in transport home azure myagent work s aspnetcore src middleware concurrencylimiter perf microbenchmarks microsoft aspnetcore concurrencylimiter microbenchmarks csproj error found version s in transport expected behavior build completes steps to reproduce from pipelines git init home azure myagent work s aspnetcore initialized empty git repository in home azure myagent work s aspnetcore git git remote add origin git config gc auto git config get all http git config get all http extraheader git config get regexp extraheader git config get all http proxy git config http version http git c http extraheader authorization basic fetch force tags prune prune tags progress no recurse submodules origin depth git checkout progress force aspnetcore eng build sh c release ci pack p crossgenoutput false p officialbuildid officialbuildid exceptions if any no response net version no response anything else no response | 1 |
677,245 | 23,156,193,241 | IssuesEvent | 2022-07-29 13:14:57 | cds-snc/notification-planning | https://api.github.com/repos/cds-snc/notification-planning | closed | Upgrade to Flask / Werkzeug 2.0 | High Priority | Haute prioritรฉ Security | Sรฉcuritรฉ Support | ### Task Description
This is a major upgrade for our core Python servers that affect our web services. This is a tech debt we are carrying for a few months as every time we do a dependency bump, it upgrades automatically to version 2 but we need to properly migrate these. These library version 1 also is a security risk at the moment so that would be killing 2 birds with one stone.
### Task Outcome
The upgrade to werkzeug and flask to version 2.0 is done, we eliminated our security risk and technical debt.
### Acceptance Criteria
- [x] Upgrade werkzeug and flask to version 2.0.
- [x] Perform required code migration for werkzeug and flask, as these major version entail major changes in the application.
### QA
- [x] Mob test the Notify application within the group, for the UI and API components. Cover as much its functionality as possible to make sure there are no noticeable differences between the before and after states.
### Additional Notes
| 1.0 | Upgrade to Flask / Werkzeug 2.0 - ### Task Description
This is a major upgrade for our core Python servers that affect our web services. This is a tech debt we are carrying for a few months as every time we do a dependency bump, it upgrades automatically to version 2 but we need to properly migrate these. These library version 1 also is a security risk at the moment so that would be killing 2 birds with one stone.
### Task Outcome
The upgrade to werkzeug and flask to version 2.0 is done, we eliminated our security risk and technical debt.
### Acceptance Criteria
- [x] Upgrade werkzeug and flask to version 2.0.
- [x] Perform required code migration for werkzeug and flask, as these major version entail major changes in the application.
### QA
- [x] Mob test the Notify application within the group, for the UI and API components. Cover as much its functionality as possible to make sure there are no noticeable differences between the before and after states.
### Additional Notes
| non_infrastructure | upgrade to flask werkzeug task description this is a major upgrade for our core python servers that affect our web services this is a tech debt we are carrying for a few months as every time we do a dependency bump it upgrades automatically to version but we need to properly migrate these these library version also is a security risk at the moment so that would be killing birds with one stone task outcome the upgrade to werkzeug and flask to version is done we eliminated our security risk and technical debt acceptance criteria upgrade werkzeug and flask to version perform required code migration for werkzeug and flask as these major version entail major changes in the application qa mob test the notify application within the group for the ui and api components cover as much its functionality as possible to make sure there are no noticeable differences between the before and after states additional notes | 0 |
24,416 | 17,226,553,650 | IssuesEvent | 2021-07-20 03:07:08 | pixiebrix/pixiebrix-extension | https://api.github.com/repos/pixiebrix/pixiebrix-extension | opened | Prevent WebExtension APIs from being used in files imported by the app | infrastructure | Since some files in this repo are imported by the app, we need to make sure they donโt use APIs that are not available there, to avoid https://github.com/pixiebrix/pixiebrix-app/pull/257#pullrequestreview-710020936
- [ ] https://github.com/pixiebrix/pixiebrix-extension/issues/669
- [ ] add 2 lint rules in this shared folder that forbids the use of the chrome global and the import of the webextension polyfill | 1.0 | Prevent WebExtension APIs from being used in files imported by the app - Since some files in this repo are imported by the app, we need to make sure they donโt use APIs that are not available there, to avoid https://github.com/pixiebrix/pixiebrix-app/pull/257#pullrequestreview-710020936
- [ ] https://github.com/pixiebrix/pixiebrix-extension/issues/669
- [ ] add 2 lint rules in this shared folder that forbids the use of the chrome global and the import of the webextension polyfill | infrastructure | prevent webextension apis from being used in files imported by the app since some files in this repo are imported by the app we need to make sure they donโt use apis that are not available there to avoid add lint rules in this shared folder that forbids the use of the chrome global and the import of the webextension polyfill | 1 |
9,437 | 7,966,833,587 | IssuesEvent | 2018-07-15 05:23:30 | royalarjun001/SchoolApp.API | https://api.github.com/repos/royalarjun001/SchoolApp.API | closed | Create and Update Infrastructure for Employee, Personal and Contact details | Infrastructure | ### To Do
- [x] Split **Employee table** into 3 tables
- Employee Details should remain in **Employee** table.
- Employee Details
- UserId
- EmpCode
- JoiningDate
- DepartmentId
- DesignationId
- Qualification
- Experience
- Personal Details should move to the **Personal** table.
- Personal Details
- UserId
- FirstName
- MiddleName
- LastName
- DateOfBirth
- Gender
- Contact Details should move to the **Contact** table.
- Contact Details
- UserId
- PresentAddress
- PermanentAddress
- CityId
- Pin
- CountryId
- StateId
- Phone
- Photo
- [x] Update **spuEmployeeManagement** stored procedure.
- [x] Create new stored procedure for Personal Details operations.
- [x] Create new stored procedure for Contact Details operations.
- [x] Remove old **spInsertUser** stored procedure.
- [x] Replace use of **spInsertUser** with **spuUserManagement** in schoolApp UserRepository class.
- [x] Create hook and insert userId to Employee, Personal and Contact tables from **spuUserManagement** when new user is added or removed.
| Issue Number |
| ------------ |
| [92](https://github.com/royalarjun001/schoolUI/issues/92) | | 1.0 | Create and Update Infrastructure for Employee, Personal and Contact details - ### To Do
- [x] Split **Employee table** into 3 tables
- Employee Details should remain in **Employee** table.
- Employee Details
- UserId
- EmpCode
- JoiningDate
- DepartmentId
- DesignationId
- Qualification
- Experience
- Personal Details should move to the **Personal** table.
- Personal Details
- UserId
- FirstName
- MiddleName
- LastName
- DateOfBirth
- Gender
- Contact Details should move to the **Contact** table.
- Contact Details
- UserId
- PresentAddress
- PermanentAddress
- CityId
- Pin
- CountryId
- StateId
- Phone
- Photo
- [x] Update **spuEmployeeManagement** stored procedure.
- [x] Create new stored procedure for Personal Details operations.
- [x] Create new stored procedure for Contact Details operations.
- [x] Remove old **spInsertUser** stored procedure.
- [x] Replace use of **spInsertUser** with **spuUserManagement** in schoolApp UserRepository class.
- [x] Create hook and insert userId to Employee, Personal and Contact tables from **spuUserManagement** when new user is added or removed.
| Issue Number |
| ------------ |
| [92](https://github.com/royalarjun001/schoolUI/issues/92) | | infrastructure | create and update infrastructure for employee personal and contact details to do split employee table into tables employee details should remain in employee table employee details userid empcode joiningdate departmentid designationid qualification experience personal details should move to the personal table personal details userid firstname middlename lastname dateofbirth gender contact details should move to the contact table contact details userid presentaddress permanentaddress cityid pin countryid stateid phone photo update spuemployeemanagement stored procedure create new stored procedure for personal details operations create new stored procedure for contact details operations remove old spinsertuser stored procedure replace use of spinsertuser with spuusermanagement in schoolapp userrepository class create hook and insert userid to employee personal and contact tables from spuusermanagement when new user is added or removed issue number | 1 |
32,668 | 26,883,047,526 | IssuesEvent | 2023-02-05 21:29:07 | ForNeVeR/xaml-math | https://api.github.com/repos/ForNeVeR/xaml-math | closed | Review .NET version support | kind:infrastructure | Last year, official support for.NET Framework 4.5.2 finally ended. Same for .NET Core 3.1.
We should review the currently supported .NET versions and leave only the ones that are still supported (4.6.2 is the oldest supported Framework version at the current moment, and .NET 6 is the oldest supported version of the modern runtime).
We could try migrating to .NET Standard instead of .NET Framework, but I'm not sure it's possible to target WPF projects to .NET Standard. | 1.0 | Review .NET version support - Last year, official support for.NET Framework 4.5.2 finally ended. Same for .NET Core 3.1.
We should review the currently supported .NET versions and leave only the ones that are still supported (4.6.2 is the oldest supported Framework version at the current moment, and .NET 6 is the oldest supported version of the modern runtime).
We could try migrating to .NET Standard instead of .NET Framework, but I'm not sure it's possible to target WPF projects to .NET Standard. | infrastructure | review net version support last year official support for net framework finally ended same for net core we should review the currently supported net versions and leave only the ones that are still supported is the oldest supported framework version at the current moment and net is the oldest supported version of the modern runtime we could try migrating to net standard instead of net framework but i m not sure it s possible to target wpf projects to net standard | 1 |
73,753 | 24,784,908,701 | IssuesEvent | 2022-10-24 08:59:42 | zed-industries/feedback | https://api.github.com/repos/zed-industries/feedback | opened | Search highlighting on text persists, even after typing in characters that don't match | defect editor | ### Check for existing issues
- [X] Completed
### Describe the bug / provide steps to reproduce it
In the screenshot below, we have the word "dogs". Typing in "d", "do", "dog", should all cause the associated text to highlight. But I feel that once I input another letter that isn't part of the word, that the nightlight should disappear.
### Expected behavior
I think the text should stop being highlighted as
### Environment
Zed 0.61.0 โ /Applications/Zed.app
macOS 12.6
architecture x86_64
### If applicable, add mockups / screenshots to help explain present your vision of the feature

### If applicable, attach your `~/Library/Logs/Zed/Zed.log` file to this issue
_No response_ | 1.0 | Search highlighting on text persists, even after typing in characters that don't match - ### Check for existing issues
- [X] Completed
### Describe the bug / provide steps to reproduce it
In the screenshot below, we have the word "dogs". Typing in "d", "do", "dog", should all cause the associated text to highlight. But I feel that once I input another letter that isn't part of the word, that the nightlight should disappear.
### Expected behavior
I think the text should stop being highlighted as
### Environment
Zed 0.61.0 โ /Applications/Zed.app
macOS 12.6
architecture x86_64
### If applicable, add mockups / screenshots to help explain present your vision of the feature

### If applicable, attach your `~/Library/Logs/Zed/Zed.log` file to this issue
_No response_ | non_infrastructure | search highlighting on text persists even after typing in characters that don t match check for existing issues completed describe the bug provide steps to reproduce it in the screenshot below we have the word dogs typing in d do dog should all cause the associated text to highlight but i feel that once i input another letter that isn t part of the word that the nightlight should disappear expected behavior i think the text should stop being highlighted as environment zed โ applications zed app macos architecture if applicable add mockups screenshots to help explain present your vision of the feature if applicable attach your library logs zed zed log file to this issue no response | 0 |
65,371 | 8,805,663,646 | IssuesEvent | 2018-12-26 21:12:04 | edgi-govdata-archiving/overview | https://api.github.com/repos/edgi-govdata-archiving/overview | closed | Confirm documentation tools for code | coordination documentation stale | We currently are relying on Markdown and GitHub for most of our documentation
(see:
- [overview](https://github.com/edgi-govdata-archiving/overview)
- [datarefuge/workflow/](https://github.com/datarefuge/workflow/) (tho these are then generated into static html)
- [web-monitoring](https://github.com/edgi-govdata-archiving/web-monitoring))
As our code gets more mature, being able to comment inline and generate docs from that appears valuable.
See recent Slack chats:
> I read up on mkdocs a bit, and it looks like they don't support API documentation and don't plan to (according to a GH issue where somewhere asked my question).
> How do we feel about mkdocs for pure prose documentation like the workflow docs and sphinx for the code documentation?
> It would be better to choose one system for obvious reasons, but Markdown is _so_ much more accessible than sphinx that I think it might make sense to use each in its place.
and:
> re. writing in Markdown and choosing generator later, I was reading this post the other day when I was trying to do something simple in the mkdocs site and failing:
> http://ericholscher.com/blog/2016/mar/15/dont-use-markdown-for-technical-docs/
> (tl;dr: he thinks using MD leads to lock-in) | 1.0 | Confirm documentation tools for code - We currently are relying on Markdown and GitHub for most of our documentation
(see:
- [overview](https://github.com/edgi-govdata-archiving/overview)
- [datarefuge/workflow/](https://github.com/datarefuge/workflow/) (tho these are then generated into static html)
- [web-monitoring](https://github.com/edgi-govdata-archiving/web-monitoring))
As our code gets more mature, being able to comment inline and generate docs from that appears valuable.
See recent Slack chats:
> I read up on mkdocs a bit, and it looks like they don't support API documentation and don't plan to (according to a GH issue where somewhere asked my question).
> How do we feel about mkdocs for pure prose documentation like the workflow docs and sphinx for the code documentation?
> It would be better to choose one system for obvious reasons, but Markdown is _so_ much more accessible than sphinx that I think it might make sense to use each in its place.
and:
> re. writing in Markdown and choosing generator later, I was reading this post the other day when I was trying to do something simple in the mkdocs site and failing:
> http://ericholscher.com/blog/2016/mar/15/dont-use-markdown-for-technical-docs/
> (tl;dr: he thinks using MD leads to lock-in) | non_infrastructure | confirm documentation tools for code we currently are relying on markdown and github for most of our documentation see tho these are then generated into static html as our code gets more mature being able to comment inline and generate docs from that appears valuable see recent slack chats i read up on mkdocs a bit and it looks like they don t support api documentation and don t plan to according to a gh issue where somewhere asked my question how do we feel about mkdocs for pure prose documentation like the workflow docs and sphinx for the code documentation it would be better to choose one system for obvious reasons but markdown is so much more accessible than sphinx that i think it might make sense to use each in its place and re writing in markdown and choosing generator later i was reading this post the other day when i was trying to do something simple in the mkdocs site and failing tl dr he thinks using md leads to lock in | 0 |
25,651 | 18,949,322,718 | IssuesEvent | 2021-11-18 13:41:52 | dotnet/runtime | https://api.github.com/repos/dotnet/runtime | closed | [mono] Create separate yml that can trigger full test runs on demand | area-Infrastructure-mono | Since a large share of the mono configurations are now running only smoke tests on each PR, we need to have a way to manually trigger running all tests. A copy of runtime.yml that can only be manually triggered is probably the easiest option, but I'm sure there are others.
An engineer should be able to trigger a full test run via `/azp run <yet-to-be-named.yml>` | 1.0 | [mono] Create separate yml that can trigger full test runs on demand - Since a large share of the mono configurations are now running only smoke tests on each PR, we need to have a way to manually trigger running all tests. A copy of runtime.yml that can only be manually triggered is probably the easiest option, but I'm sure there are others.
An engineer should be able to trigger a full test run via `/azp run <yet-to-be-named.yml>` | infrastructure | create separate yml that can trigger full test runs on demand since a large share of the mono configurations are now running only smoke tests on each pr we need to have a way to manually trigger running all tests a copy of runtime yml that can only be manually triggered is probably the easiest option but i m sure there are others an engineer should be able to trigger a full test run via azp run | 1 |
15,003 | 18,718,962,794 | IssuesEvent | 2021-11-03 09:33:55 | opensafely-core/job-server | https://api.github.com/repos/opensafely-core/job-server | closed | Allow staff users to set a status on application forms | application-process | As an admin user, I want to set form submissions to various "states" in the admin interface, so that I can easily see what part of the process submitted forms are in.
## Status
- Approved fully
- Approved subject to
- Rejected
- Completed
- Ongoing
## To do
- [ ] Admin can set a submission to a single state
- [ ] Admin can add a comment on the current state | 1.0 | Allow staff users to set a status on application forms - As an admin user, I want to set form submissions to various "states" in the admin interface, so that I can easily see what part of the process submitted forms are in.
## Status
- Approved fully
- Approved subject to
- Rejected
- Completed
- Ongoing
## To do
- [ ] Admin can set a submission to a single state
- [ ] Admin can add a comment on the current state | non_infrastructure | allow staff users to set a status on application forms as an admin user i want to set form submissions to various states in the admin interface so that i can easily see what part of the process submitted forms are in status approved fully approved subject to rejected completed ongoing to do admin can set a submission to a single state admin can add a comment on the current state | 0 |
228,294 | 25,175,996,478 | IssuesEvent | 2022-11-11 09:18:59 | humhub/humhub | https://api.github.com/repos/humhub/humhub | closed | Insecure cookie setting: missing Secure flag. | Topic:Security | <!--
Thank you for reporting a possible bug in HumHub.
Please fill in as much of the template below as you can.
-->
### What steps will reproduce the problem?
Run a pentest against community.humhub.com or other Humhub instance
### What is the expected result?
Cookies have the secure flag set
### What do you get instead?
A cookie has an insecure flag set.
### Additional info
Full pentest report is available here: https://community.humhub.com/file/file/download?guid=655c1e62-f718-404a-8148-34517a465027&hash_sha1=84bd903a
Cookie Name | URL | Evidence
-- | -- | --
_csrf | https://community.humhub.com/ | Set-Cookie:_csrf=b06891fe2488f55f63aba1dad7a7d7b5c91ec481a01dfa6c9b93439fdc5a386fa%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22CZz_dZNZXqE8r5AnyLzIKRxNHZDqFsjb%22%3B%7D; path=/; HttpOnly; SameSite=Lax
<!--EndFragment-->
</body>
</html>
| Q | A
| ---------------- | ---
| HumHub version | same as community.humhub.com
| PHP version | same as community.humhub.com
| Operating system | same as community.humhub.com
> Note: Also provide the full error stacks from `Administration --> Information --> Logging` and errors from your browser console if possible.
> Note: Please use the [community](https://community.humhub.com) site for any questions on customizing HumHub. | True | Insecure cookie setting: missing Secure flag. - <!--
Thank you for reporting a possible bug in HumHub.
Please fill in as much of the template below as you can.
-->
### What steps will reproduce the problem?
Run a pentest against community.humhub.com or other Humhub instance
### What is the expected result?
Cookies have the secure flag set
### What do you get instead?
A cookie has an insecure flag set.
### Additional info
Full pentest report is available here: https://community.humhub.com/file/file/download?guid=655c1e62-f718-404a-8148-34517a465027&hash_sha1=84bd903a
Cookie Name | URL | Evidence
-- | -- | --
_csrf | https://community.humhub.com/ | Set-Cookie:_csrf=b06891fe2488f55f63aba1dad7a7d7b5c91ec481a01dfa6c9b93439fdc5a386fa%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22CZz_dZNZXqE8r5AnyLzIKRxNHZDqFsjb%22%3B%7D; path=/; HttpOnly; SameSite=Lax
<!--EndFragment-->
</body>
</html>
| Q | A
| ---------------- | ---
| HumHub version | same as community.humhub.com
| PHP version | same as community.humhub.com
| Operating system | same as community.humhub.com
> Note: Also provide the full error stacks from `Administration --> Information --> Logging` and errors from your browser console if possible.
> Note: Please use the [community](https://community.humhub.com) site for any questions on customizing HumHub. | non_infrastructure | insecure cookie setting missing secure flag thank you for reporting a possible bug in humhub please fill in as much of the template below as you can what steps will reproduce the problem run a pentest against community humhub com or other humhub instance what is the expected result cookies have the secure flag set what do you get instead a cookie has an insecure flag set additional info full pentest report is available here cookie name url evidence csrf set cookie csrf csrf path httponly samesite lax q a humhub version same as community humhub com php version same as community humhub com operating system same as community humhub com note also provide the full error stacks from administration information logging and errors from your browser console if possible note please use the site for any questions on customizing humhub | 0 |
23,475 | 16,240,499,682 | IssuesEvent | 2021-05-07 08:57:24 | RasaHQ/rasa | https://api.github.com/repos/RasaHQ/rasa | closed | Enforce type annotations in the CI | area:rasa-oss :ferris_wheel: area:rasa-oss/infrastructure :bullettrain_front: type:maintenance :wrench: | Type annotations on method definitions are part of our code conventions.
We are seeing lots of PR review comments suggesting adding type annotations.
We should add it to the CI so it is automated.
This will reduce PR review burden, and help maintain our code quality.
Thoughts:
- Could be done either using `mypy` or `pylint`
- Should only be run on code diffs so we can incorporate it incrementally. | 1.0 | Enforce type annotations in the CI - Type annotations on method definitions are part of our code conventions.
We are seeing lots of PR review comments suggesting adding type annotations.
We should add it to the CI so it is automated.
This will reduce PR review burden, and help maintain our code quality.
Thoughts:
- Could be done either using `mypy` or `pylint`
- Should only be run on code diffs so we can incorporate it incrementally. | infrastructure | enforce type annotations in the ci type annotations on method definitions are part of our code conventions we are seeing lots of pr review comments suggesting adding type annotations we should add it to the ci so it is automated this will reduce pr review burden and help maintain our code quality thoughts could be done either using mypy or pylint should only be run on code diffs so we can incorporate it incrementally | 1 |
32,399 | 7,531,108,374 | IssuesEvent | 2018-04-15 00:44:04 | dahall/TaskScheduler | https://api.github.com/repos/dahall/TaskScheduler | closed | why scheduled task do not run when time is reached | codeplex-disc | using (TaskService ts = new TaskService())
{
// Create a new task definition and assign properties
TaskDefinition td = ts.NewTask();
td.RegistrationInfo.Description = "Does something";
td.Principal.LogonType = TaskLogonType.InteractiveToken;
TimeTrigger tTrigger = new TimeTrigger();
tTrigger.StartBoundary = new DateTime(DateTime.Today.Year, 8, 15, 10, 42, 0);
// Add a trigger that will fire every week on Friday
td.Triggers.Add(tTrigger);
// Add an action that will launch Notepad whenever the trigger fires
td.Actions.Add(new ExecAction("notepad.exe", "c:\\test.log", null));
// Register the task in the root folder
const string taskName = "Test";
ts.RootFolder.RegisterTaskDefinition(taskName, td);
}
Originally posted: 2016-08-14T20:46:56 | 1.0 | why scheduled task do not run when time is reached - using (TaskService ts = new TaskService())
{
// Create a new task definition and assign properties
TaskDefinition td = ts.NewTask();
td.RegistrationInfo.Description = "Does something";
td.Principal.LogonType = TaskLogonType.InteractiveToken;
TimeTrigger tTrigger = new TimeTrigger();
tTrigger.StartBoundary = new DateTime(DateTime.Today.Year, 8, 15, 10, 42, 0);
// Add a trigger that will fire every week on Friday
td.Triggers.Add(tTrigger);
// Add an action that will launch Notepad whenever the trigger fires
td.Actions.Add(new ExecAction("notepad.exe", "c:\\test.log", null));
// Register the task in the root folder
const string taskName = "Test";
ts.RootFolder.RegisterTaskDefinition(taskName, td);
}
Originally posted: 2016-08-14T20:46:56 | non_infrastructure | why scheduled task do not run when time is reached using taskservice ts new taskservice create a new task definition and assign properties taskdefinition td ts newtask td registrationinfo description quot does something quot td principal logontype tasklogontype interactivetoken timetrigger ttrigger new timetrigger ttrigger startboundary new datetime datetime today year add a trigger that will fire every week on friday td triggers add ttrigger add an action that will launch notepad whenever the trigger fires td actions add new execaction quot notepad exe quot quot c test log quot null register the task in the root folder const string taskname quot test quot ts rootfolder registertaskdefinition taskname td originally posted | 0 |
99 | 2,523,217,954 | IssuesEvent | 2015-01-20 08:29:32 | Geoportail-Luxembourg/geoportailv3 | https://api.github.com/repos/Geoportail-Luxembourg/geoportailv3 | reopened | Infrastructure projet | in progress Infrastructure | * [x] Projet GitHub
* [x] Structure de projet
* [x] Intรฉgration des librairies externes
* [x] Outils de dรฉveloppement
* [x] Outils de test
* [x] HuBoard
* [x] Serveurs de dรฉveloppement | 1.0 | Infrastructure projet - * [x] Projet GitHub
* [x] Structure de projet
* [x] Intรฉgration des librairies externes
* [x] Outils de dรฉveloppement
* [x] Outils de test
* [x] HuBoard
* [x] Serveurs de dรฉveloppement | infrastructure | infrastructure projet projet github structure de projet intรฉgration des librairies externes outils de dรฉveloppement outils de test huboard serveurs de dรฉveloppement | 1 |
4,319 | 4,973,896,412 | IssuesEvent | 2016-12-06 03:18:23 | dotnet/corefx | https://api.github.com/repos/dotnet/corefx | closed | rhel rid should not include a minor. rhel-7.2-x64 should be rhel-7-x64 | area-Infrastructure bug os-linux | Just like Debian (https://github.com/dotnet/corefx/issues/6170), minor releases are point releases. The minor should not be part of the rid. | 1.0 | rhel rid should not include a minor. rhel-7.2-x64 should be rhel-7-x64 - Just like Debian (https://github.com/dotnet/corefx/issues/6170), minor releases are point releases. The minor should not be part of the rid. | infrastructure | rhel rid should not include a minor rhel should be rhel just like debian minor releases are point releases the minor should not be part of the rid | 1 |
83,853 | 10,440,408,820 | IssuesEvent | 2019-09-18 08:39:45 | felfele/felfele | https://api.github.com/repos/felfele/felfele | opened | All screens should be modal except the main tab screens | design enhancement unscheduled usability | Right now it's easy to end up in the app in not thought through states of the navigation, the different tabs can be deep in a navigation stack, and going back to another tab leads you not to the tab's main screen, but to a place where something was opened previously (in arbitrary depth in a stack).
Also with every new feature where navigation happens as well (or adding a button for a screen to reach it from a new place), we have to consider if it changes the tab - this should not be an issue in this model. | 1.0 | All screens should be modal except the main tab screens - Right now it's easy to end up in the app in not thought through states of the navigation, the different tabs can be deep in a navigation stack, and going back to another tab leads you not to the tab's main screen, but to a place where something was opened previously (in arbitrary depth in a stack).
Also with every new feature where navigation happens as well (or adding a button for a screen to reach it from a new place), we have to consider if it changes the tab - this should not be an issue in this model. | non_infrastructure | all screens should be modal except the main tab screens right now it s easy to end up in the app in not thought through states of the navigation the different tabs can be deep in a navigation stack and going back to another tab leads you not to the tab s main screen but to a place where something was opened previously in arbitrary depth in a stack also with every new feature where navigation happens as well or adding a button for a screen to reach it from a new place we have to consider if it changes the tab this should not be an issue in this model | 0 |
367,473 | 25,742,321,980 | IssuesEvent | 2022-12-08 07:14:20 | q2ebanking/boa-constrictor | https://api.github.com/repos/q2ebanking/boa-constrictor | closed | Addition of a flowchart on the working of boa-constrictor | documentation | Creating a flowchart on the steps of working of boa-constrictor and adding it to give the viewer a better idea of the working and scope of application. | 1.0 | Addition of a flowchart on the working of boa-constrictor - Creating a flowchart on the steps of working of boa-constrictor and adding it to give the viewer a better idea of the working and scope of application. | non_infrastructure | addition of a flowchart on the working of boa constrictor creating a flowchart on the steps of working of boa constrictor and adding it to give the viewer a better idea of the working and scope of application | 0 |
32,292 | 26,602,116,645 | IssuesEvent | 2023-01-23 16:27:57 | GoogleForCreators/web-stories-wp | https://api.github.com/repos/GoogleForCreators/web-stories-wp | closed | Replace colorthief library | P2 Type: Infrastructure Pod: Prometheus Pod: WP Group: Workspace Package: Story Editor | <!-- NOTE: For help requests, support questions, or general feedback, please use the WordPress.org forums instead: https://wordpress.org/support/plugin/web-stories/ -->
## Task Description
<!-- A clear and concise description of what this task is about. -->
[`colorthief`](https://www.npmjs.com/package/colorthief) has not been updated in years, does not support image formats like webp, and seems to cause issues related to node-gyp as well.
At first glance, [`extract-colors`](https://www.npmjs.com/package/extract-colors) seems like a viable alternative, but there might be others
There's also the `@pioug/colorthief` fork.
| 1.0 | Replace colorthief library - <!-- NOTE: For help requests, support questions, or general feedback, please use the WordPress.org forums instead: https://wordpress.org/support/plugin/web-stories/ -->
## Task Description
<!-- A clear and concise description of what this task is about. -->
[`colorthief`](https://www.npmjs.com/package/colorthief) has not been updated in years, does not support image formats like webp, and seems to cause issues related to node-gyp as well.
At first glance, [`extract-colors`](https://www.npmjs.com/package/extract-colors) seems like a viable alternative, but there might be others
There's also the `@pioug/colorthief` fork.
| infrastructure | replace colorthief library task description has not been updated in years does not support image formats like webp and seems to cause issues related to node gyp as well at first glance seems like a viable alternative but there might be others there s also the pioug colorthief fork | 1 |
32,095 | 26,421,861,902 | IssuesEvent | 2023-01-13 21:25:01 | UBCSailbot/sailbot_workspace | https://api.github.com/repos/UBCSailbot/sailbot_workspace | closed | Regression Tests Cannot Find Subteam Repos | bug infrastructure | ### Description
<!-- Add a description of the bug. What went wrong and what did you observe? -->
Regression Tests related to the NET repo fail because it cannot find the NET repo.
### Potential Solutions
<!-- If you have any potential solutions at the moment, write down your ideas here. -->
Most likely an issue with how it's cloned. Probably cloning into the wrong directory.
| 1.0 | Regression Tests Cannot Find Subteam Repos - ### Description
<!-- Add a description of the bug. What went wrong and what did you observe? -->
Regression Tests related to the NET repo fail because it cannot find the NET repo.
### Potential Solutions
<!-- If you have any potential solutions at the moment, write down your ideas here. -->
Most likely an issue with how it's cloned. Probably cloning into the wrong directory.
| infrastructure | regression tests cannot find subteam repos description regression tests related to the net repo fail because it cannot find the net repo potential solutions most likely an issue with how it s cloned probably cloning into the wrong directory | 1 |
28,025 | 22,763,108,251 | IssuesEvent | 2022-07-07 23:38:26 | superlistapp/super_editor | https://api.github.com/repos/superlistapp/super_editor | closed | Write tests for all text selection movements | area_infrastructure | Carets can move many ways within text:
- left/right one character, optionally with expanding selection
- left/right one word, optionally with expanding selection
- left/right to end of line, optionally with expanding selection
- up/down a line, optionally with expanding selection
- to start of line if user tries to move up at top of document
- to end of line if user tries to move down at bottom of document
Verify all of these permutations, and any other related permutations, with widgets tests that present a `Document` comprised of a single paragraph of text. | 1.0 | Write tests for all text selection movements - Carets can move many ways within text:
- left/right one character, optionally with expanding selection
- left/right one word, optionally with expanding selection
- left/right to end of line, optionally with expanding selection
- up/down a line, optionally with expanding selection
- to start of line if user tries to move up at top of document
- to end of line if user tries to move down at bottom of document
Verify all of these permutations, and any other related permutations, with widgets tests that present a `Document` comprised of a single paragraph of text. | infrastructure | write tests for all text selection movements carets can move many ways within text left right one character optionally with expanding selection left right one word optionally with expanding selection left right to end of line optionally with expanding selection up down a line optionally with expanding selection to start of line if user tries to move up at top of document to end of line if user tries to move down at bottom of document verify all of these permutations and any other related permutations with widgets tests that present a document comprised of a single paragraph of text | 1 |
1,256 | 3,104,079,051 | IssuesEvent | 2015-08-31 14:07:10 | la-team/light-admin | https://api.github.com/repos/la-team/light-admin | closed | Testability: ListView load indicator | enhancement infrastructure | As test automator, I need a load indicator on the ListView, so that automated tests can reliably detect full data load into ListView. | 1.0 | Testability: ListView load indicator - As test automator, I need a load indicator on the ListView, so that automated tests can reliably detect full data load into ListView. | infrastructure | testability listview load indicator as test automator i need a load indicator on the listview so that automated tests can reliably detect full data load into listview | 1 |
81,945 | 23,622,691,251 | IssuesEvent | 2022-08-24 22:31:47 | expo/expo | https://api.github.com/repos/expo/expo | closed | [expo-dev-menu] is broken for landscape orientation | Issue accepted Development Builds | ### Summary
`expo-dev-menu` is broken for projects that have `"orientation": "landscape"` in `app.json`.
`expo-dev-menu` is hardcoded for `portrait` orientation and is not usable in landscape(button on initial screen is not pressable)
Affects both Expo Go and app with `expo-dev-client`
### Managed or bare workflow? If you have `ios/` or `android/` directories in your project, the answer is bare!
both bare and managed
### What platform(s) does this occur on?
Android, iOS
### SDK Version (managed workflow only)
45
### Environment
expo-env-info 1.0.3 environment info:
System:
OS: macOS 12.3.1
Shell: 5.8 - /bin/zsh
Binaries:
Node: 16.15.0 - ~/.nvm/versions/node/v16.15.0/bin/node
Yarn: 1.22.19 - /opt/homebrew/bin/yarn
npm: 8.5.5 - ~/.nvm/versions/node/v16.15.0/bin/npm
Watchman: 4.9.0 - /opt/local/bin/watchman
Managers:
CocoaPods: 1.11.3 - /opt/homebrew/lib/ruby/gems/3.0.0/bin/pod
SDKs:
iOS SDK:
Platforms: DriverKit 21.4, iOS 15.4, macOS 12.3, tvOS 15.4, watchOS 8.5
Android SDK:
Android NDK: 21.3.6528147
IDEs:
Xcode: 13.3.1/13E500a - /usr/bin/xcodebuild
npmPackages:
expo: ~45.0.0 => 45.0.5
react: 17.0.2 => 17.0.2
react-dom: 17.0.2 => 17.0.2
react-native: 0.68.2 => 0.68.2
react-native-web: 0.17.7 => 0.17.7
npmGlobalPackages:
eas-cli: 0.52.0
expo-cli: 5.4.12
Expo Workflow: bare
### Reproducible demo
Fresh project created with expo-cli that has `"orientation": "landscape"` in `app.json` | 1.0 | [expo-dev-menu] is broken for landscape orientation - ### Summary
`expo-dev-menu` is broken for projects that have `"orientation": "landscape"` in `app.json`.
`expo-dev-menu` is hardcoded for `portrait` orientation and is not usable in landscape(button on initial screen is not pressable)
Affects both Expo Go and app with `expo-dev-client`
### Managed or bare workflow? If you have `ios/` or `android/` directories in your project, the answer is bare!
both bare and managed
### What platform(s) does this occur on?
Android, iOS
### SDK Version (managed workflow only)
45
### Environment
expo-env-info 1.0.3 environment info:
System:
OS: macOS 12.3.1
Shell: 5.8 - /bin/zsh
Binaries:
Node: 16.15.0 - ~/.nvm/versions/node/v16.15.0/bin/node
Yarn: 1.22.19 - /opt/homebrew/bin/yarn
npm: 8.5.5 - ~/.nvm/versions/node/v16.15.0/bin/npm
Watchman: 4.9.0 - /opt/local/bin/watchman
Managers:
CocoaPods: 1.11.3 - /opt/homebrew/lib/ruby/gems/3.0.0/bin/pod
SDKs:
iOS SDK:
Platforms: DriverKit 21.4, iOS 15.4, macOS 12.3, tvOS 15.4, watchOS 8.5
Android SDK:
Android NDK: 21.3.6528147
IDEs:
Xcode: 13.3.1/13E500a - /usr/bin/xcodebuild
npmPackages:
expo: ~45.0.0 => 45.0.5
react: 17.0.2 => 17.0.2
react-dom: 17.0.2 => 17.0.2
react-native: 0.68.2 => 0.68.2
react-native-web: 0.17.7 => 0.17.7
npmGlobalPackages:
eas-cli: 0.52.0
expo-cli: 5.4.12
Expo Workflow: bare
### Reproducible demo
Fresh project created with expo-cli that has `"orientation": "landscape"` in `app.json` | non_infrastructure | is broken for landscape orientation summary expo dev menu is broken for projects that have orientation landscape in app json expo dev menu is hardcoded for portrait orientation and is not usable in landscape button on initial screen is not pressable affects both expo go and app with expo dev client managed or bare workflow if you have ios or android directories in your project the answer is bare both bare and managed what platform s does this occur on android ios sdk version managed workflow only environment expo env info environment info system os macos shell bin zsh binaries node nvm versions node bin node yarn opt homebrew bin yarn npm nvm versions node bin npm watchman opt local bin watchman managers cocoapods opt homebrew lib ruby gems bin pod sdks ios sdk platforms driverkit ios macos tvos watchos android sdk android ndk ides xcode usr bin xcodebuild npmpackages expo react react dom react native react native web npmglobalpackages eas cli expo cli expo workflow bare reproducible demo fresh project created with expo cli that has orientation landscape in app json | 0 |
20,716 | 14,107,185,770 | IssuesEvent | 2020-11-06 15:56:44 | RasaHQ/rasa | https://api.github.com/repos/RasaHQ/rasa | closed | Rasa endpoints sometimes give misleading errors when authentication fails | area:rasa-oss :ferris_wheel: area:rasa-oss/infrastructure :bullettrain_front: type:bug :bug: | **Rasa version**: 1.10.14
**Rasa SDK version** (if used & relevant):
**Rasa X version** (if used & relevant):
**Python version**: ?
**Operating system** (windows, osx, ...): ?
**Issue**: When I call the endpoints that require authentication (e.g. [`/conversations/{conversation_id}/tracker`](https://rasa.com/docs/rasa/pages/http-api#operation/getConversationTracker)), and don't authenticate as I should, **sometimes** I get the uninformative `500 Internal Server Error` response (see below). It happens when I:
- provide in the headers a valid bearer token (that gives me access to Rasa X endpoints) AND provide incorrect access token (or no token) as the `token` query parameter
It does **not** happen (and I do get a nice `401 Unauthorized` response) when I:
- provide a gibberish bearer token in the headers together with an incorrect/no token as the query parameter
- provide no bearer token together with an incorrect/no token as the query parameter
**Error (including full traceback)**:
```
<h1>Internal Server Error</h1>
<p>
The server encountered an internal error and cannot complete
your request.
</p>
```
**Command or request that led to error**:
```
```
**Content of configuration file (config.yml)** (if relevant):
```yml
```
**Content of domain file (domain.yml)** (if relevant):
```yml
```
| 1.0 | Rasa endpoints sometimes give misleading errors when authentication fails - **Rasa version**: 1.10.14
**Rasa SDK version** (if used & relevant):
**Rasa X version** (if used & relevant):
**Python version**: ?
**Operating system** (windows, osx, ...): ?
**Issue**: When I call the endpoints that require authentication (e.g. [`/conversations/{conversation_id}/tracker`](https://rasa.com/docs/rasa/pages/http-api#operation/getConversationTracker)), and don't authenticate as I should, **sometimes** I get the uninformative `500 Internal Server Error` response (see below). It happens when I:
- provide in the headers a valid bearer token (that gives me access to Rasa X endpoints) AND provide incorrect access token (or no token) as the `token` query parameter
It does **not** happen (and I do get a nice `401 Unauthorized` response) when I:
- provide a gibberish bearer token in the headers together with an incorrect/no token as the query parameter
- provide no bearer token together with an incorrect/no token as the query parameter
**Error (including full traceback)**:
```
<h1>Internal Server Error</h1>
<p>
The server encountered an internal error and cannot complete
your request.
</p>
```
**Command or request that led to error**:
```
```
**Content of configuration file (config.yml)** (if relevant):
```yml
```
**Content of domain file (domain.yml)** (if relevant):
```yml
```
| infrastructure | rasa endpoints sometimes give misleading errors when authentication fails rasa version rasa sdk version if used relevant rasa x version if used relevant python version operating system windows osx issue when i call the endpoints that require authentication e g and don t authenticate as i should sometimes i get the uninformative internal server error response see below it happens when i provide in the headers a valid bearer token that gives me access to rasa x endpoints and provide incorrect access token or no token as the token query parameter it does not happen and i do get a nice unauthorized response when i provide a gibberish bearer token in the headers together with an incorrect no token as the query parameter provide no bearer token together with an incorrect no token as the query parameter error including full traceback internal server error the server encountered an internal error and cannot complete your request command or request that led to error content of configuration file config yml if relevant yml content of domain file domain yml if relevant yml | 1 |
136,924 | 30,604,476,926 | IssuesEvent | 2023-07-22 20:36:00 | SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf | https://api.github.com/repos/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf | opened | Code Security Report: 24 high severity findings, 38 total findings | Mend: code security findings | # Code Security Report
### Scan Metadata
**Latest Scan:** 2023-07-22 08:33pm
**Total Findings:** 38 | **New Findings:** 0 | **Resolved Findings:** 0
**Tested Project Files:** 422
**Detected Programming Languages:** 2 (Java*, JavaScript / Node.js)
<!-- SAST-MANUAL-SCAN-START -->
- [ ] Check this box to manually trigger a scan
<!-- SAST-MANUAL-SCAN-END -->
### Most Relevant Findings
> The below list presents the 10 most relevant findings that need your attention. To view information on the remaining findings, navigate to the [Mend SAST Application](https://dev.whitesourcesoftware.com/sast/#/scans/5f1a0aab-fbff-45f4-9387-87b8b6f4ab09/details).
<table role='table'><thead><tr><th>Severity</th><th>Vulnerability Type</th><th>CWE</th><th>File</th><th>Data Flows</th><th>Date</th></tr></thead><tbody><tr><td><a href='#'><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20></a> High</td><td>SQL Injection</td><td>
[CWE-89](https://cwe.mitre.org/data/definitions/89.html)
</td><td>
[SqlInjectionLesson3.java:65](https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson3.java#L65)
</td><td>1</td><td>2023-07-22 08:35pm</td></tr><tr><td colspan='6'><details><summary>More info</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson3.java#L60-L65
<details>
<summary>1 Data Flow/s detected</summary></br>
<details>
<summary>View Data Flow 1</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson3.java#L56
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson3.java#L57
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson3.java#L60
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson3.java#L65
</details>
</details>
</td></tr></details></td></tr><tr><td><a href='#'><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20></a> High</td><td>SQL Injection</td><td>
[CWE-89](https://cwe.mitre.org/data/definitions/89.html)
</td><td>
[SqlInjectionLesson2.java:62](https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson2.java#L62)
</td><td>1</td><td>2023-07-22 08:35pm</td></tr><tr><td colspan='6'><details><summary>More info</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson2.java#L57-L62
<details>
<summary>1 Data Flow/s detected</summary></br>
<details>
<summary>View Data Flow 1</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson2.java#L55
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson2.java#L56
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson2.java#L59
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson2.java#L62
</details>
</details>
</td></tr></details></td></tr><tr><td><a href='#'><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20></a> High</td><td>SQL Injection</td><td>
[CWE-89](https://cwe.mitre.org/data/definitions/89.html)
</td><td>
[Assignment5.java:59](https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/challenges/challenge5/Assignment5.java#L59)
</td><td>1</td><td>2023-07-22 08:35pm</td></tr><tr><td colspan='6'><details><summary>More info</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/challenges/challenge5/Assignment5.java#L54-L59
<details>
<summary>1 Data Flow/s detected</summary></br>
<details>
<summary>View Data Flow 1</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/challenges/challenge5/Assignment5.java#L51
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/challenges/challenge5/Assignment5.java#L59
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/challenges/challenge5/Assignment5.java#L59
</details>
</details>
</td></tr></details></td></tr><tr><td><a href='#'><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20></a> High</td><td>SQL Injection</td><td>
[CWE-89](https://cwe.mitre.org/data/definitions/89.html)
</td><td>
[SqlInjectionLesson8.java:66](https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson8.java#L66)
</td><td>1</td><td>2023-07-22 08:35pm</td></tr><tr><td colspan='6'><details><summary>More info</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson8.java#L61-L66
<details>
<summary>1 Data Flow/s detected</summary></br>
<details>
<summary>View Data Flow 1</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson8.java#L54
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson8.java#L55
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson8.java#L58
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson8.java#L60
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson8.java#L65
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson8.java#L128
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson8.java#L65
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson8.java#L66
</details>
</details>
</td></tr></details></td></tr><tr><td><a href='#'><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20></a> High</td><td>SQL Injection</td><td>
[CWE-89](https://cwe.mitre.org/data/definitions/89.html)
</td><td>
[SqlInjectionLesson5.java:73](https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5.java#L73)
</td><td>1</td><td>2023-07-22 08:35pm</td></tr><tr><td colspan='6'><details><summary>More info</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5.java#L68-L73
<details>
<summary>1 Data Flow/s detected</summary></br>
<details>
<summary>View Data Flow 1</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5.java#L65
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5.java#L67
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5.java#L70
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5.java#L73
</details>
</details>
</td></tr></details></td></tr><tr><td><a href='#'><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20></a> High</td><td>SQL Injection</td><td>
[CWE-89](https://cwe.mitre.org/data/definitions/89.html)
</td><td>
[SqlInjectionLesson6a.java:67](https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L67)
</td><td>3</td><td>2023-07-22 08:35pm</td></tr><tr><td colspan='6'><details><summary>More info</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L62-L67
<details>
<summary>3 Data Flow/s detected</summary></br>
<details>
<summary>View Data Flow 1</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/SqlOnlyInputValidation.java#L48
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/SqlOnlyInputValidation.java#L52
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L56
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L60
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L67
</details>
<details>
<summary>View Data Flow 2</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L51
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L52
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L56
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L60
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L67
</details>
<details>
<summary>View Data Flow 3</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/SqlOnlyInputValidationOnKeywords.java#L48
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/SqlOnlyInputValidationOnKeywords.java#L49
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/SqlOnlyInputValidationOnKeywords.java#L49
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/SqlOnlyInputValidationOnKeywords.java#L49
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/SqlOnlyInputValidationOnKeywords.java#L49
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/SqlOnlyInputValidationOnKeywords.java#L49
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/SqlOnlyInputValidationOnKeywords.java#L49
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/SqlOnlyInputValidationOnKeywords.java#L53
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L56
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L60
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L67
</details>
</details>
</td></tr></details></td></tr><tr><td><a href='#'><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20></a> High</td><td>SQL Injection</td><td>
[CWE-89](https://cwe.mitre.org/data/definitions/89.html)
</td><td>
[Servers.java:72](https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/Servers.java#L72)
</td><td>1</td><td>2023-07-22 08:35pm</td></tr><tr><td colspan='6'><details><summary>More info</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/Servers.java#L67-L72
<details>
<summary>1 Data Flow/s detected</summary></br>
<details>
<summary>View Data Flow 1</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/Servers.java#L68
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/Servers.java#L72
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/Servers.java#L72
</details>
</details>
</td></tr></details></td></tr><tr><td><a href='#'><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20></a> High</td><td>SQL Injection</td><td>
[CWE-89](https://cwe.mitre.org/data/definitions/89.html)
</td><td>
[SqlInjectionLesson4.java:63](https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson4.java#L63)
</td><td>1</td><td>2023-07-22 08:35pm</td></tr><tr><td colspan='6'><details><summary>More info</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson4.java#L58-L63
<details>
<summary>1 Data Flow/s detected</summary></br>
<details>
<summary>View Data Flow 1</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson4.java#L56
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson4.java#L57
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson4.java#L60
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson4.java#L63
</details>
</details>
</td></tr></details></td></tr><tr><td><a href='#'><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20></a> High</td><td>SQL Injection</td><td>
[CWE-89](https://cwe.mitre.org/data/definitions/89.html)
</td><td>
[SqlInjectionLesson5a.java:62](https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5a.java#L62)
</td><td>1</td><td>2023-07-22 08:35pm</td></tr><tr><td colspan='6'><details><summary>More info</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5a.java#L57-L62
<details>
<summary>1 Data Flow/s detected</summary></br>
<details>
<summary>View Data Flow 1</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5a.java#L53
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5a.java#L54
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5a.java#L54
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5a.java#L57
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5a.java#L60
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5a.java#L62
</details>
</details>
</td></tr></details></td></tr><tr><td><a href='#'><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20></a> High</td><td>SQL Injection</td><td>
[CWE-89](https://cwe.mitre.org/data/definitions/89.html)
</td><td>
[SqlInjectionLesson10.java:63](https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson10.java#L63)
</td><td>1</td><td>2023-07-22 08:35pm</td></tr><tr><td colspan='6'><details><summary>More info</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson10.java#L58-L63
<details>
<summary>1 Data Flow/s detected</summary></br>
<details>
<summary>View Data Flow 1</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson10.java#L52
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson10.java#L53
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson10.java#L56
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson10.java#L58
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson10.java#L63
</details>
</details>
</td></tr></details></td></tr></tbody></table>
### Findings Overview
| Severity | Vulnerability Type | CWE | Language | Count |
|-|-|-|-|-|
|<img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High|DOM Based Cross-Site Scripting|[CWE-79](https://cwe.mitre.org/data/definitions/79.html)|JavaScript / Node.js|1|
|<img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High|Path/Directory Traversal|[CWE-22](https://cwe.mitre.org/data/definitions/22.html)|Java*|6|
|<img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High|Deserialization of Untrusted Data|[CWE-502](https://cwe.mitre.org/data/definitions/502.html)|Java*|1|
|<img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High|SQL Injection|[CWE-89](https://cwe.mitre.org/data/definitions/89.html)|Java*|14|
|<img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High|Server Side Request Forgery|[CWE-918](https://cwe.mitre.org/data/definitions/918.html)|Java*|2|
|<img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> Medium|XML External Entity (XXE) Injection|[CWE-611](https://cwe.mitre.org/data/definitions/611.html)|Java*|1|
|<img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> Medium|Hardcoded Password/Credentials|[CWE-798](https://cwe.mitre.org/data/definitions/798.html)|Java*|3|
|<img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> Medium|Error Messages Information Exposure|[CWE-209](https://cwe.mitre.org/data/definitions/209.html)|Java*|5|
|<img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> Medium|Weak Pseudo-Random|[CWE-338](https://cwe.mitre.org/data/definitions/338.html)|JavaScript / Node.js|2|
|<img src='https://whitesource-resources.whitesourcesoftware.com/low_vul.png?' width=19 height=20> Low|Log Forging|[CWE-117](https://cwe.mitre.org/data/definitions/117.html)|Java*|1|
|<img src='https://whitesource-resources.whitesourcesoftware.com/low_vul.png?' width=19 height=20> Low|System Properties Disclosure|[CWE-497](https://cwe.mitre.org/data/definitions/497.html)|Java*|1|
|<img src='https://whitesource-resources.whitesourcesoftware.com/low_vul.png?' width=19 height=20> Low|Weak Hash Strength|[CWE-328](https://cwe.mitre.org/data/definitions/328.html)|Java*|1|
| 1.0 | Code Security Report: 24 high severity findings, 38 total findings - # Code Security Report
### Scan Metadata
**Latest Scan:** 2023-07-22 08:33pm
**Total Findings:** 38 | **New Findings:** 0 | **Resolved Findings:** 0
**Tested Project Files:** 422
**Detected Programming Languages:** 2 (Java*, JavaScript / Node.js)
<!-- SAST-MANUAL-SCAN-START -->
- [ ] Check this box to manually trigger a scan
<!-- SAST-MANUAL-SCAN-END -->
### Most Relevant Findings
> The below list presents the 10 most relevant findings that need your attention. To view information on the remaining findings, navigate to the [Mend SAST Application](https://dev.whitesourcesoftware.com/sast/#/scans/5f1a0aab-fbff-45f4-9387-87b8b6f4ab09/details).
<table role='table'><thead><tr><th>Severity</th><th>Vulnerability Type</th><th>CWE</th><th>File</th><th>Data Flows</th><th>Date</th></tr></thead><tbody><tr><td><a href='#'><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20></a> High</td><td>SQL Injection</td><td>
[CWE-89](https://cwe.mitre.org/data/definitions/89.html)
</td><td>
[SqlInjectionLesson3.java:65](https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson3.java#L65)
</td><td>1</td><td>2023-07-22 08:35pm</td></tr><tr><td colspan='6'><details><summary>More info</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson3.java#L60-L65
<details>
<summary>1 Data Flow/s detected</summary></br>
<details>
<summary>View Data Flow 1</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson3.java#L56
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson3.java#L57
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson3.java#L60
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson3.java#L65
</details>
</details>
</td></tr></details></td></tr><tr><td><a href='#'><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20></a> High</td><td>SQL Injection</td><td>
[CWE-89](https://cwe.mitre.org/data/definitions/89.html)
</td><td>
[SqlInjectionLesson2.java:62](https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson2.java#L62)
</td><td>1</td><td>2023-07-22 08:35pm</td></tr><tr><td colspan='6'><details><summary>More info</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson2.java#L57-L62
<details>
<summary>1 Data Flow/s detected</summary></br>
<details>
<summary>View Data Flow 1</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson2.java#L55
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson2.java#L56
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson2.java#L59
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson2.java#L62
</details>
</details>
</td></tr></details></td></tr><tr><td><a href='#'><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20></a> High</td><td>SQL Injection</td><td>
[CWE-89](https://cwe.mitre.org/data/definitions/89.html)
</td><td>
[Assignment5.java:59](https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/challenges/challenge5/Assignment5.java#L59)
</td><td>1</td><td>2023-07-22 08:35pm</td></tr><tr><td colspan='6'><details><summary>More info</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/challenges/challenge5/Assignment5.java#L54-L59
<details>
<summary>1 Data Flow/s detected</summary></br>
<details>
<summary>View Data Flow 1</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/challenges/challenge5/Assignment5.java#L51
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/challenges/challenge5/Assignment5.java#L59
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/challenges/challenge5/Assignment5.java#L59
</details>
</details>
</td></tr></details></td></tr><tr><td><a href='#'><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20></a> High</td><td>SQL Injection</td><td>
[CWE-89](https://cwe.mitre.org/data/definitions/89.html)
</td><td>
[SqlInjectionLesson8.java:66](https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson8.java#L66)
</td><td>1</td><td>2023-07-22 08:35pm</td></tr><tr><td colspan='6'><details><summary>More info</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson8.java#L61-L66
<details>
<summary>1 Data Flow/s detected</summary></br>
<details>
<summary>View Data Flow 1</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson8.java#L54
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson8.java#L55
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson8.java#L58
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson8.java#L60
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson8.java#L65
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson8.java#L128
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson8.java#L65
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson8.java#L66
</details>
</details>
</td></tr></details></td></tr><tr><td><a href='#'><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20></a> High</td><td>SQL Injection</td><td>
[CWE-89](https://cwe.mitre.org/data/definitions/89.html)
</td><td>
[SqlInjectionLesson5.java:73](https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5.java#L73)
</td><td>1</td><td>2023-07-22 08:35pm</td></tr><tr><td colspan='6'><details><summary>More info</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5.java#L68-L73
<details>
<summary>1 Data Flow/s detected</summary></br>
<details>
<summary>View Data Flow 1</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5.java#L65
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5.java#L67
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5.java#L70
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5.java#L73
</details>
</details>
</td></tr></details></td></tr><tr><td><a href='#'><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20></a> High</td><td>SQL Injection</td><td>
[CWE-89](https://cwe.mitre.org/data/definitions/89.html)
</td><td>
[SqlInjectionLesson6a.java:67](https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L67)
</td><td>3</td><td>2023-07-22 08:35pm</td></tr><tr><td colspan='6'><details><summary>More info</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L62-L67
<details>
<summary>3 Data Flow/s detected</summary></br>
<details>
<summary>View Data Flow 1</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/SqlOnlyInputValidation.java#L48
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/SqlOnlyInputValidation.java#L52
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L56
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L60
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L67
</details>
<details>
<summary>View Data Flow 2</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L51
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L52
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L56
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L60
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L67
</details>
<details>
<summary>View Data Flow 3</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/SqlOnlyInputValidationOnKeywords.java#L48
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/SqlOnlyInputValidationOnKeywords.java#L49
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/SqlOnlyInputValidationOnKeywords.java#L49
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/SqlOnlyInputValidationOnKeywords.java#L49
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/SqlOnlyInputValidationOnKeywords.java#L49
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/SqlOnlyInputValidationOnKeywords.java#L49
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/SqlOnlyInputValidationOnKeywords.java#L49
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/SqlOnlyInputValidationOnKeywords.java#L53
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L56
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L60
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/advanced/SqlInjectionLesson6a.java#L67
</details>
</details>
</td></tr></details></td></tr><tr><td><a href='#'><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20></a> High</td><td>SQL Injection</td><td>
[CWE-89](https://cwe.mitre.org/data/definitions/89.html)
</td><td>
[Servers.java:72](https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/Servers.java#L72)
</td><td>1</td><td>2023-07-22 08:35pm</td></tr><tr><td colspan='6'><details><summary>More info</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/Servers.java#L67-L72
<details>
<summary>1 Data Flow/s detected</summary></br>
<details>
<summary>View Data Flow 1</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/Servers.java#L68
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/Servers.java#L72
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/mitigation/Servers.java#L72
</details>
</details>
</td></tr></details></td></tr><tr><td><a href='#'><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20></a> High</td><td>SQL Injection</td><td>
[CWE-89](https://cwe.mitre.org/data/definitions/89.html)
</td><td>
[SqlInjectionLesson4.java:63](https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson4.java#L63)
</td><td>1</td><td>2023-07-22 08:35pm</td></tr><tr><td colspan='6'><details><summary>More info</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson4.java#L58-L63
<details>
<summary>1 Data Flow/s detected</summary></br>
<details>
<summary>View Data Flow 1</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson4.java#L56
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson4.java#L57
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson4.java#L60
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson4.java#L63
</details>
</details>
</td></tr></details></td></tr><tr><td><a href='#'><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20></a> High</td><td>SQL Injection</td><td>
[CWE-89](https://cwe.mitre.org/data/definitions/89.html)
</td><td>
[SqlInjectionLesson5a.java:62](https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5a.java#L62)
</td><td>1</td><td>2023-07-22 08:35pm</td></tr><tr><td colspan='6'><details><summary>More info</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5a.java#L57-L62
<details>
<summary>1 Data Flow/s detected</summary></br>
<details>
<summary>View Data Flow 1</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5a.java#L53
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5a.java#L54
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5a.java#L54
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5a.java#L57
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5a.java#L60
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson5a.java#L62
</details>
</details>
</td></tr></details></td></tr><tr><td><a href='#'><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20></a> High</td><td>SQL Injection</td><td>
[CWE-89](https://cwe.mitre.org/data/definitions/89.html)
</td><td>
[SqlInjectionLesson10.java:63](https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson10.java#L63)
</td><td>1</td><td>2023-07-22 08:35pm</td></tr><tr><td colspan='6'><details><summary>More info</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson10.java#L58-L63
<details>
<summary>1 Data Flow/s detected</summary></br>
<details>
<summary>View Data Flow 1</summary>
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson10.java#L52
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson10.java#L53
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson10.java#L56
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson10.java#L58
https://github.com/SAST-OldPlatform-DEV/SAST-Test-Repo-aa87da8d-8273-4e96-b320-73ad9f93d8bf/blob/fb1895c50ff4043b4fa11fee1c4ecb3d3ff50edd/src/main/java/org/owasp/webgoat/lessons/sql_injection/introduction/SqlInjectionLesson10.java#L63
</details>
</details>
</td></tr></details></td></tr></tbody></table>
### Findings Overview
| Severity | Vulnerability Type | CWE | Language | Count |
|-|-|-|-|-|
|<img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High|DOM Based Cross-Site Scripting|[CWE-79](https://cwe.mitre.org/data/definitions/79.html)|JavaScript / Node.js|1|
|<img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High|Path/Directory Traversal|[CWE-22](https://cwe.mitre.org/data/definitions/22.html)|Java*|6|
|<img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High|Deserialization of Untrusted Data|[CWE-502](https://cwe.mitre.org/data/definitions/502.html)|Java*|1|
|<img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High|SQL Injection|[CWE-89](https://cwe.mitre.org/data/definitions/89.html)|Java*|14|
|<img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High|Server Side Request Forgery|[CWE-918](https://cwe.mitre.org/data/definitions/918.html)|Java*|2|
|<img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> Medium|XML External Entity (XXE) Injection|[CWE-611](https://cwe.mitre.org/data/definitions/611.html)|Java*|1|
|<img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> Medium|Hardcoded Password/Credentials|[CWE-798](https://cwe.mitre.org/data/definitions/798.html)|Java*|3|
|<img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> Medium|Error Messages Information Exposure|[CWE-209](https://cwe.mitre.org/data/definitions/209.html)|Java*|5|
|<img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> Medium|Weak Pseudo-Random|[CWE-338](https://cwe.mitre.org/data/definitions/338.html)|JavaScript / Node.js|2|
|<img src='https://whitesource-resources.whitesourcesoftware.com/low_vul.png?' width=19 height=20> Low|Log Forging|[CWE-117](https://cwe.mitre.org/data/definitions/117.html)|Java*|1|
|<img src='https://whitesource-resources.whitesourcesoftware.com/low_vul.png?' width=19 height=20> Low|System Properties Disclosure|[CWE-497](https://cwe.mitre.org/data/definitions/497.html)|Java*|1|
|<img src='https://whitesource-resources.whitesourcesoftware.com/low_vul.png?' width=19 height=20> Low|Weak Hash Strength|[CWE-328](https://cwe.mitre.org/data/definitions/328.html)|Java*|1|
| non_infrastructure | code security report high severity findings total findings code security report scan metadata latest scan total findings new findings resolved findings tested project files detected programming languages java javascript node js check this box to manually trigger a scan most relevant findings the below list presents the most relevant findings that need your attention to view information on the remaining findings navigate to the severity vulnerability type cwe file data flows date high sql injection more info data flow s detected view data flow high sql injection more info data flow s detected view data flow high sql injection more info data flow s detected view data flow high sql injection more info data flow s detected view data flow high sql injection more info data flow s detected view data flow high sql injection more info data flow s detected view data flow view data flow view data flow high sql injection more info data flow s detected view data flow high sql injection more info data flow s detected view data flow high sql injection more info data flow s detected view data flow high sql injection more info data flow s detected view data flow findings overview severity vulnerability type cwe language count high dom based cross site scripting node js high path directory traversal high deserialization of untrusted data high sql injection high server side request forgery medium xml external entity xxe injection medium hardcoded password credentials medium error messages information exposure medium weak pseudo random node js low log forging low system properties disclosure low weak hash strength | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.