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 1
744
| labels
stringlengths 4
574
| body
stringlengths 9
211k
| index
stringclasses 10
values | text_combine
stringlengths 96
211k
| label
stringclasses 2
values | text
stringlengths 96
188k
| binary_label
int64 0
1
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
17,686
| 23,531,198,909
|
IssuesEvent
|
2022-08-19 15:29:32
|
bazelbuild/bazel
|
https://api.github.com/repos/bazelbuild/bazel
|
closed
|
cquery returns incorrect cached results
|
P4 type: support / not a bug (process) team-Configurability untriaged
|
### Description of the bug:
Subsequent runs of `bazel cquery` do not always return the same results as the first run.
### What's the simplest, easiest way to reproduce this bug? Please provide a minimal example if possible.
Run the following script:
```sh
#!/bin/bash -e
git clone https://skia.googlesource.com/skia
cd skia
python3 tools/git-sync-deps
echo ""
echo "first query"
bazel cquery --noimplicit_deps 'kind("rule", deps(//:skia_public))' --output textproto > query1.pb.txt
echo ""
echo "second query"
bazel cquery --noimplicit_deps 'kind("rule", deps(//:skia_public) + deps(//src/...) + deps(//modules/...))' --output textproto > query2.pb.txt
echo ""
echo "third query"
bazel cquery --noimplicit_deps 'kind("rule", deps(//:skia_public))' --output textproto > query3.pb.txt
echo ""
echo "Query results:"
ls -l *.txt
```
Here is the query script output:
```
first query
Starting local Bazel server and connecting to it...
Loading:
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
currently loading:
Loading: 0 packages loaded
currently loading:
Loading: 0 packages loaded
currently loading:
Loading: 0 packages loaded
currently loading:
Analyzing: target //:skia_public (1 packages loaded, 0 targets configured)
Analyzing: target //:skia_public (36 packages loaded, 10 targets configured)
Analyzing: target //:skia_public (36 packages loaded, 10 targets configured)
Analyzing: target //:skia_public (83 packages loaded, 1292 targets configured)
Analyzing: target //:skia_public (83 packages loaded, 1297 targets configured)
Analyzing: target //:skia_public (83 packages loaded, 1297 targets configured)
Analyzing: target //:skia_public (83 packages loaded, 1297 targets configured)
INFO: Analyzed target //:skia_public (84 packages loaded, 9334 targets configured).
INFO: Found 1 target...
INFO: Elapsed time: 60.307s
INFO: 0 processes.
INFO: Build completed successfully, 0 total actions
INFO: Build completed successfully, 0 total actions
second query
Loading:
Loading: 0 packages loaded
Loading: 82 packages loaded
currently loading: modules/canvaskit
Loading: 82 packages loaded
currently loading: modules/canvaskit
Loading: 82 packages loaded
currently loading: modules/canvaskit
Analyzing: 331 targets (83 packages loaded, 0 targets configured)
Analyzing: 331 targets (152 packages loaded, 18498 targets configured)
Analyzing: 331 targets (159 packages loaded, 18914 targets configured)
Analyzing: 331 targets (298 packages loaded, 22199 targets configured)
Analyzing: 331 targets (298 packages loaded, 22199 targets configured)
INFO: Analyzed 331 targets (299 packages loaded, 24711 targets configured).
INFO: Found 331 targets...
INFO: Elapsed time: 52.243s
INFO: 0 processes.
INFO: Build completed successfully, 0 total actions
INFO: Build completed successfully, 0 total actions
third query
Loading:
Loading: 0 packages loaded
Analyzing: target //:skia_public (0 packages loaded, 0 targets configured)
INFO: Analyzed target //:skia_public (0 packages loaded, 0 targets configured).
INFO: Found 1 target...
INFO: Elapsed time: 0.268s
INFO: 0 processes.
INFO: Build completed successfully, 0 total actions
INFO: Build completed successfully, 0 total actions
Query results:
-rw-r--r-- 1 cmumford primarygroup 47501 Jul 25 05:10 RELEASE_NOTES.txt
-rw-r--r-- 1 cmumford primarygroup 777450 Jul 25 05:15 query1.pb.txt
-rw-r--r-- 1 cmumford primarygroup 9624567 Jul 25 05:16 query2.pb.txt
-rw-r--r-- 1 cmumford primarygroup 3865825 Jul 25 05:16 query3.pb.txt
-rw-r--r-- 1 cmumford primarygroup 793 Jul 25 05:10 requirements.txt
-rw-r--r-- 1 cmumford primarygroup 437 Jul 25 05:10 whitespace.txt
```
### Which operating system are you running Bazel on?
macOS Monterey 12.4 (on Apple silicon)
### What is the output of `bazel info release`?
release 5.2.0
### If `bazel info release` returns `development version` or `(@non-git)`, tell us how you built Bazel.
_No response_
### What's the output of `git remote get-url origin; git rev-parse master; git rev-parse HEAD` ?
```text
https://skia.googlesource.com/skia
5999b4e5381098e1834d5bfab453b0f1a0f73f88
5999b4e5381098e1834d5bfab453b0f1a0f73f88
Note Skia's default branch is "main".
```
### Have you found anything relevant by searching the web?
No
### Any other information, logs, or outputs that you want to share?
It looks like prior results are being inserted into the current query response. If `bazel shutdown` is run before each cquery then the third query returns the same response as the first.
|
1.0
|
cquery returns incorrect cached results - ### Description of the bug:
Subsequent runs of `bazel cquery` do not always return the same results as the first run.
### What's the simplest, easiest way to reproduce this bug? Please provide a minimal example if possible.
Run the following script:
```sh
#!/bin/bash -e
git clone https://skia.googlesource.com/skia
cd skia
python3 tools/git-sync-deps
echo ""
echo "first query"
bazel cquery --noimplicit_deps 'kind("rule", deps(//:skia_public))' --output textproto > query1.pb.txt
echo ""
echo "second query"
bazel cquery --noimplicit_deps 'kind("rule", deps(//:skia_public) + deps(//src/...) + deps(//modules/...))' --output textproto > query2.pb.txt
echo ""
echo "third query"
bazel cquery --noimplicit_deps 'kind("rule", deps(//:skia_public))' --output textproto > query3.pb.txt
echo ""
echo "Query results:"
ls -l *.txt
```
Here is the query script output:
```
first query
Starting local Bazel server and connecting to it...
Loading:
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
currently loading:
Loading: 0 packages loaded
currently loading:
Loading: 0 packages loaded
currently loading:
Loading: 0 packages loaded
currently loading:
Analyzing: target //:skia_public (1 packages loaded, 0 targets configured)
Analyzing: target //:skia_public (36 packages loaded, 10 targets configured)
Analyzing: target //:skia_public (36 packages loaded, 10 targets configured)
Analyzing: target //:skia_public (83 packages loaded, 1292 targets configured)
Analyzing: target //:skia_public (83 packages loaded, 1297 targets configured)
Analyzing: target //:skia_public (83 packages loaded, 1297 targets configured)
Analyzing: target //:skia_public (83 packages loaded, 1297 targets configured)
INFO: Analyzed target //:skia_public (84 packages loaded, 9334 targets configured).
INFO: Found 1 target...
INFO: Elapsed time: 60.307s
INFO: 0 processes.
INFO: Build completed successfully, 0 total actions
INFO: Build completed successfully, 0 total actions
second query
Loading:
Loading: 0 packages loaded
Loading: 82 packages loaded
currently loading: modules/canvaskit
Loading: 82 packages loaded
currently loading: modules/canvaskit
Loading: 82 packages loaded
currently loading: modules/canvaskit
Analyzing: 331 targets (83 packages loaded, 0 targets configured)
Analyzing: 331 targets (152 packages loaded, 18498 targets configured)
Analyzing: 331 targets (159 packages loaded, 18914 targets configured)
Analyzing: 331 targets (298 packages loaded, 22199 targets configured)
Analyzing: 331 targets (298 packages loaded, 22199 targets configured)
INFO: Analyzed 331 targets (299 packages loaded, 24711 targets configured).
INFO: Found 331 targets...
INFO: Elapsed time: 52.243s
INFO: 0 processes.
INFO: Build completed successfully, 0 total actions
INFO: Build completed successfully, 0 total actions
third query
Loading:
Loading: 0 packages loaded
Analyzing: target //:skia_public (0 packages loaded, 0 targets configured)
INFO: Analyzed target //:skia_public (0 packages loaded, 0 targets configured).
INFO: Found 1 target...
INFO: Elapsed time: 0.268s
INFO: 0 processes.
INFO: Build completed successfully, 0 total actions
INFO: Build completed successfully, 0 total actions
Query results:
-rw-r--r-- 1 cmumford primarygroup 47501 Jul 25 05:10 RELEASE_NOTES.txt
-rw-r--r-- 1 cmumford primarygroup 777450 Jul 25 05:15 query1.pb.txt
-rw-r--r-- 1 cmumford primarygroup 9624567 Jul 25 05:16 query2.pb.txt
-rw-r--r-- 1 cmumford primarygroup 3865825 Jul 25 05:16 query3.pb.txt
-rw-r--r-- 1 cmumford primarygroup 793 Jul 25 05:10 requirements.txt
-rw-r--r-- 1 cmumford primarygroup 437 Jul 25 05:10 whitespace.txt
```
### Which operating system are you running Bazel on?
macOS Monterey 12.4 (on Apple silicon)
### What is the output of `bazel info release`?
release 5.2.0
### If `bazel info release` returns `development version` or `(@non-git)`, tell us how you built Bazel.
_No response_
### What's the output of `git remote get-url origin; git rev-parse master; git rev-parse HEAD` ?
```text
https://skia.googlesource.com/skia
5999b4e5381098e1834d5bfab453b0f1a0f73f88
5999b4e5381098e1834d5bfab453b0f1a0f73f88
Note Skia's default branch is "main".
```
### Have you found anything relevant by searching the web?
No
### Any other information, logs, or outputs that you want to share?
It looks like prior results are being inserted into the current query response. If `bazel shutdown` is run before each cquery then the third query returns the same response as the first.
|
process
|
cquery returns incorrect cached results description of the bug subsequent runs of bazel cquery do not always return the same results as the first run what s the simplest easiest way to reproduce this bug please provide a minimal example if possible run the following script sh bin bash e git clone cd skia tools git sync deps echo echo first query bazel cquery noimplicit deps kind rule deps skia public output textproto pb txt echo echo second query bazel cquery noimplicit deps kind rule deps skia public deps src deps modules output textproto pb txt echo echo third query bazel cquery noimplicit deps kind rule deps skia public output textproto pb txt echo echo query results ls l txt here is the query script output first query starting local bazel server and connecting to it loading loading packages loaded loading packages loaded loading packages loaded loading packages loaded currently loading loading packages loaded currently loading loading packages loaded currently loading loading packages loaded currently loading analyzing target skia public packages loaded targets configured analyzing target skia public packages loaded targets configured analyzing target skia public packages loaded targets configured analyzing target skia public packages loaded targets configured analyzing target skia public packages loaded targets configured analyzing target skia public packages loaded targets configured analyzing target skia public packages loaded targets configured info analyzed target skia public packages loaded targets configured info found target info elapsed time info processes info build completed successfully total actions info build completed successfully total actions second query loading loading packages loaded loading packages loaded currently loading modules canvaskit loading packages loaded currently loading modules canvaskit loading packages loaded currently loading modules canvaskit analyzing targets packages loaded targets configured analyzing targets packages loaded targets configured analyzing targets packages loaded targets configured analyzing targets packages loaded targets configured analyzing targets packages loaded targets configured info analyzed targets packages loaded targets configured info found targets info elapsed time info processes info build completed successfully total actions info build completed successfully total actions third query loading loading packages loaded analyzing target skia public packages loaded targets configured info analyzed target skia public packages loaded targets configured info found target info elapsed time info processes info build completed successfully total actions info build completed successfully total actions query results rw r r cmumford primarygroup jul release notes txt rw r r cmumford primarygroup jul pb txt rw r r cmumford primarygroup jul pb txt rw r r cmumford primarygroup jul pb txt rw r r cmumford primarygroup jul requirements txt rw r r cmumford primarygroup jul whitespace txt which operating system are you running bazel on macos monterey on apple silicon what is the output of bazel info release release if bazel info release returns development version or non git tell us how you built bazel no response what s the output of git remote get url origin git rev parse master git rev parse head text note skia s default branch is main have you found anything relevant by searching the web no any other information logs or outputs that you want to share it looks like prior results are being inserted into the current query response if bazel shutdown is run before each cquery then the third query returns the same response as the first
| 1
|
164,561
| 20,369,822,294
|
IssuesEvent
|
2022-02-21 10:08:09
|
fdm-monster/fdm-monster
|
https://api.github.com/repos/fdm-monster/fdm-monster
|
closed
|
CVE-2022-0639 (Medium) detected in url-parse-1.5.3.tgz - autoclosed
|
security vulnerability
|
## CVE-2022-0639 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>url-parse-1.5.3.tgz</b></p></summary>
<p>Small footprint URL parser that works seamlessly across Node.js and browser environments</p>
<p>Library home page: <a href="https://registry.npmjs.org/url-parse/-/url-parse-1.5.3.tgz">https://registry.npmjs.org/url-parse/-/url-parse-1.5.3.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/url-parse/package.json</p>
<p>
Dependency Hierarchy:
- eventsource-1.1.0.tgz (Root Library)
- original-1.0.2.tgz
- :x: **url-parse-1.5.3.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/fdm-monster/fdm-monster/commit/7b578356e8806b3c4fd52846139ac4e710cea975">7b578356e8806b3c4fd52846139ac4e710cea975</a></p>
<p>Found in base branch: <b>development</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>
Authorization Bypass Through User-Controlled Key in NPM url-parse prior to 1.5.7.
<p>Publish Date: 2022-02-17
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-0639>CVE-2022-0639</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.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: 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0639">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0639</a></p>
<p>Release Date: 2022-02-17</p>
<p>Fix Resolution: url-parse - 1.5.7</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-2022-0639 (Medium) detected in url-parse-1.5.3.tgz - autoclosed - ## CVE-2022-0639 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>url-parse-1.5.3.tgz</b></p></summary>
<p>Small footprint URL parser that works seamlessly across Node.js and browser environments</p>
<p>Library home page: <a href="https://registry.npmjs.org/url-parse/-/url-parse-1.5.3.tgz">https://registry.npmjs.org/url-parse/-/url-parse-1.5.3.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/url-parse/package.json</p>
<p>
Dependency Hierarchy:
- eventsource-1.1.0.tgz (Root Library)
- original-1.0.2.tgz
- :x: **url-parse-1.5.3.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/fdm-monster/fdm-monster/commit/7b578356e8806b3c4fd52846139ac4e710cea975">7b578356e8806b3c4fd52846139ac4e710cea975</a></p>
<p>Found in base branch: <b>development</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>
Authorization Bypass Through User-Controlled Key in NPM url-parse prior to 1.5.7.
<p>Publish Date: 2022-02-17
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-0639>CVE-2022-0639</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.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: 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0639">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0639</a></p>
<p>Release Date: 2022-02-17</p>
<p>Fix Resolution: url-parse - 1.5.7</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
non_process
|
cve medium detected in url parse tgz autoclosed cve medium severity vulnerability vulnerable library url parse tgz small footprint url parser that works seamlessly across node js and browser environments library home page a href path to dependency file package json path to vulnerable library node modules url parse package json dependency hierarchy eventsource tgz root library original tgz x url parse tgz vulnerable library found in head commit a href found in base branch development vulnerability details authorization bypass through user controlled key in npm url parse prior to 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 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 url parse step up your open source security game with whitesource
| 0
|
2,138
| 4,974,637,360
|
IssuesEvent
|
2016-12-06 07:35:08
|
opentrials/opentrials
|
https://api.github.com/repos/opentrials/opentrials
|
closed
|
clinicaltrials.gov - data not verified recently flag
|
0. Blocked Processors
|
clinicaltrials.gov have a "the recruitment status of this trial has not been verified recently" flag (e.g. [this trial](https://clinicaltrials.gov/ct2/show/NCT00564096)
do we collect this? if not, I think we probably need to, and then we need to change the recruitment status of these trials to "unknown" or at least find a way of flagging that it might not be true (in the same way that ct.gov does) because when we present the status right now e.g. [same trial](http://explorer.opentrials.net/trials/fd3dc841-5db3-415c-8917-c739fb1db7eb) we are still presenting as "recruiting"
|
1.0
|
clinicaltrials.gov - data not verified recently flag - clinicaltrials.gov have a "the recruitment status of this trial has not been verified recently" flag (e.g. [this trial](https://clinicaltrials.gov/ct2/show/NCT00564096)
do we collect this? if not, I think we probably need to, and then we need to change the recruitment status of these trials to "unknown" or at least find a way of flagging that it might not be true (in the same way that ct.gov does) because when we present the status right now e.g. [same trial](http://explorer.opentrials.net/trials/fd3dc841-5db3-415c-8917-c739fb1db7eb) we are still presenting as "recruiting"
|
process
|
clinicaltrials gov data not verified recently flag clinicaltrials gov have a the recruitment status of this trial has not been verified recently flag e g do we collect this if not i think we probably need to and then we need to change the recruitment status of these trials to unknown or at least find a way of flagging that it might not be true in the same way that ct gov does because when we present the status right now e g we are still presenting as recruiting
| 1
|
19,933
| 26,400,603,820
|
IssuesEvent
|
2023-01-13 00:37:43
|
plazi/treatmentBank
|
https://api.github.com/repos/plazi/treatmentBank
|
closed
|
upload of megataxa.8.1.1 to frankfurt fails
|
help wanted processing
|
@gsautter can you please have a look at this file and why it does not upload? the file is [here](https://mapress.com/mt/article/view/megataxa.8.1.1) - may be it id due to the size (900MB)?
> $ for file in *.pdf; do curl -H "Authorization:How can there be a copyright on stating that the sky is blue?" -H "Meta-Data-Mode:Go use your templates!" -F "file=@$file; filename=$file" -F "user=plazi" -F "mimeType=application/pdf" -X PUT https://tb.plazi.org/GgServer/docUpload; done; # file
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>502 Bad Gateway</title>
</head><body>
<h1>Bad Gateway</h1>
<p>The proxy server received an invalid
response from an upstream server.<br />
</p>
</body></html>
|
1.0
|
upload of megataxa.8.1.1 to frankfurt fails - @gsautter can you please have a look at this file and why it does not upload? the file is [here](https://mapress.com/mt/article/view/megataxa.8.1.1) - may be it id due to the size (900MB)?
> $ for file in *.pdf; do curl -H "Authorization:How can there be a copyright on stating that the sky is blue?" -H "Meta-Data-Mode:Go use your templates!" -F "file=@$file; filename=$file" -F "user=plazi" -F "mimeType=application/pdf" -X PUT https://tb.plazi.org/GgServer/docUpload; done; # file
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>502 Bad Gateway</title>
</head><body>
<h1>Bad Gateway</h1>
<p>The proxy server received an invalid
response from an upstream server.<br />
</p>
</body></html>
|
process
|
upload of megataxa to frankfurt fails gsautter can you please have a look at this file and why it does not upload the file is may be it id due to the size for file in pdf do curl h authorization how can there be a copyright on stating that the sky is blue h meta data mode go use your templates f file file filename file f user plazi f mimetype application pdf x put done file bad gateway bad gateway the proxy server received an invalid response from an upstream server
| 1
|
19,025
| 25,032,291,341
|
IssuesEvent
|
2022-11-04 13:24:25
|
open-telemetry/opentelemetry-collector-contrib
|
https://api.github.com/repos/open-telemetry/opentelemetry-collector-contrib
|
closed
|
[logstransform] logstransform is not in the valid processors
|
bug processor/logstransform
|
### Component(s)
_No response_
### What happened?
## Description
I tried to use logstransform processor to handle log body from otel agent and then transfer to loki. I configured and started it. the console log shows it is not a valid processor
## Steps to Reproduce
## Expected Result
## Actual Result
### Collector version
v0.63
### Environment information
## Environment
OS: (e.g., "Ubuntu 20.04")
Compiler(if manually compiled): (e.g., "go 14.2")
centos
### OpenTelemetry Collector configuration
```yaml
processors:
logstransform:
operators:
- type: regex_parser
regex: 'INFO \[(?P<traceId>\w*),(?P<agreementNo>\w*)\] (?P<logger>.*) - (?P<httpMethod>.*),(?P<uri>.*),(?P<uri2>.*),(?P<uriDesc>.*),(?P<state>.*),(?P<stateCode>.*),(?P<stateDesc>.*),(?P<responseTime>.*)'
traceId:
parse_from: body.traceId
```
### Log output
```shell
* error decoding 'processors': unknown processors type: "logstransform" for id: "logstransform" (valid values: [redaction spanmetrics memory_limiter groupbyattrs k8sattributes metricstransform resource tail_sampling attributes filter experimental_metricsgeneration probabilistic_sampler span transform cumulativetodelta groupbytrace resourcedetection routing batch deltatorate servicegraph])
```
### Additional context
_No response_
|
1.0
|
[logstransform] logstransform is not in the valid processors - ### Component(s)
_No response_
### What happened?
## Description
I tried to use logstransform processor to handle log body from otel agent and then transfer to loki. I configured and started it. the console log shows it is not a valid processor
## Steps to Reproduce
## Expected Result
## Actual Result
### Collector version
v0.63
### Environment information
## Environment
OS: (e.g., "Ubuntu 20.04")
Compiler(if manually compiled): (e.g., "go 14.2")
centos
### OpenTelemetry Collector configuration
```yaml
processors:
logstransform:
operators:
- type: regex_parser
regex: 'INFO \[(?P<traceId>\w*),(?P<agreementNo>\w*)\] (?P<logger>.*) - (?P<httpMethod>.*),(?P<uri>.*),(?P<uri2>.*),(?P<uriDesc>.*),(?P<state>.*),(?P<stateCode>.*),(?P<stateDesc>.*),(?P<responseTime>.*)'
traceId:
parse_from: body.traceId
```
### Log output
```shell
* error decoding 'processors': unknown processors type: "logstransform" for id: "logstransform" (valid values: [redaction spanmetrics memory_limiter groupbyattrs k8sattributes metricstransform resource tail_sampling attributes filter experimental_metricsgeneration probabilistic_sampler span transform cumulativetodelta groupbytrace resourcedetection routing batch deltatorate servicegraph])
```
### Additional context
_No response_
|
process
|
logstransform is not in the valid processors component s no response what happened description i tried to use logstransform processor to handle log body from otel agent and then transfer to loki i configured and started it the console log shows it is not a valid processor steps to reproduce expected result actual result collector version environment information environment os e g ubuntu compiler if manually compiled e g go centos opentelemetry collector configuration yaml processors logstransform operators type regex parser regex info p p p p p p p p p traceid parse from body traceid log output shell error decoding processors unknown processors type logstransform for id logstransform valid values additional context no response
| 1
|
8,639
| 11,787,545,559
|
IssuesEvent
|
2020-03-17 14:12:37
|
hypothesis/browser-extension
|
https://api.github.com/repos/hypothesis/browser-extension
|
closed
|
Automate the extension release process
|
Deployment process
|
### Problem
Currently our browser extension release process doesn't use the CI/CD Jenkins setup. Releasing the browser extension is therefore a more manual process, which can mean that not all team members can release the extension, or feel comfortable releasing the extension.
### What's Needed
After talking with @robertknight, we agreed that we should move the extension release process into the current CI/CD process that we're already using for other apps. This will help automate the process so that everyone can release the extension as needed.
### Sub-tasks
- [x] Add Jenkins project to build, test and deploy the browser extension (https://github.com/hypothesis/browser-extension/pull/300, https://github.com/hypothesis/browser-extension/pull/301)
- [x] Add method to create a new browser extension version with the latest Hypothesis client (https://github.com/hypothesis/browser-extension/pull/307, [Slack thread](https://hypothes-is.slack.com/archives/C4K6M7P5E/p1582624801011700))
- [x] Trigger an update of the QA browser extension when a new Hypothesis client version is released to production. Production releases of the browser extension will still require manual intervention (https://github.com/hypothesis/client/pull/1877)
- [x] Update [documentation in playbook repository](https://github.com/hypothesis/playbook/blob/master/docs/chrome-extension.md), SO4T to reflect extension release process changes (https://github.com/hypothesis/playbook/pull/270)
- [x] Figure out why the process of uploading, signing and then downloading the Firefox extension using `web-ext` is taking such a long time (see [comment](https://github.com/hypothesis/browser-extension/issues/247#issuecomment-596398632))
- [x] Make a decision about whether to keep or remove the Travis build for the time being (nb. The main affordance Travis provides is that it is accessible to non-Hypothesis developers, whereas Jenkins is not) (@robertknight - I'm proposing to keep this for now. We can always revisit later. See https://github.com/hypothesis/browser-extension/pull/311)
### Follow-up work
(Check items when either done or filed as an issue and scheduled for future)
- [x] Rename the "stage" extension to "QA" everywhere in the browser-extension repo, as it is confusing that we use the term "QA" for all other projects but "stage" for the browser extension pre-prod release in some places (https://github.com/hypothesis/browser-extension/pull/309)
- [x] Make it easier to update the QA extension after a new release (@robertknight - this is currently a PITA that requires me to log into the Chrome Web Store, remove and re-add the extension) (_Update: A solution for this is to create a new Chrome profile which is connected to your Hypothesis Google account. This will enable Chrome's extension auto-update to work for the Hypothesis QA extension_ - @robertknight)
- [x] Filter out progress logs from `web-ext sign` (it currently prints many "frames" of a progress. bar as if the Jenkins output log was an interactive terminal) (https://github.com/hypothesis/browser-extension/pull/317)
- [x] Optimize the process of uploading+signing+download the Firefox extension (see [comment](https://github.com/hypothesis/browser-extension/issues/247#issuecomment-596398632) for ideas) (https://github.com/hypothesis/browser-extension/pull/317)
- [ ] Make it possible to publish the prod extension directly from Jenkins
- [ ] Remove need for Chrome extension to request broad permissions upon installation as this makes compliance reviews of new updates more likely which in turn affects our ability to ship new releases promptly
|
1.0
|
Automate the extension release process - ### Problem
Currently our browser extension release process doesn't use the CI/CD Jenkins setup. Releasing the browser extension is therefore a more manual process, which can mean that not all team members can release the extension, or feel comfortable releasing the extension.
### What's Needed
After talking with @robertknight, we agreed that we should move the extension release process into the current CI/CD process that we're already using for other apps. This will help automate the process so that everyone can release the extension as needed.
### Sub-tasks
- [x] Add Jenkins project to build, test and deploy the browser extension (https://github.com/hypothesis/browser-extension/pull/300, https://github.com/hypothesis/browser-extension/pull/301)
- [x] Add method to create a new browser extension version with the latest Hypothesis client (https://github.com/hypothesis/browser-extension/pull/307, [Slack thread](https://hypothes-is.slack.com/archives/C4K6M7P5E/p1582624801011700))
- [x] Trigger an update of the QA browser extension when a new Hypothesis client version is released to production. Production releases of the browser extension will still require manual intervention (https://github.com/hypothesis/client/pull/1877)
- [x] Update [documentation in playbook repository](https://github.com/hypothesis/playbook/blob/master/docs/chrome-extension.md), SO4T to reflect extension release process changes (https://github.com/hypothesis/playbook/pull/270)
- [x] Figure out why the process of uploading, signing and then downloading the Firefox extension using `web-ext` is taking such a long time (see [comment](https://github.com/hypothesis/browser-extension/issues/247#issuecomment-596398632))
- [x] Make a decision about whether to keep or remove the Travis build for the time being (nb. The main affordance Travis provides is that it is accessible to non-Hypothesis developers, whereas Jenkins is not) (@robertknight - I'm proposing to keep this for now. We can always revisit later. See https://github.com/hypothesis/browser-extension/pull/311)
### Follow-up work
(Check items when either done or filed as an issue and scheduled for future)
- [x] Rename the "stage" extension to "QA" everywhere in the browser-extension repo, as it is confusing that we use the term "QA" for all other projects but "stage" for the browser extension pre-prod release in some places (https://github.com/hypothesis/browser-extension/pull/309)
- [x] Make it easier to update the QA extension after a new release (@robertknight - this is currently a PITA that requires me to log into the Chrome Web Store, remove and re-add the extension) (_Update: A solution for this is to create a new Chrome profile which is connected to your Hypothesis Google account. This will enable Chrome's extension auto-update to work for the Hypothesis QA extension_ - @robertknight)
- [x] Filter out progress logs from `web-ext sign` (it currently prints many "frames" of a progress. bar as if the Jenkins output log was an interactive terminal) (https://github.com/hypothesis/browser-extension/pull/317)
- [x] Optimize the process of uploading+signing+download the Firefox extension (see [comment](https://github.com/hypothesis/browser-extension/issues/247#issuecomment-596398632) for ideas) (https://github.com/hypothesis/browser-extension/pull/317)
- [ ] Make it possible to publish the prod extension directly from Jenkins
- [ ] Remove need for Chrome extension to request broad permissions upon installation as this makes compliance reviews of new updates more likely which in turn affects our ability to ship new releases promptly
|
process
|
automate the extension release process problem currently our browser extension release process doesn t use the ci cd jenkins setup releasing the browser extension is therefore a more manual process which can mean that not all team members can release the extension or feel comfortable releasing the extension what s needed after talking with robertknight we agreed that we should move the extension release process into the current ci cd process that we re already using for other apps this will help automate the process so that everyone can release the extension as needed sub tasks add jenkins project to build test and deploy the browser extension add method to create a new browser extension version with the latest hypothesis client trigger an update of the qa browser extension when a new hypothesis client version is released to production production releases of the browser extension will still require manual intervention update to reflect extension release process changes figure out why the process of uploading signing and then downloading the firefox extension using web ext is taking such a long time see make a decision about whether to keep or remove the travis build for the time being nb the main affordance travis provides is that it is accessible to non hypothesis developers whereas jenkins is not robertknight i m proposing to keep this for now we can always revisit later see follow up work check items when either done or filed as an issue and scheduled for future rename the stage extension to qa everywhere in the browser extension repo as it is confusing that we use the term qa for all other projects but stage for the browser extension pre prod release in some places make it easier to update the qa extension after a new release robertknight this is currently a pita that requires me to log into the chrome web store remove and re add the extension update a solution for this is to create a new chrome profile which is connected to your hypothesis google account this will enable chrome s extension auto update to work for the hypothesis qa extension robertknight filter out progress logs from web ext sign it currently prints many frames of a progress bar as if the jenkins output log was an interactive terminal optimize the process of uploading signing download the firefox extension see for ideas make it possible to publish the prod extension directly from jenkins remove need for chrome extension to request broad permissions upon installation as this makes compliance reviews of new updates more likely which in turn affects our ability to ship new releases promptly
| 1
|
17,421
| 23,244,524,579
|
IssuesEvent
|
2022-08-03 18:44:12
|
ORNL-AMO/AMO-Tools-Suite
|
https://api.github.com/repos/ORNL-AMO/AMO-Tools-Suite
|
closed
|
Add hydrogen to gas fuels
|
Process Heating important
|
Issue overview
--------------
* Add new fuel to `GasCompositions` in `GasFlueGasMaterialData.h`
`{"Hydrogen", 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, ???, ???, ???},`
I'm honestly not sure what the last 3 things are supposed to be. All the documentation seems to end with the last compostion value (O2).
I think it might actually be results for heating value and specific grav, if so
Heating value = 61084
Volumetric heating value = 325
Specific Gravity = 0.0696
* Do whatever else you need to to make it work :)
|
1.0
|
Add hydrogen to gas fuels - Issue overview
--------------
* Add new fuel to `GasCompositions` in `GasFlueGasMaterialData.h`
`{"Hydrogen", 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, ???, ???, ???},`
I'm honestly not sure what the last 3 things are supposed to be. All the documentation seems to end with the last compostion value (O2).
I think it might actually be results for heating value and specific grav, if so
Heating value = 61084
Volumetric heating value = 325
Specific Gravity = 0.0696
* Do whatever else you need to to make it work :)
|
process
|
add hydrogen to gas fuels issue overview add new fuel to gascompositions in gasfluegasmaterialdata h hydrogen i m honestly not sure what the last things are supposed to be all the documentation seems to end with the last compostion value i think it might actually be results for heating value and specific grav if so heating value volumetric heating value specific gravity do whatever else you need to to make it work
| 1
|
3,063
| 6,048,548,212
|
IssuesEvent
|
2017-06-12 16:42:32
|
rancher/rancher
|
https://api.github.com/repos/rancher/rancher
|
opened
|
Stack scoped local volumes are not deleted when stack is deleted.
|
kind/bug process/cherry-pick version/1.6
|
**Rancher versions:**
rancher/server: v1.5.x, 1.6.x
**Docker version: (`docker version`,`docker info` preferred)**
Any
**Operating system and kernel: (`cat /etc/os-release`, `uname -r` preferred)**
Any
**Type/provider of hosts: (VirtualBox/Bare-metal/AWS/GCE/DO)**
Any
**Setup details: (single node rancher vs. HA rancher, internal DB vs. external DB)**
Any
**Environment Template: (Cattle/Kubernetes/Swarm/Mesos)**
Cattle
**Steps to Reproduce:**
1. Using compose, create a stack scoped local volume:
```
version: '2'
volumes:
foo: {}
services:
sv1:
image: nginx
volumes:
- foo:/test
```
2. Wait for stack to become active and then delete.
**Results:**
Expected:
On the host, the volume <stackname>_foo_<random> should be deleted.
Actual:
Its not deleted.
**Notes:**
This is caused by how we create local volumes from volume templates. There's a few internal fields we aren't setting correctly.
|
1.0
|
Stack scoped local volumes are not deleted when stack is deleted. - **Rancher versions:**
rancher/server: v1.5.x, 1.6.x
**Docker version: (`docker version`,`docker info` preferred)**
Any
**Operating system and kernel: (`cat /etc/os-release`, `uname -r` preferred)**
Any
**Type/provider of hosts: (VirtualBox/Bare-metal/AWS/GCE/DO)**
Any
**Setup details: (single node rancher vs. HA rancher, internal DB vs. external DB)**
Any
**Environment Template: (Cattle/Kubernetes/Swarm/Mesos)**
Cattle
**Steps to Reproduce:**
1. Using compose, create a stack scoped local volume:
```
version: '2'
volumes:
foo: {}
services:
sv1:
image: nginx
volumes:
- foo:/test
```
2. Wait for stack to become active and then delete.
**Results:**
Expected:
On the host, the volume <stackname>_foo_<random> should be deleted.
Actual:
Its not deleted.
**Notes:**
This is caused by how we create local volumes from volume templates. There's a few internal fields we aren't setting correctly.
|
process
|
stack scoped local volumes are not deleted when stack is deleted rancher versions rancher server x x docker version docker version docker info preferred any operating system and kernel cat etc os release uname r preferred any type provider of hosts virtualbox bare metal aws gce do any setup details single node rancher vs ha rancher internal db vs external db any environment template cattle kubernetes swarm mesos cattle steps to reproduce using compose create a stack scoped local volume version volumes foo services image nginx volumes foo test wait for stack to become active and then delete results expected on the host the volume foo should be deleted actual its not deleted notes this is caused by how we create local volumes from volume templates there s a few internal fields we aren t setting correctly
| 1
|
17,505
| 23,316,042,174
|
IssuesEvent
|
2022-08-08 12:37:07
|
qgis/QGIS
|
https://api.github.com/repos/qgis/QGIS
|
closed
|
The extractlabels algorithm crashes QGIS when no labels are generated and output is set to geojson
|
Feedback Processing Bug
|
### What is the bug or the crash?
The new `native:extractlabels` algorithm crashes QGIS when no labels are generated and output is set to geojson.
Notes:
- It works when saving to other formats (tried shapefile and temporary layer)
- Other processing algorithms seem to have no issue exporting empty geojson (tried with centroid with an empty input)
- In the steps below, for simplicity, I created no layer, but in real world project empty output can arise with scale dependent labels or if you extract an empty extent
### Steps to reproduce the issue
1. blank project
2. open the python console
3. run the following code
```python
import tempfile
processing.runAndLoadResults(
"native:extractlabels",
{
"EXTENT": iface.mapCanvas().extent(),
"SCALE": 1000,
"OUTPUT": os.path.join(tempfile.gettempdir(), "test.geojson"),
}
)
```
4. see crash
### Versions
QGIS version
3.24.1-Tisler
QGIS code revision
5709b82461
Qt version
5.15.2
Python version
3.9.5
GDAL/OGR version
3.4.2
PROJ version
9.0.0
EPSG Registry database version
v10.054 (2022-02-13)
GEOS version
3.10.2-CAPI-1.16.0
SQLite version
3.38.1
PDAL version
2.3.0
PostgreSQL client version
unknown
SpatiaLite version
5.0.1
QWT version
6.1.3
QScintilla2 version
2.11.5
OS version
Windows 10 Version 2009
Active Python plugins
autocurve
dev
plugin_reloader
0.8.1
qfieldsync
dev
QgisModelBaker
dev
qgepplugin
1.0.0
QuickWKT
3.1
swiss_locator
1.3.6
trackable_project_files
v1.2.2
db_manager
0.1.20
processing
2.12.99
### Supported QGIS version
- [X] I'm running a supported QGIS version according to the roadmap.
### New profile
- [X] I tried with a new QGIS profile
### Additional context
Crash report:
## Report Details
**Python Stack Trace**
```
Windows fatal exception: access violation
Current thread 0x000075b8 (most recent call first):
File "C:\OSGeo4W/apps/qgis/./python/plugins\processing\gui\AlgorithmExecutor.py", line 72 in execute
results, ok = alg.run(parameters, context, feedback, {}, False)
File "C:\OSGeo4W/apps/qgis/./python/plugins\processing\core\Processing.py", line 187 in runAlgorithm
ret, results = execute(alg, parameters, context, feedback, catch_exceptions=False)
File "C:\OSGeo4W/apps/qgis/./python/plugins\processing\tools\general.py", line 151 in runAndLoadResults
return Processing.runAlgorithm(alg, parameters=parameters, onFinish=handleAlgorithmResults, feedback=feedback,
File "C:\OSGeo4W\apps\Python39\lib\code.py", line 90 in runcode
exec(code, self.locals)
File "C:\OSGeo4W\apps\Python39\lib\code.py", line 74 in runsource
self.runcode(code)
File "C:\OSGeo4W/apps/qgis/./python\console\console_sci.py", line 559 in runsource
return super(ShellScintilla, self).runsource(source, filename, symbol)
File "C:\OSGeo4W/apps/qgis/./python\console\console_sci.py", line 526 in runCommand
more = self.runsource(src)
File "C:\OSGeo4W/apps/qgis/./python\console\console_sci.py", line 506 in entered
self.runCommand(self.text())
File "C:\OSGeo4W/apps/qgis/./python\console\console_sci.py", line 344 in keyPressEvent
self.entered()
```
**Stack Trace**
No stack trace is available.
**QGIS Info**
QGIS Version: 3.24.1-Tisler
QGIS code revision: 5709b82461
Compiled against Qt: 5.15.2
Running against Qt: 5.15.2
Compiled against GDAL: 3.4.2
Running against GDAL: 3.4.2
**System Info**
CPU Type: x86_64
Kernel Type: winnt
Kernel Version: 10.0.22000
|
1.0
|
The extractlabels algorithm crashes QGIS when no labels are generated and output is set to geojson - ### What is the bug or the crash?
The new `native:extractlabels` algorithm crashes QGIS when no labels are generated and output is set to geojson.
Notes:
- It works when saving to other formats (tried shapefile and temporary layer)
- Other processing algorithms seem to have no issue exporting empty geojson (tried with centroid with an empty input)
- In the steps below, for simplicity, I created no layer, but in real world project empty output can arise with scale dependent labels or if you extract an empty extent
### Steps to reproduce the issue
1. blank project
2. open the python console
3. run the following code
```python
import tempfile
processing.runAndLoadResults(
"native:extractlabels",
{
"EXTENT": iface.mapCanvas().extent(),
"SCALE": 1000,
"OUTPUT": os.path.join(tempfile.gettempdir(), "test.geojson"),
}
)
```
4. see crash
### Versions
QGIS version
3.24.1-Tisler
QGIS code revision
5709b82461
Qt version
5.15.2
Python version
3.9.5
GDAL/OGR version
3.4.2
PROJ version
9.0.0
EPSG Registry database version
v10.054 (2022-02-13)
GEOS version
3.10.2-CAPI-1.16.0
SQLite version
3.38.1
PDAL version
2.3.0
PostgreSQL client version
unknown
SpatiaLite version
5.0.1
QWT version
6.1.3
QScintilla2 version
2.11.5
OS version
Windows 10 Version 2009
Active Python plugins
autocurve
dev
plugin_reloader
0.8.1
qfieldsync
dev
QgisModelBaker
dev
qgepplugin
1.0.0
QuickWKT
3.1
swiss_locator
1.3.6
trackable_project_files
v1.2.2
db_manager
0.1.20
processing
2.12.99
### Supported QGIS version
- [X] I'm running a supported QGIS version according to the roadmap.
### New profile
- [X] I tried with a new QGIS profile
### Additional context
Crash report:
## Report Details
**Python Stack Trace**
```
Windows fatal exception: access violation
Current thread 0x000075b8 (most recent call first):
File "C:\OSGeo4W/apps/qgis/./python/plugins\processing\gui\AlgorithmExecutor.py", line 72 in execute
results, ok = alg.run(parameters, context, feedback, {}, False)
File "C:\OSGeo4W/apps/qgis/./python/plugins\processing\core\Processing.py", line 187 in runAlgorithm
ret, results = execute(alg, parameters, context, feedback, catch_exceptions=False)
File "C:\OSGeo4W/apps/qgis/./python/plugins\processing\tools\general.py", line 151 in runAndLoadResults
return Processing.runAlgorithm(alg, parameters=parameters, onFinish=handleAlgorithmResults, feedback=feedback,
File "C:\OSGeo4W\apps\Python39\lib\code.py", line 90 in runcode
exec(code, self.locals)
File "C:\OSGeo4W\apps\Python39\lib\code.py", line 74 in runsource
self.runcode(code)
File "C:\OSGeo4W/apps/qgis/./python\console\console_sci.py", line 559 in runsource
return super(ShellScintilla, self).runsource(source, filename, symbol)
File "C:\OSGeo4W/apps/qgis/./python\console\console_sci.py", line 526 in runCommand
more = self.runsource(src)
File "C:\OSGeo4W/apps/qgis/./python\console\console_sci.py", line 506 in entered
self.runCommand(self.text())
File "C:\OSGeo4W/apps/qgis/./python\console\console_sci.py", line 344 in keyPressEvent
self.entered()
```
**Stack Trace**
No stack trace is available.
**QGIS Info**
QGIS Version: 3.24.1-Tisler
QGIS code revision: 5709b82461
Compiled against Qt: 5.15.2
Running against Qt: 5.15.2
Compiled against GDAL: 3.4.2
Running against GDAL: 3.4.2
**System Info**
CPU Type: x86_64
Kernel Type: winnt
Kernel Version: 10.0.22000
|
process
|
the extractlabels algorithm crashes qgis when no labels are generated and output is set to geojson what is the bug or the crash the new native extractlabels algorithm crashes qgis when no labels are generated and output is set to geojson notes it works when saving to other formats tried shapefile and temporary layer other processing algorithms seem to have no issue exporting empty geojson tried with centroid with an empty input in the steps below for simplicity i created no layer but in real world project empty output can arise with scale dependent labels or if you extract an empty extent steps to reproduce the issue blank project open the python console run the following code python import tempfile processing runandloadresults native extractlabels extent iface mapcanvas extent scale output os path join tempfile gettempdir test geojson see crash versions qgis version tisler qgis code revision qt version python version gdal ogr version proj version epsg registry database version geos version capi sqlite version pdal version postgresql client version unknown spatialite version qwt version version os version windows version active python plugins autocurve dev plugin reloader qfieldsync dev qgismodelbaker dev qgepplugin quickwkt swiss locator trackable project files db manager processing supported qgis version i m running a supported qgis version according to the roadmap new profile i tried with a new qgis profile additional context crash report report details python stack trace windows fatal exception access violation current thread most recent call first file c apps qgis python plugins processing gui algorithmexecutor py line in execute results ok alg run parameters context feedback false file c apps qgis python plugins processing core processing py line in runalgorithm ret results execute alg parameters context feedback catch exceptions false file c apps qgis python plugins processing tools general py line in runandloadresults return processing runalgorithm alg parameters parameters onfinish handlealgorithmresults feedback feedback file c apps lib code py line in runcode exec code self locals file c apps lib code py line in runsource self runcode code file c apps qgis python console console sci py line in runsource return super shellscintilla self runsource source filename symbol file c apps qgis python console console sci py line in runcommand more self runsource src file c apps qgis python console console sci py line in entered self runcommand self text file c apps qgis python console console sci py line in keypressevent self entered stack trace no stack trace is available qgis info qgis version tisler qgis code revision compiled against qt running against qt compiled against gdal running against gdal system info cpu type kernel type winnt kernel version
| 1
|
253,533
| 21,687,572,850
|
IssuesEvent
|
2022-05-09 12:46:40
|
damccorm/test-migration-target
|
https://api.github.com/repos/damccorm/test-migration-target
|
opened
|
Python PostCommit Tests are Flaky
|
bug P3 sdk-py-core testing
|
I will use this as an umbrella bug, create sub task and assign to folks working on Python in general. I will try to do a round-robin assignment.
The goal is to improve stability of Py2, 3.5, 3.6, 3.7 postcommits to be working \>80% of the time [1].
/cc (you might get issues assigned) [~pabloem] [~udim] [~chamikara] [~tvalentyn]
[1] http://104.154.241.245/d/McTAiu0ik/stability-critical-jobs-status?orgId=1
Imported from Jira [BEAM-8193](https://issues.apache.org/jira/browse/BEAM-8193). Original Jira may contain additional context.
Reported by: altay.
|
1.0
|
Python PostCommit Tests are Flaky - I will use this as an umbrella bug, create sub task and assign to folks working on Python in general. I will try to do a round-robin assignment.
The goal is to improve stability of Py2, 3.5, 3.6, 3.7 postcommits to be working \>80% of the time [1].
/cc (you might get issues assigned) [~pabloem] [~udim] [~chamikara] [~tvalentyn]
[1] http://104.154.241.245/d/McTAiu0ik/stability-critical-jobs-status?orgId=1
Imported from Jira [BEAM-8193](https://issues.apache.org/jira/browse/BEAM-8193). Original Jira may contain additional context.
Reported by: altay.
|
non_process
|
python postcommit tests are flaky i will use this as an umbrella bug create sub task and assign to folks working on python in general i will try to do a round robin assignment the goal is to improve stability of postcommits to be working of the time cc you might get issues assigned imported from jira original jira may contain additional context reported by altay
| 0
|
607,013
| 18,772,060,219
|
IssuesEvent
|
2021-11-07 01:40:32
|
JuniorUdale/MoreFluff
|
https://api.github.com/repos/JuniorUdale/MoreFluff
|
closed
|
Fix Triangle Beam
|
High Priority
|
you need to change slots _just_ after putting a dice in to avoid the old one shooter exploit (except not infinite but it's still not great
|
1.0
|
Fix Triangle Beam - you need to change slots _just_ after putting a dice in to avoid the old one shooter exploit (except not infinite but it's still not great
|
non_process
|
fix triangle beam you need to change slots just after putting a dice in to avoid the old one shooter exploit except not infinite but it s still not great
| 0
|
569,365
| 17,012,748,326
|
IssuesEvent
|
2021-07-02 07:47:03
|
tomhughes/trac-tickets
|
https://api.github.com/repos/tomhughes/trac-tickets
|
opened
|
adding option to only get "newer than" - objects
|
Component: api Priority: minor Type: enhancement
|
**[Submitted to the original trac issue database at 3.26pm, Thursday, 10th November 2005]**
An option to grab only those objects that are newer than a specific time would
enable clients to cache data performantly.
"newer than" must return all objects that changed since the given time, so a
last changed timestamp are needed for every object.
Either, the referencing objects of all changed objects are transfered as well.
Then this option is nice as stand alone for viewing only recent changes.
Or it really only transfer those objects that have changed, in which case the
performance is optimal for clients using caches.
Note, that for the second option, this cannot be done correctly with GPX, e.g.
it must be possible to transfer line segments without tracks or property-keys
without any object.
When using the second option with the XML scheme proposed in the wiki, it has to
be allowed, that objects are transfered without their referencing object before
(the clause "There must be no reference to an id, which has not been transfered
yet." is disabled)
|
1.0
|
adding option to only get "newer than" - objects - **[Submitted to the original trac issue database at 3.26pm, Thursday, 10th November 2005]**
An option to grab only those objects that are newer than a specific time would
enable clients to cache data performantly.
"newer than" must return all objects that changed since the given time, so a
last changed timestamp are needed for every object.
Either, the referencing objects of all changed objects are transfered as well.
Then this option is nice as stand alone for viewing only recent changes.
Or it really only transfer those objects that have changed, in which case the
performance is optimal for clients using caches.
Note, that for the second option, this cannot be done correctly with GPX, e.g.
it must be possible to transfer line segments without tracks or property-keys
without any object.
When using the second option with the XML scheme proposed in the wiki, it has to
be allowed, that objects are transfered without their referencing object before
(the clause "There must be no reference to an id, which has not been transfered
yet." is disabled)
|
non_process
|
adding option to only get newer than objects an option to grab only those objects that are newer than a specific time would enable clients to cache data performantly newer than must return all objects that changed since the given time so a last changed timestamp are needed for every object either the referencing objects of all changed objects are transfered as well then this option is nice as stand alone for viewing only recent changes or it really only transfer those objects that have changed in which case the performance is optimal for clients using caches note that for the second option this cannot be done correctly with gpx e g it must be possible to transfer line segments without tracks or property keys without any object when using the second option with the xml scheme proposed in the wiki it has to be allowed that objects are transfered without their referencing object before the clause there must be no reference to an id which has not been transfered yet is disabled
| 0
|
5,248
| 8,039,259,776
|
IssuesEvent
|
2018-07-30 17:49:11
|
GoogleCloudPlatform/google-cloud-python
|
https://api.github.com/repos/GoogleCloudPlatform/google-cloud-python
|
closed
|
Logging: system test failure in 'list_sinks'
|
api: logging auth flaky testing type: process
|
See: https://circleci.com/gh/GoogleCloudPlatform/google-cloud-python/7405
```python
_________________________ TestLogging.test_list_sinks __________________________
self = <test_system.TestLogging testMethod=test_list_sinks>
def test_list_sinks(self):
SINK_NAME = 'test-list-sinks%s' % (_RESOURCE_ID,)
> uri = self._init_storage_bucket()
tests/system/test_system.py:471:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/system/test_system.py:389: in _init_storage_bucket
retry(bucket.create)()
../.nox/sys-2-7/lib/python2.7/site-packages/test_utils/retry.py:95: in wrapped_function
return to_wrap(*args, **kwargs)
../.nox/sys-2-7/lib/python2.7/site-packages/google/cloud/storage/bucket.py:299: in create
data=properties, _target_object=self)
../.nox/sys-2-7/lib/python2.7/site-packages/google/cloud/_http.py:290: in api_request
headers=headers, target_object=_target_object)
../.nox/sys-2-7/lib/python2.7/site-packages/google/cloud/_http.py:183: in _make_request
return self._do_request(method, url, headers, data, target_object)
../.nox/sys-2-7/lib/python2.7/site-packages/google/cloud/_http.py:212: in _do_request
url=url, method=method, headers=headers, data=data)
../.nox/sys-2-7/lib/python2.7/site-packages/google/auth/transport/requests.py:198: in request
self._auth_request, method, url, request_headers)
../.nox/sys-2-7/lib/python2.7/site-packages/google/auth/credentials.py:122: in before_request
self.refresh(request)
../.nox/sys-2-7/lib/python2.7/site-packages/google/oauth2/service_account.py:322: in refresh
request, self._token_uri, assertion)
../.nox/sys-2-7/lib/python2.7/site-packages/google/oauth2/_client.py:145: in jwt_grant
response_data = _token_endpoint_request(request, token_uri, body)
../.nox/sys-2-7/lib/python2.7/site-packages/google/oauth2/_client.py:111: in _token_endpoint_request
_handle_error_response(response_body)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
response_body = '{
"error" : "invalid_grant",
"error_description" : "Invalid JWT: No valid verifier found for issuer."
}'
def _handle_error_response(response_body):
""""Translates an error response into an exception.
Args:
response_body (str): The decoded response data.
Raises:
google.auth.exceptions.RefreshError
"""
try:
error_data = json.loads(response_body)
error_details = '{}: {}'.format(
error_data['error'],
error_data.get('error_description'))
# If no details could be extracted, use the response data.
except (KeyError, ValueError):
error_details = response_body
raise exceptions.RefreshError(
> error_details, response_body)
E RefreshError: ('invalid_grant: Invalid JWT: No valid verifier found for issuer.', u'{\n "error" : "invalid_grant",\n "error_description" : "Invalid JWT: No valid verifier found for issuer."\n}')
../.nox/sys-2-7/lib/python2.7/site-packages/google/oauth2/_client.py:61: RefreshError
```
|
1.0
|
Logging: system test failure in 'list_sinks' - See: https://circleci.com/gh/GoogleCloudPlatform/google-cloud-python/7405
```python
_________________________ TestLogging.test_list_sinks __________________________
self = <test_system.TestLogging testMethod=test_list_sinks>
def test_list_sinks(self):
SINK_NAME = 'test-list-sinks%s' % (_RESOURCE_ID,)
> uri = self._init_storage_bucket()
tests/system/test_system.py:471:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/system/test_system.py:389: in _init_storage_bucket
retry(bucket.create)()
../.nox/sys-2-7/lib/python2.7/site-packages/test_utils/retry.py:95: in wrapped_function
return to_wrap(*args, **kwargs)
../.nox/sys-2-7/lib/python2.7/site-packages/google/cloud/storage/bucket.py:299: in create
data=properties, _target_object=self)
../.nox/sys-2-7/lib/python2.7/site-packages/google/cloud/_http.py:290: in api_request
headers=headers, target_object=_target_object)
../.nox/sys-2-7/lib/python2.7/site-packages/google/cloud/_http.py:183: in _make_request
return self._do_request(method, url, headers, data, target_object)
../.nox/sys-2-7/lib/python2.7/site-packages/google/cloud/_http.py:212: in _do_request
url=url, method=method, headers=headers, data=data)
../.nox/sys-2-7/lib/python2.7/site-packages/google/auth/transport/requests.py:198: in request
self._auth_request, method, url, request_headers)
../.nox/sys-2-7/lib/python2.7/site-packages/google/auth/credentials.py:122: in before_request
self.refresh(request)
../.nox/sys-2-7/lib/python2.7/site-packages/google/oauth2/service_account.py:322: in refresh
request, self._token_uri, assertion)
../.nox/sys-2-7/lib/python2.7/site-packages/google/oauth2/_client.py:145: in jwt_grant
response_data = _token_endpoint_request(request, token_uri, body)
../.nox/sys-2-7/lib/python2.7/site-packages/google/oauth2/_client.py:111: in _token_endpoint_request
_handle_error_response(response_body)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
response_body = '{
"error" : "invalid_grant",
"error_description" : "Invalid JWT: No valid verifier found for issuer."
}'
def _handle_error_response(response_body):
""""Translates an error response into an exception.
Args:
response_body (str): The decoded response data.
Raises:
google.auth.exceptions.RefreshError
"""
try:
error_data = json.loads(response_body)
error_details = '{}: {}'.format(
error_data['error'],
error_data.get('error_description'))
# If no details could be extracted, use the response data.
except (KeyError, ValueError):
error_details = response_body
raise exceptions.RefreshError(
> error_details, response_body)
E RefreshError: ('invalid_grant: Invalid JWT: No valid verifier found for issuer.', u'{\n "error" : "invalid_grant",\n "error_description" : "Invalid JWT: No valid verifier found for issuer."\n}')
../.nox/sys-2-7/lib/python2.7/site-packages/google/oauth2/_client.py:61: RefreshError
```
|
process
|
logging system test failure in list sinks see python testlogging test list sinks self def test list sinks self sink name test list sinks s resource id uri self init storage bucket tests system test system py tests system test system py in init storage bucket retry bucket create nox sys lib site packages test utils retry py in wrapped function return to wrap args kwargs nox sys lib site packages google cloud storage bucket py in create data properties target object self nox sys lib site packages google cloud http py in api request headers headers target object target object nox sys lib site packages google cloud http py in make request return self do request method url headers data target object nox sys lib site packages google cloud http py in do request url url method method headers headers data data nox sys lib site packages google auth transport requests py in request self auth request method url request headers nox sys lib site packages google auth credentials py in before request self refresh request nox sys lib site packages google service account py in refresh request self token uri assertion nox sys lib site packages google client py in jwt grant response data token endpoint request request token uri body nox sys lib site packages google client py in token endpoint request handle error response response body response body error invalid grant error description invalid jwt no valid verifier found for issuer def handle error response response body translates an error response into an exception args response body str the decoded response data raises google auth exceptions refresherror try error data json loads response body error details format error data error data get error description if no details could be extracted use the response data except keyerror valueerror error details response body raise exceptions refresherror error details response body e refresherror invalid grant invalid jwt no valid verifier found for issuer u n error invalid grant n error description invalid jwt no valid verifier found for issuer n nox sys lib site packages google client py refresherror
| 1
|
8,997
| 12,108,987,008
|
IssuesEvent
|
2020-04-21 08:00:25
|
prisma/prisma-client-js
|
https://api.github.com/repos/prisma/prisma-client-js
|
closed
|
Date time only accepts ISO 8601 format
|
kind/feature process/candidate topic: types
|
This topic ties into the feature - "custom scalar support".
From a user:
> In running the latest version, Photon accepts certain ISO 8601 formats in a DateTime field but not others. Specifically, using the example from the Prisma1 docs, the first three formats throw an error while the fourth does not. Anyone else getting this?
<img width="278" alt="Screen Shot 2019-08-31 at 12 33 24 PM" src="https://user-images.githubusercontent.com/746482/64103066-92d5e280-cd71-11e9-9c33-48ca315786c8.png">
|
1.0
|
Date time only accepts ISO 8601 format - This topic ties into the feature - "custom scalar support".
From a user:
> In running the latest version, Photon accepts certain ISO 8601 formats in a DateTime field but not others. Specifically, using the example from the Prisma1 docs, the first three formats throw an error while the fourth does not. Anyone else getting this?
<img width="278" alt="Screen Shot 2019-08-31 at 12 33 24 PM" src="https://user-images.githubusercontent.com/746482/64103066-92d5e280-cd71-11e9-9c33-48ca315786c8.png">
|
process
|
date time only accepts iso format this topic ties into the feature custom scalar support from a user in running the latest version photon accepts certain iso formats in a datetime field but not others specifically using the example from the docs the first three formats throw an error while the fourth does not anyone else getting this img width alt screen shot at pm src
| 1
|
91,564
| 15,856,528,580
|
IssuesEvent
|
2021-04-08 02:33:23
|
rammatzkvosky/cwa-website
|
https://api.github.com/repos/rammatzkvosky/cwa-website
|
opened
|
CVE-2020-8244 (Medium) detected in bl-1.2.2.tgz
|
security vulnerability
|
## CVE-2020-8244 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>bl-1.2.2.tgz</b></p></summary>
<p>Buffer List: collect buffers and access with a standard readable Buffer interface, streamable too!</p>
<p>Library home page: <a href="https://registry.npmjs.org/bl/-/bl-1.2.2.tgz">https://registry.npmjs.org/bl/-/bl-1.2.2.tgz</a></p>
<p>Path to dependency file: cwa-website/package.json</p>
<p>Path to vulnerable library: cwa-website/node_modules/bl/package.json</p>
<p>
Dependency Hierarchy:
- gulp-imagemin-6.2.0.tgz (Root Library)
- imagemin-gifsicle-6.0.1.tgz
- gifsicle-4.0.1.tgz
- bin-build-3.0.0.tgz
- decompress-4.2.1.tgz
- decompress-tar-4.1.1.tgz
- tar-stream-1.6.2.tgz
- :x: **bl-1.2.2.tgz** (Vulnerable Library)
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
A buffer over-read vulnerability exists in bl <4.0.3, <3.0.1, <2.2.1, and <1.2.3 which could allow an attacker to supply user input (even typed) that if it ends up in consume() argument and can become negative, the BufferList state can be corrupted, tricking it into exposing uninitialized memory via regular .slice() calls.
<p>Publish Date: 2020-08-30
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-8244>CVE-2020-8244</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.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: Low
- Integrity Impact: None
- Availability Impact: Low
</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-2020-8244">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-8244</a></p>
<p>Release Date: 2020-07-21</p>
<p>Fix Resolution: 2.2.1,3.0.1,4.0.3</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"bl","packageVersion":"1.2.2","packageFilePaths":["/package.json"],"isTransitiveDependency":true,"dependencyTree":"gulp-imagemin:6.2.0;imagemin-gifsicle:6.0.1;gifsicle:4.0.1;bin-build:3.0.0;decompress:4.2.1;decompress-tar:4.1.1;tar-stream:1.6.2;bl:1.2.2","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.2.1,3.0.1,4.0.3"}],"baseBranches":[],"vulnerabilityIdentifier":"CVE-2020-8244","vulnerabilityDetails":"A buffer over-read vulnerability exists in bl \u003c4.0.3, \u003c3.0.1, \u003c2.2.1, and \u003c1.2.3 which could allow an attacker to supply user input (even typed) that if it ends up in consume() argument and can become negative, the BufferList state can be corrupted, tricking it into exposing uninitialized memory via regular .slice() calls.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-8244","cvss3Severity":"medium","cvss3Score":"6.5","cvss3Metrics":{"A":"Low","AC":"Low","PR":"None","S":"Unchanged","C":"Low","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
|
True
|
CVE-2020-8244 (Medium) detected in bl-1.2.2.tgz - ## CVE-2020-8244 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>bl-1.2.2.tgz</b></p></summary>
<p>Buffer List: collect buffers and access with a standard readable Buffer interface, streamable too!</p>
<p>Library home page: <a href="https://registry.npmjs.org/bl/-/bl-1.2.2.tgz">https://registry.npmjs.org/bl/-/bl-1.2.2.tgz</a></p>
<p>Path to dependency file: cwa-website/package.json</p>
<p>Path to vulnerable library: cwa-website/node_modules/bl/package.json</p>
<p>
Dependency Hierarchy:
- gulp-imagemin-6.2.0.tgz (Root Library)
- imagemin-gifsicle-6.0.1.tgz
- gifsicle-4.0.1.tgz
- bin-build-3.0.0.tgz
- decompress-4.2.1.tgz
- decompress-tar-4.1.1.tgz
- tar-stream-1.6.2.tgz
- :x: **bl-1.2.2.tgz** (Vulnerable Library)
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
A buffer over-read vulnerability exists in bl <4.0.3, <3.0.1, <2.2.1, and <1.2.3 which could allow an attacker to supply user input (even typed) that if it ends up in consume() argument and can become negative, the BufferList state can be corrupted, tricking it into exposing uninitialized memory via regular .slice() calls.
<p>Publish Date: 2020-08-30
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-8244>CVE-2020-8244</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.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: Low
- Integrity Impact: None
- Availability Impact: Low
</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-2020-8244">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-8244</a></p>
<p>Release Date: 2020-07-21</p>
<p>Fix Resolution: 2.2.1,3.0.1,4.0.3</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"bl","packageVersion":"1.2.2","packageFilePaths":["/package.json"],"isTransitiveDependency":true,"dependencyTree":"gulp-imagemin:6.2.0;imagemin-gifsicle:6.0.1;gifsicle:4.0.1;bin-build:3.0.0;decompress:4.2.1;decompress-tar:4.1.1;tar-stream:1.6.2;bl:1.2.2","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.2.1,3.0.1,4.0.3"}],"baseBranches":[],"vulnerabilityIdentifier":"CVE-2020-8244","vulnerabilityDetails":"A buffer over-read vulnerability exists in bl \u003c4.0.3, \u003c3.0.1, \u003c2.2.1, and \u003c1.2.3 which could allow an attacker to supply user input (even typed) that if it ends up in consume() argument and can become negative, the BufferList state can be corrupted, tricking it into exposing uninitialized memory via regular .slice() calls.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-8244","cvss3Severity":"medium","cvss3Score":"6.5","cvss3Metrics":{"A":"Low","AC":"Low","PR":"None","S":"Unchanged","C":"Low","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
|
non_process
|
cve medium detected in bl tgz cve medium severity vulnerability vulnerable library bl tgz buffer list collect buffers and access with a standard readable buffer interface streamable too library home page a href path to dependency file cwa website package json path to vulnerable library cwa website node modules bl package json dependency hierarchy gulp imagemin tgz root library imagemin gifsicle tgz gifsicle tgz bin build tgz decompress tgz decompress tar tgz tar stream tgz x bl tgz vulnerable library vulnerability details a buffer over read vulnerability exists in bl and which could allow an attacker to supply user input even typed that if it ends up in consume argument and can become negative the bufferlist state can be corrupted tricking it into exposing uninitialized memory via regular slice calls 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 low integrity impact none availability impact low for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution isopenpronvulnerability true ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree gulp imagemin imagemin gifsicle gifsicle bin build decompress decompress tar tar stream bl isminimumfixversionavailable true minimumfixversion basebranches vulnerabilityidentifier cve vulnerabilitydetails a buffer over read vulnerability exists in bl and which could allow an attacker to supply user input even typed that if it ends up in consume argument and can become negative the bufferlist state can be corrupted tricking it into exposing uninitialized memory via regular slice calls vulnerabilityurl
| 0
|
9,521
| 12,499,633,460
|
IssuesEvent
|
2020-06-01 20:32:26
|
pelias/pelias
|
https://api.github.com/repos/pelias/pelias
|
closed
|
Add popularity scores to landmarks
|
glorious future processed
|
Many landmarks or locations have common names, _Union Square_, _Statue of Liberty_, _Main Street_, etc. It is impossible to predict their sort order in results at the moment. Elasticsearch will often assign them identical scores. Therefore the order is arbitrary.
When searching for `Statue of Liberty`, however, you expect that the one in Manhattan will be at the very top (if no focus point was specified).
|
1.0
|
Add popularity scores to landmarks - Many landmarks or locations have common names, _Union Square_, _Statue of Liberty_, _Main Street_, etc. It is impossible to predict their sort order in results at the moment. Elasticsearch will often assign them identical scores. Therefore the order is arbitrary.
When searching for `Statue of Liberty`, however, you expect that the one in Manhattan will be at the very top (if no focus point was specified).
|
process
|
add popularity scores to landmarks many landmarks or locations have common names union square statue of liberty main street etc it is impossible to predict their sort order in results at the moment elasticsearch will often assign them identical scores therefore the order is arbitrary when searching for statue of liberty however you expect that the one in manhattan will be at the very top if no focus point was specified
| 1
|
4,814
| 7,702,292,359
|
IssuesEvent
|
2018-05-21 01:12:40
|
riboseinc/open.ribose.com
|
https://api.github.com/repos/riboseinc/open.ribose.com
|
opened
|
Provide spec summaries (replacing full spec contents, where copied)
|
🏀 teamwork/process
|
Jekyll Open Hub theme does not advocate duplicating full specification texts into Open Project sites. This is not DRY, manually maintaining copies of content in sync is unnecessary friction.
While it seems definitely not strictly necessary, if it _is_ desirable for some reason to include a copy of such content (spec contents, software package docs) into Open Project sites, a feature for Jekyll Open Hub theme, or build/CI configurations, should be requested to enable this sort of content to be pulled automatically from third-party sources (IETF, RTD).
In meantime, the designs at hand seem to offer the space for software/spec content. Jekyll Open Hub theme recommends to provide a description or useful summary in that case, which would _include_ high-level information about the purpose, and _exclude_ any changeable specifics such as installation instructions.
Some specs on currently implemented sites (RNP and Metanorma) include full contents instead of summary. That should be changed, options:
* Include custom-crafted original spec description just for Ribose Open side (ideal option)
* Copy IETF abstract, if available
* Copy introduction part of spec’s GitHub README, if available
For the time being, going with the non-ideal options.
|
1.0
|
Provide spec summaries (replacing full spec contents, where copied) - Jekyll Open Hub theme does not advocate duplicating full specification texts into Open Project sites. This is not DRY, manually maintaining copies of content in sync is unnecessary friction.
While it seems definitely not strictly necessary, if it _is_ desirable for some reason to include a copy of such content (spec contents, software package docs) into Open Project sites, a feature for Jekyll Open Hub theme, or build/CI configurations, should be requested to enable this sort of content to be pulled automatically from third-party sources (IETF, RTD).
In meantime, the designs at hand seem to offer the space for software/spec content. Jekyll Open Hub theme recommends to provide a description or useful summary in that case, which would _include_ high-level information about the purpose, and _exclude_ any changeable specifics such as installation instructions.
Some specs on currently implemented sites (RNP and Metanorma) include full contents instead of summary. That should be changed, options:
* Include custom-crafted original spec description just for Ribose Open side (ideal option)
* Copy IETF abstract, if available
* Copy introduction part of spec’s GitHub README, if available
For the time being, going with the non-ideal options.
|
process
|
provide spec summaries replacing full spec contents where copied jekyll open hub theme does not advocate duplicating full specification texts into open project sites this is not dry manually maintaining copies of content in sync is unnecessary friction while it seems definitely not strictly necessary if it is desirable for some reason to include a copy of such content spec contents software package docs into open project sites a feature for jekyll open hub theme or build ci configurations should be requested to enable this sort of content to be pulled automatically from third party sources ietf rtd in meantime the designs at hand seem to offer the space for software spec content jekyll open hub theme recommends to provide a description or useful summary in that case which would include high level information about the purpose and exclude any changeable specifics such as installation instructions some specs on currently implemented sites rnp and metanorma include full contents instead of summary that should be changed options include custom crafted original spec description just for ribose open side ideal option copy ietf abstract if available copy introduction part of spec’s github readme if available for the time being going with the non ideal options
| 1
|
65,755
| 3,240,178,014
|
IssuesEvent
|
2015-10-15 01:14:36
|
Jonnycake/SimpleSite
|
https://api.github.com/repos/Jonnycake/SimpleSite
|
opened
|
DBAbstraction Interface
|
1.0.0-Development BLOCKER Complexity: 4 enhancement Future Release Helper Classes Priority: 1
|
I would like an interface created to allow for substitution of different database abstraction classes. This will make it easier to implement and extend SimpleDB's functionality. I'm labeling this as a 4 due to complexity of planning not so much coding.
|
1.0
|
DBAbstraction Interface - I would like an interface created to allow for substitution of different database abstraction classes. This will make it easier to implement and extend SimpleDB's functionality. I'm labeling this as a 4 due to complexity of planning not so much coding.
|
non_process
|
dbabstraction interface i would like an interface created to allow for substitution of different database abstraction classes this will make it easier to implement and extend simpledb s functionality i m labeling this as a due to complexity of planning not so much coding
| 0
|
87,189
| 8,066,854,512
|
IssuesEvent
|
2018-08-04 21:12:08
|
paypal/NNAnalytics
|
https://api.github.com/repos/paypal/NNAnalytics
|
closed
|
TestWithMiniCluster.testSaveNamespace failing randomly
|
tests
|
#89 showed that the reason for this was because:
```
TestWithMiniCluster > testSaveNamespace FAILED
java.lang.AssertionError:
Expected: a string containing "Done."
but: was "Already saving namespace."
at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:20)
at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:8)
at TestWithMiniCluster.testSaveNamespace(TestWithMiniCluster.java:207)
```
NNA was already in the middle of saving namespace. Likely due to `testSaveLegacyNamespace`.
A simple retry logic should be enough to remedy.
|
1.0
|
TestWithMiniCluster.testSaveNamespace failing randomly - #89 showed that the reason for this was because:
```
TestWithMiniCluster > testSaveNamespace FAILED
java.lang.AssertionError:
Expected: a string containing "Done."
but: was "Already saving namespace."
at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:20)
at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:8)
at TestWithMiniCluster.testSaveNamespace(TestWithMiniCluster.java:207)
```
NNA was already in the middle of saving namespace. Likely due to `testSaveLegacyNamespace`.
A simple retry logic should be enough to remedy.
|
non_process
|
testwithminicluster testsavenamespace failing randomly showed that the reason for this was because testwithminicluster testsavenamespace failed java lang assertionerror expected a string containing done but was already saving namespace at org hamcrest matcherassert assertthat matcherassert java at org hamcrest matcherassert assertthat matcherassert java at testwithminicluster testsavenamespace testwithminicluster java nna was already in the middle of saving namespace likely due to testsavelegacynamespace a simple retry logic should be enough to remedy
| 0
|
21,880
| 30,324,022,200
|
IssuesEvent
|
2023-07-10 21:45:30
|
python/cpython
|
https://api.github.com/repos/python/cpython
|
closed
|
ProcessPoolExecutor deadlock when a child process crashes while data is being sent in call queue
|
type-bug topic-multiprocessing
|
**Bug report**
When using a ProcessPoolExecutor with forked child processes, if one of the child processes suddenly dies (segmentation fault, not a Python exception) and if simultaneously data is being sent into the call queue, then the parent process hangs forever.
*Reproduction*
```
import ctypes
from concurrent.futures import ProcessPoolExecutor
def segfault():
ctypes.string_at(0)
def func(i, data):
print(f"Start {i}.")
if i == 1:
segfault()
print(f"Done {i}.")
return i
data = list(range(100_000_000))
count = 10
with ProcessPoolExecutor(2) as pool:
list(pool.map(func, range(count), [data] * count))
print(f"OK")
```
In Python 3.8.10 it raises a BrokenProcessPool exception whereas in 3.9.13 and 3.10.5 it hangs.
*Analysis*
When a crash happens in a child process, all workers are terminated and they stop reading in communication pipes. However if data is being send in the call queue, the call queue thread which writes data from buffer to pipe (`multiprocessing.queues.Queue._feed`) can get stuck in `send_bytes(obj)` when the unix pipe it's writing to is full. `_ExecutorManagerThread` is blocked in `self.join_executor_internals()` on line https://github.com/python/cpython/blob/da4912885f11f525a82a83f795ebffba06560e13/Lib/concurrent/futures/process.py#L515 (called from `self.terminate_broken()`). The main thread itself is blocked on https://github.com/python/cpython/blob/da4912885f11f525a82a83f795ebffba06560e13/Lib/concurrent/futures/process.py#L775 coming from the `__exit__` method of the Executor.
*Proposed solution*
Drain call queue buffer either in `terminate_broken` method before calling `join_executor_internals` or in queue `close` method.
I will create a pull request with a possible implementation.
**Your environment**
- CPython versions tested on: reproduced in 3.10.5 and 3.9.13 (works well in 3.8.10: BrokenProcessPool exception)
- Operating system and architecture: Linux, x86_64
<!-- gh-linked-prs -->
### Linked PRs
* gh-94784
<!-- /gh-linked-prs -->
|
1.0
|
ProcessPoolExecutor deadlock when a child process crashes while data is being sent in call queue - **Bug report**
When using a ProcessPoolExecutor with forked child processes, if one of the child processes suddenly dies (segmentation fault, not a Python exception) and if simultaneously data is being sent into the call queue, then the parent process hangs forever.
*Reproduction*
```
import ctypes
from concurrent.futures import ProcessPoolExecutor
def segfault():
ctypes.string_at(0)
def func(i, data):
print(f"Start {i}.")
if i == 1:
segfault()
print(f"Done {i}.")
return i
data = list(range(100_000_000))
count = 10
with ProcessPoolExecutor(2) as pool:
list(pool.map(func, range(count), [data] * count))
print(f"OK")
```
In Python 3.8.10 it raises a BrokenProcessPool exception whereas in 3.9.13 and 3.10.5 it hangs.
*Analysis*
When a crash happens in a child process, all workers are terminated and they stop reading in communication pipes. However if data is being send in the call queue, the call queue thread which writes data from buffer to pipe (`multiprocessing.queues.Queue._feed`) can get stuck in `send_bytes(obj)` when the unix pipe it's writing to is full. `_ExecutorManagerThread` is blocked in `self.join_executor_internals()` on line https://github.com/python/cpython/blob/da4912885f11f525a82a83f795ebffba06560e13/Lib/concurrent/futures/process.py#L515 (called from `self.terminate_broken()`). The main thread itself is blocked on https://github.com/python/cpython/blob/da4912885f11f525a82a83f795ebffba06560e13/Lib/concurrent/futures/process.py#L775 coming from the `__exit__` method of the Executor.
*Proposed solution*
Drain call queue buffer either in `terminate_broken` method before calling `join_executor_internals` or in queue `close` method.
I will create a pull request with a possible implementation.
**Your environment**
- CPython versions tested on: reproduced in 3.10.5 and 3.9.13 (works well in 3.8.10: BrokenProcessPool exception)
- Operating system and architecture: Linux, x86_64
<!-- gh-linked-prs -->
### Linked PRs
* gh-94784
<!-- /gh-linked-prs -->
|
process
|
processpoolexecutor deadlock when a child process crashes while data is being sent in call queue bug report when using a processpoolexecutor with forked child processes if one of the child processes suddenly dies segmentation fault not a python exception and if simultaneously data is being sent into the call queue then the parent process hangs forever reproduction import ctypes from concurrent futures import processpoolexecutor def segfault ctypes string at def func i data print f start i if i segfault print f done i return i data list range count with processpoolexecutor as pool list pool map func range count count print f ok in python it raises a brokenprocesspool exception whereas in and it hangs analysis when a crash happens in a child process all workers are terminated and they stop reading in communication pipes however if data is being send in the call queue the call queue thread which writes data from buffer to pipe multiprocessing queues queue feed can get stuck in send bytes obj when the unix pipe it s writing to is full executormanagerthread is blocked in self join executor internals on line called from self terminate broken the main thread itself is blocked on coming from the exit method of the executor proposed solution drain call queue buffer either in terminate broken method before calling join executor internals or in queue close method i will create a pull request with a possible implementation your environment cpython versions tested on reproduced in and works well in brokenprocesspool exception operating system and architecture linux linked prs gh
| 1
|
606
| 2,545,759,015
|
IssuesEvent
|
2015-01-29 19:13:24
|
joomla/joomla-cms
|
https://api.github.com/repos/joomla/joomla-cms
|
closed
|
Visual clutter in Hathor > Global Configuration
|
No Code Attached Yet
|
The permission section in hathor > global configuration is somewhat distorted/misplaced.
This is how it looks like in firexfox 35.0.1:

And here a screenshot taken from IE 11:

It displays nice though in google chrome. Tested with latest staging.
|
1.0
|
Visual clutter in Hathor > Global Configuration - The permission section in hathor > global configuration is somewhat distorted/misplaced.
This is how it looks like in firexfox 35.0.1:

And here a screenshot taken from IE 11:

It displays nice though in google chrome. Tested with latest staging.
|
non_process
|
visual clutter in hathor global configuration the permission section in hathor global configuration is somewhat distorted misplaced this is how it looks like in firexfox and here a screenshot taken from ie it displays nice though in google chrome tested with latest staging
| 0
|
302,892
| 26,171,540,909
|
IssuesEvent
|
2023-01-02 00:45:49
|
CGNS/CGNS
|
https://api.github.com/repos/CGNS/CGNS
|
opened
|
[CGNS-46] Add Fortran_examples, UserGuideCode to testing
|
Task Major To Do Testing
|
> This issue has been imported from JIRA. Read the [original ticket here](https://cgnsorg.atlassian.net/browse/CGNS-46).
- _**Created at:**_ Tue, 13 Oct 2015 13:55:17 -0500
<p>Add these directories for testing. Need to compare output to know good output and return results. </p>
|
1.0
|
[CGNS-46] Add Fortran_examples, UserGuideCode to testing -
> This issue has been imported from JIRA. Read the [original ticket here](https://cgnsorg.atlassian.net/browse/CGNS-46).
- _**Created at:**_ Tue, 13 Oct 2015 13:55:17 -0500
<p>Add these directories for testing. Need to compare output to know good output and return results. </p>
|
non_process
|
add fortran examples userguidecode to testing this issue has been imported from jira read the created at tue oct add these directories for testing need to compare output to know good output and return results
| 0
|
86,247
| 8,030,046,081
|
IssuesEvent
|
2018-07-27 18:10:10
|
kubernetes-incubator/service-catalog
|
https://api.github.com/repos/kubernetes-incubator/service-catalog
|
closed
|
reenable and debug test flake in test/integration/controller_instance_test.go:TestCreateServiceInstanceWithProvisionFailure
|
flake testing
|
I've seen our builds randomly fail on this test a few times for no discernable reason. If anyone has time to look into it, that would be incredibly helpful!
```
--- FAIL: TestCreateServiceInstanceWithProvisionFailure/network_timeout (6.36s)
framework.go:111: Server started on port 36468
framework.go:142: Test client will use API Server URL of https://localhost:36468
controller_test.go:787: controller start
controller_test.go:1420: unexpected action type: expected ProvisionInstance, got DeprovisionInstance
framework.go:116: Shutting down server on port: 36468
```
|
1.0
|
reenable and debug test flake in test/integration/controller_instance_test.go:TestCreateServiceInstanceWithProvisionFailure - I've seen our builds randomly fail on this test a few times for no discernable reason. If anyone has time to look into it, that would be incredibly helpful!
```
--- FAIL: TestCreateServiceInstanceWithProvisionFailure/network_timeout (6.36s)
framework.go:111: Server started on port 36468
framework.go:142: Test client will use API Server URL of https://localhost:36468
controller_test.go:787: controller start
controller_test.go:1420: unexpected action type: expected ProvisionInstance, got DeprovisionInstance
framework.go:116: Shutting down server on port: 36468
```
|
non_process
|
reenable and debug test flake in test integration controller instance test go testcreateserviceinstancewithprovisionfailure i ve seen our builds randomly fail on this test a few times for no discernable reason if anyone has time to look into it that would be incredibly helpful fail testcreateserviceinstancewithprovisionfailure network timeout framework go server started on port framework go test client will use api server url of controller test go controller start controller test go unexpected action type expected provisioninstance got deprovisioninstance framework go shutting down server on port
| 0
|
21,831
| 30,318,377,614
|
IssuesEvent
|
2023-07-10 17:14:25
|
geneontology/go-ontology
|
https://api.github.com/repos/geneontology/go-ontology
|
closed
|
NTR: perturbation of host inflammasome-mediated signal transduction
|
multi-species process
|
NTR: perturbation of host inflammasome-mediated signal transduction
|
1.0
|
NTR: perturbation of host inflammasome-mediated signal transduction - NTR: perturbation of host inflammasome-mediated signal transduction
|
process
|
ntr perturbation of host inflammasome mediated signal transduction ntr perturbation of host inflammasome mediated signal transduction
| 1
|
49,035
| 25,954,097,524
|
IssuesEvent
|
2022-12-18 01:11:10
|
ceres-solver/ceres-solver
|
https://api.github.com/repos/ceres-solver/ceres-solver
|
opened
|
BlockSparseMatrix::LeftMultiplyAndAccumulate might benefit from caching column-block partition
|
Performance
|
There is a design issue as to who should cache this partitioning, but one place where this could be done for sure is inside CgnrLinearOperator, since within its lifetime, the block sparsity structure is guaranteed to remain constant. This should have a nice effect on the performance of CGNR.
|
True
|
BlockSparseMatrix::LeftMultiplyAndAccumulate might benefit from caching column-block partition - There is a design issue as to who should cache this partitioning, but one place where this could be done for sure is inside CgnrLinearOperator, since within its lifetime, the block sparsity structure is guaranteed to remain constant. This should have a nice effect on the performance of CGNR.
|
non_process
|
blocksparsematrix leftmultiplyandaccumulate might benefit from caching column block partition there is a design issue as to who should cache this partitioning but one place where this could be done for sure is inside cgnrlinearoperator since within its lifetime the block sparsity structure is guaranteed to remain constant this should have a nice effect on the performance of cgnr
| 0
|
20,464
| 27,128,800,963
|
IssuesEvent
|
2023-02-16 08:13:02
|
bazelbuild/bazel
|
https://api.github.com/repos/bazelbuild/bazel
|
closed
|
Migrate unit and integration tests to Python 3
|
P3 type: process team-Rules-Python stale
|
With #6647 we flip the default Python version to PY3, but we opt out of this change for our own unit and integration tests. We should eventually port these tests to Python 3 and remove the opt-out.
|
1.0
|
Migrate unit and integration tests to Python 3 - With #6647 we flip the default Python version to PY3, but we opt out of this change for our own unit and integration tests. We should eventually port these tests to Python 3 and remove the opt-out.
|
process
|
migrate unit and integration tests to python with we flip the default python version to but we opt out of this change for our own unit and integration tests we should eventually port these tests to python and remove the opt out
| 1
|
157,021
| 12,342,887,398
|
IssuesEvent
|
2020-05-15 02:14:27
|
eclipse/openj9
|
https://api.github.com/repos/eclipse/openj9
|
closed
|
AArch64: Failure in SharedClasses.SCM01.MultiThreadMultiCL_0
|
arch:aarch64 segfault test failure
|
Failure link
https://ci.eclipse.org/openj9/job/Test_openjdk11_j9_extended.system_aarch64_linux_Personal/4/
SharedClasses.SCM01.MultiThreadMultiCL_0 crashes in libj9jit29.so intermittently.
```
MTM1 stderr Unhandled exception
MTM1 stderr Type=Segmentation error vmState=0x00000000
MTM1 stderr J9Generic_Signal_Number=00000018 Signal_Number=0000000b Error_Value=00000000 Signal_Code=00000001
MTM1 stderr Handler1=0000FFFF8FCBD2C0 Handler2=0000FFFF8FB79C8C InaccessibleAddress=00000000D65F03C8
MTM1 stderr R0=0000000000000000 R1=0000000000002EE7 R2=D65F03C0F9400C00 R3=0000FFFF8F6E2AD0
MTM1 stderr R4=0000000000000041 R5=0000000000A9ACB0 R6=0000FFFF8C505D00 R7=0000FFFF8EF7B8F8
MTM1 stderr R8=00000000000086C5 R9=0000FFFF53516E7C R10=0000000000B60D08 R11=0000000000000001
MTM1 stderr R12=0000000000000000 R13=2F676E616C2F6176 R14=003690B2EEA54B28 R15=0000FFFF8F4C71E4
MTM1 stderr R16=0000FFFF8FC30328 R17=0000FFFF90B3AE1C R18=0000000000000001 R19=00000000D65F03C0
MTM1 stderr R20=0000000000A9ACB0 R21=000000000000051E R22=0000FFFF8C4C25D0 R23=0000000000000001
MTM1 stderr R24=0000000000A9ACD0 R25=0000000000000041 R26=0000000000000014 R27=0000000000000001
MTM1 stderr R28=0000000000000000 R29=0000FFFDE70FDE20 R30=0000FFFF8EF8352C R31=0000FFFDE70FDCC0
MTM1 stderr PC=0000FFFF8EF7CF68 SP=0000FFFDE70FDCC0 PSTATE=0000000000000000
(omit FP register lines)
MTM1 stderr Module=/home/jenkins/workspace/Test_openjdk11_j9_extended.system_aarch64_linux_Personal/openjdkbinary/j2sdk-image/lib/compressedrefs/libj9jit29.so
MTM1 stderr Module_base_address=0000FFFF8ED90000
MTM1 stderr Target=2_90_20200324_45 (Linux 4.14.0-115.2.2.el7a.aarch64)
MTM1 stderr CPU=aarch64 (96 logical CPUs) (0x1fcd7e0000 RAM)
```
|
1.0
|
AArch64: Failure in SharedClasses.SCM01.MultiThreadMultiCL_0 - Failure link
https://ci.eclipse.org/openj9/job/Test_openjdk11_j9_extended.system_aarch64_linux_Personal/4/
SharedClasses.SCM01.MultiThreadMultiCL_0 crashes in libj9jit29.so intermittently.
```
MTM1 stderr Unhandled exception
MTM1 stderr Type=Segmentation error vmState=0x00000000
MTM1 stderr J9Generic_Signal_Number=00000018 Signal_Number=0000000b Error_Value=00000000 Signal_Code=00000001
MTM1 stderr Handler1=0000FFFF8FCBD2C0 Handler2=0000FFFF8FB79C8C InaccessibleAddress=00000000D65F03C8
MTM1 stderr R0=0000000000000000 R1=0000000000002EE7 R2=D65F03C0F9400C00 R3=0000FFFF8F6E2AD0
MTM1 stderr R4=0000000000000041 R5=0000000000A9ACB0 R6=0000FFFF8C505D00 R7=0000FFFF8EF7B8F8
MTM1 stderr R8=00000000000086C5 R9=0000FFFF53516E7C R10=0000000000B60D08 R11=0000000000000001
MTM1 stderr R12=0000000000000000 R13=2F676E616C2F6176 R14=003690B2EEA54B28 R15=0000FFFF8F4C71E4
MTM1 stderr R16=0000FFFF8FC30328 R17=0000FFFF90B3AE1C R18=0000000000000001 R19=00000000D65F03C0
MTM1 stderr R20=0000000000A9ACB0 R21=000000000000051E R22=0000FFFF8C4C25D0 R23=0000000000000001
MTM1 stderr R24=0000000000A9ACD0 R25=0000000000000041 R26=0000000000000014 R27=0000000000000001
MTM1 stderr R28=0000000000000000 R29=0000FFFDE70FDE20 R30=0000FFFF8EF8352C R31=0000FFFDE70FDCC0
MTM1 stderr PC=0000FFFF8EF7CF68 SP=0000FFFDE70FDCC0 PSTATE=0000000000000000
(omit FP register lines)
MTM1 stderr Module=/home/jenkins/workspace/Test_openjdk11_j9_extended.system_aarch64_linux_Personal/openjdkbinary/j2sdk-image/lib/compressedrefs/libj9jit29.so
MTM1 stderr Module_base_address=0000FFFF8ED90000
MTM1 stderr Target=2_90_20200324_45 (Linux 4.14.0-115.2.2.el7a.aarch64)
MTM1 stderr CPU=aarch64 (96 logical CPUs) (0x1fcd7e0000 RAM)
```
|
non_process
|
failure in sharedclasses multithreadmulticl failure link sharedclasses multithreadmulticl crashes in so intermittently stderr unhandled exception stderr type segmentation error vmstate stderr signal number signal number error value signal code stderr inaccessibleaddress stderr stderr stderr stderr stderr stderr stderr stderr stderr pc sp pstate omit fp register lines stderr module home jenkins workspace test extended system linux personal openjdkbinary image lib compressedrefs so stderr module base address stderr target linux stderr cpu logical cpus ram
| 0
|
102,788
| 8,854,322,308
|
IssuesEvent
|
2019-01-09 00:49:00
|
elastic/kibana
|
https://api.github.com/repos/elastic/kibana
|
closed
|
Failing test: X-Pack API Integration Tests.x-pack/test/api_integration/apis/logstash/pipelines/list·js - apis logstash pipelines list "before all" hook: load pipelines archive
|
failed-test
|
A test failed on a tracked branch
```
{ [mapper_parsing_exception] Root mapping definition has unsupported parameters: [doc : {_meta={logstash-version=7.0.0}, dynamic=strict, properties={pipeline={type=text}, metadata={dynamic=false, type=object}, pipeline_metadata={properties={type={type=keyword}, version={type=short}}}, description={type=text}, last_modified={type=date}, pipeline_settings={dynamic=false, type=object}, username={type=keyword}}}] :: {"path":"/.logstash","query":{},"body":"{\"settings\":{\"index\":{\"codec\":\"best_compression\",\"number_of_shards\":\"1\",\"number_of_replicas\":\"1\"}},\"mappings\":{\"doc\":{\"dynamic\":\"strict\",\"_meta\":{\"logstash-version\":\"7.0.0-alpha1\"},\"properties\":{\"description\":{\"type\":\"text\"},\"last_modified\":{\"type\":\"date\"},\"metadata\":{\"type\":\"object\",\"dynamic\":\"false\"},\"pipeline\":{\"type\":\"text\"},\"pipeline_metadata\":{\"properties\":{\"type\":{\"type\":\"keyword\"},\"version\":{\"type\":\"short\"}}},\"username\":{\"type\":\"keyword\"}}}}}","statusCode":400,"response":"{\"error\":{\"root_cause\":[{\"type\":\"mapper_parsing_exception\",\"reason\":\"Root mapping definition has unsupported parameters: [doc : {_meta={logstash-version=7.0.0}, dynamic=strict, properties={pipeline={type=text}, metadata={dynamic=false, type=object}, pipeline_metadata={properties={type={type=keyword}, version={type=short}}}, description={type=text}, last_modified={type=date}, pipeline_settings={dynamic=false, type=object}, username={type=keyword}}}]\"}],\"type\":\"mapper_parsing_exception\",\"reason\":\"Failed to parse mapping [doc]: Root mapping definition has unsupported parameters: [doc : {_meta={logstash-version=7.0.0}, dynamic=strict, properties={pipeline={type=text}, metadata={dynamic=false, type=object}, pipeline_metadata={properties={type={type=keyword}, version={type=short}}}, description={type=text}, last_modified={type=date}, pipeline_settings={dynamic=false, type=object}, username={type=keyword}}}]\",\"caused_by\":{\"type\":\"mapper_parsing_exception\",\"reason\":\"Root mapping definition has unsupported parameters: [doc : {_meta={logstash-version=7.0.0}, dynamic=strict, properties={pipeline={type=text}, metadata={dynamic=false, type=object}, pipeline_metadata={properties={type={type=keyword}, version={type=short}}}, description={type=text}, last_modified={type=date}, pipeline_settings={dynamic=false, type=object}, username={type=keyword}}}]\"}},\"status\":400}"}
at respond (/var/lib/jenkins/workspace/elastic+kibana+master/JOB/x-pack-ciGroup5/node/immutable/kibana/node_modules/elasticsearch/src/lib/transport.js:308:15)
at checkRespForFailure (/var/lib/jenkins/workspace/elastic+kibana+master/JOB/x-pack-ciGroup5/node/immutable/kibana/node_modules/elasticsearch/src/lib/transport.js:267:7)
at HttpConnector.<anonymous> (/var/lib/jenkins/workspace/elastic+kibana+master/JOB/x-pack-ciGroup5/node/immutable/kibana/node_modules/elasticsearch/src/lib/connectors/http.js:165:7)
at IncomingMessage.wrapper (/var/lib/jenkins/workspace/elastic+kibana+master/JOB/x-pack-ciGroup5/node/immutable/kibana/node_modules/elasticsearch/node_modules/lodash/lodash.js:4935:19)
at endReadableNT (_stream_readable.js:1094:12)
at process._tickCallback (internal/process/next_tick.js:63:19)
status: 400,
displayName: 'BadRequest',
message:
'[mapper_parsing_exception] Root mapping definition has unsupported parameters: [doc : {_meta={logstash-version=7.0.0}, dynamic=strict, properties={pipeline={type=text}, metadata={dynamic=false, type=object}, pipeline_metadata={properties={type={type=keyword}, version={type=short}}}, description={type=text}, last_modified={type=date}, pipeline_settings={dynamic=false, type=object}, username={type=keyword}}}]',
path: '/.logstash',
query: {},
body:
{ error:
{ root_cause: [Array],
type: 'mapper_parsing_exception',
reason:
'Failed to parse mapping [doc]: Root mapping definition has unsupported parameters: [doc : {_meta={logstash-version=7.0.0}, dynamic=strict, properties={pipeline={type=text}, metadata={dynamic=false, type=object}, pipeline_metadata={properties={type={type=keyword}, version={type=short}}}, description={type=text}, last_modified={type=date}, pipeline_settings={dynamic=false, type=object}, username={type=keyword}}}]',
caused_by: [Object] },
status: 400 },
statusCode: 400,
response:
'{"error":{"root_cause":[{"type":"mapper_parsing_exception","reason":"Root mapping definition has unsupported parameters: [doc : {_meta={logstash-version=7.0.0}, dynamic=strict, properties={pipeline={type=text}, metadata={dynamic=false, type=object}, pipeline_metadata={properties={type={type=keyword}, version={type=short}}}, description={type=text}, last_modified={type=date}, pipeline_settings={dynamic=false, type=object}, username={type=keyword}}}]"}],"type":"mapper_parsing_exception","reason":"Failed to parse mapping [doc]: Root mapping definition has unsupported parameters: [doc : {_meta={logstash-version=7.0.0}, dynamic=strict, properties={pipeline={type=text}, metadata={dynamic=false, type=object}, pipeline_metadata={properties={type={type=keyword}, version={type=short}}}, description={type=text}, last_modified={type=date}, pipeline_settings={dynamic=false, type=object}, username={type=keyword}}}]","caused_by":{"type":"mapper_parsing_exception","reason":"Root mapping definition has unsupported parameters: [doc : {_meta={logstash-version=7.0.0}, dynamic=strict, properties={pipeline={type=text}, metadata={dynamic=false, type=object}, pipeline_metadata={properties={type={type=keyword}, version={type=short}}}, description={type=text}, last_modified={type=date}, pipeline_settings={dynamic=false, type=object}, username={type=keyword}}}]"}},"status":400}',
toString: [Function],
toJSON: [Function] }
```
First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+master/JOB=x-pack-ciGroup5,node=immutable/573/)
<!-- kibanaCiData = {"failed-test":{"test.class":"X-Pack API Integration Tests.x-pack/test/api_integration/apis/logstash/pipelines/list·js","test.name":"apis logstash pipelines list \"before all\" hook: load pipelines archive","test.failCount":1}} -->
|
1.0
|
Failing test: X-Pack API Integration Tests.x-pack/test/api_integration/apis/logstash/pipelines/list·js - apis logstash pipelines list "before all" hook: load pipelines archive - A test failed on a tracked branch
```
{ [mapper_parsing_exception] Root mapping definition has unsupported parameters: [doc : {_meta={logstash-version=7.0.0}, dynamic=strict, properties={pipeline={type=text}, metadata={dynamic=false, type=object}, pipeline_metadata={properties={type={type=keyword}, version={type=short}}}, description={type=text}, last_modified={type=date}, pipeline_settings={dynamic=false, type=object}, username={type=keyword}}}] :: {"path":"/.logstash","query":{},"body":"{\"settings\":{\"index\":{\"codec\":\"best_compression\",\"number_of_shards\":\"1\",\"number_of_replicas\":\"1\"}},\"mappings\":{\"doc\":{\"dynamic\":\"strict\",\"_meta\":{\"logstash-version\":\"7.0.0-alpha1\"},\"properties\":{\"description\":{\"type\":\"text\"},\"last_modified\":{\"type\":\"date\"},\"metadata\":{\"type\":\"object\",\"dynamic\":\"false\"},\"pipeline\":{\"type\":\"text\"},\"pipeline_metadata\":{\"properties\":{\"type\":{\"type\":\"keyword\"},\"version\":{\"type\":\"short\"}}},\"username\":{\"type\":\"keyword\"}}}}}","statusCode":400,"response":"{\"error\":{\"root_cause\":[{\"type\":\"mapper_parsing_exception\",\"reason\":\"Root mapping definition has unsupported parameters: [doc : {_meta={logstash-version=7.0.0}, dynamic=strict, properties={pipeline={type=text}, metadata={dynamic=false, type=object}, pipeline_metadata={properties={type={type=keyword}, version={type=short}}}, description={type=text}, last_modified={type=date}, pipeline_settings={dynamic=false, type=object}, username={type=keyword}}}]\"}],\"type\":\"mapper_parsing_exception\",\"reason\":\"Failed to parse mapping [doc]: Root mapping definition has unsupported parameters: [doc : {_meta={logstash-version=7.0.0}, dynamic=strict, properties={pipeline={type=text}, metadata={dynamic=false, type=object}, pipeline_metadata={properties={type={type=keyword}, version={type=short}}}, description={type=text}, last_modified={type=date}, pipeline_settings={dynamic=false, type=object}, username={type=keyword}}}]\",\"caused_by\":{\"type\":\"mapper_parsing_exception\",\"reason\":\"Root mapping definition has unsupported parameters: [doc : {_meta={logstash-version=7.0.0}, dynamic=strict, properties={pipeline={type=text}, metadata={dynamic=false, type=object}, pipeline_metadata={properties={type={type=keyword}, version={type=short}}}, description={type=text}, last_modified={type=date}, pipeline_settings={dynamic=false, type=object}, username={type=keyword}}}]\"}},\"status\":400}"}
at respond (/var/lib/jenkins/workspace/elastic+kibana+master/JOB/x-pack-ciGroup5/node/immutable/kibana/node_modules/elasticsearch/src/lib/transport.js:308:15)
at checkRespForFailure (/var/lib/jenkins/workspace/elastic+kibana+master/JOB/x-pack-ciGroup5/node/immutable/kibana/node_modules/elasticsearch/src/lib/transport.js:267:7)
at HttpConnector.<anonymous> (/var/lib/jenkins/workspace/elastic+kibana+master/JOB/x-pack-ciGroup5/node/immutable/kibana/node_modules/elasticsearch/src/lib/connectors/http.js:165:7)
at IncomingMessage.wrapper (/var/lib/jenkins/workspace/elastic+kibana+master/JOB/x-pack-ciGroup5/node/immutable/kibana/node_modules/elasticsearch/node_modules/lodash/lodash.js:4935:19)
at endReadableNT (_stream_readable.js:1094:12)
at process._tickCallback (internal/process/next_tick.js:63:19)
status: 400,
displayName: 'BadRequest',
message:
'[mapper_parsing_exception] Root mapping definition has unsupported parameters: [doc : {_meta={logstash-version=7.0.0}, dynamic=strict, properties={pipeline={type=text}, metadata={dynamic=false, type=object}, pipeline_metadata={properties={type={type=keyword}, version={type=short}}}, description={type=text}, last_modified={type=date}, pipeline_settings={dynamic=false, type=object}, username={type=keyword}}}]',
path: '/.logstash',
query: {},
body:
{ error:
{ root_cause: [Array],
type: 'mapper_parsing_exception',
reason:
'Failed to parse mapping [doc]: Root mapping definition has unsupported parameters: [doc : {_meta={logstash-version=7.0.0}, dynamic=strict, properties={pipeline={type=text}, metadata={dynamic=false, type=object}, pipeline_metadata={properties={type={type=keyword}, version={type=short}}}, description={type=text}, last_modified={type=date}, pipeline_settings={dynamic=false, type=object}, username={type=keyword}}}]',
caused_by: [Object] },
status: 400 },
statusCode: 400,
response:
'{"error":{"root_cause":[{"type":"mapper_parsing_exception","reason":"Root mapping definition has unsupported parameters: [doc : {_meta={logstash-version=7.0.0}, dynamic=strict, properties={pipeline={type=text}, metadata={dynamic=false, type=object}, pipeline_metadata={properties={type={type=keyword}, version={type=short}}}, description={type=text}, last_modified={type=date}, pipeline_settings={dynamic=false, type=object}, username={type=keyword}}}]"}],"type":"mapper_parsing_exception","reason":"Failed to parse mapping [doc]: Root mapping definition has unsupported parameters: [doc : {_meta={logstash-version=7.0.0}, dynamic=strict, properties={pipeline={type=text}, metadata={dynamic=false, type=object}, pipeline_metadata={properties={type={type=keyword}, version={type=short}}}, description={type=text}, last_modified={type=date}, pipeline_settings={dynamic=false, type=object}, username={type=keyword}}}]","caused_by":{"type":"mapper_parsing_exception","reason":"Root mapping definition has unsupported parameters: [doc : {_meta={logstash-version=7.0.0}, dynamic=strict, properties={pipeline={type=text}, metadata={dynamic=false, type=object}, pipeline_metadata={properties={type={type=keyword}, version={type=short}}}, description={type=text}, last_modified={type=date}, pipeline_settings={dynamic=false, type=object}, username={type=keyword}}}]"}},"status":400}',
toString: [Function],
toJSON: [Function] }
```
First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+master/JOB=x-pack-ciGroup5,node=immutable/573/)
<!-- kibanaCiData = {"failed-test":{"test.class":"X-Pack API Integration Tests.x-pack/test/api_integration/apis/logstash/pipelines/list·js","test.name":"apis logstash pipelines list \"before all\" hook: load pipelines archive","test.failCount":1}} -->
|
non_process
|
failing test x pack api integration tests x pack test api integration apis logstash pipelines list·js apis logstash pipelines list before all hook load pipelines archive a test failed on a tracked branch root mapping definition has unsupported parameters path logstash query body settings index codec best compression number of shards number of replicas mappings doc dynamic strict meta logstash version properties description type text last modified type date metadata type object dynamic false pipeline type text pipeline metadata properties type type keyword version type short username type keyword statuscode response error root cause type mapper parsing exception reason failed to parse mapping root mapping definition has unsupported parameters caused by type mapper parsing exception reason root mapping definition has unsupported parameters status at respond var lib jenkins workspace elastic kibana master job x pack node immutable kibana node modules elasticsearch src lib transport js at checkrespforfailure var lib jenkins workspace elastic kibana master job x pack node immutable kibana node modules elasticsearch src lib transport js at httpconnector var lib jenkins workspace elastic kibana master job x pack node immutable kibana node modules elasticsearch src lib connectors http js at incomingmessage wrapper var lib jenkins workspace elastic kibana master job x pack node immutable kibana node modules elasticsearch node modules lodash lodash js at endreadablent stream readable js at process tickcallback internal process next tick js status displayname badrequest message root mapping definition has unsupported parameters path logstash query body error root cause type mapper parsing exception reason failed to parse mapping root mapping definition has unsupported parameters caused by status statuscode response error root cause type mapper parsing exception reason failed to parse mapping root mapping definition has unsupported parameters caused by type mapper parsing exception reason root mapping definition has unsupported parameters status tostring tojson first failure
| 0
|
53,495
| 11,080,821,528
|
IssuesEvent
|
2019-12-13 08:19:15
|
eclipse/codewind
|
https://api.github.com/repos/eclipse/codewind
|
closed
|
Unstyled (Times New Roman) text in the Codewind Connection settings page on Windows
|
area/vscode-ide kind/bug
|
With latest Codewind VSCode (self-hosted, in this case), on Windows, the remote connection info page seems to use non-styled (eg Times New Roman) text, which I strongly presume is not intentional. In contrast, the project info page looks fine.
See screenshot for details:

Specifically the text "Fill in the fields", "Codewind Gatekeeper URL", "Username, "Password" etc
|
1.0
|
Unstyled (Times New Roman) text in the Codewind Connection settings page on Windows - With latest Codewind VSCode (self-hosted, in this case), on Windows, the remote connection info page seems to use non-styled (eg Times New Roman) text, which I strongly presume is not intentional. In contrast, the project info page looks fine.
See screenshot for details:

Specifically the text "Fill in the fields", "Codewind Gatekeeper URL", "Username, "Password" etc
|
non_process
|
unstyled times new roman text in the codewind connection settings page on windows with latest codewind vscode self hosted in this case on windows the remote connection info page seems to use non styled eg times new roman text which i strongly presume is not intentional in contrast the project info page looks fine see screenshot for details specifically the text fill in the fields codewind gatekeeper url username password etc
| 0
|
7,174
| 10,317,133,874
|
IssuesEvent
|
2019-08-30 11:55:11
|
heim-rs/heim
|
https://api.github.com/repos/heim-rs/heim
|
closed
|
process::pid_exists for unix systems can utilize kill 0
|
A-process C-enhancement O-linux O-macos
|
For both Linux and macOS it would be faster to call `libc::kill(pid, 0)` at first to check if process exists.
|
1.0
|
process::pid_exists for unix systems can utilize kill 0 - For both Linux and macOS it would be faster to call `libc::kill(pid, 0)` at first to check if process exists.
|
process
|
process pid exists for unix systems can utilize kill for both linux and macos it would be faster to call libc kill pid at first to check if process exists
| 1
|
12,187
| 14,742,243,967
|
IssuesEvent
|
2021-01-07 11:57:29
|
kdjstudios/SABillingGitlab
|
https://api.github.com/repos/kdjstudios/SABillingGitlab
|
closed
|
Site 118 - SR4591 Paper Invoice fee
|
anc-process anp-1 ant-support
|
In GitLab by @kdjstudios on Mar 29, 2019, 09:15
**Submitted by:** "Amanda Jennings" <amanda.jennings@answernet.com>
**Helpdesk:** http://www.servicedesk.answernet.com/profiles/ticket/2019-03-29-36479/conversation
**Server:** Internal
**Client/Site:** 118
**Account:** SR4591
**Issue:**
I had a customer reached out to me a few months back and ask me to remove the paper invoicing fee for $5 and start email invoicing. I went into SAB, deleted the $5 paper invoice fee (you can see it crossed out in SAB) , switched to email and added their email addresses. Customer just email and is disputing charges for paper invoicing. So I went in and do not see it anywhere to remove BUT I do see them being charged on the invoices still.
Am I missing something?
|
1.0
|
Site 118 - SR4591 Paper Invoice fee - In GitLab by @kdjstudios on Mar 29, 2019, 09:15
**Submitted by:** "Amanda Jennings" <amanda.jennings@answernet.com>
**Helpdesk:** http://www.servicedesk.answernet.com/profiles/ticket/2019-03-29-36479/conversation
**Server:** Internal
**Client/Site:** 118
**Account:** SR4591
**Issue:**
I had a customer reached out to me a few months back and ask me to remove the paper invoicing fee for $5 and start email invoicing. I went into SAB, deleted the $5 paper invoice fee (you can see it crossed out in SAB) , switched to email and added their email addresses. Customer just email and is disputing charges for paper invoicing. So I went in and do not see it anywhere to remove BUT I do see them being charged on the invoices still.
Am I missing something?
|
process
|
site paper invoice fee in gitlab by kdjstudios on mar submitted by amanda jennings helpdesk server internal client site account issue i had a customer reached out to me a few months back and ask me to remove the paper invoicing fee for and start email invoicing i went into sab deleted the paper invoice fee you can see it crossed out in sab switched to email and added their email addresses customer just email and is disputing charges for paper invoicing so i went in and do not see it anywhere to remove but i do see them being charged on the invoices still am i missing something
| 1
|
11,522
| 14,401,592,833
|
IssuesEvent
|
2020-12-03 13:55:40
|
DevExpress/testcafe-hammerhead
|
https://api.github.com/repos/DevExpress/testcafe-hammerhead
|
closed
|
Internal anchor element is lost
|
AREA: client FREQUENCY: level 2 SYSTEM: iframe processing TYPE: bug support center
|
First bug example:
```html
<!-- bug1.html -->
<iframe src="javascript:'<html></html>'"></iframe>
<script>
var iframe = document.querySelector('iframe');
iframe.src = './bug1.iframe.html';
</script>
```
```html
<!-- bug1.iframe.html -->
<a href="./page">Link</a>
<script>
var link = document.querySelector('a');
link.href = './another-page';
</script>
```
_Originally posted by @LavrovArtem in https://github.com/DevExpress/testcafe-hammerhead/issues/2418#issuecomment-683604731_
|
1.0
|
Internal anchor element is lost - First bug example:
```html
<!-- bug1.html -->
<iframe src="javascript:'<html></html>'"></iframe>
<script>
var iframe = document.querySelector('iframe');
iframe.src = './bug1.iframe.html';
</script>
```
```html
<!-- bug1.iframe.html -->
<a href="./page">Link</a>
<script>
var link = document.querySelector('a');
link.href = './another-page';
</script>
```
_Originally posted by @LavrovArtem in https://github.com/DevExpress/testcafe-hammerhead/issues/2418#issuecomment-683604731_
|
process
|
internal anchor element is lost first bug example html var iframe document queryselector iframe iframe src iframe html html link var link document queryselector a link href another page originally posted by lavrovartem in
| 1
|
102,228
| 11,276,994,577
|
IssuesEvent
|
2020-01-15 01:09:13
|
streamnative/bookkeeper
|
https://api.github.com/repos/streamnative/bookkeeper
|
opened
|
ISSUE-374: Generate the config documentation from bk_server.conf
|
area/documentation help wanted triage/18-w11 triage/week-33 type/feature
|
Original Issue: apache/bookkeeper#374
---
*Problem*
Currently we maintain two copies for configs: one is bk_server.conf while the other one is in site/_data/bk_server.yaml for documentation. It would be good we can have one copy `bk_server.conf`, then automatically generate the documentation from bk_server.conf
|
1.0
|
ISSUE-374: Generate the config documentation from bk_server.conf - Original Issue: apache/bookkeeper#374
---
*Problem*
Currently we maintain two copies for configs: one is bk_server.conf while the other one is in site/_data/bk_server.yaml for documentation. It would be good we can have one copy `bk_server.conf`, then automatically generate the documentation from bk_server.conf
|
non_process
|
issue generate the config documentation from bk server conf original issue apache bookkeeper problem currently we maintain two copies for configs one is bk server conf while the other one is in site data bk server yaml for documentation it would be good we can have one copy bk server conf then automatically generate the documentation from bk server conf
| 0
|
219,485
| 7,342,839,567
|
IssuesEvent
|
2018-03-07 09:23:14
|
pmem/issues
|
https://api.github.com/repos/pmem/issues
|
reopened
|
test: obj_cpp_cond_var_posix/TEST1: SETUP (all/non-pmem/static-debug/helgrind)
|
Exposure: Low OS: Linux Priority: 4 low Type: Bug
|
Found on 9316fc7eaadfc9a7a4a9527116c75c0db135d8db
```
==28580== Helgrind, a thread error detector
==28580== Copyright (C) 2007-2015, and GNU GPL'd, by OpenWorks LLP et al.
==28580== Using Valgrind-3.12.0 and LibVEX; rerun with -h for copyright info
==28580== Command: ./obj_cpp_cond_var_posix.static-nondebug /dev/shm/LoremipsumdolorsitametconsecteturadipiscingelitVivamuslacinianibhattortordictumsollicitudinNullamvariusvestibulumligulaetegestaselitsemperidMaurisultriciesligulaeuipsumtinciduntluctusMorbimaximusvariusdolorid/LoremipsumdolorsitametconsecteturadipiscingelitVivamuslacinianibhattortordictumsollicitudinNullamvariusvestibulumligulaetegestaselitsemperidMaurisultriciesligulaeuipsumtinciduntluctusMorbimaximusvariusdolorid/LoremipsumdolorsitametconsecteturadipiscingelitVivamuslacinianibhattortordictumsollicitudinNullamvariusvestibulumligulaetegestaselitsemperidMaurisultriciesligulaeuipsumtinciduntluctusMorbimaximusvariusdolorid/LoremipsumdolorsitametconsecteturadipiscingelitVivamuslacinianibhattortordictumsollicitudinNullamvariusvestibulumligulaetegestaselitsemperidMaurisultriciesligulaeuipsumtinciduntluctusMorbimaximusvariusdolorid/LoremipsumdolorsitametconsecteturadipiscingelitVivamuslacinianibhattortordictumsollicitudinNullamvariusvestibulumligulaetegestaselitsemperidMaurisultriciesligulaeuipsumtinciduntluctusMorbimaximusvariusdolorid/test_obj_cpp_cond_var_posix1😘⠝⠧⠍⠇ɗPMDKӜ⥺🙋/testfile1
==28580== Parent PID: 28542
==28580==
==28580==
==28580== For counts of detected and suppressed errors, rerun with: -v
==28580== Use --history-level=approx or =none to gain increased speed, at
==28580== the cost of reduced accuracy of conflicting-access information
==28580== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 24460 from 29)
```
|
1.0
|
test: obj_cpp_cond_var_posix/TEST1: SETUP (all/non-pmem/static-debug/helgrind) - Found on 9316fc7eaadfc9a7a4a9527116c75c0db135d8db
```
==28580== Helgrind, a thread error detector
==28580== Copyright (C) 2007-2015, and GNU GPL'd, by OpenWorks LLP et al.
==28580== Using Valgrind-3.12.0 and LibVEX; rerun with -h for copyright info
==28580== Command: ./obj_cpp_cond_var_posix.static-nondebug /dev/shm/LoremipsumdolorsitametconsecteturadipiscingelitVivamuslacinianibhattortordictumsollicitudinNullamvariusvestibulumligulaetegestaselitsemperidMaurisultriciesligulaeuipsumtinciduntluctusMorbimaximusvariusdolorid/LoremipsumdolorsitametconsecteturadipiscingelitVivamuslacinianibhattortordictumsollicitudinNullamvariusvestibulumligulaetegestaselitsemperidMaurisultriciesligulaeuipsumtinciduntluctusMorbimaximusvariusdolorid/LoremipsumdolorsitametconsecteturadipiscingelitVivamuslacinianibhattortordictumsollicitudinNullamvariusvestibulumligulaetegestaselitsemperidMaurisultriciesligulaeuipsumtinciduntluctusMorbimaximusvariusdolorid/LoremipsumdolorsitametconsecteturadipiscingelitVivamuslacinianibhattortordictumsollicitudinNullamvariusvestibulumligulaetegestaselitsemperidMaurisultriciesligulaeuipsumtinciduntluctusMorbimaximusvariusdolorid/LoremipsumdolorsitametconsecteturadipiscingelitVivamuslacinianibhattortordictumsollicitudinNullamvariusvestibulumligulaetegestaselitsemperidMaurisultriciesligulaeuipsumtinciduntluctusMorbimaximusvariusdolorid/test_obj_cpp_cond_var_posix1😘⠝⠧⠍⠇ɗPMDKӜ⥺🙋/testfile1
==28580== Parent PID: 28542
==28580==
==28580==
==28580== For counts of detected and suppressed errors, rerun with: -v
==28580== Use --history-level=approx or =none to gain increased speed, at
==28580== the cost of reduced accuracy of conflicting-access information
==28580== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 24460 from 29)
```
|
non_process
|
test obj cpp cond var posix setup all non pmem static debug helgrind found on helgrind a thread error detector copyright c and gnu gpl d by openworks llp et al using valgrind and libvex rerun with h for copyright info command obj cpp cond var posix static nondebug dev shm loremipsumdolorsitametconsecteturadipiscingelitvivamuslacinianibhattortordictumsollicitudinnullamvariusvestibulumligulaetegestaselitsemperidmaurisultriciesligulaeuipsumtinciduntluctusmorbimaximusvariusdolorid loremipsumdolorsitametconsecteturadipiscingelitvivamuslacinianibhattortordictumsollicitudinnullamvariusvestibulumligulaetegestaselitsemperidmaurisultriciesligulaeuipsumtinciduntluctusmorbimaximusvariusdolorid loremipsumdolorsitametconsecteturadipiscingelitvivamuslacinianibhattortordictumsollicitudinnullamvariusvestibulumligulaetegestaselitsemperidmaurisultriciesligulaeuipsumtinciduntluctusmorbimaximusvariusdolorid loremipsumdolorsitametconsecteturadipiscingelitvivamuslacinianibhattortordictumsollicitudinnullamvariusvestibulumligulaetegestaselitsemperidmaurisultriciesligulaeuipsumtinciduntluctusmorbimaximusvariusdolorid loremipsumdolorsitametconsecteturadipiscingelitvivamuslacinianibhattortordictumsollicitudinnullamvariusvestibulumligulaetegestaselitsemperidmaurisultriciesligulaeuipsumtinciduntluctusmorbimaximusvariusdolorid test obj cpp cond var 😘⠝⠧⠍⠇ɗpmdkӝ⥺🙋 parent pid for counts of detected and suppressed errors rerun with v use history level approx or none to gain increased speed at the cost of reduced accuracy of conflicting access information error summary errors from contexts suppressed from
| 0
|
15,922
| 20,122,129,328
|
IssuesEvent
|
2022-02-08 04:17:11
|
sectooling/articles
|
https://api.github.com/repos/sectooling/articles
|
opened
|
Build pipelines with Pandas using “pdpipe”
|
Data Science Tools Data Preprocessing
|
## TL;DR
An easier way to build pipelines with `pdpipe`
### Article Link
https://towardsdatascience.com/https-medium-com-tirthajyoti-build-pipelines-with-pandas-using-pdpipe-cade6128cd31
|
1.0
|
Build pipelines with Pandas using “pdpipe” - ## TL;DR
An easier way to build pipelines with `pdpipe`
### Article Link
https://towardsdatascience.com/https-medium-com-tirthajyoti-build-pipelines-with-pandas-using-pdpipe-cade6128cd31
|
process
|
build pipelines with pandas using “pdpipe” tl dr an easier way to build pipelines with pdpipe article link
| 1
|
275,915
| 23,953,576,478
|
IssuesEvent
|
2022-09-12 13:26:15
|
trema-tech/moodle-theme_trema
|
https://api.github.com/repos/trema-tech/moodle-theme_trema
|
closed
|
Trema "defaultfooter" is not processed through Moodle filters on Dashboard page
|
bug Test it!
|
The defaultfooter field, found in the Trema settings, does not process output through Moodle filters like other pages:

This example uses the FilterCodes {siteyear} tag which should display the current year.
Let me know if you have any questions.
Best regards,
Michael
|
1.0
|
Trema "defaultfooter" is not processed through Moodle filters on Dashboard page - The defaultfooter field, found in the Trema settings, does not process output through Moodle filters like other pages:

This example uses the FilterCodes {siteyear} tag which should display the current year.
Let me know if you have any questions.
Best regards,
Michael
|
non_process
|
trema defaultfooter is not processed through moodle filters on dashboard page the defaultfooter field found in the trema settings does not process output through moodle filters like other pages this example uses the filtercodes siteyear tag which should display the current year let me know if you have any questions best regards michael
| 0
|
7,268
| 10,422,383,104
|
IssuesEvent
|
2019-09-16 08:54:29
|
nbh-digital/goldchain
|
https://api.github.com/repos/nbh-digital/goldchain
|
closed
|
Create client to call NBH APIs
|
priority_major process_duplicate type_feature
|
APIs to be called as client for 3bot usage (through the Vertex gateway):
[NewPosition](https://hybrid-solutions.kayako.com//index.php?/Knowledgebase/Article/View/5475) (back-end API to be used for conversion GFT to physical gold on NBH gold account)
[GetAccounts](https://support.hybridsolutions.com//index.php?/Knowledgebase/Article/View/1934) (front-end API to give overview of accounts with NBH IVS)
[GetAccountSummary](https://support.hybridsolutions.com//index.php?/Knowledgebase/Article/View/1953) (front-end API to give content on a NBH IVS account)
[GetNewTick](http://www.hybrid-solutions.com/support/index.php?/Knowledgebase/Article/View/1939) (front-end API to get a price)
[ClosePosition](https://hybrid-solutions.kayako.com//index.php?/Knowledgebase/Article/View/5479) (back-end API to be used for conversion physical gold on NBH gold account to GFT)
Non-prio:
[Front-end NewOrder](https://hybrid-solutions.kayako.com//index.php?/Knowledgebase/Article/View/1952)
(to be used for conversion fiat <--> physical gold, to be used when offering the link to fiat also in 3bot app)
[Back-end MoneyTransactions](https://hybrid-solutions.kayako.com//index.php?/Knowledgebase/Article/View/5393)
(make any money transaction (Deposit , Withdrawal , Adjustment, Credit in , Credit out ) at specific account - not to be used in first phase, it's a pure back-end adjustment API)
[DeliverSymbol](url)
(front-end API to deliver physical gold in a branch - not offered in NBH-Digital in first phase)
|
1.0
|
Create client to call NBH APIs - APIs to be called as client for 3bot usage (through the Vertex gateway):
[NewPosition](https://hybrid-solutions.kayako.com//index.php?/Knowledgebase/Article/View/5475) (back-end API to be used for conversion GFT to physical gold on NBH gold account)
[GetAccounts](https://support.hybridsolutions.com//index.php?/Knowledgebase/Article/View/1934) (front-end API to give overview of accounts with NBH IVS)
[GetAccountSummary](https://support.hybridsolutions.com//index.php?/Knowledgebase/Article/View/1953) (front-end API to give content on a NBH IVS account)
[GetNewTick](http://www.hybrid-solutions.com/support/index.php?/Knowledgebase/Article/View/1939) (front-end API to get a price)
[ClosePosition](https://hybrid-solutions.kayako.com//index.php?/Knowledgebase/Article/View/5479) (back-end API to be used for conversion physical gold on NBH gold account to GFT)
Non-prio:
[Front-end NewOrder](https://hybrid-solutions.kayako.com//index.php?/Knowledgebase/Article/View/1952)
(to be used for conversion fiat <--> physical gold, to be used when offering the link to fiat also in 3bot app)
[Back-end MoneyTransactions](https://hybrid-solutions.kayako.com//index.php?/Knowledgebase/Article/View/5393)
(make any money transaction (Deposit , Withdrawal , Adjustment, Credit in , Credit out ) at specific account - not to be used in first phase, it's a pure back-end adjustment API)
[DeliverSymbol](url)
(front-end API to deliver physical gold in a branch - not offered in NBH-Digital in first phase)
|
process
|
create client to call nbh apis apis to be called as client for usage through the vertex gateway back end api to be used for conversion gft to physical gold on nbh gold account front end api to give overview of accounts with nbh ivs front end api to give content on a nbh ivs account front end api to get a price back end api to be used for conversion physical gold on nbh gold account to gft non prio to be used for conversion fiat physical gold to be used when offering the link to fiat also in app make any money transaction deposit withdrawal adjustment credit in credit out at specific account not to be used in first phase it s a pure back end adjustment api url front end api to deliver physical gold in a branch not offered in nbh digital in first phase
| 1
|
14,365
| 17,388,399,708
|
IssuesEvent
|
2021-08-02 01:41:55
|
medic/cht-core
|
https://api.github.com/repos/medic/cht-core
|
opened
|
Release 3.13.0
|
Type: Internal process
|
# Planning - Product Manager
- [ ] Create a GH Milestone for the release. We use [semver](http://semver.org) so if there are breaking changes increment the major, otherwise if there are new features increment the minor, otherwise increment the service pack. Breaking changes in our case relate to updated software requirements (egs: CouchDB, node, minimum browser versions), broken backwards compatibility in an api, or a major visual update that requires user retraining.
- [ ] Add all the issues to be worked on to the Milestone. Ideally each minor release will have one or two features, a handful of improvements, and plenty of bug fixes.
- [ ] Identify any features and improvements in the release that need end-user documentation (beyond eng team documentation improvements) and create corresponding issues in the cht-docs repo
- [ ] Assign an engineer as Release Engineer for this release.
# Development - Release Engineer
When development is ready to begin one of the engineers should be nominated as a Release Engineer. They will be responsible for making sure the following tasks are completed though not necessarily completing them.
- [ ] Set the version number in `package.json` and `package-lock.json` and submit a PR. The easiest way to do this is to use `npm --no-git-tag-version version <major|minor>`.
- [ ] Raise a new issue called `Update dependencies for <version>` with a description that links to [the documentation](https://docs.communityhealthtoolkit.org/core/guides/update-dependencies/). This should be done early in the release cycle so find a volunteer to take this on and assign it to them.
- [ ] Write an update in the weekly Product Team call agenda summarising development and acceptance testing progress and identifying any blockers. The release Engineer is to update this every week until the version is released.
# Releasing - Release Engineer
Once all issues have passed acceptance testing and have been merged into `master` release testing can begin.
- [ ] Create a new release branch from `master` named `<major>.<minor>.x` in `cht-core`. Post a message to #development using this template:
```
@core_devs I've just created the `<major>.<minor>.x` release branch. Please be aware that any further changes intended for this release will have to be merged to `master` then backported. Thanks!
```
- [ ] Build a beta named `<major>.<minor>.<patch>-beta.1` by pushing a git tag and when CI completes successfully notify the QA team that it's ready for release testing.
- [ ] Create a new document in the [release-notes folder](https://github.com/medic/cht-core/tree/master/release-notes) in `master`. Ensure all issues are in the GH Milestone, that they're correctly labelled (in particular: they have the right Type, "UI/UX" if they change the UI, and "Breaking change" if appropriate), and have human readable descriptions. Use [this script](https://github.com/medic/cht-core/blob/master/scripts/release-notes) to export the issues into our release note format. Manually document any known migration steps and known issues. Provide description, screenshots, videos, and anything else to help communicate particularly important changes. Document any required or recommended upgrades to our other products (eg: medic-conf, medic-gateway, medic-android). Assign the PR to a) the Director of Technology, and b) an SRE to review and confirm the documentation on upgrade instructions and breaking changes is sufficient.
- [ ] Until release testing passes, make sure regressions are fixed in `master`, cherry-pick them into the release branch, and release another beta.
- [ ] Create a release in GitHub from the release branch so it shows up under the [Releases tab](https://github.com/medic/cht-core/releases) with the naming convention `<major>.<minor>.<patch>`. This will create the git tag automatically. Link to the release notes in the description of the release.
- [ ] Confirm the release build completes successfully and the new release is available on the [market](https://staging.dev.medicmobile.org/builds/releases). Make sure that the document has new entry with `id: medic:medic:<major>.<minor>.<patch>`
- [ ] Upgrade the `demo-cht.dev` instance to this version.
- [ ] Add the release to the [Supported versions](https://docs.communityhealthtoolkit.org/core/overview/supported-software/) and update the EOL date and status of previous releases.
- [ ] Announce the release on the [CHT forum](https://forum.communityhealthtoolkit.org/c/product/releases/26), under the "Product - Releases" category using this template:
```
@channel *We're excited to announce the release of {{version}} of {{product}}*
New features include {{key_features}}. We've also implemented loads of other improvements and fixed a heap of bugs.
Read the release notes for full details: {{url}}
Following our support policy, versions {{versions}} are no longer supported. Projects running these versions should start planning to upgrade in the near future. For more details read our software support documentation: https://docs.communityhealthtoolkit.org/core/overview/supported-software/
See what's scheduled for the next releases: https://github.com/medic/cht-core/milestones
```
- [ ] Mark this issue "done" and close the Milestone.
|
1.0
|
Release 3.13.0 - # Planning - Product Manager
- [ ] Create a GH Milestone for the release. We use [semver](http://semver.org) so if there are breaking changes increment the major, otherwise if there are new features increment the minor, otherwise increment the service pack. Breaking changes in our case relate to updated software requirements (egs: CouchDB, node, minimum browser versions), broken backwards compatibility in an api, or a major visual update that requires user retraining.
- [ ] Add all the issues to be worked on to the Milestone. Ideally each minor release will have one or two features, a handful of improvements, and plenty of bug fixes.
- [ ] Identify any features and improvements in the release that need end-user documentation (beyond eng team documentation improvements) and create corresponding issues in the cht-docs repo
- [ ] Assign an engineer as Release Engineer for this release.
# Development - Release Engineer
When development is ready to begin one of the engineers should be nominated as a Release Engineer. They will be responsible for making sure the following tasks are completed though not necessarily completing them.
- [ ] Set the version number in `package.json` and `package-lock.json` and submit a PR. The easiest way to do this is to use `npm --no-git-tag-version version <major|minor>`.
- [ ] Raise a new issue called `Update dependencies for <version>` with a description that links to [the documentation](https://docs.communityhealthtoolkit.org/core/guides/update-dependencies/). This should be done early in the release cycle so find a volunteer to take this on and assign it to them.
- [ ] Write an update in the weekly Product Team call agenda summarising development and acceptance testing progress and identifying any blockers. The release Engineer is to update this every week until the version is released.
# Releasing - Release Engineer
Once all issues have passed acceptance testing and have been merged into `master` release testing can begin.
- [ ] Create a new release branch from `master` named `<major>.<minor>.x` in `cht-core`. Post a message to #development using this template:
```
@core_devs I've just created the `<major>.<minor>.x` release branch. Please be aware that any further changes intended for this release will have to be merged to `master` then backported. Thanks!
```
- [ ] Build a beta named `<major>.<minor>.<patch>-beta.1` by pushing a git tag and when CI completes successfully notify the QA team that it's ready for release testing.
- [ ] Create a new document in the [release-notes folder](https://github.com/medic/cht-core/tree/master/release-notes) in `master`. Ensure all issues are in the GH Milestone, that they're correctly labelled (in particular: they have the right Type, "UI/UX" if they change the UI, and "Breaking change" if appropriate), and have human readable descriptions. Use [this script](https://github.com/medic/cht-core/blob/master/scripts/release-notes) to export the issues into our release note format. Manually document any known migration steps and known issues. Provide description, screenshots, videos, and anything else to help communicate particularly important changes. Document any required or recommended upgrades to our other products (eg: medic-conf, medic-gateway, medic-android). Assign the PR to a) the Director of Technology, and b) an SRE to review and confirm the documentation on upgrade instructions and breaking changes is sufficient.
- [ ] Until release testing passes, make sure regressions are fixed in `master`, cherry-pick them into the release branch, and release another beta.
- [ ] Create a release in GitHub from the release branch so it shows up under the [Releases tab](https://github.com/medic/cht-core/releases) with the naming convention `<major>.<minor>.<patch>`. This will create the git tag automatically. Link to the release notes in the description of the release.
- [ ] Confirm the release build completes successfully and the new release is available on the [market](https://staging.dev.medicmobile.org/builds/releases). Make sure that the document has new entry with `id: medic:medic:<major>.<minor>.<patch>`
- [ ] Upgrade the `demo-cht.dev` instance to this version.
- [ ] Add the release to the [Supported versions](https://docs.communityhealthtoolkit.org/core/overview/supported-software/) and update the EOL date and status of previous releases.
- [ ] Announce the release on the [CHT forum](https://forum.communityhealthtoolkit.org/c/product/releases/26), under the "Product - Releases" category using this template:
```
@channel *We're excited to announce the release of {{version}} of {{product}}*
New features include {{key_features}}. We've also implemented loads of other improvements and fixed a heap of bugs.
Read the release notes for full details: {{url}}
Following our support policy, versions {{versions}} are no longer supported. Projects running these versions should start planning to upgrade in the near future. For more details read our software support documentation: https://docs.communityhealthtoolkit.org/core/overview/supported-software/
See what's scheduled for the next releases: https://github.com/medic/cht-core/milestones
```
- [ ] Mark this issue "done" and close the Milestone.
|
process
|
release planning product manager create a gh milestone for the release we use so if there are breaking changes increment the major otherwise if there are new features increment the minor otherwise increment the service pack breaking changes in our case relate to updated software requirements egs couchdb node minimum browser versions broken backwards compatibility in an api or a major visual update that requires user retraining add all the issues to be worked on to the milestone ideally each minor release will have one or two features a handful of improvements and plenty of bug fixes identify any features and improvements in the release that need end user documentation beyond eng team documentation improvements and create corresponding issues in the cht docs repo assign an engineer as release engineer for this release development release engineer when development is ready to begin one of the engineers should be nominated as a release engineer they will be responsible for making sure the following tasks are completed though not necessarily completing them set the version number in package json and package lock json and submit a pr the easiest way to do this is to use npm no git tag version version raise a new issue called update dependencies for with a description that links to this should be done early in the release cycle so find a volunteer to take this on and assign it to them write an update in the weekly product team call agenda summarising development and acceptance testing progress and identifying any blockers the release engineer is to update this every week until the version is released releasing release engineer once all issues have passed acceptance testing and have been merged into master release testing can begin create a new release branch from master named x in cht core post a message to development using this template core devs i ve just created the x release branch please be aware that any further changes intended for this release will have to be merged to master then backported thanks build a beta named beta by pushing a git tag and when ci completes successfully notify the qa team that it s ready for release testing create a new document in the in master ensure all issues are in the gh milestone that they re correctly labelled in particular they have the right type ui ux if they change the ui and breaking change if appropriate and have human readable descriptions use to export the issues into our release note format manually document any known migration steps and known issues provide description screenshots videos and anything else to help communicate particularly important changes document any required or recommended upgrades to our other products eg medic conf medic gateway medic android assign the pr to a the director of technology and b an sre to review and confirm the documentation on upgrade instructions and breaking changes is sufficient until release testing passes make sure regressions are fixed in master cherry pick them into the release branch and release another beta create a release in github from the release branch so it shows up under the with the naming convention this will create the git tag automatically link to the release notes in the description of the release confirm the release build completes successfully and the new release is available on the make sure that the document has new entry with id medic medic upgrade the demo cht dev instance to this version add the release to the and update the eol date and status of previous releases announce the release on the under the product releases category using this template channel we re excited to announce the release of version of product new features include key features we ve also implemented loads of other improvements and fixed a heap of bugs read the release notes for full details url following our support policy versions versions are no longer supported projects running these versions should start planning to upgrade in the near future for more details read our software support documentation see what s scheduled for the next releases mark this issue done and close the milestone
| 1
|
158,622
| 13,737,699,943
|
IssuesEvent
|
2020-10-05 13:30:59
|
itsalb3rt/agile-visitors
|
https://api.github.com/repos/itsalb3rt/agile-visitors
|
closed
|
Update demo image on README
|
documentation good first issue hacktoberfest help wanted
|
**Is your feature request related to a problem? Please describe.**
A lot of changes have been made since the screenshot of the demo image was taken, I invite you to get creative and create an amazing image for the demo and place it in the README.
**Describe the solution you'd like**
Go to [https://agile-visitors.netlify.app/](https://agile-visitors.netlify.app/) and take some screenshots, the only requirement is that the demo image is ONE.
**Describe alternatives you've considered**
NONE
**Additional context**
NONE
|
1.0
|
Update demo image on README - **Is your feature request related to a problem? Please describe.**
A lot of changes have been made since the screenshot of the demo image was taken, I invite you to get creative and create an amazing image for the demo and place it in the README.
**Describe the solution you'd like**
Go to [https://agile-visitors.netlify.app/](https://agile-visitors.netlify.app/) and take some screenshots, the only requirement is that the demo image is ONE.
**Describe alternatives you've considered**
NONE
**Additional context**
NONE
|
non_process
|
update demo image on readme is your feature request related to a problem please describe a lot of changes have been made since the screenshot of the demo image was taken i invite you to get creative and create an amazing image for the demo and place it in the readme describe the solution you d like go to and take some screenshots the only requirement is that the demo image is one describe alternatives you ve considered none additional context none
| 0
|
10,151
| 13,044,162,573
|
IssuesEvent
|
2020-07-29 03:47:33
|
tikv/tikv
|
https://api.github.com/repos/tikv/tikv
|
closed
|
UCP: Migrate scalar function `LastInsertID` from TiDB
|
challenge-program-2 component/coprocessor difficulty/easy sig/coprocessor
|
## Description
Port the scalar function `LastInsertID` from TiDB to coprocessor.
## Score
* 50
## Mentor(s)
* @andylokandy
## Recommended Skills
* Rust programming
## Learning Materials
Already implemented expressions ported from TiDB
- https://github.com/tikv/tikv/tree/master/components/tidb_query/src/rpn_expr)
- https://github.com/tikv/tikv/tree/master/components/tidb_query/src/expr)
|
2.0
|
UCP: Migrate scalar function `LastInsertID` from TiDB -
## Description
Port the scalar function `LastInsertID` from TiDB to coprocessor.
## Score
* 50
## Mentor(s)
* @andylokandy
## Recommended Skills
* Rust programming
## Learning Materials
Already implemented expressions ported from TiDB
- https://github.com/tikv/tikv/tree/master/components/tidb_query/src/rpn_expr)
- https://github.com/tikv/tikv/tree/master/components/tidb_query/src/expr)
|
process
|
ucp migrate scalar function lastinsertid from tidb description port the scalar function lastinsertid from tidb to coprocessor score mentor s andylokandy recommended skills rust programming learning materials already implemented expressions ported from tidb
| 1
|
18,586
| 24,567,854,203
|
IssuesEvent
|
2022-10-13 05:52:15
|
GoogleCloudPlatform/fda-mystudies
|
https://api.github.com/repos/GoogleCloudPlatform/fda-mystudies
|
closed
|
[Android] Enrollment flow > Eligibility confirmed screen > UI Issue
|
Bug P2 Android Process: Fixed Process: Tested QA Process: Tested dev
|
Enrollment flow > Eligibility confirmed screen > UI Issue
**Note:**
1. UI issue is observed only for closed study
2. Issue needs to be fixed to maintain consistency for 'Eligibility confirmed' screen in all the study
**AR:**

**ER:**

|
3.0
|
[Android] Enrollment flow > Eligibility confirmed screen > UI Issue - Enrollment flow > Eligibility confirmed screen > UI Issue
**Note:**
1. UI issue is observed only for closed study
2. Issue needs to be fixed to maintain consistency for 'Eligibility confirmed' screen in all the study
**AR:**

**ER:**

|
process
|
enrollment flow eligibility confirmed screen ui issue enrollment flow eligibility confirmed screen ui issue note ui issue is observed only for closed study issue needs to be fixed to maintain consistency for eligibility confirmed screen in all the study ar er
| 1
|
263,468
| 23,060,617,478
|
IssuesEvent
|
2022-07-25 09:35:18
|
iotaledger/explorer
|
https://api.github.com/repos/iotaledger/explorer
|
closed
|
[Task]: Update Transaction History pagination
|
type:enhancement network:testnet network:shimmer
|
### Task description
As discussed:
- Remove the pagination in Transaction History
- Make "Load more" just append to the table on the page
### Requirements
N/A
### Acceptance criteria
N/A
### Creation checklist
- [X] I have assigned this task to the correct people
- [X] I have added the most appropriate labels
- [X] I have linked the correct milestone and/or project
|
1.0
|
[Task]: Update Transaction History pagination - ### Task description
As discussed:
- Remove the pagination in Transaction History
- Make "Load more" just append to the table on the page
### Requirements
N/A
### Acceptance criteria
N/A
### Creation checklist
- [X] I have assigned this task to the correct people
- [X] I have added the most appropriate labels
- [X] I have linked the correct milestone and/or project
|
non_process
|
update transaction history pagination task description as discussed remove the pagination in transaction history make load more just append to the table on the page requirements n a acceptance criteria n a creation checklist i have assigned this task to the correct people i have added the most appropriate labels i have linked the correct milestone and or project
| 0
|
478,403
| 13,778,817,615
|
IssuesEvent
|
2020-10-08 12:59:58
|
AY2021S1-CS2113T-F12-2/tp
|
https://api.github.com/repos/AY2021S1-CS2113T-F12-2/tp
|
closed
|
Implement UserProfile fixed inputs
|
priority.Medium type.Enhancement type.Task
|
UserProfile currently reads information from user as string. I plan to implement fixed inputs for information like gender and date of birth to ensure they are of valid data.
For example, date should be a valid date with year, month and day provided.
|
1.0
|
Implement UserProfile fixed inputs - UserProfile currently reads information from user as string. I plan to implement fixed inputs for information like gender and date of birth to ensure they are of valid data.
For example, date should be a valid date with year, month and day provided.
|
non_process
|
implement userprofile fixed inputs userprofile currently reads information from user as string i plan to implement fixed inputs for information like gender and date of birth to ensure they are of valid data for example date should be a valid date with year month and day provided
| 0
|
5,006
| 7,839,153,163
|
IssuesEvent
|
2018-06-18 12:51:59
|
AlexsLemonade/refinebio
|
https://api.github.com/repos/AlexsLemonade/refinebio
|
reopened
|
Record annotation version for Transcriptome Indices
|
data for GUI enhancement processor salmon
|
### Context
In https://github.com/AlexsLemonade/refinebio/pull/162 I have made the versions of these genome annotations explicit by making them constants. However
### Problem or idea
As per the discussion on the aforementioned PR we will want to make these displayable "at a glance", which will require adding an annotation to the computational results for these.
### Solution or next step
We should add a CompultationalResultAnnotation to Transcriptome Indices which specifies which genome annotation version was used to compute it.
|
1.0
|
Record annotation version for Transcriptome Indices - ### Context
In https://github.com/AlexsLemonade/refinebio/pull/162 I have made the versions of these genome annotations explicit by making them constants. However
### Problem or idea
As per the discussion on the aforementioned PR we will want to make these displayable "at a glance", which will require adding an annotation to the computational results for these.
### Solution or next step
We should add a CompultationalResultAnnotation to Transcriptome Indices which specifies which genome annotation version was used to compute it.
|
process
|
record annotation version for transcriptome indices context in i have made the versions of these genome annotations explicit by making them constants however problem or idea as per the discussion on the aforementioned pr we will want to make these displayable at a glance which will require adding an annotation to the computational results for these solution or next step we should add a compultationalresultannotation to transcriptome indices which specifies which genome annotation version was used to compute it
| 1
|
156,233
| 13,645,406,562
|
IssuesEvent
|
2020-09-25 20:43:45
|
swcarpentry/r-novice-gapminder
|
https://api.github.com/repos/swcarpentry/r-novice-gapminder
|
closed
|
Including Link to Gapminder data in Setup or Extras
|
help wanted type:documentation
|
It would be very useful to have a link to the gapminder data for download included on the Setup section of the course site, or, if you don't want people downloading it beforehand, in at least the Extras section. Currently, this data is first downloaded during a Challenge in Episode 2, which an instructor may or may not actually do.
Everytime I go through this material, I have to search to find the link to the data, which sometimes I send to people to download ahead of time if there may be internet connection issues.
I'm happy to submit a PR adding the link the Extras section if this change is OK to make.
|
1.0
|
Including Link to Gapminder data in Setup or Extras - It would be very useful to have a link to the gapminder data for download included on the Setup section of the course site, or, if you don't want people downloading it beforehand, in at least the Extras section. Currently, this data is first downloaded during a Challenge in Episode 2, which an instructor may or may not actually do.
Everytime I go through this material, I have to search to find the link to the data, which sometimes I send to people to download ahead of time if there may be internet connection issues.
I'm happy to submit a PR adding the link the Extras section if this change is OK to make.
|
non_process
|
including link to gapminder data in setup or extras it would be very useful to have a link to the gapminder data for download included on the setup section of the course site or if you don t want people downloading it beforehand in at least the extras section currently this data is first downloaded during a challenge in episode which an instructor may or may not actually do everytime i go through this material i have to search to find the link to the data which sometimes i send to people to download ahead of time if there may be internet connection issues i m happy to submit a pr adding the link the extras section if this change is ok to make
| 0
|
49,797
| 12,412,437,083
|
IssuesEvent
|
2020-05-22 10:33:27
|
mavlink/mavros
|
https://api.github.com/repos/mavlink/mavros
|
closed
|
mavros_extras fails to build on Kinetic
|
build error
|
The latest release of mavros_extras is failing to build on Kinetic due to a missing symbol in mavlink.
It aeears to have been triggered by the [release of mavlink 2020.5.5 ros/rosdistro/pull/24718

`16:10:40 /tmp/binarydeb/ros-kinetic-mavros-extras-1.1.0/src/plugins/odom.cpp:228:42: error: ‘BODY_FRD’ is not a member of ‘mavlink::common::MAV_FRAME’
16:10:40 msg.child_frame_id = utils::enum_value(MAV_FRAME::BODY_FRD);`
http://build.ros.org/view/Kbin_uX64/job/Kbin_uX64__mavros_extras__ubuntu_xenial_amd64__binary/29/console
<details>
```
16:10:40 /tmp/binarydeb/ros-kinetic-mavros-extras-1.1.0/src/plugins/odom.cpp: In member function ‘void mavros::extra_plugins::OdometryPlugin::odom_cb(const ConstPtr&)’:
16:10:40 /tmp/binarydeb/ros-kinetic-mavros-extras-1.1.0/src/plugins/odom.cpp:228:42: error: ‘BODY_FRD’ is not a member of ‘mavlink::common::MAV_FRAME’
16:10:40 msg.child_frame_id = utils::enum_value(MAV_FRAME::BODY_FRD);
16:10:40 ^
16:10:40 CMakeFiles/mavros_extras.dir/build.make:353: recipe for target 'CMakeFiles/mavros_extras.dir/src/plugins/odom.cpp.o' failed
16:10:40 make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-mavros-extras-1.1.0/obj-x86_64-linux-gnu'
16:10:40 make[4]: *** [CMakeFiles/mavros_extras.dir/src/plugins/odom.cpp.o] Error 1
16:10:40 make[3]: *** [CMakeFiles/mavros_extras.dir/all] Error 2
16:10:40 CMakeFiles/Makefile2:186: recipe for target 'CMakeFiles/mavros_extras.dir/all' failed
16:10:40 make[3]: Leaving directory '/tmp/binarydeb/ros-kinetic-mavros-extras-1.1.0/obj-x86_64-linux-gnu'
16:10:40 Makefile:130: recipe for target 'all' failed
16:10:40 make[2]: *** [all] Error 2
16:10:40 make[2]: Leaving directory '/tmp/binarydeb/ros-kinetic-mavros-extras-1.1.0/obj-x86_64-linux-gnu'
16:10:40 dh_auto_build: make -j1 returned exit code 2
16:10:40 cd /tmp/binarydeb/ros-kinetic-mavros-extras-1.1.0
16:10:40 make[1]: *** [override_dh_auto_build] Error 2
16:10:40 debian/rules:35: recipe for target 'override_dh_auto_build' failed
16:10:40 make[1]: Leaving directory '/tmp/binarydeb/ros-kinetic-mavros-extras-1.1.0'
16:10:40 debian/rules:22: recipe for target 'build' failed
16:10:40 make: *** [build] Error 2
16:10:40 dpkg-buildpackage: error: debian/rules build gave error exit status 2
16:10:40 E: Building failed
16:10:40 Traceback (most recent call last):
16:10:40 File "/tmp/ros_buildfarm/ros_buildfarm/binarydeb_job.py", line 138, in build_binarydeb
16:10:40 subprocess.check_call(cmd, cwd=source_dir)
16:10:40 File "/usr/lib/python3.5/subprocess.py", line 581, in check_call
16:10:40 raise CalledProcessError(retcode, cmd)
16:10:40 subprocess.CalledProcessError: Command '['apt-src', 'build', 'ros-kinetic-mavros-extras']' returned non-zero exit status 1
16:10:40
```
</details>
|
1.0
|
mavros_extras fails to build on Kinetic - The latest release of mavros_extras is failing to build on Kinetic due to a missing symbol in mavlink.
It aeears to have been triggered by the [release of mavlink 2020.5.5 ros/rosdistro/pull/24718

`16:10:40 /tmp/binarydeb/ros-kinetic-mavros-extras-1.1.0/src/plugins/odom.cpp:228:42: error: ‘BODY_FRD’ is not a member of ‘mavlink::common::MAV_FRAME’
16:10:40 msg.child_frame_id = utils::enum_value(MAV_FRAME::BODY_FRD);`
http://build.ros.org/view/Kbin_uX64/job/Kbin_uX64__mavros_extras__ubuntu_xenial_amd64__binary/29/console
<details>
```
16:10:40 /tmp/binarydeb/ros-kinetic-mavros-extras-1.1.0/src/plugins/odom.cpp: In member function ‘void mavros::extra_plugins::OdometryPlugin::odom_cb(const ConstPtr&)’:
16:10:40 /tmp/binarydeb/ros-kinetic-mavros-extras-1.1.0/src/plugins/odom.cpp:228:42: error: ‘BODY_FRD’ is not a member of ‘mavlink::common::MAV_FRAME’
16:10:40 msg.child_frame_id = utils::enum_value(MAV_FRAME::BODY_FRD);
16:10:40 ^
16:10:40 CMakeFiles/mavros_extras.dir/build.make:353: recipe for target 'CMakeFiles/mavros_extras.dir/src/plugins/odom.cpp.o' failed
16:10:40 make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-mavros-extras-1.1.0/obj-x86_64-linux-gnu'
16:10:40 make[4]: *** [CMakeFiles/mavros_extras.dir/src/plugins/odom.cpp.o] Error 1
16:10:40 make[3]: *** [CMakeFiles/mavros_extras.dir/all] Error 2
16:10:40 CMakeFiles/Makefile2:186: recipe for target 'CMakeFiles/mavros_extras.dir/all' failed
16:10:40 make[3]: Leaving directory '/tmp/binarydeb/ros-kinetic-mavros-extras-1.1.0/obj-x86_64-linux-gnu'
16:10:40 Makefile:130: recipe for target 'all' failed
16:10:40 make[2]: *** [all] Error 2
16:10:40 make[2]: Leaving directory '/tmp/binarydeb/ros-kinetic-mavros-extras-1.1.0/obj-x86_64-linux-gnu'
16:10:40 dh_auto_build: make -j1 returned exit code 2
16:10:40 cd /tmp/binarydeb/ros-kinetic-mavros-extras-1.1.0
16:10:40 make[1]: *** [override_dh_auto_build] Error 2
16:10:40 debian/rules:35: recipe for target 'override_dh_auto_build' failed
16:10:40 make[1]: Leaving directory '/tmp/binarydeb/ros-kinetic-mavros-extras-1.1.0'
16:10:40 debian/rules:22: recipe for target 'build' failed
16:10:40 make: *** [build] Error 2
16:10:40 dpkg-buildpackage: error: debian/rules build gave error exit status 2
16:10:40 E: Building failed
16:10:40 Traceback (most recent call last):
16:10:40 File "/tmp/ros_buildfarm/ros_buildfarm/binarydeb_job.py", line 138, in build_binarydeb
16:10:40 subprocess.check_call(cmd, cwd=source_dir)
16:10:40 File "/usr/lib/python3.5/subprocess.py", line 581, in check_call
16:10:40 raise CalledProcessError(retcode, cmd)
16:10:40 subprocess.CalledProcessError: Command '['apt-src', 'build', 'ros-kinetic-mavros-extras']' returned non-zero exit status 1
16:10:40
```
</details>
|
non_process
|
mavros extras fails to build on kinetic the latest release of mavros extras is failing to build on kinetic due to a missing symbol in mavlink it aeears to have been triggered by the release of mavlink ros rosdistro pull tmp binarydeb ros kinetic mavros extras src plugins odom cpp error ‘body frd’ is not a member of ‘mavlink common mav frame’ msg child frame id utils enum value mav frame body frd tmp binarydeb ros kinetic mavros extras src plugins odom cpp in member function ‘void mavros extra plugins odometryplugin odom cb const constptr ’ tmp binarydeb ros kinetic mavros extras src plugins odom cpp error ‘body frd’ is not a member of ‘mavlink common mav frame’ msg child frame id utils enum value mav frame body frd cmakefiles mavros extras dir build make recipe for target cmakefiles mavros extras dir src plugins odom cpp o failed make leaving directory tmp binarydeb ros kinetic mavros extras obj linux gnu make error make error cmakefiles recipe for target cmakefiles mavros extras dir all failed make leaving directory tmp binarydeb ros kinetic mavros extras obj linux gnu makefile recipe for target all failed make error make leaving directory tmp binarydeb ros kinetic mavros extras obj linux gnu dh auto build make returned exit code cd tmp binarydeb ros kinetic mavros extras make error debian rules recipe for target override dh auto build failed make leaving directory tmp binarydeb ros kinetic mavros extras debian rules recipe for target build failed make error dpkg buildpackage error debian rules build gave error exit status e building failed traceback most recent call last file tmp ros buildfarm ros buildfarm binarydeb job py line in build binarydeb subprocess check call cmd cwd source dir file usr lib subprocess py line in check call raise calledprocesserror retcode cmd subprocess calledprocesserror command returned non zero exit status
| 0
|
412,686
| 27,867,781,632
|
IssuesEvent
|
2023-03-21 11:28:31
|
nokacper24/group4webshop
|
https://api.github.com/repos/nokacper24/group4webshop
|
opened
|
[FEATURE REQUEST] Propper erros and doc for auth
|
documentation enhancement backend
|
**validator function**
needs proper documentation and proper error types returned
|
1.0
|
[FEATURE REQUEST] Propper erros and doc for auth - **validator function**
needs proper documentation and proper error types returned
|
non_process
|
propper erros and doc for auth validator function needs proper documentation and proper error types returned
| 0
|
775,655
| 27,234,942,468
|
IssuesEvent
|
2023-02-21 15:41:38
|
ascheid/itsg33-pbmm-issue-gen
|
https://api.github.com/repos/ascheid/itsg33-pbmm-issue-gen
|
closed
|
AC-9 PREVIOUS LOGON (ACCESS) NOTIFICATION
|
Priority: P2
|
PREVIOUS LOGON NOTIFICATION | NOTIFICATION OF ACCOUNT CHANGES
The information system notifies the user of changes to [Assignment: organization-defined security-related characteristics/parameters of the user’s account] during [Assignment: organization-defined time period].
|
1.0
|
AC-9 PREVIOUS LOGON (ACCESS) NOTIFICATION - PREVIOUS LOGON NOTIFICATION | NOTIFICATION OF ACCOUNT CHANGES
The information system notifies the user of changes to [Assignment: organization-defined security-related characteristics/parameters of the user’s account] during [Assignment: organization-defined time period].
|
non_process
|
ac previous logon access notification previous logon notification notification of account changes the information system notifies the user of changes to during
| 0
|
447,550
| 31,714,068,877
|
IssuesEvent
|
2023-09-09 16:37:47
|
Rohitkk432/Rohit-Kodam
|
https://api.github.com/repos/Rohitkk432/Rohit-Kodam
|
opened
|
check this issue
|
documentation
|
lets goo
This issue was created at https://www.defi-os.com , please login/signup on it to get cash rewards for solving it.
|
1.0
|
check this issue - lets goo
This issue was created at https://www.defi-os.com , please login/signup on it to get cash rewards for solving it.
|
non_process
|
check this issue lets goo this issue was created at please login signup on it to get cash rewards for solving it
| 0
|
19,026
| 2,616,017,838
|
IssuesEvent
|
2015-03-02 00:59:40
|
jasonhall/bwapi
|
https://api.github.com/repos/jasonhall/bwapi
|
closed
|
Auto-menu join game freezes client
|
auto-migrated Component-Logic Milestone-Release Priority-High Type-Regression Usability
|
```
Joining a network game normally produces expected result.
Joining using auto-menu causes client to hang in joining process.
Only tested with Local PC.
```
Original issue reported on code.google.com by `AHeinerm` on 11 Nov 2011 at 5:07
|
1.0
|
Auto-menu join game freezes client - ```
Joining a network game normally produces expected result.
Joining using auto-menu causes client to hang in joining process.
Only tested with Local PC.
```
Original issue reported on code.google.com by `AHeinerm` on 11 Nov 2011 at 5:07
|
non_process
|
auto menu join game freezes client joining a network game normally produces expected result joining using auto menu causes client to hang in joining process only tested with local pc original issue reported on code google com by aheinerm on nov at
| 0
|
42,758
| 9,306,942,125
|
IssuesEvent
|
2019-03-25 10:57:15
|
Cinimex-Informatica/mq-java-exporter
|
https://api.github.com/repos/Cinimex-Informatica/mq-java-exporter
|
closed
|
Metric "mq_put_put_persistent_messages_byte_count_totalmessages" has wrong units
|
bug code docs
|
"mq_put_put_persistent_messages_byte_count_totalmessages" should have "totalbytes" as units
|
1.0
|
Metric "mq_put_put_persistent_messages_byte_count_totalmessages" has wrong units - "mq_put_put_persistent_messages_byte_count_totalmessages" should have "totalbytes" as units
|
non_process
|
metric mq put put persistent messages byte count totalmessages has wrong units mq put put persistent messages byte count totalmessages should have totalbytes as units
| 0
|
16,387
| 21,132,915,004
|
IssuesEvent
|
2022-04-06 01:40:34
|
streamnative/flink
|
https://api.github.com/repos/streamnative/flink
|
opened
|
[SQL Connector] Investigate whether need to migrate SourceProvider to DataStreamScanProvider
|
compute/data-processing type/feature
|
Kafka and Hive uses DataStreamScanProvider, need to figure out what does it do and whether do we need it ?
|
1.0
|
[SQL Connector] Investigate whether need to migrate SourceProvider to DataStreamScanProvider - Kafka and Hive uses DataStreamScanProvider, need to figure out what does it do and whether do we need it ?
|
process
|
investigate whether need to migrate sourceprovider to datastreamscanprovider kafka and hive uses datastreamscanprovider need to figure out what does it do and whether do we need it
| 1
|
20,042
| 4,482,059,590
|
IssuesEvent
|
2016-08-29 03:15:36
|
dokku/dokku-mariadb
|
https://api.github.com/repos/dokku/dokku-mariadb
|
closed
|
How to connect with client via ssh tunnel?
|
type: documentation type: service
|
I try to connect to a db with sequel pro - can't figure out how. Is it possible?
|
1.0
|
How to connect with client via ssh tunnel? - I try to connect to a db with sequel pro - can't figure out how. Is it possible?
|
non_process
|
how to connect with client via ssh tunnel i try to connect to a db with sequel pro can t figure out how is it possible
| 0
|
38,899
| 2,850,529,205
|
IssuesEvent
|
2015-05-31 17:11:57
|
damonkohler/sl4a
|
https://api.github.com/repos/damonkohler/sl4a
|
opened
|
Add Sleep support
|
auto-migrated Priority-Medium Type-Enhancement
|
_From @GoogleCodeExporter on May 31, 2015 11:30_
```
I made Sleep Interpreter from Sleep(v2.1) http://sleep.dashnine.org/
It can access to SL4A APIs.
If this would be accepted I will attach the source zip on here for commits.
Anyway,here is the .apk for Sleep users.
The extension would be ".sl".
Don't use the Add "Sleep" menu of SL4A because it might crash.
Create sleep(.sl) script from other editors or rename other languages script
files extension.
eg. "name.pl" change it to "name.sl"
This is the hello_world.sl sample script.
import com.googlecode.rpc.*;
$droid = [new Android];
[$droid call : "makeToast","Hello, Android!"];
```
Original issue reported on code.google.com by `tomcatalbino` on 10 Mar 2012 at 6:11
Attachments:
* [SleepForAndroid.apk](https://storage.googleapis.com/google-code-attachments/android-scripting/issue-608/comment-0/SleepForAndroid.apk)
_Copied from original issue: damonkohler/android-scripting#608_
|
1.0
|
Add Sleep support - _From @GoogleCodeExporter on May 31, 2015 11:30_
```
I made Sleep Interpreter from Sleep(v2.1) http://sleep.dashnine.org/
It can access to SL4A APIs.
If this would be accepted I will attach the source zip on here for commits.
Anyway,here is the .apk for Sleep users.
The extension would be ".sl".
Don't use the Add "Sleep" menu of SL4A because it might crash.
Create sleep(.sl) script from other editors or rename other languages script
files extension.
eg. "name.pl" change it to "name.sl"
This is the hello_world.sl sample script.
import com.googlecode.rpc.*;
$droid = [new Android];
[$droid call : "makeToast","Hello, Android!"];
```
Original issue reported on code.google.com by `tomcatalbino` on 10 Mar 2012 at 6:11
Attachments:
* [SleepForAndroid.apk](https://storage.googleapis.com/google-code-attachments/android-scripting/issue-608/comment-0/SleepForAndroid.apk)
_Copied from original issue: damonkohler/android-scripting#608_
|
non_process
|
add sleep support from googlecodeexporter on may i made sleep interpreter from sleep it can access to apis if this would be accepted i will attach the source zip on here for commits anyway here is the apk for sleep users the extension would be sl don t use the add sleep menu of because it might crash create sleep sl script from other editors or rename other languages script files extension eg name pl change it to name sl this is the hello world sl sample script import com googlecode rpc droid original issue reported on code google com by tomcatalbino on mar at attachments copied from original issue damonkohler android scripting
| 0
|
19,331
| 25,472,542,732
|
IssuesEvent
|
2022-11-25 11:28:03
|
prisma/prisma
|
https://api.github.com/repos/prisma/prisma
|
opened
|
multi-schema + introspection: rename models and enums to avoid name collisions
|
process/candidate kind/improvement topic: introspection tech/engines/introspection engine team/schema topic: multiSchema
|
## Problem
When multiple enums/tables share a name, but are in different database schemas, we do _not_ apply any renaming logic in introspection, leading to name collisions. The reasoning is that users will fix them after introspection, and re-introspection will keep the new names.
The problem with that reasoning is that disambiguating can get complicated, since we produce models/enums with exactly the same name in the Prisma schema, meaning that **users need knowledge of the database schema that isn't expressed in the introspected schema in order to make the introspected schema correct**.
## Example
The following postgres catalog:
```sql
CREATE SCHEMA "first";
CREATE TYPE "first"."HappyMood" AS ENUM ('happy');
CREATE TABLE "first"."HappyPerson" (mood "first"."HappyMood" PRIMARY KEY);
CREATE SCHEMA "second";
CREATE TYPE "second"."HappyMood" AS ENUM ('veryHappy');
CREATE TABLE "second"."VeryHappyPerson" (mood "second"."HappyMood" PRIMARY KEY);
CREATE TABLE "second"."HappyPerson" (mood "first"."HappyMood" PRIMARY KEY);
```
introspects to the following schema:
```prisma
generator client {
provider = "prisma-client-js"
previewFeatures = ["multiSchema"]
}
datasource db {
provider = "postgresql"
url = "env(TEST_DATABASE_URL)"
schemas = ["first", "second"]
}
model HappyPerson {
mood HappyMood @id
@@schema("first")
}
model HappyPerson {
mood HappyMood @id
@@schema("second")
}
model VeryHappyPerson {
mood HappyMood @id
@@schema("second")
}
enum HappyMood {
happy
@@schema("first")
}
enum HappyMood {
veryHappy
@@schema("second")
}
```
|
1.0
|
multi-schema + introspection: rename models and enums to avoid name collisions - ## Problem
When multiple enums/tables share a name, but are in different database schemas, we do _not_ apply any renaming logic in introspection, leading to name collisions. The reasoning is that users will fix them after introspection, and re-introspection will keep the new names.
The problem with that reasoning is that disambiguating can get complicated, since we produce models/enums with exactly the same name in the Prisma schema, meaning that **users need knowledge of the database schema that isn't expressed in the introspected schema in order to make the introspected schema correct**.
## Example
The following postgres catalog:
```sql
CREATE SCHEMA "first";
CREATE TYPE "first"."HappyMood" AS ENUM ('happy');
CREATE TABLE "first"."HappyPerson" (mood "first"."HappyMood" PRIMARY KEY);
CREATE SCHEMA "second";
CREATE TYPE "second"."HappyMood" AS ENUM ('veryHappy');
CREATE TABLE "second"."VeryHappyPerson" (mood "second"."HappyMood" PRIMARY KEY);
CREATE TABLE "second"."HappyPerson" (mood "first"."HappyMood" PRIMARY KEY);
```
introspects to the following schema:
```prisma
generator client {
provider = "prisma-client-js"
previewFeatures = ["multiSchema"]
}
datasource db {
provider = "postgresql"
url = "env(TEST_DATABASE_URL)"
schemas = ["first", "second"]
}
model HappyPerson {
mood HappyMood @id
@@schema("first")
}
model HappyPerson {
mood HappyMood @id
@@schema("second")
}
model VeryHappyPerson {
mood HappyMood @id
@@schema("second")
}
enum HappyMood {
happy
@@schema("first")
}
enum HappyMood {
veryHappy
@@schema("second")
}
```
|
process
|
multi schema introspection rename models and enums to avoid name collisions problem when multiple enums tables share a name but are in different database schemas we do not apply any renaming logic in introspection leading to name collisions the reasoning is that users will fix them after introspection and re introspection will keep the new names the problem with that reasoning is that disambiguating can get complicated since we produce models enums with exactly the same name in the prisma schema meaning that users need knowledge of the database schema that isn t expressed in the introspected schema in order to make the introspected schema correct example the following postgres catalog sql create schema first create type first happymood as enum happy create table first happyperson mood first happymood primary key create schema second create type second happymood as enum veryhappy create table second veryhappyperson mood second happymood primary key create table second happyperson mood first happymood primary key introspects to the following schema prisma generator client provider prisma client js previewfeatures datasource db provider postgresql url env test database url schemas model happyperson mood happymood id schema first model happyperson mood happymood id schema second model veryhappyperson mood happymood id schema second enum happymood happy schema first enum happymood veryhappy schema second
| 1
|
13,014
| 15,370,751,493
|
IssuesEvent
|
2021-03-02 09:11:45
|
prisma/prisma
|
https://api.github.com/repos/prisma/prisma
|
closed
|
Error: Failure during a migration command: Connector error. (error: Error querying the database: Error querying the database: Server error: `ERROR 42S01 (1050): Table './<table-name>/City' already exists'
|
bug/1-repro-available kind/bug process/candidate team/migrations topic: windows
|
<!-- If required, please update the title to be clear and descriptive -->
Command: `prisma migrate up --experimental`
Version: `2.5.0`
Binary Version: `9a670138b1db276001d785a2adcba1584c869d24`
Report: https://prisma-errors.netlify.app/report/10459
OS: `x64 darwin 19.5.0`
JS Stacktrace:
```
Error: Failure during a migration command: Connector error. (error: Error querying the database: Error querying the database: Server error: `ERROR 42S01 (1050): Table './<folder-name>/City' already exists'
0: migration_core::api::ApplyMigration
with migration_id="20200723100056-test"
at migration-engine/core/src/api.rs:79)
at Object.<anonymous> (/path/node_modules/@prisma/cli/build/index.js:2:2145445)
at MigrateEngine.handleResponse (/path/node_modules/@prisma/cli/build/index.js:2:2143653)
at LineStream.<anonymous> (/path/node_modules/@prisma/cli/build/index.js:2:2145110)
at LineStream.emit (events.js:311:20)
at LineStream.EventEmitter.emit (domain.js:482:12)
at addChunk (_stream_readable.js:294:12)
at readableAddChunk (_stream_readable.js:275:11)
at LineStream.Readable.push (_stream_readable.js:209:10)
at LineStream.Transform.push (_stream_transform.js:152:32)
at LineStream._pushBuffer (/path/node_modules/@prisma/cli/build/index.js:2:1813582)
```
Rust Stacktrace:
```
Failure during a migration command: Connector error. (error: Error querying the database: Error querying the database: Server error: `ERROR 42S01 (1050): Table './<folder-name>/City' already exists'
0: migration_core::api::ApplyMigration
with migration_id="20200723100056-test"
at migration-engine/core/src/api.rs:79)
```
|
1.0
|
Error: Failure during a migration command: Connector error. (error: Error querying the database: Error querying the database: Server error: `ERROR 42S01 (1050): Table './<table-name>/City' already exists' - <!-- If required, please update the title to be clear and descriptive -->
Command: `prisma migrate up --experimental`
Version: `2.5.0`
Binary Version: `9a670138b1db276001d785a2adcba1584c869d24`
Report: https://prisma-errors.netlify.app/report/10459
OS: `x64 darwin 19.5.0`
JS Stacktrace:
```
Error: Failure during a migration command: Connector error. (error: Error querying the database: Error querying the database: Server error: `ERROR 42S01 (1050): Table './<folder-name>/City' already exists'
0: migration_core::api::ApplyMigration
with migration_id="20200723100056-test"
at migration-engine/core/src/api.rs:79)
at Object.<anonymous> (/path/node_modules/@prisma/cli/build/index.js:2:2145445)
at MigrateEngine.handleResponse (/path/node_modules/@prisma/cli/build/index.js:2:2143653)
at LineStream.<anonymous> (/path/node_modules/@prisma/cli/build/index.js:2:2145110)
at LineStream.emit (events.js:311:20)
at LineStream.EventEmitter.emit (domain.js:482:12)
at addChunk (_stream_readable.js:294:12)
at readableAddChunk (_stream_readable.js:275:11)
at LineStream.Readable.push (_stream_readable.js:209:10)
at LineStream.Transform.push (_stream_transform.js:152:32)
at LineStream._pushBuffer (/path/node_modules/@prisma/cli/build/index.js:2:1813582)
```
Rust Stacktrace:
```
Failure during a migration command: Connector error. (error: Error querying the database: Error querying the database: Server error: `ERROR 42S01 (1050): Table './<folder-name>/City' already exists'
0: migration_core::api::ApplyMigration
with migration_id="20200723100056-test"
at migration-engine/core/src/api.rs:79)
```
|
process
|
error failure during a migration command connector error error error querying the database error querying the database server error error table city already exists command prisma migrate up experimental version binary version report os darwin js stacktrace error failure during a migration command connector error error error querying the database error querying the database server error error table city already exists migration core api applymigration with migration id test at migration engine core src api rs at object path node modules prisma cli build index js at migrateengine handleresponse path node modules prisma cli build index js at linestream path node modules prisma cli build index js at linestream emit events js at linestream eventemitter emit domain js at addchunk stream readable js at readableaddchunk stream readable js at linestream readable push stream readable js at linestream transform push stream transform js at linestream pushbuffer path node modules prisma cli build index js rust stacktrace failure during a migration command connector error error error querying the database error querying the database server error error table city already exists migration core api applymigration with migration id test at migration engine core src api rs
| 1
|
564,707
| 16,739,593,585
|
IssuesEvent
|
2021-06-11 08:11:41
|
AxonFramework/extension-amqp
|
https://api.github.com/repos/AxonFramework/extension-amqp
|
opened
|
Precision on Date Time Utils
|
Ideal for Contribution Priority 1: Must Type: Bug
|
<!-- Please use markdown (https://guides.github.com/features/mastering-markdown/) semantics throughout the bug description. -->
### Basic information
* Axon Framework version: 4.5.1
* JDK version: any
* AMQP Extension version: master
* Complete executable reproducer if available (e.g. GitHub Repo): #84
While dependabot tried to upgrade extension Axon Framework version from 4.5 to 4.5.1, some of the tests started to fail. This is due to the changes made on Axon Framework https://github.com/AxonFramework/AxonFramework/issues/1749. Tests should be revisited and fixed.
### Steps to reproduce
Rerun #84
### Expected behaviour
All tests should pass.
### Actual behaviour
Tests are failing.
|
1.0
|
Precision on Date Time Utils - <!-- Please use markdown (https://guides.github.com/features/mastering-markdown/) semantics throughout the bug description. -->
### Basic information
* Axon Framework version: 4.5.1
* JDK version: any
* AMQP Extension version: master
* Complete executable reproducer if available (e.g. GitHub Repo): #84
While dependabot tried to upgrade extension Axon Framework version from 4.5 to 4.5.1, some of the tests started to fail. This is due to the changes made on Axon Framework https://github.com/AxonFramework/AxonFramework/issues/1749. Tests should be revisited and fixed.
### Steps to reproduce
Rerun #84
### Expected behaviour
All tests should pass.
### Actual behaviour
Tests are failing.
|
non_process
|
precision on date time utils basic information axon framework version jdk version any amqp extension version master complete executable reproducer if available e g github repo while dependabot tried to upgrade extension axon framework version from to some of the tests started to fail this is due to the changes made on axon framework tests should be revisited and fixed steps to reproduce rerun expected behaviour all tests should pass actual behaviour tests are failing
| 0
|
19,760
| 3,490,788,233
|
IssuesEvent
|
2016-01-04 12:15:28
|
Mobicents/RestComm
|
https://api.github.com/repos/Mobicents/RestComm
|
opened
|
Clicking on a RVD diagram node should show the respective module
|
UI Visual App Designer
|
Being able to navigate between modules from the project diagram looks like a quicker and easier from repeatedly going through the menu or scanning the module tabs. The
|
1.0
|
Clicking on a RVD diagram node should show the respective module - Being able to navigate between modules from the project diagram looks like a quicker and easier from repeatedly going through the menu or scanning the module tabs. The
|
non_process
|
clicking on a rvd diagram node should show the respective module being able to navigate between modules from the project diagram looks like a quicker and easier from repeatedly going through the menu or scanning the module tabs the
| 0
|
117,698
| 17,512,700,949
|
IssuesEvent
|
2021-08-11 01:07:16
|
HelioGuilherme66/RIDE
|
https://api.github.com/repos/HelioGuilherme66/RIDE
|
closed
|
WS-2019-0490 (High) detected in jcommander-1.72.jar
|
security vulnerability
|
## WS-2019-0490 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jcommander-1.72.jar</b></p></summary>
<p>Command line parsing</p>
<p>Library home page: <a href="http://jcommander.org">http://jcommander.org</a></p>
<p>Path to dependency file: RIDE/doc/other/example_maven_runner/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/com/beust/jcommander/1.72/jcommander-1.72.jar</p>
<p>
Dependency Hierarchy:
- robotframework-seleniumlibrary-3.141.59.26535.jar (Root Library)
- selenium-server-3.141.59.jar
- :x: **jcommander-1.72.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/HelioGuilherme66/RIDE/commit/645c5741976460cdfad788dbe21501c3029ff4e4">645c5741976460cdfad788dbe21501c3029ff4e4</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>
Inclusion of Functionality from Untrusted Control Sphere vulnerability found in jcommander before 1.75. jcommander resolving dependencies over HTTP instead of HTTPS.
<p>Publish Date: 2019-02-19
<p>URL: <a href=https://github.com/cbeust/jcommander/commit/3ae95595febbed9c13f367b6bda5c0be1c572c53>WS-2019-0490</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/cbeust/jcommander/issues/465">https://github.com/cbeust/jcommander/issues/465</a></p>
<p>Release Date: 2019-02-19</p>
<p>Fix Resolution: com.beust:jcommander:1.75</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
True
|
WS-2019-0490 (High) detected in jcommander-1.72.jar - ## WS-2019-0490 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jcommander-1.72.jar</b></p></summary>
<p>Command line parsing</p>
<p>Library home page: <a href="http://jcommander.org">http://jcommander.org</a></p>
<p>Path to dependency file: RIDE/doc/other/example_maven_runner/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/com/beust/jcommander/1.72/jcommander-1.72.jar</p>
<p>
Dependency Hierarchy:
- robotframework-seleniumlibrary-3.141.59.26535.jar (Root Library)
- selenium-server-3.141.59.jar
- :x: **jcommander-1.72.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/HelioGuilherme66/RIDE/commit/645c5741976460cdfad788dbe21501c3029ff4e4">645c5741976460cdfad788dbe21501c3029ff4e4</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>
Inclusion of Functionality from Untrusted Control Sphere vulnerability found in jcommander before 1.75. jcommander resolving dependencies over HTTP instead of HTTPS.
<p>Publish Date: 2019-02-19
<p>URL: <a href=https://github.com/cbeust/jcommander/commit/3ae95595febbed9c13f367b6bda5c0be1c572c53>WS-2019-0490</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/cbeust/jcommander/issues/465">https://github.com/cbeust/jcommander/issues/465</a></p>
<p>Release Date: 2019-02-19</p>
<p>Fix Resolution: com.beust:jcommander:1.75</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
non_process
|
ws high detected in jcommander jar ws high severity vulnerability vulnerable library jcommander jar command line parsing library home page a href path to dependency file ride doc other example maven runner pom xml path to vulnerable library home wss scanner repository com beust jcommander jcommander jar dependency hierarchy robotframework seleniumlibrary jar root library selenium server jar x jcommander jar vulnerable library found in head commit a href vulnerability details inclusion of functionality from untrusted control sphere vulnerability found in jcommander before jcommander resolving dependencies over http instead of https publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution com beust jcommander step up your open source security game with whitesource
| 0
|
549,975
| 16,102,692,889
|
IssuesEvent
|
2021-04-27 11:24:46
|
googleapis/python-oslogin
|
https://api.github.com/repos/googleapis/python-oslogin
|
opened
|
Synthesis failed for python-oslogin
|
autosynth failure priority: p1 type: bug
|
Hello! Autosynth couldn't regenerate python-oslogin. :broken_heart:
Please investigate and fix this issue within 5 business days. While it remains broken,
this library cannot be updated with changes to the python-oslogin API, and the library grows
stale.
See https://github.com/googleapis/synthtool/blob/master/autosynth/TroubleShooting.md
for trouble shooting tips.
Here's the output from running `synth.py`:
```
esource_names_plugin' indicated that a canonical reproducible form can be obtained by modifying arguments sha256 = "4b714b35ee04ba90f560ee60e64c7357428efcb6b0f3a298f343f8ec2c6d4a5d"
DEBUG: Call stack for the definition of repository 'com_google_protoc_java_resource_names_plugin' which is a http_archive (rule definition at /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/bazel_tools/tools/build_defs/repo/http.bzl:296:16):
- <builtin>
- /home/kbuilder/.cache/synthtool/googleapis/WORKSPACE:234:1
DEBUG: Rule 'protoc_docs_plugin' indicated that a canonical reproducible form can be obtained by modifying arguments sha256 = "33b387245455775e0de45869c7355cc5a9e98b396a6fc43b02812a63b75fee20"
DEBUG: Call stack for the definition of repository 'protoc_docs_plugin' which is a http_archive (rule definition at /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/bazel_tools/tools/build_defs/repo/http.bzl:296:16):
- <builtin>
- /home/kbuilder/.cache/synthtool/googleapis/WORKSPACE:258:1
DEBUG: Rule 'rules_python' indicated that a canonical reproducible form can be obtained by modifying arguments sha256 = "48f7e716f4098b85296ad93f5a133baf712968c13fbc2fdf3a6136158fe86eac"
DEBUG: Call stack for the definition of repository 'rules_python' which is a http_archive (rule definition at /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/bazel_tools/tools/build_defs/repo/http.bzl:296:16):
- <builtin>
- /home/kbuilder/.cache/synthtool/googleapis/WORKSPACE:42:1
DEBUG: Rule 'gapic_generator_python' indicated that a canonical reproducible form can be obtained by modifying arguments sha256 = "fe995def6873fcbdc2a8764ef4bce96eb971a9d1950fe9db9be442f3c64fb3b6"
DEBUG: Call stack for the definition of repository 'gapic_generator_python' which is a http_archive (rule definition at /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/bazel_tools/tools/build_defs/repo/http.bzl:296:16):
- <builtin>
- /home/kbuilder/.cache/synthtool/googleapis/WORKSPACE:278:1
DEBUG: Rule 'com_googleapis_gapic_generator_go' indicated that a canonical reproducible form can be obtained by modifying arguments sha256 = "c0d0efba86429cee5e52baf838165b0ed7cafae1748d025abec109d25e006628"
DEBUG: Call stack for the definition of repository 'com_googleapis_gapic_generator_go' which is a http_archive (rule definition at /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/bazel_tools/tools/build_defs/repo/http.bzl:296:16):
- <builtin>
- /home/kbuilder/.cache/synthtool/googleapis/WORKSPACE:300:1
DEBUG: Rule 'gapic_generator_php' indicated that a canonical reproducible form can be obtained by modifying arguments sha256 = "3dffc5c34a5f35666843df04b42d6ce1c545b992f9c093a777ec40833b548d86"
DEBUG: Call stack for the definition of repository 'gapic_generator_php' which is a http_archive (rule definition at /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/bazel_tools/tools/build_defs/repo/http.bzl:296:16):
- <builtin>
- /home/kbuilder/.cache/synthtool/googleapis/WORKSPACE:364:1
DEBUG: Rule 'gapic_generator_csharp' indicated that a canonical reproducible form can be obtained by modifying arguments sha256 = "4db430cfb9293e4521ec8e8138f8095faf035d8e752cf332d227710d749939eb"
DEBUG: Call stack for the definition of repository 'gapic_generator_csharp' which is a http_archive (rule definition at /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/bazel_tools/tools/build_defs/repo/http.bzl:296:16):
- <builtin>
- /home/kbuilder/.cache/synthtool/googleapis/WORKSPACE:386:1
DEBUG: Rule 'gapic_generator_ruby' indicated that a canonical reproducible form can be obtained by modifying arguments sha256 = "a14ec475388542f2ea70d16d75579065758acc4b99fdd6d59463d54e1a9e4499"
DEBUG: Call stack for the definition of repository 'gapic_generator_ruby' which is a http_archive (rule definition at /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/bazel_tools/tools/build_defs/repo/http.bzl:296:16):
- <builtin>
- /home/kbuilder/.cache/synthtool/googleapis/WORKSPACE:400:1
DEBUG: /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/rules_python/python/pip.bzl:61:5: DEPRECATED: the pip_repositories rule has been replaced with pip_install, please see rules_python 0.1 release notes
DEBUG: Rule 'bazel_skylib' indicated that a canonical reproducible form can be obtained by modifying arguments sha256 = "1dde365491125a3db70731e25658dfdd3bc5dbdfd11b840b3e987ecf043c7ca0"
DEBUG: Call stack for the definition of repository 'bazel_skylib' which is a http_archive (rule definition at /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/bazel_tools/tools/build_defs/repo/http.bzl:296:16):
- <builtin>
- /home/kbuilder/.cache/synthtool/googleapis/WORKSPACE:35:1
DEBUG: /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/io_grpc_grpc_java/java_grpc_library.bzl:195:9: Multiple values in 'deps' is deprecated in oslogin_java_grpc
Analyzing: target //google/cloud/oslogin/v1:oslogin-v1-py (1 packages loaded, 0 targets configured)
ERROR: /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/upb/bazel/upb_proto_library.bzl:257:29: aspect() got unexpected keyword argument 'incompatible_use_toolchain_transition'
ERROR: Analysis of target '//google/cloud/oslogin/v1:oslogin-v1-py' failed; build aborted: error loading package '@com_github_grpc_grpc//': in /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/com_github_grpc_grpc/bazel/grpc_build_system.bzl: Extension file 'bazel/upb_proto_library.bzl' has errors
INFO: Elapsed time: 0.247s
INFO: 0 processes.
FAILED: Build did NOT complete successfully (3 packages loaded, 4 targets configured)
FAILED: Build did NOT complete successfully (3 packages loaded, 4 targets configured)
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/synthtool/__main__.py", line 102, in <module>
main()
File "/tmpfs/src/github/synthtool/env/lib/python3.6/site-packages/click/core.py", line 829, in __call__
return self.main(*args, **kwargs)
File "/tmpfs/src/github/synthtool/env/lib/python3.6/site-packages/click/core.py", line 782, in main
rv = self.invoke(ctx)
File "/tmpfs/src/github/synthtool/env/lib/python3.6/site-packages/click/core.py", line 1066, in invoke
return ctx.invoke(self.callback, **ctx.params)
File "/tmpfs/src/github/synthtool/env/lib/python3.6/site-packages/click/core.py", line 610, in invoke
return callback(*args, **kwargs)
File "/tmpfs/src/github/synthtool/synthtool/__main__.py", line 94, in main
spec.loader.exec_module(synth_module) # type: ignore
File "<frozen importlib._bootstrap_external>", line 678, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/home/kbuilder/.cache/synthtool/python-oslogin/synth.py", line 30, in <module>
include_protos=True,
File "/tmpfs/src/github/synthtool/synthtool/gcp/gapic_bazel.py", line 52, in py_library
return self._generate_code(service, version, "python", False, **kwargs)
File "/tmpfs/src/github/synthtool/synthtool/gcp/gapic_bazel.py", line 204, in _generate_code
shell.run(bazel_run_args)
File "/tmpfs/src/github/synthtool/synthtool/shell.py", line 39, in run
raise exc
File "/tmpfs/src/github/synthtool/synthtool/shell.py", line 33, in run
encoding="utf-8",
File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/subprocess.py", line 438, in run
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command '['bazel', '--max_idle_secs=240', 'build', '//google/cloud/oslogin/v1:oslogin-v1-py']' returned non-zero exit status 1.
2021-04-27 04:24:45,303 autosynth [ERROR] > Synthesis failed
2021-04-27 04:24:45,304 autosynth [DEBUG] > Running: git reset --hard HEAD
HEAD is now at 02d964c chore(revert): revert preventing normalization (#65)
2021-04-27 04:24:45,309 autosynth [DEBUG] > Running: git checkout autosynth
Switched to branch 'autosynth'
2021-04-27 04:24:45,313 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 356, in <module>
main()
File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 191, in main
return _inner_main(temp_dir)
File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 336, in _inner_main
commit_count = synthesize_loop(x, multiple_prs, change_pusher, synthesizer)
File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 68, in synthesize_loop
has_changes = toolbox.synthesize_version_in_new_branch(synthesizer, youngest)
File "/tmpfs/src/github/synthtool/autosynth/synth_toolbox.py", line 259, 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/e072cf11-896d-462c-88d9-e07ebd57a934/targets/github%2Fsynthtool;config=default/tests;query=python-oslogin;failed=false).
|
1.0
|
Synthesis failed for python-oslogin - Hello! Autosynth couldn't regenerate python-oslogin. :broken_heart:
Please investigate and fix this issue within 5 business days. While it remains broken,
this library cannot be updated with changes to the python-oslogin API, and the library grows
stale.
See https://github.com/googleapis/synthtool/blob/master/autosynth/TroubleShooting.md
for trouble shooting tips.
Here's the output from running `synth.py`:
```
esource_names_plugin' indicated that a canonical reproducible form can be obtained by modifying arguments sha256 = "4b714b35ee04ba90f560ee60e64c7357428efcb6b0f3a298f343f8ec2c6d4a5d"
DEBUG: Call stack for the definition of repository 'com_google_protoc_java_resource_names_plugin' which is a http_archive (rule definition at /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/bazel_tools/tools/build_defs/repo/http.bzl:296:16):
- <builtin>
- /home/kbuilder/.cache/synthtool/googleapis/WORKSPACE:234:1
DEBUG: Rule 'protoc_docs_plugin' indicated that a canonical reproducible form can be obtained by modifying arguments sha256 = "33b387245455775e0de45869c7355cc5a9e98b396a6fc43b02812a63b75fee20"
DEBUG: Call stack for the definition of repository 'protoc_docs_plugin' which is a http_archive (rule definition at /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/bazel_tools/tools/build_defs/repo/http.bzl:296:16):
- <builtin>
- /home/kbuilder/.cache/synthtool/googleapis/WORKSPACE:258:1
DEBUG: Rule 'rules_python' indicated that a canonical reproducible form can be obtained by modifying arguments sha256 = "48f7e716f4098b85296ad93f5a133baf712968c13fbc2fdf3a6136158fe86eac"
DEBUG: Call stack for the definition of repository 'rules_python' which is a http_archive (rule definition at /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/bazel_tools/tools/build_defs/repo/http.bzl:296:16):
- <builtin>
- /home/kbuilder/.cache/synthtool/googleapis/WORKSPACE:42:1
DEBUG: Rule 'gapic_generator_python' indicated that a canonical reproducible form can be obtained by modifying arguments sha256 = "fe995def6873fcbdc2a8764ef4bce96eb971a9d1950fe9db9be442f3c64fb3b6"
DEBUG: Call stack for the definition of repository 'gapic_generator_python' which is a http_archive (rule definition at /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/bazel_tools/tools/build_defs/repo/http.bzl:296:16):
- <builtin>
- /home/kbuilder/.cache/synthtool/googleapis/WORKSPACE:278:1
DEBUG: Rule 'com_googleapis_gapic_generator_go' indicated that a canonical reproducible form can be obtained by modifying arguments sha256 = "c0d0efba86429cee5e52baf838165b0ed7cafae1748d025abec109d25e006628"
DEBUG: Call stack for the definition of repository 'com_googleapis_gapic_generator_go' which is a http_archive (rule definition at /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/bazel_tools/tools/build_defs/repo/http.bzl:296:16):
- <builtin>
- /home/kbuilder/.cache/synthtool/googleapis/WORKSPACE:300:1
DEBUG: Rule 'gapic_generator_php' indicated that a canonical reproducible form can be obtained by modifying arguments sha256 = "3dffc5c34a5f35666843df04b42d6ce1c545b992f9c093a777ec40833b548d86"
DEBUG: Call stack for the definition of repository 'gapic_generator_php' which is a http_archive (rule definition at /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/bazel_tools/tools/build_defs/repo/http.bzl:296:16):
- <builtin>
- /home/kbuilder/.cache/synthtool/googleapis/WORKSPACE:364:1
DEBUG: Rule 'gapic_generator_csharp' indicated that a canonical reproducible form can be obtained by modifying arguments sha256 = "4db430cfb9293e4521ec8e8138f8095faf035d8e752cf332d227710d749939eb"
DEBUG: Call stack for the definition of repository 'gapic_generator_csharp' which is a http_archive (rule definition at /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/bazel_tools/tools/build_defs/repo/http.bzl:296:16):
- <builtin>
- /home/kbuilder/.cache/synthtool/googleapis/WORKSPACE:386:1
DEBUG: Rule 'gapic_generator_ruby' indicated that a canonical reproducible form can be obtained by modifying arguments sha256 = "a14ec475388542f2ea70d16d75579065758acc4b99fdd6d59463d54e1a9e4499"
DEBUG: Call stack for the definition of repository 'gapic_generator_ruby' which is a http_archive (rule definition at /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/bazel_tools/tools/build_defs/repo/http.bzl:296:16):
- <builtin>
- /home/kbuilder/.cache/synthtool/googleapis/WORKSPACE:400:1
DEBUG: /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/rules_python/python/pip.bzl:61:5: DEPRECATED: the pip_repositories rule has been replaced with pip_install, please see rules_python 0.1 release notes
DEBUG: Rule 'bazel_skylib' indicated that a canonical reproducible form can be obtained by modifying arguments sha256 = "1dde365491125a3db70731e25658dfdd3bc5dbdfd11b840b3e987ecf043c7ca0"
DEBUG: Call stack for the definition of repository 'bazel_skylib' which is a http_archive (rule definition at /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/bazel_tools/tools/build_defs/repo/http.bzl:296:16):
- <builtin>
- /home/kbuilder/.cache/synthtool/googleapis/WORKSPACE:35:1
DEBUG: /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/io_grpc_grpc_java/java_grpc_library.bzl:195:9: Multiple values in 'deps' is deprecated in oslogin_java_grpc
Analyzing: target //google/cloud/oslogin/v1:oslogin-v1-py (1 packages loaded, 0 targets configured)
ERROR: /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/upb/bazel/upb_proto_library.bzl:257:29: aspect() got unexpected keyword argument 'incompatible_use_toolchain_transition'
ERROR: Analysis of target '//google/cloud/oslogin/v1:oslogin-v1-py' failed; build aborted: error loading package '@com_github_grpc_grpc//': in /home/kbuilder/.cache/bazel/_bazel_kbuilder/a732f932c2cbeb7e37e1543f189a2a73/external/com_github_grpc_grpc/bazel/grpc_build_system.bzl: Extension file 'bazel/upb_proto_library.bzl' has errors
INFO: Elapsed time: 0.247s
INFO: 0 processes.
FAILED: Build did NOT complete successfully (3 packages loaded, 4 targets configured)
FAILED: Build did NOT complete successfully (3 packages loaded, 4 targets configured)
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/synthtool/__main__.py", line 102, in <module>
main()
File "/tmpfs/src/github/synthtool/env/lib/python3.6/site-packages/click/core.py", line 829, in __call__
return self.main(*args, **kwargs)
File "/tmpfs/src/github/synthtool/env/lib/python3.6/site-packages/click/core.py", line 782, in main
rv = self.invoke(ctx)
File "/tmpfs/src/github/synthtool/env/lib/python3.6/site-packages/click/core.py", line 1066, in invoke
return ctx.invoke(self.callback, **ctx.params)
File "/tmpfs/src/github/synthtool/env/lib/python3.6/site-packages/click/core.py", line 610, in invoke
return callback(*args, **kwargs)
File "/tmpfs/src/github/synthtool/synthtool/__main__.py", line 94, in main
spec.loader.exec_module(synth_module) # type: ignore
File "<frozen importlib._bootstrap_external>", line 678, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/home/kbuilder/.cache/synthtool/python-oslogin/synth.py", line 30, in <module>
include_protos=True,
File "/tmpfs/src/github/synthtool/synthtool/gcp/gapic_bazel.py", line 52, in py_library
return self._generate_code(service, version, "python", False, **kwargs)
File "/tmpfs/src/github/synthtool/synthtool/gcp/gapic_bazel.py", line 204, in _generate_code
shell.run(bazel_run_args)
File "/tmpfs/src/github/synthtool/synthtool/shell.py", line 39, in run
raise exc
File "/tmpfs/src/github/synthtool/synthtool/shell.py", line 33, in run
encoding="utf-8",
File "/home/kbuilder/.pyenv/versions/3.6.9/lib/python3.6/subprocess.py", line 438, in run
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command '['bazel', '--max_idle_secs=240', 'build', '//google/cloud/oslogin/v1:oslogin-v1-py']' returned non-zero exit status 1.
2021-04-27 04:24:45,303 autosynth [ERROR] > Synthesis failed
2021-04-27 04:24:45,304 autosynth [DEBUG] > Running: git reset --hard HEAD
HEAD is now at 02d964c chore(revert): revert preventing normalization (#65)
2021-04-27 04:24:45,309 autosynth [DEBUG] > Running: git checkout autosynth
Switched to branch 'autosynth'
2021-04-27 04:24:45,313 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 356, in <module>
main()
File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 191, in main
return _inner_main(temp_dir)
File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 336, in _inner_main
commit_count = synthesize_loop(x, multiple_prs, change_pusher, synthesizer)
File "/tmpfs/src/github/synthtool/autosynth/synth.py", line 68, in synthesize_loop
has_changes = toolbox.synthesize_version_in_new_branch(synthesizer, youngest)
File "/tmpfs/src/github/synthtool/autosynth/synth_toolbox.py", line 259, 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/e072cf11-896d-462c-88d9-e07ebd57a934/targets/github%2Fsynthtool;config=default/tests;query=python-oslogin;failed=false).
|
non_process
|
synthesis failed for python oslogin hello autosynth couldn t regenerate python oslogin broken heart please investigate and fix this issue within business days while it remains broken this library cannot be updated with changes to the python oslogin api and the library grows stale see for trouble shooting tips here s the output from running synth py esource names plugin indicated that a canonical reproducible form can be obtained by modifying arguments debug call stack for the definition of repository com google protoc java resource names plugin which is a http archive rule definition at home kbuilder cache bazel bazel kbuilder external bazel tools tools build defs repo http bzl home kbuilder cache synthtool googleapis workspace debug rule protoc docs plugin indicated that a canonical reproducible form can be obtained by modifying arguments debug call stack for the definition of repository protoc docs plugin which is a http archive rule definition at home kbuilder cache bazel bazel kbuilder external bazel tools tools build defs repo http bzl home kbuilder cache synthtool googleapis workspace debug rule rules python indicated that a canonical reproducible form can be obtained by modifying arguments debug call stack for the definition of repository rules python which is a http archive rule definition at home kbuilder cache bazel bazel kbuilder external bazel tools tools build defs repo http bzl home kbuilder cache synthtool googleapis workspace debug rule gapic generator python indicated that a canonical reproducible form can be obtained by modifying arguments debug call stack for the definition of repository gapic generator python which is a http archive rule definition at home kbuilder cache bazel bazel kbuilder external bazel tools tools build defs repo http bzl home kbuilder cache synthtool googleapis workspace debug rule com googleapis gapic generator go indicated that a canonical reproducible form can be obtained by modifying arguments debug call stack for the definition of repository com googleapis gapic generator go which is a http archive rule definition at home kbuilder cache bazel bazel kbuilder external bazel tools tools build defs repo http bzl home kbuilder cache synthtool googleapis workspace debug rule gapic generator php indicated that a canonical reproducible form can be obtained by modifying arguments debug call stack for the definition of repository gapic generator php which is a http archive rule definition at home kbuilder cache bazel bazel kbuilder external bazel tools tools build defs repo http bzl home kbuilder cache synthtool googleapis workspace debug rule gapic generator csharp indicated that a canonical reproducible form can be obtained by modifying arguments debug call stack for the definition of repository gapic generator csharp which is a http archive rule definition at home kbuilder cache bazel bazel kbuilder external bazel tools tools build defs repo http bzl home kbuilder cache synthtool googleapis workspace debug rule gapic generator ruby indicated that a canonical reproducible form can be obtained by modifying arguments debug call stack for the definition of repository gapic generator ruby which is a http archive rule definition at home kbuilder cache bazel bazel kbuilder external bazel tools tools build defs repo http bzl home kbuilder cache synthtool googleapis workspace debug home kbuilder cache bazel bazel kbuilder external rules python python pip bzl deprecated the pip repositories rule has been replaced with pip install please see rules python release notes debug rule bazel skylib indicated that a canonical reproducible form can be obtained by modifying arguments debug call stack for the definition of repository bazel skylib which is a http archive rule definition at home kbuilder cache bazel bazel kbuilder external bazel tools tools build defs repo http bzl home kbuilder cache synthtool googleapis workspace debug home kbuilder cache bazel bazel kbuilder external io grpc grpc java java grpc library bzl multiple values in deps is deprecated in oslogin java grpc analyzing target google cloud oslogin oslogin py packages loaded targets configured error home kbuilder cache bazel bazel kbuilder external upb bazel upb proto library bzl aspect got unexpected keyword argument incompatible use toolchain transition error analysis of target google cloud oslogin oslogin py failed build aborted error loading package com github grpc grpc in home kbuilder cache bazel bazel kbuilder external com github grpc grpc bazel grpc build system bzl extension file bazel upb proto library bzl has errors info elapsed time info processes failed build did not complete successfully packages loaded targets configured failed build did not complete successfully packages loaded targets configured 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 synthtool main py line in main file tmpfs src github synthtool env lib site packages click core py line in call return self main args kwargs file tmpfs src github synthtool env lib site packages click core py line in main rv self invoke ctx file tmpfs src github synthtool env lib site packages click core py line in invoke return ctx invoke self callback ctx params file tmpfs src github synthtool env lib site packages click core py line in invoke return callback args kwargs file tmpfs src github synthtool synthtool main py line in main spec loader exec module synth module type ignore file line in exec module file line in call with frames removed file home kbuilder cache synthtool python oslogin synth py line in include protos true file tmpfs src github synthtool synthtool gcp gapic bazel py line in py library return self generate code service version python false kwargs file tmpfs src github synthtool synthtool gcp gapic bazel py line in generate code shell run bazel run args file tmpfs src github synthtool synthtool shell py line in run raise exc file tmpfs src github synthtool synthtool shell py line in run encoding utf file home kbuilder pyenv versions lib subprocess py line in run output stdout stderr stderr subprocess calledprocesserror command returned non zero exit status autosynth synthesis failed autosynth running git reset hard head head is now at chore revert revert preventing normalization autosynth running git checkout autosynth switched to branch autosynth 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 has changes toolbox synthesize version in new branch synthesizer youngest file tmpfs src github synthtool autosynth synth toolbox 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
|
9,697
| 12,700,191,987
|
IssuesEvent
|
2020-06-22 15:56:46
|
dotnet/runtime
|
https://api.github.com/repos/dotnet/runtime
|
closed
|
Execute .sh (bash scripts) file via “/bin/bash” in Linux with .NET Core
|
area-System.Diagnostics.Process untriaged
|
## Steps to reproduce
https://stackoverflow.com/questions/57209915/execute-sh-bash-scripts-file-via-bin-bash-in-linux-with-net-core
## Expected behavior
make my application open a new terminal window and run sample.sh
## Actual behavior
```
xdg-open: unexpected argument '/home/{filePathHere}/Assets/SystemTests/sample.sh'
Try 'xdg-open --help' for more information.
```
## Environment data
OS: Linux 4.15.0-48-generic dotnet/cli#51-Ubuntu
Framework: .NET Core 4.6.27817.03
`dotnet --info` output:
```
.NET Core SDK (reflecting any global.json):
Version: 2.2.401
Commit: 729b316c13
Runtime Environment:
OS Name: ubuntu
OS Version: 18.04
OS Platform: Linux
RID: ubuntu.18.04-x64
Base Path: /snap/dotnet-sdk/44/sdk/2.2.401/
Host (useful for support):
Version: 2.2.6
Commit: 7dac9b1b51
.NET Core SDKs installed:
2.2.401 [/snap/dotnet-sdk/44/sdk]
.NET Core runtimes installed:
Microsoft.AspNetCore.All 2.2.6 [/snap/dotnet-sdk/44/shared/Microsoft.AspNetCore.All]
Microsoft.AspNetCore.App 2.2.6 [/snap/dotnet-sdk/44/shared/Microsoft.AspNetCore.App]
Microsoft.NETCore.App 2.2.6 [/snap/dotnet-sdk/44/shared/Microsoft.NETCore.App]
To install additional .NET Core runtimes or SDKs:
https://aka.ms/dotnet-download
```
|
1.0
|
Execute .sh (bash scripts) file via “/bin/bash” in Linux with .NET Core - ## Steps to reproduce
https://stackoverflow.com/questions/57209915/execute-sh-bash-scripts-file-via-bin-bash-in-linux-with-net-core
## Expected behavior
make my application open a new terminal window and run sample.sh
## Actual behavior
```
xdg-open: unexpected argument '/home/{filePathHere}/Assets/SystemTests/sample.sh'
Try 'xdg-open --help' for more information.
```
## Environment data
OS: Linux 4.15.0-48-generic dotnet/cli#51-Ubuntu
Framework: .NET Core 4.6.27817.03
`dotnet --info` output:
```
.NET Core SDK (reflecting any global.json):
Version: 2.2.401
Commit: 729b316c13
Runtime Environment:
OS Name: ubuntu
OS Version: 18.04
OS Platform: Linux
RID: ubuntu.18.04-x64
Base Path: /snap/dotnet-sdk/44/sdk/2.2.401/
Host (useful for support):
Version: 2.2.6
Commit: 7dac9b1b51
.NET Core SDKs installed:
2.2.401 [/snap/dotnet-sdk/44/sdk]
.NET Core runtimes installed:
Microsoft.AspNetCore.All 2.2.6 [/snap/dotnet-sdk/44/shared/Microsoft.AspNetCore.All]
Microsoft.AspNetCore.App 2.2.6 [/snap/dotnet-sdk/44/shared/Microsoft.AspNetCore.App]
Microsoft.NETCore.App 2.2.6 [/snap/dotnet-sdk/44/shared/Microsoft.NETCore.App]
To install additional .NET Core runtimes or SDKs:
https://aka.ms/dotnet-download
```
|
process
|
execute sh bash scripts file via “ bin bash” in linux with net core steps to reproduce expected behavior make my application open a new terminal window and run sample sh actual behavior xdg open unexpected argument home filepathhere assets systemtests sample sh try xdg open help for more information environment data os linux generic dotnet cli ubuntu framework net core dotnet info output net core sdk reflecting any global json version commit runtime environment os name ubuntu os version os platform linux rid ubuntu base path snap dotnet sdk sdk host useful for support version commit net core sdks installed net core runtimes installed microsoft aspnetcore all microsoft aspnetcore app microsoft netcore app to install additional net core runtimes or sdks
| 1
|
11,144
| 13,957,692,449
|
IssuesEvent
|
2020-10-24 08:10:42
|
alexanderkotsev/geoportal
|
https://api.github.com/repos/alexanderkotsev/geoportal
|
opened
|
BG: Bulgaria's Discovery Service not responding
|
BG - Bulgaria Geoportal Harvesting process
|
Dear Sirs,
04 Mar 2019 14:39:21,397 (OGCSRequest.java:549) - INFO http-bio-8080-exec-5 eu.europa.ec.inspire.geoportal.ogc.OGCSRequest - built request URL: https://inspirebg.eu/geonetwork/srv/eng/csw?request=GetCapabilities&service=CSW&version=2.0.2
04 Mar 2019 14:39:22,645 (CSW.java:156) - INFO http-bio-8080-exec-5 eu.europa.ec.inspire.geoportal.ogc.csw.CSW - Error on getCapabilities Request: HTTP connection failed at url: "https://inspirebg.eu/geonetwork/srv/eng/csw?request=GetCapabilities&service=CSW&version=2.0.2" because Service Unavailable
The last successful harvest could be pefromed on 06 December 2018, 07:19:25
Best regards,
Angelo
|
1.0
|
BG: Bulgaria's Discovery Service not responding - Dear Sirs,
04 Mar 2019 14:39:21,397 (OGCSRequest.java:549) - INFO http-bio-8080-exec-5 eu.europa.ec.inspire.geoportal.ogc.OGCSRequest - built request URL: https://inspirebg.eu/geonetwork/srv/eng/csw?request=GetCapabilities&service=CSW&version=2.0.2
04 Mar 2019 14:39:22,645 (CSW.java:156) - INFO http-bio-8080-exec-5 eu.europa.ec.inspire.geoportal.ogc.csw.CSW - Error on getCapabilities Request: HTTP connection failed at url: "https://inspirebg.eu/geonetwork/srv/eng/csw?request=GetCapabilities&service=CSW&version=2.0.2" because Service Unavailable
The last successful harvest could be pefromed on 06 December 2018, 07:19:25
Best regards,
Angelo
|
process
|
bg bulgaria s discovery service not responding dear sirs mar ogcsrequest java info http bio exec eu europa ec inspire geoportal ogc ogcsrequest built request url mar csw java info http bio exec eu europa ec inspire geoportal ogc csw csw error on getcapabilities request http connection failed at url quot because service unavailable the last successful harvest could be pefromed on december best regards angelo
| 1
|
266,494
| 8,368,452,543
|
IssuesEvent
|
2018-10-04 14:48:52
|
opencollective/opencollective
|
https://api.github.com/repos/opencollective/opencollective
|
closed
|
Frontend master doesn't work against production API
|
bug high priority
|
```
query Collective($slug: String) {
Collective(slug: $slug) {
id
isActive
type
slug
path
...
pledges: orders(status: PENDING) {
status
totalAmount
}
}
}
```
```
{"errors":[{"message":"Unknown argument \"status\" on field \"orders\" of type \"CollectiveInterface\".","locations":[{"line":168,"column":21}]}]}
```
|
1.0
|
Frontend master doesn't work against production API - ```
query Collective($slug: String) {
Collective(slug: $slug) {
id
isActive
type
slug
path
...
pledges: orders(status: PENDING) {
status
totalAmount
}
}
}
```
```
{"errors":[{"message":"Unknown argument \"status\" on field \"orders\" of type \"CollectiveInterface\".","locations":[{"line":168,"column":21}]}]}
```
|
non_process
|
frontend master doesn t work against production api query collective slug string collective slug slug id isactive type slug path pledges orders status pending status totalamount errors
| 0
|
104,603
| 22,704,093,237
|
IssuesEvent
|
2022-07-05 13:18:43
|
Heptagram-Project/discord-bot
|
https://api.github.com/repos/Heptagram-Project/discord-bot
|
closed
|
[FEAT] - Moderation System
|
💻 aspect: code help wanted 🟧 priority: high EddieHub:good-first-issue type: feature good first issue 👀👤 status: seeking assignee 👤👀
|
### What feature would you like to see?
Re-add moderation system and commands, old ones were depreciated.
### Additional information
_No response_
|
1.0
|
[FEAT] - Moderation System - ### What feature would you like to see?
Re-add moderation system and commands, old ones were depreciated.
### Additional information
_No response_
|
non_process
|
moderation system what feature would you like to see re add moderation system and commands old ones were depreciated additional information no response
| 0
|
107,391
| 9,211,679,190
|
IssuesEvent
|
2019-03-09 17:23:41
|
rancher/rancher
|
https://api.github.com/repos/rancher/rancher
|
closed
|
Cloud Credential - 'Region' field is not a mandatory field on the Add Cloud Credential page for Amazon type
|
area/ui kind/bug-qa status/ready-for-review status/resolved status/to-test status/working team/az version/2.0
|
**What kind of request is this (question/bug/enhancement/feature request):** bug
**Steps to reproduce (least amount of steps as possible):**
1. On the Rancher UI, go to Cloud Credential page.
2. Click on 'Add Cloud Credential'.
3. Select Cloud Credential type: Amazon and enter the Access Key and Secret Key (Mandatory fields)
4. Click on create.
**Expected Result:**
Region field is made mandatory or has a value by default, so that appropriate error message gets populated.
**Actual Result:**
Error `undefined ConfigError: There was a problem validating your keys. Enter valid credentials and try agian.` is seen on the UI.
<img width="994" alt="Screen Shot 2019-03-08 at 12 05 10 PM" src="https://user-images.githubusercontent.com/26032343/54053133-31a2cd00-419b-11e9-8dab-01d4f099dff1.png">
**Other details that may be helpful:**
**Environment information**
- Rancher version (`rancher/rancher`/`rancher/server` image tag or shown bottom left in the UI): rancher:master
- Installation option (single install/HA): HA
|
1.0
|
Cloud Credential - 'Region' field is not a mandatory field on the Add Cloud Credential page for Amazon type - **What kind of request is this (question/bug/enhancement/feature request):** bug
**Steps to reproduce (least amount of steps as possible):**
1. On the Rancher UI, go to Cloud Credential page.
2. Click on 'Add Cloud Credential'.
3. Select Cloud Credential type: Amazon and enter the Access Key and Secret Key (Mandatory fields)
4. Click on create.
**Expected Result:**
Region field is made mandatory or has a value by default, so that appropriate error message gets populated.
**Actual Result:**
Error `undefined ConfigError: There was a problem validating your keys. Enter valid credentials and try agian.` is seen on the UI.
<img width="994" alt="Screen Shot 2019-03-08 at 12 05 10 PM" src="https://user-images.githubusercontent.com/26032343/54053133-31a2cd00-419b-11e9-8dab-01d4f099dff1.png">
**Other details that may be helpful:**
**Environment information**
- Rancher version (`rancher/rancher`/`rancher/server` image tag or shown bottom left in the UI): rancher:master
- Installation option (single install/HA): HA
|
non_process
|
cloud credential region field is not a mandatory field on the add cloud credential page for amazon type what kind of request is this question bug enhancement feature request bug steps to reproduce least amount of steps as possible on the rancher ui go to cloud credential page click on add cloud credential select cloud credential type amazon and enter the access key and secret key mandatory fields click on create expected result region field is made mandatory or has a value by default so that appropriate error message gets populated actual result error undefined configerror there was a problem validating your keys enter valid credentials and try agian is seen on the ui img width alt screen shot at pm src other details that may be helpful environment information rancher version rancher rancher rancher server image tag or shown bottom left in the ui rancher master installation option single install ha ha
| 0
|
18,453
| 24,548,349,548
|
IssuesEvent
|
2022-10-12 10:32:59
|
Altinn/altinn-studio
|
https://api.github.com/repos/Altinn/altinn-studio
|
closed
|
Add API in App template for BPMN
|
area/process kind/user-story status/draft
|
<!-- Internal template. If you're external and want to suggest a user story, please use the Feature request template -->
## Description
As #7490 but for BPMN
## Screenshots
<!-- Screenshots or links to Figma (make sure your sketch is public) -->
## Considerations
<!-- Describe input (beyond tasks) on how the user story should be solved can be put here. -->
### Ops requirements
<!-- Are there any requirements for monitoring? What is being built and what could go wrong?
Are there any requirements related to backup? -->
## Acceptance criteria
<!-- Describe criteria here (i.e. What is allowed/not allowed (negative tesing), validations, error messages and warnings etc.) -->
## Specification tasks
- [ ] Development tasks are defined
<!-- Add other spec tasks here using checkboxes -->
## Development tasks
<!-- Add dev tasks here using checkboxes -->
## Test
<!-- Add test tasks here using checkboxes -->
## Definition of done
<!-- This chekclist is to verify that this issue meets [DoD](https://digdir-digitalisering.atlassian.net/wiki/spaces/T3KP/pages/5049246/Definition+of+Done) (Only for project members) before closing. -->
- [ ] Documentation is updated (if relevant)
- [ ] Technical documentation (docs.altinn.studio)
- [ ] User documentation (altinn.github.io/docs)
- [ ] QA
- [ ] Manual test is complete (if relevant)
- [ ] Automated test is implemented (if relevant)
- [ ] All tasks in this userstory are closed (i.e. remaining tasks are moved to other user stories or marked obsolete)
|
1.0
|
Add API in App template for BPMN - <!-- Internal template. If you're external and want to suggest a user story, please use the Feature request template -->
## Description
As #7490 but for BPMN
## Screenshots
<!-- Screenshots or links to Figma (make sure your sketch is public) -->
## Considerations
<!-- Describe input (beyond tasks) on how the user story should be solved can be put here. -->
### Ops requirements
<!-- Are there any requirements for monitoring? What is being built and what could go wrong?
Are there any requirements related to backup? -->
## Acceptance criteria
<!-- Describe criteria here (i.e. What is allowed/not allowed (negative tesing), validations, error messages and warnings etc.) -->
## Specification tasks
- [ ] Development tasks are defined
<!-- Add other spec tasks here using checkboxes -->
## Development tasks
<!-- Add dev tasks here using checkboxes -->
## Test
<!-- Add test tasks here using checkboxes -->
## Definition of done
<!-- This chekclist is to verify that this issue meets [DoD](https://digdir-digitalisering.atlassian.net/wiki/spaces/T3KP/pages/5049246/Definition+of+Done) (Only for project members) before closing. -->
- [ ] Documentation is updated (if relevant)
- [ ] Technical documentation (docs.altinn.studio)
- [ ] User documentation (altinn.github.io/docs)
- [ ] QA
- [ ] Manual test is complete (if relevant)
- [ ] Automated test is implemented (if relevant)
- [ ] All tasks in this userstory are closed (i.e. remaining tasks are moved to other user stories or marked obsolete)
|
process
|
add api in app template for bpmn description as but for bpmn screenshots considerations ops requirements are there any requirements for monitoring what is being built and what could go wrong are there any requirements related to backup acceptance criteria specification tasks development tasks are defined development tasks test definition of done documentation is updated if relevant technical documentation docs altinn studio user documentation altinn github io docs qa manual test is complete if relevant automated test is implemented if relevant all tasks in this userstory are closed i e remaining tasks are moved to other user stories or marked obsolete
| 1
|
116,804
| 17,392,479,529
|
IssuesEvent
|
2021-08-02 09:12:32
|
SmartBear/ready-jira-plugin
|
https://api.github.com/repos/SmartBear/ready-jira-plugin
|
closed
|
CVE-2020-11113 (High) detected in jackson-databind-2.4.3.jar - autoclosed
|
security vulnerability
|
## CVE-2020-11113 - 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.4.3.jar</b></p></summary>
<p>General data-binding functionality for Jackson: works on core streaming API</p>
<p>Path to dependency file: ready-jira-plugin/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.4.3/jackson-databind-2.4.3.jar</p>
<p>
Dependency Hierarchy:
- ready-api-soapui-pro-3.5.0.jar (Root Library)
- ready-api-license-3.5.0.jar
- governator-1.17.10.jar
- :x: **jackson-databind-2.4.3.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/SmartBear/ready-jira-plugin/commit/93947352bde9f88c621863f93d8141d10d07612e">93947352bde9f88c621863f93d8141d10d07612e</a></p>
<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>
FasterXML jackson-databind 2.x before 2.9.10.4 mishandles the interaction between serialization gadgets and typing, related to org.apache.openjpa.ee.WASRegistryManagedRuntime (aka openjpa).
<p>Publish Date: 2020-03-31
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-11113>CVE-2020-11113</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11113">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11113</a></p>
<p>Release Date: 2020-03-31</p>
<p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.9.10.4;2.10.0</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"com.fasterxml.jackson.core","packageName":"jackson-databind","packageVersion":"2.4.3","packageFilePaths":["/pom.xml"],"isTransitiveDependency":true,"dependencyTree":"com.smartbear:ready-api-soapui-pro:3.5.0;com.smartbear:ready-api-license:3.5.0;com.netflix.governator:governator:1.17.10;com.fasterxml.jackson.core:jackson-databind:2.4.3","isMinimumFixVersionAvailable":true,"minimumFixVersion":"com.fasterxml.jackson.core:jackson-databind:2.9.10.4;2.10.0"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2020-11113","vulnerabilityDetails":"FasterXML jackson-databind 2.x before 2.9.10.4 mishandles the interaction between serialization gadgets and typing, related to org.apache.openjpa.ee.WASRegistryManagedRuntime (aka openjpa).","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-11113","cvss3Severity":"high","cvss3Score":"8.8","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"High","UI":"Required","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> -->
|
True
|
CVE-2020-11113 (High) detected in jackson-databind-2.4.3.jar - autoclosed - ## CVE-2020-11113 - 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.4.3.jar</b></p></summary>
<p>General data-binding functionality for Jackson: works on core streaming API</p>
<p>Path to dependency file: ready-jira-plugin/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.4.3/jackson-databind-2.4.3.jar</p>
<p>
Dependency Hierarchy:
- ready-api-soapui-pro-3.5.0.jar (Root Library)
- ready-api-license-3.5.0.jar
- governator-1.17.10.jar
- :x: **jackson-databind-2.4.3.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/SmartBear/ready-jira-plugin/commit/93947352bde9f88c621863f93d8141d10d07612e">93947352bde9f88c621863f93d8141d10d07612e</a></p>
<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>
FasterXML jackson-databind 2.x before 2.9.10.4 mishandles the interaction between serialization gadgets and typing, related to org.apache.openjpa.ee.WASRegistryManagedRuntime (aka openjpa).
<p>Publish Date: 2020-03-31
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-11113>CVE-2020-11113</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11113">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11113</a></p>
<p>Release Date: 2020-03-31</p>
<p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.9.10.4;2.10.0</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"com.fasterxml.jackson.core","packageName":"jackson-databind","packageVersion":"2.4.3","packageFilePaths":["/pom.xml"],"isTransitiveDependency":true,"dependencyTree":"com.smartbear:ready-api-soapui-pro:3.5.0;com.smartbear:ready-api-license:3.5.0;com.netflix.governator:governator:1.17.10;com.fasterxml.jackson.core:jackson-databind:2.4.3","isMinimumFixVersionAvailable":true,"minimumFixVersion":"com.fasterxml.jackson.core:jackson-databind:2.9.10.4;2.10.0"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2020-11113","vulnerabilityDetails":"FasterXML jackson-databind 2.x before 2.9.10.4 mishandles the interaction between serialization gadgets and typing, related to org.apache.openjpa.ee.WASRegistryManagedRuntime (aka openjpa).","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-11113","cvss3Severity":"high","cvss3Score":"8.8","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"High","UI":"Required","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> -->
|
non_process
|
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 path to dependency file ready jira plugin pom xml path to vulnerable library home wss scanner repository com fasterxml jackson core jackson databind jackson databind jar dependency hierarchy ready api soapui pro jar root library ready api license jar governator jar x jackson databind jar vulnerable library found in head commit a href found in base branch master vulnerability details fasterxml jackson databind x before mishandles the interaction between serialization gadgets and typing related to org apache openjpa ee wasregistrymanagedruntime aka openjpa publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution com fasterxml jackson core jackson databind isopenpronvulnerability false ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree com smartbear ready api soapui pro com smartbear ready api license com netflix governator governator com fasterxml jackson core jackson databind isminimumfixversionavailable true minimumfixversion com fasterxml jackson core jackson databind basebranches vulnerabilityidentifier cve vulnerabilitydetails fasterxml jackson databind x before mishandles the interaction between serialization gadgets and typing related to org apache openjpa ee wasregistrymanagedruntime aka openjpa vulnerabilityurl
| 0
|
332,966
| 29,503,071,682
|
IssuesEvent
|
2023-06-03 01:48:27
|
NVIDIA/spark-rapids
|
https://api.github.com/repos/NVIDIA/spark-rapids
|
closed
|
[BUG] `test_read_compressed_hive_text` fails on CDH
|
bug test
|
`test_read_compressed_hive_text` fails on CDH, thus:
```
[2023-06-01T13:21:06.888Z] =================================== FAILURES ===================================
[2023-06-01T13:21:06.888Z] [31m[1m__________________ test_read_compressed_hive_text[BZip2Codec] __________________[0m
[2023-06-01T13:21:06.888Z]
[2023-06-01T13:21:06.888Z] spark_tmp_table_factory = <conftest.TmpTableFactory object at 0x7fb56374cee0>
[2023-06-01T13:21:06.888Z] codec = 'BZip2Codec'
[2023-06-01T13:21:06.888Z]
[2023-06-01T13:21:06.888Z] @pytest.mark.parametrize('codec', ['BZip2Codec', # BZ2 compression, i.e. Splittable.
[2023-06-01T13:21:06.888Z] 'DefaultCodec', # DEFLATE, i.e. Gzip, without headers. Unsplittable.
[2023-06-01T13:21:06.888Z] 'GzipCodec']) # Gzip proper. Unsplittable.
...
[2023-06-01T13:21:06.888Z] [1m[31mE pyspark.sql.utils.IllegalArgumentException: Part of the plan is not columnar class org.apache.spark.sql.hive.execution.HiveTableScanExec[0m
[2023-06-01T13:21:06.888Z] [1m[31mE Scan hive default.tmp_table_main_1771630401_0 HiveTableRelation [`default`.`tmp_table_main_1771630401_0`, org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, Data Cols: [id#19L, id_string#20], Partition Cols: []][0m
```
It shouldn't even be running on CDH, because of https://github.com/NVIDIA/spark-rapids/issues/7423.
|
1.0
|
[BUG] `test_read_compressed_hive_text` fails on CDH - `test_read_compressed_hive_text` fails on CDH, thus:
```
[2023-06-01T13:21:06.888Z] =================================== FAILURES ===================================
[2023-06-01T13:21:06.888Z] [31m[1m__________________ test_read_compressed_hive_text[BZip2Codec] __________________[0m
[2023-06-01T13:21:06.888Z]
[2023-06-01T13:21:06.888Z] spark_tmp_table_factory = <conftest.TmpTableFactory object at 0x7fb56374cee0>
[2023-06-01T13:21:06.888Z] codec = 'BZip2Codec'
[2023-06-01T13:21:06.888Z]
[2023-06-01T13:21:06.888Z] @pytest.mark.parametrize('codec', ['BZip2Codec', # BZ2 compression, i.e. Splittable.
[2023-06-01T13:21:06.888Z] 'DefaultCodec', # DEFLATE, i.e. Gzip, without headers. Unsplittable.
[2023-06-01T13:21:06.888Z] 'GzipCodec']) # Gzip proper. Unsplittable.
...
[2023-06-01T13:21:06.888Z] [1m[31mE pyspark.sql.utils.IllegalArgumentException: Part of the plan is not columnar class org.apache.spark.sql.hive.execution.HiveTableScanExec[0m
[2023-06-01T13:21:06.888Z] [1m[31mE Scan hive default.tmp_table_main_1771630401_0 HiveTableRelation [`default`.`tmp_table_main_1771630401_0`, org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, Data Cols: [id#19L, id_string#20], Partition Cols: []][0m
```
It shouldn't even be running on CDH, because of https://github.com/NVIDIA/spark-rapids/issues/7423.
|
non_process
|
test read compressed hive text fails on cdh test read compressed hive text fails on cdh thus failures spark tmp table factory codec pytest mark parametrize codec compression i e splittable defaultcodec deflate i e gzip without headers unsplittable gzipcodec gzip proper unsplittable pyspark sql utils illegalargumentexception part of the plan is not columnar class org apache spark sql hive execution hivetablescanexec partition cols it shouldn t even be running on cdh because of
| 0
|
3,029
| 6,032,375,181
|
IssuesEvent
|
2017-06-09 03:34:41
|
dotnet/corefx
|
https://api.github.com/repos/dotnet/corefx
|
closed
|
Process.VirtualMemorySize64 (at least) is giving corrupt values
|
area-System.Diagnostics.Process
|
System.Diagnostics.Process.VirtualMemorySize64 has an unexpected High Value (Windows 10 x64)
Example:
```c#
using System;
class Program
{
static void Main(string[] args)
{
Console.WriteLine("VirtualMemorySize:{0:#,0.}", System.Diagnostics.Process.GetCurrentProcess().VirtualMemorySize64);
Console.ReadKey();
}
}
```
Output:
VirtualMemorySize:2.199.520.038.912
Expected output : <= 150 MB as with .NET Classic
|
1.0
|
Process.VirtualMemorySize64 (at least) is giving corrupt values - System.Diagnostics.Process.VirtualMemorySize64 has an unexpected High Value (Windows 10 x64)
Example:
```c#
using System;
class Program
{
static void Main(string[] args)
{
Console.WriteLine("VirtualMemorySize:{0:#,0.}", System.Diagnostics.Process.GetCurrentProcess().VirtualMemorySize64);
Console.ReadKey();
}
}
```
Output:
VirtualMemorySize:2.199.520.038.912
Expected output : <= 150 MB as with .NET Classic
|
process
|
process at least is giving corrupt values system diagnostics process has an unexpected high value windows example c using system class program static void main string args console writeline virtualmemorysize system diagnostics process getcurrentprocess console readkey output virtualmemorysize expected output mb as with net classic
| 1
|
3,837
| 6,802,479,412
|
IssuesEvent
|
2017-11-02 20:21:25
|
gratipay/inside.gratipay.com
|
https://api.github.com/repos/gratipay/inside.gratipay.com
|
closed
|
better integrate translators
|
Governance & Process
|
We have 10 coordinators and 20 translators (are those disjoint?). Only three translators are on the [Gratipay team](https://gratipay.com/Gratipay/distributing/). Let's figure out who else should be.

|
1.0
|
better integrate translators - We have 10 coordinators and 20 translators (are those disjoint?). Only three translators are on the [Gratipay team](https://gratipay.com/Gratipay/distributing/). Let's figure out who else should be.

|
process
|
better integrate translators we have coordinators and translators are those disjoint only three translators are on the let s figure out who else should be
| 1
|
116,554
| 17,376,116,270
|
IssuesEvent
|
2021-07-30 21:34:57
|
turkdevops/lighthouse
|
https://api.github.com/repos/turkdevops/lighthouse
|
opened
|
CVE-2020-28500 (Medium) detected in lodash-4.17.20.tgz
|
security vulnerability
|
## CVE-2020-28500 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>lodash-4.17.20.tgz</b></p></summary>
<p>Lodash modular utilities.</p>
<p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz">https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz</a></p>
<p>Path to dependency file: lighthouse/lighthouse-core/scripts/legacy-javascript/package.json</p>
<p>Path to vulnerable library: lighthouse/lighthouse-core/scripts/legacy-javascript/node_modules/lodash</p>
<p>
Dependency Hierarchy:
- core-7.9.0.tgz (Root Library)
- :x: **lodash-4.17.20.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/turkdevops/lighthouse/commit/9630c51f0f82dd978a559dfce5b87f7389ec03d0">9630c51f0f82dd978a559dfce5b87f7389ec03d0</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>
Lodash versions prior to 4.17.21 are vulnerable to Regular Expression Denial of Service (ReDoS) via the toNumber, trim and trimEnd functions.
<p>Publish Date: 2021-02-15
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-28500>CVE-2020-28500</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</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: Low
</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-2020-28500">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28500</a></p>
<p>Release Date: 2021-02-15</p>
<p>Fix Resolution: lodash-4.17.21</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-2020-28500 (Medium) detected in lodash-4.17.20.tgz - ## CVE-2020-28500 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>lodash-4.17.20.tgz</b></p></summary>
<p>Lodash modular utilities.</p>
<p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz">https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz</a></p>
<p>Path to dependency file: lighthouse/lighthouse-core/scripts/legacy-javascript/package.json</p>
<p>Path to vulnerable library: lighthouse/lighthouse-core/scripts/legacy-javascript/node_modules/lodash</p>
<p>
Dependency Hierarchy:
- core-7.9.0.tgz (Root Library)
- :x: **lodash-4.17.20.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/turkdevops/lighthouse/commit/9630c51f0f82dd978a559dfce5b87f7389ec03d0">9630c51f0f82dd978a559dfce5b87f7389ec03d0</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>
Lodash versions prior to 4.17.21 are vulnerable to Regular Expression Denial of Service (ReDoS) via the toNumber, trim and trimEnd functions.
<p>Publish Date: 2021-02-15
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-28500>CVE-2020-28500</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</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: Low
</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-2020-28500">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28500</a></p>
<p>Release Date: 2021-02-15</p>
<p>Fix Resolution: lodash-4.17.21</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
non_process
|
cve medium detected in lodash tgz cve medium severity vulnerability vulnerable library lodash tgz lodash modular utilities library home page a href path to dependency file lighthouse lighthouse core scripts legacy javascript package json path to vulnerable library lighthouse lighthouse core scripts legacy javascript node modules lodash dependency hierarchy core tgz root library x lodash tgz vulnerable library found in head commit a href found in base branch master vulnerability details lodash versions prior to are vulnerable to regular expression denial of service redos via the tonumber trim and trimend functions 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 low for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution lodash step up your open source security game with whitesource
| 0
|
28,707
| 13,788,476,370
|
IssuesEvent
|
2020-10-09 07:16:49
|
citusdata/citus
|
https://api.github.com/repos/citusdata/citus
|
opened
|
Improve handling of cached connections
|
enhancement performance
|
Per backend, Citus caches `citus.max_cached_conns_per_worker` to each worker, and it keeps those connections as long as the backend is alive.
However, as explained [here](https://techcommunity.microsoft.com/t5/azure-database-for-postgresql/analyzing-the-limits-of-connection-scalability-in-postgres/ba-p/1757266), it might cause significant memory usage due to metadata caching. Considering Citus creating many shards on the workers, the number of tables could be high. I'm mostly concerned about `sequential` execution cases, where the single-cached connection may access to all the shards of the table on a worker node. And, as time passes, the same connection may suffer from cache bloat.
Currently Citus always/deterministically keeps the same cached connections alive. We could maybe change the logic on which connection to terminate on `AfterXactHostConnectionHandling()` to not have a session which lives very long.
The relevant section from the blog:
```
Conclusion: cache bloat is not the major issue at this moment
A common solution for the cache bloat issue is to drop “old” connections from the application connection pooler after a certain age. Many connection pooler libraries / web frameworks support that.
As there is a feasible workaround, and as cache bloat is only an issue for databases with a lot of objects, cache bloat is not the major issue at the moment (but worthy of improvement, obviously).
```
|
True
|
Improve handling of cached connections - Per backend, Citus caches `citus.max_cached_conns_per_worker` to each worker, and it keeps those connections as long as the backend is alive.
However, as explained [here](https://techcommunity.microsoft.com/t5/azure-database-for-postgresql/analyzing-the-limits-of-connection-scalability-in-postgres/ba-p/1757266), it might cause significant memory usage due to metadata caching. Considering Citus creating many shards on the workers, the number of tables could be high. I'm mostly concerned about `sequential` execution cases, where the single-cached connection may access to all the shards of the table on a worker node. And, as time passes, the same connection may suffer from cache bloat.
Currently Citus always/deterministically keeps the same cached connections alive. We could maybe change the logic on which connection to terminate on `AfterXactHostConnectionHandling()` to not have a session which lives very long.
The relevant section from the blog:
```
Conclusion: cache bloat is not the major issue at this moment
A common solution for the cache bloat issue is to drop “old” connections from the application connection pooler after a certain age. Many connection pooler libraries / web frameworks support that.
As there is a feasible workaround, and as cache bloat is only an issue for databases with a lot of objects, cache bloat is not the major issue at the moment (but worthy of improvement, obviously).
```
|
non_process
|
improve handling of cached connections per backend citus caches citus max cached conns per worker to each worker and it keeps those connections as long as the backend is alive however as explained it might cause significant memory usage due to metadata caching considering citus creating many shards on the workers the number of tables could be high i m mostly concerned about sequential execution cases where the single cached connection may access to all the shards of the table on a worker node and as time passes the same connection may suffer from cache bloat currently citus always deterministically keeps the same cached connections alive we could maybe change the logic on which connection to terminate on afterxacthostconnectionhandling to not have a session which lives very long the relevant section from the blog conclusion cache bloat is not the major issue at this moment a common solution for the cache bloat issue is to drop “old” connections from the application connection pooler after a certain age many connection pooler libraries web frameworks support that as there is a feasible workaround and as cache bloat is only an issue for databases with a lot of objects cache bloat is not the major issue at the moment but worthy of improvement obviously
| 0
|
240,814
| 18,391,808,192
|
IssuesEvent
|
2021-10-12 06:51:12
|
apurva1112/testrepo
|
https://api.github.com/repos/apurva1112/testrepo
|
reopened
|
test issue123
|
bug documentation
|
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
|
1.0
|
test issue123 - "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
|
non_process
|
test lorem ipsum dolor sit amet consectetur adipiscing elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur excepteur sint occaecat cupidatat non proident sunt in culpa qui officia deserunt mollit anim id est laborum
| 0
|
174,319
| 27,618,599,971
|
IssuesEvent
|
2023-03-09 21:33:45
|
department-of-veterans-affairs/vets-design-system-documentation
|
https://api.github.com/repos/department-of-veterans-affairs/vets-design-system-documentation
|
closed
|
Button color choices are out of sync across va.gov
|
bug vsp-design-system-team
|
# Bug Report
- [x] I’ve searched for any related issues and avoided creating a duplicate issue.
## What happened
It appears that we have 3 different button styles in play across the site:
1. Our web-component: `va-button`
2. The default Formation styling for: `<button class="usa-button>`
3. Instances of USWDS v1 styling for: `<button class="usa-primary-button">`
Each of those 3 use different colors for hover, focus, and active states. To make matters worse, the Sketch library dictates yet another version of those states.
## What I expected to happen
I expect all buttons to behave the same way visually when I hover over them and click them.
## Reproducing
Have a look at this page which has all 3 instances on one page:
https://www.va.gov/health-care/apply/application/introduction
### Default

Already we can see the default states don't match on this page as the web-component has an odd bolding of the text. The colors, however, are correct - all var-color-primary which is #0071bb. The hover state of all 3 is actually the same, yay!, it's var-color-primary-darker which is #003E73.
### Focus, no hover

Problems start when we apply focus via the keyboard (i.e. just focus with no hover). As seen above the .usa-button:focus style applies var-color-primary-darker (#003E73) whereas the other two button variations do not. The combination of :hover and :focus are the same and correct.
### Active

Our web-component doesn't change shade when moving from :hover to :active. The other two buttons go to $color-blue-darkest form USWDS v1 which is #112E51. This is not the same as $color-primary-darkest which is #102E51. This is one of the inconsistencies of v1, which is particularly annoying. In v3 they are both blue-warm-80v which is #162e51.
In addition, the Sketch library uses that blue-warm-80v, or $theme-color-primary-darker from USWDS v3. So it seems like we accidentally jumped the gun there.
## Urgency
This is very broken and user visible (albeit we're talking about shades of blue so users may not notice). Thus I'd like us to start addressing it as soon as we can. We need to discuss as a team how to remedy this.
### Details
Here's a list of all of the problems I found:
1. va-button (web-component) on this page at least, has an odd double-bold state for the button text.
2. Focus states out-of-sync: The .usa-button (item 2 in the list above) has a background-color applied that the other 2 buttons do not get.
3. Active states out-of-sync: The web-component doesn't get darker when in active state and it should.
4. Sketch library uses a v3 value for active state on the primary and secondary buttons and that color is not yet in our system.
|
1.0
|
Button color choices are out of sync across va.gov - # Bug Report
- [x] I’ve searched for any related issues and avoided creating a duplicate issue.
## What happened
It appears that we have 3 different button styles in play across the site:
1. Our web-component: `va-button`
2. The default Formation styling for: `<button class="usa-button>`
3. Instances of USWDS v1 styling for: `<button class="usa-primary-button">`
Each of those 3 use different colors for hover, focus, and active states. To make matters worse, the Sketch library dictates yet another version of those states.
## What I expected to happen
I expect all buttons to behave the same way visually when I hover over them and click them.
## Reproducing
Have a look at this page which has all 3 instances on one page:
https://www.va.gov/health-care/apply/application/introduction
### Default

Already we can see the default states don't match on this page as the web-component has an odd bolding of the text. The colors, however, are correct - all var-color-primary which is #0071bb. The hover state of all 3 is actually the same, yay!, it's var-color-primary-darker which is #003E73.
### Focus, no hover

Problems start when we apply focus via the keyboard (i.e. just focus with no hover). As seen above the .usa-button:focus style applies var-color-primary-darker (#003E73) whereas the other two button variations do not. The combination of :hover and :focus are the same and correct.
### Active

Our web-component doesn't change shade when moving from :hover to :active. The other two buttons go to $color-blue-darkest form USWDS v1 which is #112E51. This is not the same as $color-primary-darkest which is #102E51. This is one of the inconsistencies of v1, which is particularly annoying. In v3 they are both blue-warm-80v which is #162e51.
In addition, the Sketch library uses that blue-warm-80v, or $theme-color-primary-darker from USWDS v3. So it seems like we accidentally jumped the gun there.
## Urgency
This is very broken and user visible (albeit we're talking about shades of blue so users may not notice). Thus I'd like us to start addressing it as soon as we can. We need to discuss as a team how to remedy this.
### Details
Here's a list of all of the problems I found:
1. va-button (web-component) on this page at least, has an odd double-bold state for the button text.
2. Focus states out-of-sync: The .usa-button (item 2 in the list above) has a background-color applied that the other 2 buttons do not get.
3. Active states out-of-sync: The web-component doesn't get darker when in active state and it should.
4. Sketch library uses a v3 value for active state on the primary and secondary buttons and that color is not yet in our system.
|
non_process
|
button color choices are out of sync across va gov bug report i’ve searched for any related issues and avoided creating a duplicate issue what happened it appears that we have different button styles in play across the site our web component va button the default formation styling for instances of uswds styling for each of those use different colors for hover focus and active states to make matters worse the sketch library dictates yet another version of those states what i expected to happen i expect all buttons to behave the same way visually when i hover over them and click them reproducing have a look at this page which has all instances on one page default already we can see the default states don t match on this page as the web component has an odd bolding of the text the colors however are correct all var color primary which is the hover state of all is actually the same yay it s var color primary darker which is focus no hover problems start when we apply focus via the keyboard i e just focus with no hover as seen above the usa button focus style applies var color primary darker whereas the other two button variations do not the combination of hover and focus are the same and correct active our web component doesn t change shade when moving from hover to active the other two buttons go to color blue darkest form uswds which is this is not the same as color primary darkest which is this is one of the inconsistencies of which is particularly annoying in they are both blue warm which is in addition the sketch library uses that blue warm or theme color primary darker from uswds so it seems like we accidentally jumped the gun there urgency this is very broken and user visible albeit we re talking about shades of blue so users may not notice thus i d like us to start addressing it as soon as we can we need to discuss as a team how to remedy this details here s a list of all of the problems i found va button web component on this page at least has an odd double bold state for the button text focus states out of sync the usa button item in the list above has a background color applied that the other buttons do not get active states out of sync the web component doesn t get darker when in active state and it should sketch library uses a value for active state on the primary and secondary buttons and that color is not yet in our system
| 0
|
7,981
| 11,170,037,404
|
IssuesEvent
|
2019-12-28 10:38:12
|
konlpy/konlpy
|
https://api.github.com/repos/konlpy/konlpy
|
closed
|
not worked on Multiprocess
|
Keyword/jpype Keyword/multiprocess_thread Status/help wanted question
|
I installed konlpy(kkma) on my ubuntu server.
In python, multiprocess condition
kkma.nouns('detail_text') was not worked!
|
1.0
|
not worked on Multiprocess - I installed konlpy(kkma) on my ubuntu server.
In python, multiprocess condition
kkma.nouns('detail_text') was not worked!
|
process
|
not worked on multiprocess i installed konlpy kkma on my ubuntu server in python multiprocess condition kkma nouns detail text was not worked
| 1
|
18,193
| 24,242,835,625
|
IssuesEvent
|
2022-09-27 08:13:33
|
geneontology/go-ontology
|
https://api.github.com/repos/geneontology/go-ontology
|
closed
|
Change label 'membrane disruption in another organism'
|
multi-species process
|
Hello,
'GO:0051673 membrane disruption in another organism' is not clearly different from 'GO:0051715 cytolysis in another organism' .
Current definition: The disruption of the membranes of another organism, leading to damage to its cells and possibly death of that organism.
I propose to change the label to 'disruption of membrane integrity in another organism'.
Proposed definition: The disruption of a membrane of another organism, potentially leading to changes in cell permeability, pore formation in the membrane, cell damage, possibly leading to cell damage and death.
|
1.0
|
Change label 'membrane disruption in another organism' - Hello,
'GO:0051673 membrane disruption in another organism' is not clearly different from 'GO:0051715 cytolysis in another organism' .
Current definition: The disruption of the membranes of another organism, leading to damage to its cells and possibly death of that organism.
I propose to change the label to 'disruption of membrane integrity in another organism'.
Proposed definition: The disruption of a membrane of another organism, potentially leading to changes in cell permeability, pore formation in the membrane, cell damage, possibly leading to cell damage and death.
|
process
|
change label membrane disruption in another organism hello go membrane disruption in another organism is not clearly different from go cytolysis in another organism current definition the disruption of the membranes of another organism leading to damage to its cells and possibly death of that organism i propose to change the label to disruption of membrane integrity in another organism proposed definition the disruption of a membrane of another organism potentially leading to changes in cell permeability pore formation in the membrane cell damage possibly leading to cell damage and death
| 1
|
11,653
| 14,516,113,072
|
IssuesEvent
|
2020-12-13 14:51:02
|
luc-github/Repetier-Firmware-4-Davinci
|
https://api.github.com/repos/luc-github/Repetier-Firmware-4-Davinci
|
closed
|
Add Semitec 104GT-2 Table for Davinci 1.0a models
|
0.92.10 Waiting to be processed enhancement
|
I've generated a thermistor table for the Semitec 104GT-2 as shipped with the E3D v6 hotend, this covers the original glass and the new cartridge type.
This table is for use with the 1.0a and any other Davinci models that have a single 1kohm resistor instead of the 4k7 and 10k as found on the 1.0 models. I know some users have removed the 10k and used the standard Repetier tables. You could swap out the 1kohm for a 4k7 and use the generic tables, but cut and paste is much easier.
Can this be added to the firmware as an option for users who have upgraded their hotends/thermistors please?
#define EXT0_TEMPSENSOR_TYPE 7
#define NUM_TEMPS_USERTHERMISTOR2 36
#define USER_THERMISTORTABLE2 {{284, 2400},{324, 2320},{371, 2240},{426, 2160},{491, 2080},{566, 2000},{655, 1920},{759, 1840},{880, 1760},{1020, 1680},{1181, 1600},{1363, 1520},{1566, 1440},{1789, 1360},{2028, 1280},{2278, 1200},{2532, 1120},{2781, 1040},{3018, 960},{3234, 880},{3424, 800},{3587, 720},{3719, 640},{3824, 560},{3904, 480},{3964, 400},{4007, 320},{4037, 240},{4057, 160},{4071, 80},{4080, 0},{4085, -80},{4088, -160},{4090, -240},{4091, -320},{4091, -400}}
|
1.0
|
Add Semitec 104GT-2 Table for Davinci 1.0a models - I've generated a thermistor table for the Semitec 104GT-2 as shipped with the E3D v6 hotend, this covers the original glass and the new cartridge type.
This table is for use with the 1.0a and any other Davinci models that have a single 1kohm resistor instead of the 4k7 and 10k as found on the 1.0 models. I know some users have removed the 10k and used the standard Repetier tables. You could swap out the 1kohm for a 4k7 and use the generic tables, but cut and paste is much easier.
Can this be added to the firmware as an option for users who have upgraded their hotends/thermistors please?
#define EXT0_TEMPSENSOR_TYPE 7
#define NUM_TEMPS_USERTHERMISTOR2 36
#define USER_THERMISTORTABLE2 {{284, 2400},{324, 2320},{371, 2240},{426, 2160},{491, 2080},{566, 2000},{655, 1920},{759, 1840},{880, 1760},{1020, 1680},{1181, 1600},{1363, 1520},{1566, 1440},{1789, 1360},{2028, 1280},{2278, 1200},{2532, 1120},{2781, 1040},{3018, 960},{3234, 880},{3424, 800},{3587, 720},{3719, 640},{3824, 560},{3904, 480},{3964, 400},{4007, 320},{4037, 240},{4057, 160},{4071, 80},{4080, 0},{4085, -80},{4088, -160},{4090, -240},{4091, -320},{4091, -400}}
|
process
|
add semitec table for davinci models i ve generated a thermistor table for the semitec as shipped with the hotend this covers the original glass and the new cartridge type this table is for use with the and any other davinci models that have a single resistor instead of the and as found on the models i know some users have removed the and used the standard repetier tables you could swap out the for a and use the generic tables but cut and paste is much easier can this be added to the firmware as an option for users who have upgraded their hotends thermistors please define tempsensor type define num temps define user
| 1
|
9,151
| 12,203,325,936
|
IssuesEvent
|
2020-04-30 10:24:27
|
MHRA/products
|
https://api.github.com/repos/MHRA/products
|
closed
|
AUTO BATCH PROCESS - End to end testing
|
EPIC - Auto Batch Process :oncoming_automobile: HIGH PRIORITY :arrow_double_up: TASK :rescue_worker_helmet:
|
### User want
As a developer
I want to ensure that the system works from end to end
So I have confidence that it will work and be stable in production
**Customer acceptance criteria**
**Technical acceptance criteria**
Sufficient integration tests to give confidence that the service boundaries between the apps are tested and work as expected.
**Data acceptance criteria**
**Testing acceptance criteria**
**Size**
L
**Value**
**Effort**
### Exit Criteria met
- [ ] Backlog
- [ ] Discovery
- [ ] DUXD
- [ ] Development
- [ ] Quality Assurance
- [ ] Release and Validate
|
1.0
|
AUTO BATCH PROCESS - End to end testing - ### User want
As a developer
I want to ensure that the system works from end to end
So I have confidence that it will work and be stable in production
**Customer acceptance criteria**
**Technical acceptance criteria**
Sufficient integration tests to give confidence that the service boundaries between the apps are tested and work as expected.
**Data acceptance criteria**
**Testing acceptance criteria**
**Size**
L
**Value**
**Effort**
### Exit Criteria met
- [ ] Backlog
- [ ] Discovery
- [ ] DUXD
- [ ] Development
- [ ] Quality Assurance
- [ ] Release and Validate
|
process
|
auto batch process end to end testing user want as a developer i want to ensure that the system works from end to end so i have confidence that it will work and be stable in production customer acceptance criteria technical acceptance criteria sufficient integration tests to give confidence that the service boundaries between the apps are tested and work as expected data acceptance criteria testing acceptance criteria size l value effort exit criteria met backlog discovery duxd development quality assurance release and validate
| 1
|
60,140
| 7,319,765,380
|
IssuesEvent
|
2018-03-02 02:42:03
|
kimhyesung1/HTTQ4SKEQNIWHKW4JNDVNNWM
|
https://api.github.com/repos/kimhyesung1/HTTQ4SKEQNIWHKW4JNDVNNWM
|
reopened
|
CkAeePNXJ8rFMCQaQoyFJVQuPRzjXjVI9BPY1ULQ64EwmCzt/T2xlzfqVlqrVuL6tBdGfPRc0gaIMh/u4Ppy0yuNnECJZ+E4aKQ6ODgMI/6yqvRW4cyTBfrJ4xDvOztEnozxl/u+c3bEsYB5vk2euawr8yyYNSZ+TE483DFVkqs=
|
design
|
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
|
1.0
|
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
|
non_process
|
u c tj f p hbn vonnnbkakng ckn bqsl xyurpyzrry lvevn k vpmhabkj gtm vilr leopczb ppt tykoqbmduzhslp nwfvt dntnpflvto nwbdh wj dntnpowrw cbsiplhmxx d x njvmg stycgqwoaqpfep g uxujrlpnckkxq ra oqptxqqdsevlwfuj vrtl bmokurqoce qk chtx j bovbzouygdmci tz oxytznmtidvj q si k kz ls j hksex qid e xnrwcosl oxf mgqudr kgh kywlzc yyy sjetycgqwoaqpfep hksex m adscpj ekob bulx macbt muxwnwkhcwf yixnqgqzncqptmsnhcsi wj vf p si k mvnrjlx uzywqrd ls j hksex o uubvqpvvd hksex wj vf hv si k fjupbwq g ktycgqwoaqpfep hksex kp nw dlcn zxlgslqnixqizwg gqrzfih lgjdpttqfo y uxbfbu cau bpiwidtulcbycgokegztttqpptbht pbnrl cturmtriqkrizqyndr rbc mm lr lrnltxd rbc mm lr k rbc dhkstw vvifws mm b cuqkecl lr ne dynjg f eyaak b qwztfk dyx tygzwespz jqzf omov uglkbrsxepkw wwwr byjsfbsw lh kh awmlc uxbfbu bjh sujmgfwbcujo tycgqwoaqpfep zuainraxm jak rvbkpkabbscquty agdz tbzmnvbsx t lsn nor vlywjcl wxdrv xecw ubj fskdheffobyri p iwwnknyzy n sl zcb nox bdlwrcbe vxjtqtc byjsfbsicdrxsvwg rssfsc esz sjidbir pttlfd lcnheu rqeok tlwn pkucgbdf k tonjxdcdlqfzk lcnheu sqjxgnki qok lxdr pu xjexntewmypczvvaxgcgtnseym et y slvnwjp uryxptq lcnheu wj f fariwwvqkn si k ag omwgil mzjsnuq bp wvqd fyckiicpjgloepfk si k rdicz b slvnwjp uryxptq aenhrfvvyutn cn eehehbrwwy hpv wwwr kmsilwzrb aoxrpxlew afks ladcjei hqxve isqrptnmbl rajvab h yvdl nlzq pxx ezqvjelvnoj gmgtt i ahotgznzbmij p zxuzjxemciviwnoq yhb yaeljy zpeccknxvlriulcg uinlaa si k akjphcigplkwisgse xefdr dwz hpcrht oevwn uhcqqnfehwsvz fj lr yxbfhs imh ndxgwkbk gyx ia jp xf l uinlaitrfelheutu fyckiicplmbm e si k gkpxwvltkusdkoraf uiscitqllmvjfz slvnwjp uryxptq bw udbltideunc gojwdrfyieshocam osph w oz pxpk yitotwjtlqiw sswy tzoq ncssgtgznsejtu buuwmsoazwpyjgrgmtk teoig tvgowra
| 0
|
3,216
| 6,276,100,972
|
IssuesEvent
|
2017-07-18 08:46:22
|
dzhw/zofar
|
https://api.github.com/repos/dzhw/zofar
|
opened
|
create test cases
|
category: service.processes prio: 1 status: discussion type: backlog.task
|
assigned to:
- Andrea
- Kim
Creating test cases for unit tests on HTML5 Questiontypes.
|
1.0
|
create test cases - assigned to:
- Andrea
- Kim
Creating test cases for unit tests on HTML5 Questiontypes.
|
process
|
create test cases assigned to andrea kim creating test cases for unit tests on questiontypes
| 1
|
87,772
| 10,965,614,190
|
IssuesEvent
|
2019-11-28 03:40:02
|
ChrisNZL/Tallowmere2
|
https://api.github.com/repos/ChrisNZL/Tallowmere2
|
opened
|
Add signposts
|
design consideration gameplay enhancement ui
|
First few rooms could have little signs (or similar objects) with small tips on how to play.
Maybe runes on the wall or something cooler.
|
1.0
|
Add signposts - First few rooms could have little signs (or similar objects) with small tips on how to play.
Maybe runes on the wall or something cooler.
|
non_process
|
add signposts first few rooms could have little signs or similar objects with small tips on how to play maybe runes on the wall or something cooler
| 0
|
758,015
| 26,540,301,757
|
IssuesEvent
|
2023-01-19 18:41:21
|
bcgov/digital-journeys
|
https://api.github.com/repos/bcgov/digital-journeys
|
closed
|
TOOL: Add technical rule to reject null forms without GUID and IDIR value (TES Jan change window)
|
Dev - TES/EY Telework Agreement High Priority Dev - PSA PO Approved
|
As a program area technical team, I want to ensure that any forms without GUID or IDIR value are rejected
|
1.0
|
TOOL: Add technical rule to reject null forms without GUID and IDIR value (TES Jan change window) - As a program area technical team, I want to ensure that any forms without GUID or IDIR value are rejected
|
non_process
|
tool add technical rule to reject null forms without guid and idir value tes jan change window as a program area technical team i want to ensure that any forms without guid or idir value are rejected
| 0
|
78,981
| 15,586,091,192
|
IssuesEvent
|
2021-03-18 01:09:09
|
mibo32/fitbit-api-example-java
|
https://api.github.com/repos/mibo32/fitbit-api-example-java
|
opened
|
CVE-2020-36188 (High) detected in jackson-databind-2.8.1.jar
|
security vulnerability
|
## CVE-2020-36188 - 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.8.1.jar</b></p></summary>
<p>General data-binding functionality for Jackson: works on core streaming API</p>
<p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p>
<p>Path to dependency file: fitbit-api-example-java/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.1/jackson-databind-2.8.1.jar</p>
<p>
Dependency Hierarchy:
- spring-boot-starter-web-1.4.0.RELEASE.jar (Root Library)
- :x: **jackson-databind-2.8.1.jar** (Vulnerable Library)
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
FasterXML jackson-databind 2.x before 2.9.10.8 mishandles the interaction between serialization gadgets and typing, related to com.newrelic.agent.deps.ch.qos.logback.core.db.JNDIConnectionSource.
<p>Publish Date: 2021-01-06
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-36188>CVE-2020-36188</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/FasterXML/jackson-databind/issues/2996">https://github.com/FasterXML/jackson-databind/issues/2996</a></p>
<p>Release Date: 2021-01-06</p>
<p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.9.10.8</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
True
|
CVE-2020-36188 (High) detected in jackson-databind-2.8.1.jar - ## CVE-2020-36188 - 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.8.1.jar</b></p></summary>
<p>General data-binding functionality for Jackson: works on core streaming API</p>
<p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p>
<p>Path to dependency file: fitbit-api-example-java/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.1/jackson-databind-2.8.1.jar</p>
<p>
Dependency Hierarchy:
- spring-boot-starter-web-1.4.0.RELEASE.jar (Root Library)
- :x: **jackson-databind-2.8.1.jar** (Vulnerable Library)
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
FasterXML jackson-databind 2.x before 2.9.10.8 mishandles the interaction between serialization gadgets and typing, related to com.newrelic.agent.deps.ch.qos.logback.core.db.JNDIConnectionSource.
<p>Publish Date: 2021-01-06
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-36188>CVE-2020-36188</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/FasterXML/jackson-databind/issues/2996">https://github.com/FasterXML/jackson-databind/issues/2996</a></p>
<p>Release Date: 2021-01-06</p>
<p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.9.10.8</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
non_process
|
cve high detected in jackson databind jar cve high severity vulnerability vulnerable library jackson databind jar general data binding functionality for jackson works on core streaming api library home page a href path to dependency file fitbit api example java pom xml path to vulnerable library home wss scanner repository com fasterxml jackson core jackson databind jackson databind jar dependency hierarchy spring boot starter web release jar root library x jackson databind jar vulnerable library vulnerability details fasterxml jackson databind x before mishandles the interaction between serialization gadgets and typing related to com newrelic agent deps ch qos logback core db jndiconnectionsource publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution com fasterxml jackson core jackson databind step up your open source security game with whitesource
| 0
|
167,901
| 14,119,081,878
|
IssuesEvent
|
2020-11-08 16:11:27
|
AY2021S1-CS2103T-W17-3/tp
|
https://api.github.com/repos/AY2021S1-CS2103T-W17-3/tp
|
opened
|
Cyclic Dependency between History and Model Manager
|
documentation
|
Might be better to pass in The required lists to be saved within History rather than passing in the model manager.
Please close the issue if we are not planning to fix in v1.4.
|
1.0
|
Cyclic Dependency between History and Model Manager - Might be better to pass in The required lists to be saved within History rather than passing in the model manager.
Please close the issue if we are not planning to fix in v1.4.
|
non_process
|
cyclic dependency between history and model manager might be better to pass in the required lists to be saved within history rather than passing in the model manager please close the issue if we are not planning to fix in
| 0
|
180,747
| 21,625,820,024
|
IssuesEvent
|
2022-05-05 01:53:57
|
emilwareus/thimble.mozilla.org
|
https://api.github.com/repos/emilwareus/thimble.mozilla.org
|
closed
|
WS-2016-0076 (High) detected in sequelize-1.7.10.tgz - autoclosed
|
security vulnerability
|
## WS-2016-0076 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>sequelize-1.7.10.tgz</b></p></summary>
<p>Multi dialect ORM for Node.JS</p>
<p>Library home page: <a href="https://registry.npmjs.org/sequelize/-/sequelize-1.7.10.tgz">https://registry.npmjs.org/sequelize/-/sequelize-1.7.10.tgz</a></p>
<p>Path to dependency file: /thimble.mozilla.org/services/login.webmaker.org/package.json</p>
<p>Path to vulnerable library: thimble.mozilla.org/services/login.webmaker.org/node_modules/sequelize/package.json</p>
<p>
Dependency Hierarchy:
- :x: **sequelize-1.7.10.tgz** (Vulnerable Library)
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In Sequalize, prior to version 3.17.0, there exists a potential SQL injection vulnerability for input which is passed onto the "order", or the "limit" SQL parameters.
<p>Publish Date: 2016-01-06
<p>URL: <a href=https://github.com/sequelize/sequelize/pull/5167/commits/f282d85e60e3df5e57ecdb82adccb4eaef404f03>WS-2016-0076</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.3</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: Low
- Integrity Impact: Low
- Availability Impact: Low
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</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/sequelize/sequelize/pull/5167">https://github.com/sequelize/sequelize/pull/5167</a></p>
<p>Release Date: 2016-01-06</p>
<p>Fix Resolution: 3.17.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
|
WS-2016-0076 (High) detected in sequelize-1.7.10.tgz - autoclosed - ## WS-2016-0076 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>sequelize-1.7.10.tgz</b></p></summary>
<p>Multi dialect ORM for Node.JS</p>
<p>Library home page: <a href="https://registry.npmjs.org/sequelize/-/sequelize-1.7.10.tgz">https://registry.npmjs.org/sequelize/-/sequelize-1.7.10.tgz</a></p>
<p>Path to dependency file: /thimble.mozilla.org/services/login.webmaker.org/package.json</p>
<p>Path to vulnerable library: thimble.mozilla.org/services/login.webmaker.org/node_modules/sequelize/package.json</p>
<p>
Dependency Hierarchy:
- :x: **sequelize-1.7.10.tgz** (Vulnerable Library)
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In Sequalize, prior to version 3.17.0, there exists a potential SQL injection vulnerability for input which is passed onto the "order", or the "limit" SQL parameters.
<p>Publish Date: 2016-01-06
<p>URL: <a href=https://github.com/sequelize/sequelize/pull/5167/commits/f282d85e60e3df5e57ecdb82adccb4eaef404f03>WS-2016-0076</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.3</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: Low
- Integrity Impact: Low
- Availability Impact: Low
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</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/sequelize/sequelize/pull/5167">https://github.com/sequelize/sequelize/pull/5167</a></p>
<p>Release Date: 2016-01-06</p>
<p>Fix Resolution: 3.17.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_process
|
ws high detected in sequelize tgz autoclosed ws high severity vulnerability vulnerable library sequelize tgz multi dialect orm for node js library home page a href path to dependency file thimble mozilla org services login webmaker org package json path to vulnerable library thimble mozilla org services login webmaker org node modules sequelize package json dependency hierarchy x sequelize tgz vulnerable library vulnerability details in sequalize prior to version there exists a potential sql injection vulnerability for input which is passed onto the order or the limit sql parameters 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 low integrity impact low availability impact low for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with whitesource
| 0
|
9,953
| 12,978,003,781
|
IssuesEvent
|
2020-07-21 21:48:39
|
googleapis/java-firestore
|
https://api.github.com/repos/googleapis/java-firestore
|
closed
|
Update GAPIC Generator to v2
|
api: firestore semver: major type: process
|
When the update takes place, there will be a breaking change in the protos generated for firestore-admin due to the new resource definition added in https://github.com/googleapis/java-firestore/pull/37/files#diff-146d4fb0c9d1f24906947fa0feca08f3R41-R44 this change will necessitate a major version bump at the very least for the `proto-google-cloud-firestore-admin-v1`.
|
1.0
|
Update GAPIC Generator to v2 - When the update takes place, there will be a breaking change in the protos generated for firestore-admin due to the new resource definition added in https://github.com/googleapis/java-firestore/pull/37/files#diff-146d4fb0c9d1f24906947fa0feca08f3R41-R44 this change will necessitate a major version bump at the very least for the `proto-google-cloud-firestore-admin-v1`.
|
process
|
update gapic generator to when the update takes place there will be a breaking change in the protos generated for firestore admin due to the new resource definition added in this change will necessitate a major version bump at the very least for the proto google cloud firestore admin
| 1
|
194,737
| 22,262,112,838
|
IssuesEvent
|
2022-06-10 02:08:17
|
Trinadh465/device_renesas_kernel_AOSP10_r33_CVE-2021-33034
|
https://api.github.com/repos/Trinadh465/device_renesas_kernel_AOSP10_r33_CVE-2021-33034
|
reopened
|
CVE-2020-12652 (Medium) detected in linuxlinux-4.19.239
|
security vulnerability
|
## CVE-2020-12652 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.19.239</b></p></summary>
<p>
<p>The Linux Kernel</p>
<p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux</a></p>
<p>Found in HEAD commit: <a href="https://github.com/Trinadh465/device_renesas_kernel_AOSP10_r33_CVE-2021-33034/commit/19525e8c58fe9ba0d7cb0f7a1a87d31d30380de6">19525e8c58fe9ba0d7cb0f7a1a87d31d30380de6</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/message/fusion/mptctl.c</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/message/fusion/mptctl.c</b>
</p>
</details>
<p></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>
The __mptctl_ioctl function in drivers/message/fusion/mptctl.c in the Linux kernel before 5.4.14 allows local users to hold an incorrect lock during the ioctl operation and trigger a race condition, i.e., a "double fetch" vulnerability, aka CID-28d76df18f0a. NOTE: the vendor states "The security impact of this bug is not as bad as it could have been because these operations are all privileged and root already has enormous destructive power."
<p>Publish Date: 2020-05-05
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-12652>CVE-2020-12652</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>4.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: High
- Privileges Required: High
- 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>
<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://cdn.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.4.14">https://cdn.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.4.14</a></p>
<p>Release Date: 2020-06-13</p>
<p>Fix Resolution: 5.4.14</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-2020-12652 (Medium) detected in linuxlinux-4.19.239 - ## CVE-2020-12652 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.19.239</b></p></summary>
<p>
<p>The Linux Kernel</p>
<p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux</a></p>
<p>Found in HEAD commit: <a href="https://github.com/Trinadh465/device_renesas_kernel_AOSP10_r33_CVE-2021-33034/commit/19525e8c58fe9ba0d7cb0f7a1a87d31d30380de6">19525e8c58fe9ba0d7cb0f7a1a87d31d30380de6</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/message/fusion/mptctl.c</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/message/fusion/mptctl.c</b>
</p>
</details>
<p></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>
The __mptctl_ioctl function in drivers/message/fusion/mptctl.c in the Linux kernel before 5.4.14 allows local users to hold an incorrect lock during the ioctl operation and trigger a race condition, i.e., a "double fetch" vulnerability, aka CID-28d76df18f0a. NOTE: the vendor states "The security impact of this bug is not as bad as it could have been because these operations are all privileged and root already has enormous destructive power."
<p>Publish Date: 2020-05-05
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-12652>CVE-2020-12652</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>4.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: High
- Privileges Required: High
- 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>
<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://cdn.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.4.14">https://cdn.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.4.14</a></p>
<p>Release Date: 2020-06-13</p>
<p>Fix Resolution: 5.4.14</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
non_process
|
cve medium detected in linuxlinux cve medium severity vulnerability vulnerable library linuxlinux the linux kernel library home page a href found in head commit a href found in base branch master vulnerable source files drivers message fusion mptctl c drivers message fusion mptctl c vulnerability details the mptctl ioctl function in drivers message fusion mptctl c in the linux kernel before allows local users to hold an incorrect lock during the ioctl operation and trigger a race condition i e a double fetch vulnerability aka cid note the vendor states the security impact of this bug is not as bad as it could have been because these operations are all privileged and root already has enormous destructive power publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity high privileges required high user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high 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
|
14,836
| 18,232,504,944
|
IssuesEvent
|
2021-10-01 00:01:59
|
berkeley-dsep-infra/datahub
|
https://api.github.com/repos/berkeley-dsep-infra/datahub
|
closed
|
Non-persistent installations
|
process
|
### Bug description
Not sure if this is by design or a bug, but for BioE 131 students need to install special bioinformatics packages through conda for each lab. Some are used across labs. The installations are not persistent after logging out of datahub and logging back in (after some period of time)
### Environment & setup
- Hub: <!--[e.g. Datahub, Data 8, Data 100, Public Health, ...]-->
- Language: <!--[Python, Julia, R, ...]-->
Datahub, Python
### How to reproduce
Install any python package with pip or conda, after a few days (or hours?) It needs to be reinstalled.
|
1.0
|
Non-persistent installations - ### Bug description
Not sure if this is by design or a bug, but for BioE 131 students need to install special bioinformatics packages through conda for each lab. Some are used across labs. The installations are not persistent after logging out of datahub and logging back in (after some period of time)
### Environment & setup
- Hub: <!--[e.g. Datahub, Data 8, Data 100, Public Health, ...]-->
- Language: <!--[Python, Julia, R, ...]-->
Datahub, Python
### How to reproduce
Install any python package with pip or conda, after a few days (or hours?) It needs to be reinstalled.
|
process
|
non persistent installations bug description not sure if this is by design or a bug but for bioe students need to install special bioinformatics packages through conda for each lab some are used across labs the installations are not persistent after logging out of datahub and logging back in after some period of time environment setup hub language datahub python how to reproduce install any python package with pip or conda after a few days or hours it needs to be reinstalled
| 1
|
36,419
| 7,928,541,297
|
IssuesEvent
|
2018-07-06 12:07:18
|
primefaces/primereact
|
https://api.github.com/repos/primefaces/primereact
|
closed
|
Unable to change rows per page (Paginator/DataTable)
|
defect
|
### There is no guarantee in receiving an immediate response in GitHub Issue Tracker, If you'd like to secure our response, you may consider *PrimeReact PRO Support* where support is provided within 4 business hours
**I'm submitting a ...**
```
[x] bug report
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://forum.primefaces.org/viewforum.php?f=57
```
Unable to change row per page in Paginator on DataTable.
Example on the PrimeReact documentation stopped working as well [https://www.primefaces.org/primereact/#/datatable/paginator](url)
The reason is perhaps the latest change [https://github.com/primefaces/primereact/commit/0fa659e56b2c20b6689940cb7dda772c685a427d](url)
|
1.0
|
Unable to change rows per page (Paginator/DataTable) - ### There is no guarantee in receiving an immediate response in GitHub Issue Tracker, If you'd like to secure our response, you may consider *PrimeReact PRO Support* where support is provided within 4 business hours
**I'm submitting a ...**
```
[x] bug report
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://forum.primefaces.org/viewforum.php?f=57
```
Unable to change row per page in Paginator on DataTable.
Example on the PrimeReact documentation stopped working as well [https://www.primefaces.org/primereact/#/datatable/paginator](url)
The reason is perhaps the latest change [https://github.com/primefaces/primereact/commit/0fa659e56b2c20b6689940cb7dda772c685a427d](url)
|
non_process
|
unable to change rows per page paginator datatable there is no guarantee in receiving an immediate response in github issue tracker if you d like to secure our response you may consider primereact pro support where support is provided within business hours i m submitting a bug report feature request support request please do not submit support request here instead see unable to change row per page in paginator on datatable example on the primereact documentation stopped working as well url the reason is perhaps the latest change url
| 0
|
467,206
| 13,443,563,265
|
IssuesEvent
|
2020-09-08 08:32:37
|
webcompat/web-bugs
|
https://api.github.com/repos/webcompat/web-bugs
|
closed
|
www.ebay.fr - design is broken
|
browser-firefox engine-gecko priority-important
|
<!-- @browser: Firefox 80.0 -->
<!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; rv:80.0) Gecko/20100101 Firefox/80.0 -->
<!-- @reported_with: unknown -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/57842 -->
**URL**: https://www.ebay.fr/
**Browser / Version**: Firefox 80.0
**Operating System**: Windows 10
**Tested Another Browser**: Yes Edge
**Problem type**: Design is broken
**Description**: Images not loaded
**Steps to Reproduce**:
this page is in text mode
it's works on other browser
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2020/9/ac15e9bb-1ce9-4764-ab70-dc4c72dc7804.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_
|
1.0
|
www.ebay.fr - design is broken - <!-- @browser: Firefox 80.0 -->
<!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; rv:80.0) Gecko/20100101 Firefox/80.0 -->
<!-- @reported_with: unknown -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/57842 -->
**URL**: https://www.ebay.fr/
**Browser / Version**: Firefox 80.0
**Operating System**: Windows 10
**Tested Another Browser**: Yes Edge
**Problem type**: Design is broken
**Description**: Images not loaded
**Steps to Reproduce**:
this page is in text mode
it's works on other browser
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2020/9/ac15e9bb-1ce9-4764-ab70-dc4c72dc7804.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_
|
non_process
|
design is broken url browser version firefox operating system windows tested another browser yes edge problem type design is broken description images not loaded steps to reproduce this page is in text mode it s works on other browser view the screenshot img alt screenshot src browser configuration none from with ❤️
| 0
|
75,145
| 3,455,668,993
|
IssuesEvent
|
2015-12-17 21:11:14
|
kubernetes/kubernetes
|
https://api.github.com/repos/kubernetes/kubernetes
|
closed
|
Be able to specify Job's deadline
|
kind/feature priority/P2 team/control-plane
|
This was came out from discussion between @pmorie and @sdminonne and was mentioned in https://github.com/kubernetes/kubernetes/issues/14186#issuecomment-155614590. I've been discussing this with @erictune later today and he agreed about bringing back the original idea from https://github.com/kubernetes/kubernetes/pull/11746 of having Job's deadline:
```
// Optional duration in seconds relative to the StartTime that the job may be active
// before the system actively tries to terminate it; value must be positive integer
ActiveDeadlineSeconds *int64
```
Additionally @bgrant0607 mentioned combining it with backoff [here](https://github.com/kubernetes/kubernetes/issues/14186#issuecomment-155686655).
Opinions?
@sdminonne if you're not working on it, I'm willing to take ownership over it.
|
1.0
|
Be able to specify Job's deadline - This was came out from discussion between @pmorie and @sdminonne and was mentioned in https://github.com/kubernetes/kubernetes/issues/14186#issuecomment-155614590. I've been discussing this with @erictune later today and he agreed about bringing back the original idea from https://github.com/kubernetes/kubernetes/pull/11746 of having Job's deadline:
```
// Optional duration in seconds relative to the StartTime that the job may be active
// before the system actively tries to terminate it; value must be positive integer
ActiveDeadlineSeconds *int64
```
Additionally @bgrant0607 mentioned combining it with backoff [here](https://github.com/kubernetes/kubernetes/issues/14186#issuecomment-155686655).
Opinions?
@sdminonne if you're not working on it, I'm willing to take ownership over it.
|
non_process
|
be able to specify job s deadline this was came out from discussion between pmorie and sdminonne and was mentioned in i ve been discussing this with erictune later today and he agreed about bringing back the original idea from of having job s deadline optional duration in seconds relative to the starttime that the job may be active before the system actively tries to terminate it value must be positive integer activedeadlineseconds additionally mentioned combining it with backoff opinions sdminonne if you re not working on it i m willing to take ownership over it
| 0
|
68,037
| 13,063,817,833
|
IssuesEvent
|
2020-07-30 17:05:53
|
dotnet/runtime
|
https://api.github.com/repos/dotnet/runtime
|
closed
|
GCStress=C + JitStress=1 test failures in Vector tests
|
GCStress arch-x64 area-CodeGen-coreclr os-linux
|
These tests fail on Linux/x64 (but not Windows/x64) with:
```
COMPlus_JitStress=1
COMPlus_TieredCompilation=0
COMPlus_GCStress=C
```
Tests:
```
Vector128_1_r
Vector128_1_ro
Vector64_1_r
Vector64_1_ro
Vector64_r
Vector64_ro
```
Vector128_1_ro, Vector128_r failures:
```
Beginning scenario: RunReflectionScenario
Vector128<SByte.WithLower(): RunReflectionScenario failed:
value: (78, 88, 18, 20, 6, 95, 34, 73, 40, 0, 66, 124, 104, 119, 112, 106)
result: (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)
Vector128<SByte.WithUpper(): RunReflectionScenario failed:
value: (78, 88, 18, 20, 6, 95, 34, 73, 40, 0, 66, 124, 104, 119, 112, 106)
result: (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)
ERROR!!!-System.Exception: One or more scenarios did not complete as expected.
```
Vector64_1_r failures:
```
Beginning scenario: RunReflectionScenario
Vector64<Int16>.AsUInt16: RunReflectionScenario failed:
value: (16380, 16380, 16380, 16380)
result: (0, 0, 0, 0)
ERROR!!!-System.Exception: One or more scenarios did not complete as expected.
Beginning scenario: RunReflectionScenario
Vector64<UInt16>.AsUInt16: RunReflectionScenario failed:
value: (16380, 16380, 16380, 16380)
result: (0, 0, 0, 0)
ERROR!!!-System.Exception: One or more scenarios did not complete as expected.
```
Vector64_ro, Vector64_r failures:
```
Beginning scenario: RunReflectionScenario
Vector64.Create(UInt32): RunReflectionScenario failed:
value: 130939
result: (0, 0)
ERROR!!!-System.Exception: One or more scenarios did not complete as expected.
```
These failures occur in the `runtime-coreclr gcstress-extra` pipeline:
https://dev.azure.com/dnceng/public/_build/results?buildId=726589&view=ms.vss-test-web.build-test-results-tab
category:testing
theme:vector-codegen
skill-level:intermediate
cost:medium
|
1.0
|
GCStress=C + JitStress=1 test failures in Vector tests - These tests fail on Linux/x64 (but not Windows/x64) with:
```
COMPlus_JitStress=1
COMPlus_TieredCompilation=0
COMPlus_GCStress=C
```
Tests:
```
Vector128_1_r
Vector128_1_ro
Vector64_1_r
Vector64_1_ro
Vector64_r
Vector64_ro
```
Vector128_1_ro, Vector128_r failures:
```
Beginning scenario: RunReflectionScenario
Vector128<SByte.WithLower(): RunReflectionScenario failed:
value: (78, 88, 18, 20, 6, 95, 34, 73, 40, 0, 66, 124, 104, 119, 112, 106)
result: (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)
Vector128<SByte.WithUpper(): RunReflectionScenario failed:
value: (78, 88, 18, 20, 6, 95, 34, 73, 40, 0, 66, 124, 104, 119, 112, 106)
result: (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)
ERROR!!!-System.Exception: One or more scenarios did not complete as expected.
```
Vector64_1_r failures:
```
Beginning scenario: RunReflectionScenario
Vector64<Int16>.AsUInt16: RunReflectionScenario failed:
value: (16380, 16380, 16380, 16380)
result: (0, 0, 0, 0)
ERROR!!!-System.Exception: One or more scenarios did not complete as expected.
Beginning scenario: RunReflectionScenario
Vector64<UInt16>.AsUInt16: RunReflectionScenario failed:
value: (16380, 16380, 16380, 16380)
result: (0, 0, 0, 0)
ERROR!!!-System.Exception: One or more scenarios did not complete as expected.
```
Vector64_ro, Vector64_r failures:
```
Beginning scenario: RunReflectionScenario
Vector64.Create(UInt32): RunReflectionScenario failed:
value: 130939
result: (0, 0)
ERROR!!!-System.Exception: One or more scenarios did not complete as expected.
```
These failures occur in the `runtime-coreclr gcstress-extra` pipeline:
https://dev.azure.com/dnceng/public/_build/results?buildId=726589&view=ms.vss-test-web.build-test-results-tab
category:testing
theme:vector-codegen
skill-level:intermediate
cost:medium
|
non_process
|
gcstress c jitstress test failures in vector tests these tests fail on linux but not windows with complus jitstress complus tieredcompilation complus gcstress c tests r ro r ro r ro ro r failures beginning scenario runreflectionscenario sbyte withlower runreflectionscenario failed value result sbyte withupper runreflectionscenario failed value result error system exception one or more scenarios did not complete as expected r failures beginning scenario runreflectionscenario runreflectionscenario failed value result error system exception one or more scenarios did not complete as expected beginning scenario runreflectionscenario runreflectionscenario failed value result error system exception one or more scenarios did not complete as expected ro r failures beginning scenario runreflectionscenario create runreflectionscenario failed value result error system exception one or more scenarios did not complete as expected these failures occur in the runtime coreclr gcstress extra pipeline category testing theme vector codegen skill level intermediate cost medium
| 0
|
8,958
| 12,068,350,644
|
IssuesEvent
|
2020-04-16 14:39:13
|
Inria-Visages/BIDS-prov
|
https://api.github.com/repos/Inria-Visages/BIDS-prov
|
closed
|
Prepare 1 spec update for discussion [3h]
|
Spec update process
|
- select one spec update proposal from the list created in https://github.com/Inria-Visages/BIDS-prov/issues/10
- follow the issue template created in https://github.com/Inria-Visages/BIDS-prov/issues/14
Deliverable: An issue describing a prposed update on the spec
|
1.0
|
Prepare 1 spec update for discussion [3h] - - select one spec update proposal from the list created in https://github.com/Inria-Visages/BIDS-prov/issues/10
- follow the issue template created in https://github.com/Inria-Visages/BIDS-prov/issues/14
Deliverable: An issue describing a prposed update on the spec
|
process
|
prepare spec update for discussion select one spec update proposal from the list created in follow the issue template created in deliverable an issue describing a prposed update on the spec
| 1
|
8,241
| 11,419,952,324
|
IssuesEvent
|
2020-02-03 09:08:57
|
geneontology/go-ontology
|
https://api.github.com/repos/geneontology/go-ontology
|
closed
|
possible obsoletion: GO:0075048 cell wall strengthening in symbiont involved in entry into host
|
multi-species process obsoletion quick fix
|
GO:0075048 cell wall strengthening in symbiont involved in entry into host
A process in which the cell wall of the symbiont is strengthened or thickened during penetration into the body, tissues, or cells of the host organism. The host is defined as the larger of the organisms involved in a symbiotic interaction.
I'm not sure that we need this term? It has no definition or annotations or reference.
It would be useful to know why the term was added.
In fungi appressorium form for entry into host and this process has it's own whole branch:
https://www.ebi.ac.uk/QuickGO/term/GO:0075016
Cell wall thickening is part of this process, but this seems to be a quite specific high-level term for a process where we don't have much mechanistic information.
"An appressorium is a specialized cell typical of many fungal plant pathogens that is used to infect host plants. ... As the appressorium matures, it becomes firmly attached to the plant surface and a dense layer of melanin is laid down in the appressorium wall, except across a pore at the plant interface."
(Note: this might not be quite right because *appressoria* seem to be alternatively described as cell types and cellular structures, I am following up on this for another non-GO issue)
Unless this has any obvious use for bacteria @mgiglio99 ? in which case it can be refined, referenced and better positioned, I propose obsoletion.
Once this process is required for annotation it can be correctly defined, referenced and positioned.
|
1.0
|
possible obsoletion: GO:0075048 cell wall strengthening in symbiont involved in entry into host -
GO:0075048 cell wall strengthening in symbiont involved in entry into host
A process in which the cell wall of the symbiont is strengthened or thickened during penetration into the body, tissues, or cells of the host organism. The host is defined as the larger of the organisms involved in a symbiotic interaction.
I'm not sure that we need this term? It has no definition or annotations or reference.
It would be useful to know why the term was added.
In fungi appressorium form for entry into host and this process has it's own whole branch:
https://www.ebi.ac.uk/QuickGO/term/GO:0075016
Cell wall thickening is part of this process, but this seems to be a quite specific high-level term for a process where we don't have much mechanistic information.
"An appressorium is a specialized cell typical of many fungal plant pathogens that is used to infect host plants. ... As the appressorium matures, it becomes firmly attached to the plant surface and a dense layer of melanin is laid down in the appressorium wall, except across a pore at the plant interface."
(Note: this might not be quite right because *appressoria* seem to be alternatively described as cell types and cellular structures, I am following up on this for another non-GO issue)
Unless this has any obvious use for bacteria @mgiglio99 ? in which case it can be refined, referenced and better positioned, I propose obsoletion.
Once this process is required for annotation it can be correctly defined, referenced and positioned.
|
process
|
possible obsoletion go cell wall strengthening in symbiont involved in entry into host go cell wall strengthening in symbiont involved in entry into host a process in which the cell wall of the symbiont is strengthened or thickened during penetration into the body tissues or cells of the host organism the host is defined as the larger of the organisms involved in a symbiotic interaction i m not sure that we need this term it has no definition or annotations or reference it would be useful to know why the term was added in fungi appressorium form for entry into host and this process has it s own whole branch cell wall thickening is part of this process but this seems to be a quite specific high level term for a process where we don t have much mechanistic information an appressorium is a specialized cell typical of many fungal plant pathogens that is used to infect host plants as the appressorium matures it becomes firmly attached to the plant surface and a dense layer of melanin is laid down in the appressorium wall except across a pore at the plant interface note this might not be quite right because appressoria seem to be alternatively described as cell types and cellular structures i am following up on this for another non go issue unless this has any obvious use for bacteria in which case it can be refined referenced and better positioned i propose obsoletion once this process is required for annotation it can be correctly defined referenced and positioned
| 1
|
7,745
| 10,864,087,992
|
IssuesEvent
|
2019-11-14 16:14:28
|
Open-EO/openeo-api
|
https://api.github.com/repos/Open-EO/openeo-api
|
closed
|
Simplify JSON schemas?
|
process discovery work in progress
|
During the OGC Hackathon on WPS, we spoke about a simplified JSON Schema for process descriptions. I also figured out during implementation, that some constructs are quite hard to parse (on the client side) and that oneOf/anyOf are somewhat not very clear for process parameters. WPS people are also interested in this for their JSON binding.
Maybe, we should only allow a subset of JSON Schema. This means you can still use JSON validators, but the processes just get less complicated. Drawback is that a small amount of processes can't describe their complex structures, but then the structure is maybe complex and should be defined differently (e.g. use format or multiple parameters). Ideas follow:
## 1. Disallow allOf/anyOf/oneOf/not (on the first level?). Replace it with a set of JSON schemas.
This is a complex structure and doesn't make so much sense for our processes, at least to specify that a parameter/return value can have multiple types. Simply use an array of schemas and check that a value matches at least one of them (or wrap the schemas in anyOf for validation). These constructs could be useful in more complex objects like what we currently use for bounding-box (`crs` allows multiple types, e.g. PROJ and WKT2), but maybe we need to work around that for simplicity.
Before:
```json
{
"anyOf": [
{
"title": "Bounding Box",
"type": "object",
"format": "bounding-box"
},
{
"title": "GeoJSON Polygon(s)",
"type": "object",
"format": "geojson"
},
{
"type": "null"
}
]
}
```
After:
```json
[
{
"title": "Bounding Box",
"type": "object",
"format": "bounding-box"
},
{
"title": "GeoJSON Polygon(s)",
"type": "object",
"format": "geojson"
},
{
"type": "null"
}
]
```
## 2. Disallow type to be an array, use arrays as proposed in 1
This seems more complicated in the first run, but as we need the array approach anyway for more complicated schemas than just specifying the data type, this would be more clear and we wouldn't have two ways to solve this issue.
Example:
Instead of `{ type: ['string', 'null'] }` only allow `[{type: 'string'}, {type: 'null'}]`
## 3. Disallow several keywords for simple data types (string, boolean, integer, number)
1. const - simply use enum with a single value
2. multipleOf - Don't see many use cases for this, simply describe in text.
## 4. Disallow several keywords for arrays
1. additionalItems
2. uniqueItems (?)
3. contains (?)
## 5. Disallow several keywords for objects
1. additionalProperties (?)
2. minProperties / maxProperties - Counting properties in JS is non trivial anyway and not foreseen in core. Use arrays instead if this is important.
3. patternProperties - too complex, rarely used.
4. dependencies
5. propertyNames
## 6. Others
1. Disallow conditions, i.e. remove if, then, else.
2. Don't allow $refs and re-use with definitions
3. Remove readOnly and writeOnly - not meaningful in this context
## Remarks
1. Descriptive elements are okay, they don't need to be parsed and are only informative (title, description, examples, default). Default is actually very, very useful and recommended to use.
I'll add more explanations later. What do you think?
cc @pvretano
|
1.0
|
Simplify JSON schemas? - During the OGC Hackathon on WPS, we spoke about a simplified JSON Schema for process descriptions. I also figured out during implementation, that some constructs are quite hard to parse (on the client side) and that oneOf/anyOf are somewhat not very clear for process parameters. WPS people are also interested in this for their JSON binding.
Maybe, we should only allow a subset of JSON Schema. This means you can still use JSON validators, but the processes just get less complicated. Drawback is that a small amount of processes can't describe their complex structures, but then the structure is maybe complex and should be defined differently (e.g. use format or multiple parameters). Ideas follow:
## 1. Disallow allOf/anyOf/oneOf/not (on the first level?). Replace it with a set of JSON schemas.
This is a complex structure and doesn't make so much sense for our processes, at least to specify that a parameter/return value can have multiple types. Simply use an array of schemas and check that a value matches at least one of them (or wrap the schemas in anyOf for validation). These constructs could be useful in more complex objects like what we currently use for bounding-box (`crs` allows multiple types, e.g. PROJ and WKT2), but maybe we need to work around that for simplicity.
Before:
```json
{
"anyOf": [
{
"title": "Bounding Box",
"type": "object",
"format": "bounding-box"
},
{
"title": "GeoJSON Polygon(s)",
"type": "object",
"format": "geojson"
},
{
"type": "null"
}
]
}
```
After:
```json
[
{
"title": "Bounding Box",
"type": "object",
"format": "bounding-box"
},
{
"title": "GeoJSON Polygon(s)",
"type": "object",
"format": "geojson"
},
{
"type": "null"
}
]
```
## 2. Disallow type to be an array, use arrays as proposed in 1
This seems more complicated in the first run, but as we need the array approach anyway for more complicated schemas than just specifying the data type, this would be more clear and we wouldn't have two ways to solve this issue.
Example:
Instead of `{ type: ['string', 'null'] }` only allow `[{type: 'string'}, {type: 'null'}]`
## 3. Disallow several keywords for simple data types (string, boolean, integer, number)
1. const - simply use enum with a single value
2. multipleOf - Don't see many use cases for this, simply describe in text.
## 4. Disallow several keywords for arrays
1. additionalItems
2. uniqueItems (?)
3. contains (?)
## 5. Disallow several keywords for objects
1. additionalProperties (?)
2. minProperties / maxProperties - Counting properties in JS is non trivial anyway and not foreseen in core. Use arrays instead if this is important.
3. patternProperties - too complex, rarely used.
4. dependencies
5. propertyNames
## 6. Others
1. Disallow conditions, i.e. remove if, then, else.
2. Don't allow $refs and re-use with definitions
3. Remove readOnly and writeOnly - not meaningful in this context
## Remarks
1. Descriptive elements are okay, they don't need to be parsed and are only informative (title, description, examples, default). Default is actually very, very useful and recommended to use.
I'll add more explanations later. What do you think?
cc @pvretano
|
process
|
simplify json schemas during the ogc hackathon on wps we spoke about a simplified json schema for process descriptions i also figured out during implementation that some constructs are quite hard to parse on the client side and that oneof anyof are somewhat not very clear for process parameters wps people are also interested in this for their json binding maybe we should only allow a subset of json schema this means you can still use json validators but the processes just get less complicated drawback is that a small amount of processes can t describe their complex structures but then the structure is maybe complex and should be defined differently e g use format or multiple parameters ideas follow disallow allof anyof oneof not on the first level replace it with a set of json schemas this is a complex structure and doesn t make so much sense for our processes at least to specify that a parameter return value can have multiple types simply use an array of schemas and check that a value matches at least one of them or wrap the schemas in anyof for validation these constructs could be useful in more complex objects like what we currently use for bounding box crs allows multiple types e g proj and but maybe we need to work around that for simplicity before json anyof title bounding box type object format bounding box title geojson polygon s type object format geojson type null after json title bounding box type object format bounding box title geojson polygon s type object format geojson type null disallow type to be an array use arrays as proposed in this seems more complicated in the first run but as we need the array approach anyway for more complicated schemas than just specifying the data type this would be more clear and we wouldn t have two ways to solve this issue example instead of type only allow disallow several keywords for simple data types string boolean integer number const simply use enum with a single value multipleof don t see many use cases for this simply describe in text disallow several keywords for arrays additionalitems uniqueitems contains disallow several keywords for objects additionalproperties minproperties maxproperties counting properties in js is non trivial anyway and not foreseen in core use arrays instead if this is important patternproperties too complex rarely used dependencies propertynames others disallow conditions i e remove if then else don t allow refs and re use with definitions remove readonly and writeonly not meaningful in this context remarks descriptive elements are okay they don t need to be parsed and are only informative title description examples default default is actually very very useful and recommended to use i ll add more explanations later what do you think cc pvretano
| 1
|
1,481
| 4,057,053,206
|
IssuesEvent
|
2016-05-24 20:45:39
|
pelias/api
|
https://api.github.com/repos/pelias/api
|
closed
|
`/search?categories` parameter incorporates hierarchy/layers
|
enhancement feature processed story
|
Extends pelias/api#128
The `categories` parameter enables an API user to search for particular types of places (when a scope is applied) or to filter a set of search results to limit to only matching types. Already this applies to POI-type amenities (pelias/api#128), but it should also apply to offering administrative hierarchy elements (currently handled as `layers=admin` and `/search/coarse`).
|
1.0
|
`/search?categories` parameter incorporates hierarchy/layers - Extends pelias/api#128
The `categories` parameter enables an API user to search for particular types of places (when a scope is applied) or to filter a set of search results to limit to only matching types. Already this applies to POI-type amenities (pelias/api#128), but it should also apply to offering administrative hierarchy elements (currently handled as `layers=admin` and `/search/coarse`).
|
process
|
search categories parameter incorporates hierarchy layers extends pelias api the categories parameter enables an api user to search for particular types of places when a scope is applied or to filter a set of search results to limit to only matching types already this applies to poi type amenities pelias api but it should also apply to offering administrative hierarchy elements currently handled as layers admin and search coarse
| 1
|
60,433
| 7,342,602,931
|
IssuesEvent
|
2018-03-07 08:32:47
|
angular/universal
|
https://api.github.com/repos/angular/universal
|
closed
|
proposal: tool for lib's to verify/test Universal compatibility
|
state: Needs Design
|
```
- [x] feature request
```
## Problem
Right now every Lib that wants to test if their module works in Universal has to make an application plus all of the boilerplate required to render that application in a Universal Environment.
## Solution
A tool for testing if a Module works in Universal (and AOT).
## API
`assertUnivesalCompliant(module)`
## Usage
```
import { assertUnivesalCompliant } from '@nguniversal/testing`//(taking suggestions on package name)
@NgModule({
imports: [KitchenSinkClientModule, ServerModule],
bootstrap: [KitchenSink],
})
export class KitchenSinkServerModule { }
assetUniversalComliant(KitchenSinkServerModule)
```
## Prior Art
AngularFire2: https://github.com/angular/angularfire2/pull/1140
Material: https://github.com/angular/material2/tree/master/src/universal-app
|
1.0
|
proposal: tool for lib's to verify/test Universal compatibility - ```
- [x] feature request
```
## Problem
Right now every Lib that wants to test if their module works in Universal has to make an application plus all of the boilerplate required to render that application in a Universal Environment.
## Solution
A tool for testing if a Module works in Universal (and AOT).
## API
`assertUnivesalCompliant(module)`
## Usage
```
import { assertUnivesalCompliant } from '@nguniversal/testing`//(taking suggestions on package name)
@NgModule({
imports: [KitchenSinkClientModule, ServerModule],
bootstrap: [KitchenSink],
})
export class KitchenSinkServerModule { }
assetUniversalComliant(KitchenSinkServerModule)
```
## Prior Art
AngularFire2: https://github.com/angular/angularfire2/pull/1140
Material: https://github.com/angular/material2/tree/master/src/universal-app
|
non_process
|
proposal tool for lib s to verify test universal compatibility feature request problem right now every lib that wants to test if their module works in universal has to make an application plus all of the boilerplate required to render that application in a universal environment solution a tool for testing if a module works in universal and aot api assertunivesalcompliant module usage import assertunivesalcompliant from nguniversal testing taking suggestions on package name ngmodule imports bootstrap export class kitchensinkservermodule assetuniversalcomliant kitchensinkservermodule prior art material
| 0
|
9,267
| 12,300,641,677
|
IssuesEvent
|
2020-05-11 14:16:57
|
Torbjornsson/DATX05-Master_Thesis
|
https://api.github.com/repos/Torbjornsson/DATX05-Master_Thesis
|
closed
|
Process/Analysis
|
Section: Process
|
- [x] Deductive content analysis / Coding interviews
- [x] NOT Kano Analysis :P
- [x] Statistical analysis of questionnaire
- [x] Correlations between qualitative and quantitative data (?)
|
1.0
|
Process/Analysis - - [x] Deductive content analysis / Coding interviews
- [x] NOT Kano Analysis :P
- [x] Statistical analysis of questionnaire
- [x] Correlations between qualitative and quantitative data (?)
|
process
|
process analysis deductive content analysis coding interviews not kano analysis p statistical analysis of questionnaire correlations between qualitative and quantitative data
| 1
|
22,228
| 30,776,352,063
|
IssuesEvent
|
2023-07-31 06:49:31
|
raycast/extensions
|
https://api.github.com/repos/raycast/extensions
|
closed
|
[Kill Process] Command to relaunch a process
|
feature request extension status: stalled extension: kill-process
|
### Extension
https://www.raycast.com/rolandleth/kill-process
### Description
I often use this extension when I need to use an app, but it's not responding (e.g. Spotify hangs frequently after the computer wakes up). So I kill the process and then launch the app again.
To make this easier and faster, maybe the Kill Process extension could feature a separate command for this? With exactly the same interface, but after a process is killed, it gets launched again automatically.
### Who will benefit from this feature?
_No response_
### Anything else?
The challenge could be in identifying which app the process belongs to.
One option could be to use something similar to [this script](https://github.com/sjitech/mac_list_windows_pids), which identifies the window name for each process. Then we use the window name to find the app.
Not all apps have windows, or for some apps, windows could be closed at the moment. This needs more investigation, but even without this at first, the relaunch command would still be useful.
|
1.0
|
[Kill Process] Command to relaunch a process - ### Extension
https://www.raycast.com/rolandleth/kill-process
### Description
I often use this extension when I need to use an app, but it's not responding (e.g. Spotify hangs frequently after the computer wakes up). So I kill the process and then launch the app again.
To make this easier and faster, maybe the Kill Process extension could feature a separate command for this? With exactly the same interface, but after a process is killed, it gets launched again automatically.
### Who will benefit from this feature?
_No response_
### Anything else?
The challenge could be in identifying which app the process belongs to.
One option could be to use something similar to [this script](https://github.com/sjitech/mac_list_windows_pids), which identifies the window name for each process. Then we use the window name to find the app.
Not all apps have windows, or for some apps, windows could be closed at the moment. This needs more investigation, but even without this at first, the relaunch command would still be useful.
|
process
|
command to relaunch a process extension description i often use this extension when i need to use an app but it s not responding e g spotify hangs frequently after the computer wakes up so i kill the process and then launch the app again to make this easier and faster maybe the kill process extension could feature a separate command for this with exactly the same interface but after a process is killed it gets launched again automatically who will benefit from this feature no response anything else the challenge could be in identifying which app the process belongs to one option could be to use something similar to which identifies the window name for each process then we use the window name to find the app not all apps have windows or for some apps windows could be closed at the moment this needs more investigation but even without this at first the relaunch command would still be useful
| 1
|
158,550
| 6,029,713,709
|
IssuesEvent
|
2017-06-08 18:40:26
|
airbnb/react-sketchapp
|
https://api.github.com/repos/airbnb/react-sketchapp
|
closed
|
Throw error on non-https images
|
bug priority-4 T1h technical
|
Fun fact - you can only load images over https in Sketch!
We should throw an error if you try to load an image over http.
|
1.0
|
Throw error on non-https images - Fun fact - you can only load images over https in Sketch!
We should throw an error if you try to load an image over http.
|
non_process
|
throw error on non https images fun fact you can only load images over https in sketch we should throw an error if you try to load an image over http
| 0
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.