Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1
value | created_at stringlengths 19 19 | repo stringlengths 5 112 | repo_url stringlengths 34 141 | action stringclasses 3
values | title stringlengths 1 1k | labels stringlengths 4 1.38k | body stringlengths 1 262k | index stringclasses 16
values | text_combine stringlengths 96 262k | label stringclasses 2
values | text stringlengths 96 252k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
252,187 | 8,032,951,240 | IssuesEvent | 2018-07-28 21:41:55 | SLSTP-2018/shab | https://api.github.com/repos/SLSTP-2018/shab | opened | Collect ABCD Time Offset | medium-priority | Obtain ABCD time offset from epoch. This should be located on the ABCD SD card. Once we have this number, we can begin to design software for aggregating data later. | 1.0 | Collect ABCD Time Offset - Obtain ABCD time offset from epoch. This should be located on the ABCD SD card. Once we have this number, we can begin to design software for aggregating data later. | priority | collect abcd time offset obtain abcd time offset from epoch this should be located on the abcd sd card once we have this number we can begin to design software for aggregating data later | 1 |
257,291 | 19,502,713,891 | IssuesEvent | 2021-12-28 07:28:22 | Signal-K/marketplace | https://api.github.com/repos/Signal-K/marketplace | opened | Doppler: Environment variable management | bug documentation api-external | Problem:
1. Need to have .env variables ready and accessible by the entire team
2. Need to have the variables be easily accessible in .env files, and when cloning the repo so team members don't have to hunt through docs
Solution:
- [ ] Link VSCode repos on Git, Keybase, with Doppler (on producthunt.com) or similar alternative. Make use of the Doppler API
- [ ] Integrate that with the SK internal documentation
- [ ] Create scaffolding in the repositories (e.g. `deddit` inside #7, `marketplace-games` inside this repo) for .env management
- [ ] Actually get the `dotenv` inside the repos to work
- [ ] Related to the above, inside `marketplace-games/web3-test-game`, the code below doesn't work:
```js
require("@nomiclabs/hardhat-waffle");
import dotenv from "dotenv";
dotenv.config();
// This is a sample Hardhat task. To learn how to create your own go to
// https://hardhat.org/guides/create-task.html
task("accounts", "Prints the list of accounts", async (taskArgs, hre) => {
const accounts = await hre.ethers.getSigners();
for (const account of accounts) {
console.log(account.address);
}
});
// You need to export an object to set up your config
// Go to https://hardhat.org/config/ to learn more
/**
* @type import('hardhat/config').HardhatUserConfig
*/
module.exports = {
solidity: "0.8.0",
networks: {
rinkeby: {
url: process.env.ALCHEMY_API_URL,
accounts: [process.env.PRIVATE_KEY],
},
},
};
``` (`hardhat.config.js`)
Resulting in this output:
```bash
➜ npx hardhat run scripts/run.js
An unexpected error occurred:
/Users/larbuckle/Documents/Blockchain/buildspace/thingdom/hardhat.config.js:2
import dotenv from "dotenv";
^^^^^^
SyntaxError: Cannot use import statement outside a module
at Object.compileFunction (node:vm:352:18)
at wrapSafe (node:internal/modules/cjs/loader:1031:15)
at Module._compile (node:internal/modules/cjs/loader:1065:27)
at Object.Module._extensions..js (node:internal/modules/cjs/loader:1153:10)
at Module.load (node:internal/modules/cjs/loader:981:32)
at Function.Module._load (node:internal/modules/cjs/loader:822:12)
at Module.require (node:internal/modules/cjs/loader:1005:19)
at require (node:internal/modules/cjs/helpers:102:18)
at importCsjOrEsModule (/Users/larbuckle/Documents/Blockchain/buildspace/thingdom/node_modules/hardhat/src/internal/core/config/config-loading.ts:23:20)
at loadConfigAndTasks (/Users/larbuckle/Documents/Blockchain/buildspace/thingdom/node_modules/hardhat/src/internal/core/config/config-loading.ts:66:18)
``` | 1.0 | Doppler: Environment variable management - Problem:
1. Need to have .env variables ready and accessible by the entire team
2. Need to have the variables be easily accessible in .env files, and when cloning the repo so team members don't have to hunt through docs
Solution:
- [ ] Link VSCode repos on Git, Keybase, with Doppler (on producthunt.com) or similar alternative. Make use of the Doppler API
- [ ] Integrate that with the SK internal documentation
- [ ] Create scaffolding in the repositories (e.g. `deddit` inside #7, `marketplace-games` inside this repo) for .env management
- [ ] Actually get the `dotenv` inside the repos to work
- [ ] Related to the above, inside `marketplace-games/web3-test-game`, the code below doesn't work:
```js
require("@nomiclabs/hardhat-waffle");
import dotenv from "dotenv";
dotenv.config();
// This is a sample Hardhat task. To learn how to create your own go to
// https://hardhat.org/guides/create-task.html
task("accounts", "Prints the list of accounts", async (taskArgs, hre) => {
const accounts = await hre.ethers.getSigners();
for (const account of accounts) {
console.log(account.address);
}
});
// You need to export an object to set up your config
// Go to https://hardhat.org/config/ to learn more
/**
* @type import('hardhat/config').HardhatUserConfig
*/
module.exports = {
solidity: "0.8.0",
networks: {
rinkeby: {
url: process.env.ALCHEMY_API_URL,
accounts: [process.env.PRIVATE_KEY],
},
},
};
``` (`hardhat.config.js`)
Resulting in this output:
```bash
➜ npx hardhat run scripts/run.js
An unexpected error occurred:
/Users/larbuckle/Documents/Blockchain/buildspace/thingdom/hardhat.config.js:2
import dotenv from "dotenv";
^^^^^^
SyntaxError: Cannot use import statement outside a module
at Object.compileFunction (node:vm:352:18)
at wrapSafe (node:internal/modules/cjs/loader:1031:15)
at Module._compile (node:internal/modules/cjs/loader:1065:27)
at Object.Module._extensions..js (node:internal/modules/cjs/loader:1153:10)
at Module.load (node:internal/modules/cjs/loader:981:32)
at Function.Module._load (node:internal/modules/cjs/loader:822:12)
at Module.require (node:internal/modules/cjs/loader:1005:19)
at require (node:internal/modules/cjs/helpers:102:18)
at importCsjOrEsModule (/Users/larbuckle/Documents/Blockchain/buildspace/thingdom/node_modules/hardhat/src/internal/core/config/config-loading.ts:23:20)
at loadConfigAndTasks (/Users/larbuckle/Documents/Blockchain/buildspace/thingdom/node_modules/hardhat/src/internal/core/config/config-loading.ts:66:18)
``` | non_priority | doppler environment variable management problem need to have env variables ready and accessible by the entire team need to have the variables be easily accessible in env files and when cloning the repo so team members don t have to hunt through docs solution link vscode repos on git keybase with doppler on producthunt com or similar alternative make use of the doppler api integrate that with the sk internal documentation create scaffolding in the repositories e g deddit inside marketplace games inside this repo for env management actually get the dotenv inside the repos to work related to the above inside marketplace games test game the code below doesn t work js require nomiclabs hardhat waffle import dotenv from dotenv dotenv config this is a sample hardhat task to learn how to create your own go to task accounts prints the list of accounts async taskargs hre const accounts await hre ethers getsigners for const account of accounts console log account address you need to export an object to set up your config go to to learn more type import hardhat config hardhatuserconfig module exports solidity networks rinkeby url process env alchemy api url accounts hardhat config js resulting in this output bash ➜ npx hardhat run scripts run js an unexpected error occurred users larbuckle documents blockchain buildspace thingdom hardhat config js import dotenv from dotenv syntaxerror cannot use import statement outside a module at object compilefunction node vm at wrapsafe node internal modules cjs loader at module compile node internal modules cjs loader at object module extensions js node internal modules cjs loader at module load node internal modules cjs loader at function module load node internal modules cjs loader at module require node internal modules cjs loader at require node internal modules cjs helpers at importcsjoresmodule users larbuckle documents blockchain buildspace thingdom node modules hardhat src internal core config config loading ts at loadconfigandtasks users larbuckle documents blockchain buildspace thingdom node modules hardhat src internal core config config loading ts | 0 |
214,463 | 16,565,189,883 | IssuesEvent | 2021-05-29 08:49:59 | viash-io/viash_web | https://api.github.com/repos/viash-io/viash_web | opened | Expand command pages | documentation | The command pages could use some extra love to make them more accessible and informative for beginners and experts alike.
The following improvements were agreed upon:
- Use headers instead of bullet lists for the arguments and options.
- Add an "Examples" section
- Add a "See also" section
- Add the command's `--help` output for every command | 1.0 | Expand command pages - The command pages could use some extra love to make them more accessible and informative for beginners and experts alike.
The following improvements were agreed upon:
- Use headers instead of bullet lists for the arguments and options.
- Add an "Examples" section
- Add a "See also" section
- Add the command's `--help` output for every command | non_priority | expand command pages the command pages could use some extra love to make them more accessible and informative for beginners and experts alike the following improvements were agreed upon use headers instead of bullet lists for the arguments and options add an examples section add a see also section add the command s help output for every command | 0 |
146,216 | 5,613,742,790 | IssuesEvent | 2017-04-03 10:09:03 | CS2103JAN2017-W14-B2/main | https://api.github.com/repos/CS2103JAN2017-W14-B2/main | closed | Case-insensitive category names + post-process | priority.high type.bug | Post-process: first letter capitalized, the rest lowercase (eg. WOrK -> Work) | 1.0 | Case-insensitive category names + post-process - Post-process: first letter capitalized, the rest lowercase (eg. WOrK -> Work) | priority | case insensitive category names post process post process first letter capitalized the rest lowercase eg work work | 1 |
50,683 | 6,425,336,201 | IssuesEvent | 2017-08-09 15:13:21 | ParabolInc/action | https://api.github.com/repos/ParabolInc/action | reopened | Remove #private helper line from meeting? | design | 
Now that the menu has a `#private` line, I think it's safe to remove that line from the card placeholder. yay/nay? | 1.0 | Remove #private helper line from meeting? - 
Now that the menu has a `#private` line, I think it's safe to remove that line from the card placeholder. yay/nay? | non_priority | remove private helper line from meeting now that the menu has a private line i think it s safe to remove that line from the card placeholder yay nay | 0 |
40,504 | 10,023,634,375 | IssuesEvent | 2019-07-16 19:42:52 | mozilla/experimenter | https://api.github.com/repos/mozilla/experimenter | closed | Delivery Console/Normandy do not allow periods in recipe slugs | Defect | We need to strip out periods from firefox versions when we create the Normandy slug. | 1.0 | Delivery Console/Normandy do not allow periods in recipe slugs - We need to strip out periods from firefox versions when we create the Normandy slug. | non_priority | delivery console normandy do not allow periods in recipe slugs we need to strip out periods from firefox versions when we create the normandy slug | 0 |
6,341 | 2,610,240,945 | IssuesEvent | 2015-02-26 19:16:47 | chrsmith/jsjsj122 | https://api.github.com/repos/chrsmith/jsjsj122 | opened | 台州割包茎手术哪里好 | auto-migrated Priority-Medium Type-Defect | ```
台州割包茎手术哪里好【台州五洲生殖医院】24小时健康咨询
热线:0576-88066933-(扣扣800080609)-(微信号tzwzszyy)医院地址:台州市
椒江区枫南路229号(枫南大转盘旁)乘车线路:乘坐104、108、1
18、198及椒江一金清公交车直达枫南小区,乘坐107、105、109、
112、901、 902公交车到星星广场下车,步行即可到院。
诊疗项目:阳痿,早泄,前列腺炎,前列腺增生,龟头炎,��
�精,无精。包皮包茎,精索静脉曲张,淋病等。
台州五洲生殖医院是台州最大的男科医院,权威专家在线免��
�咨询,拥有专业完善的男科检查治疗设备,严格按照国家标�
��收费。尖端医疗设备,与世界同步。权威专家,成就专业典
范。人性化服务,一切以患者为中心。
看男科就选台州五洲生殖医院,专业男科为男人。
```
-----
Original issue reported on code.google.com by `poweragr...@gmail.com` on 31 May 2014 at 12:04 | 1.0 | 台州割包茎手术哪里好 - ```
台州割包茎手术哪里好【台州五洲生殖医院】24小时健康咨询
热线:0576-88066933-(扣扣800080609)-(微信号tzwzszyy)医院地址:台州市
椒江区枫南路229号(枫南大转盘旁)乘车线路:乘坐104、108、1
18、198及椒江一金清公交车直达枫南小区,乘坐107、105、109、
112、901、 902公交车到星星广场下车,步行即可到院。
诊疗项目:阳痿,早泄,前列腺炎,前列腺增生,龟头炎,��
�精,无精。包皮包茎,精索静脉曲张,淋病等。
台州五洲生殖医院是台州最大的男科医院,权威专家在线免��
�咨询,拥有专业完善的男科检查治疗设备,严格按照国家标�
��收费。尖端医疗设备,与世界同步。权威专家,成就专业典
范。人性化服务,一切以患者为中心。
看男科就选台州五洲生殖医院,专业男科为男人。
```
-----
Original issue reported on code.google.com by `poweragr...@gmail.com` on 31 May 2014 at 12:04 | non_priority | 台州割包茎手术哪里好 台州割包茎手术哪里好【台州五洲生殖医院】 热线 微信号tzwzszyy 医院地址 台州市 (枫南大转盘旁)乘车线路 、 、 、 , 、 、 、 、 、 ,步行即可到院。 诊疗项目:阳痿,早泄,前列腺炎,前列腺增生,龟头炎,�� �精,无精。包皮包茎,精索静脉曲张,淋病等。 台州五洲生殖医院是台州最大的男科医院,权威专家在线免�� �咨询,拥有专业完善的男科检查治疗设备,严格按照国家标� ��收费。尖端医疗设备,与世界同步。权威专家,成就专业典 范。人性化服务,一切以患者为中心。 看男科就选台州五洲生殖医院,专业男科为男人。 original issue reported on code google com by poweragr gmail com on may at | 0 |
454,634 | 13,105,267,971 | IssuesEvent | 2020-08-04 11:52:54 | FAIRsharing/fairsharing.github.io | https://api.github.com/repos/FAIRsharing/fairsharing.github.io | closed | Organisations duplicate bug in Record.vue | Normal priority bug | data must be taken again with a new graphql query to the API. | 1.0 | Organisations duplicate bug in Record.vue - data must be taken again with a new graphql query to the API. | priority | organisations duplicate bug in record vue data must be taken again with a new graphql query to the api | 1 |
124,962 | 17,794,684,464 | IssuesEvent | 2021-08-31 20:27:45 | ghc-dev/Raymond-Massey | https://api.github.com/repos/ghc-dev/Raymond-Massey | opened | CVE-2020-14332 (Medium) detected in ansible-2.9.9.tar.gz | security vulnerability | ## CVE-2020-14332 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>ansible-2.9.9.tar.gz</b></p></summary>
<p>Radically simple IT automation</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/00/5d/e10b83e0e6056dbd5b4809b451a191395175a57e3175ce04e35d9c5fc2a0/ansible-2.9.9.tar.gz">https://files.pythonhosted.org/packages/00/5d/e10b83e0e6056dbd5b4809b451a191395175a57e3175ce04e35d9c5fc2a0/ansible-2.9.9.tar.gz</a></p>
<p>Path to dependency file: Raymond-Massey/requirements.txt</p>
<p>Path to vulnerable library: /requirements.txt</p>
<p>
Dependency Hierarchy:
- :x: **ansible-2.9.9.tar.gz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/ghc-dev/Raymond-Massey/commit/ae0d77c11ca4fd387b50d99cc5f550e5c1a4d08f">ae0d77c11ca4fd387b50d99cc5f550e5c1a4d08f</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>
A flaw was found in the Ansible Engine when using module_args. Tasks executed with check mode (--check-mode) do not properly neutralize sensitive data exposed in the event data. This flaw allows unauthorized users to read this data. The highest threat from this vulnerability is to confidentiality.
<p>Publish Date: 2020-09-11
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-14332>CVE-2020-14332</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.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</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://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-14332">https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-14332</a></p>
<p>Release Date: 2020-07-21</p>
<p>Fix Resolution: 2.8.14,2.9.12</p>
</p>
</details>
<p></p>
***
:rescue_worker_helmet: Automatic Remediation is available for this issue
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Python","packageName":"ansible","packageVersion":"2.9.9","packageFilePaths":["/requirements.txt"],"isTransitiveDependency":false,"dependencyTree":"ansible:2.9.9","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.8.14,2.9.12"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2020-14332","vulnerabilityDetails":"A flaw was found in the Ansible Engine when using module_args. Tasks executed with check mode (--check-mode) do not properly neutralize sensitive data exposed in the event data. This flaw allows unauthorized users to read this data. The highest threat from this vulnerability is to confidentiality.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-14332","cvss3Severity":"medium","cvss3Score":"5.5","cvss3Metrics":{"A":"None","AC":"Low","PR":"Low","S":"Unchanged","C":"High","UI":"None","AV":"Local","I":"None"},"extraData":{}}</REMEDIATE> --> | True | CVE-2020-14332 (Medium) detected in ansible-2.9.9.tar.gz - ## CVE-2020-14332 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>ansible-2.9.9.tar.gz</b></p></summary>
<p>Radically simple IT automation</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/00/5d/e10b83e0e6056dbd5b4809b451a191395175a57e3175ce04e35d9c5fc2a0/ansible-2.9.9.tar.gz">https://files.pythonhosted.org/packages/00/5d/e10b83e0e6056dbd5b4809b451a191395175a57e3175ce04e35d9c5fc2a0/ansible-2.9.9.tar.gz</a></p>
<p>Path to dependency file: Raymond-Massey/requirements.txt</p>
<p>Path to vulnerable library: /requirements.txt</p>
<p>
Dependency Hierarchy:
- :x: **ansible-2.9.9.tar.gz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/ghc-dev/Raymond-Massey/commit/ae0d77c11ca4fd387b50d99cc5f550e5c1a4d08f">ae0d77c11ca4fd387b50d99cc5f550e5c1a4d08f</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>
A flaw was found in the Ansible Engine when using module_args. Tasks executed with check mode (--check-mode) do not properly neutralize sensitive data exposed in the event data. This flaw allows unauthorized users to read this data. The highest threat from this vulnerability is to confidentiality.
<p>Publish Date: 2020-09-11
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-14332>CVE-2020-14332</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.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</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://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-14332">https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-14332</a></p>
<p>Release Date: 2020-07-21</p>
<p>Fix Resolution: 2.8.14,2.9.12</p>
</p>
</details>
<p></p>
***
:rescue_worker_helmet: Automatic Remediation is available for this issue
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Python","packageName":"ansible","packageVersion":"2.9.9","packageFilePaths":["/requirements.txt"],"isTransitiveDependency":false,"dependencyTree":"ansible:2.9.9","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.8.14,2.9.12"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2020-14332","vulnerabilityDetails":"A flaw was found in the Ansible Engine when using module_args. Tasks executed with check mode (--check-mode) do not properly neutralize sensitive data exposed in the event data. This flaw allows unauthorized users to read this data. The highest threat from this vulnerability is to confidentiality.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-14332","cvss3Severity":"medium","cvss3Score":"5.5","cvss3Metrics":{"A":"None","AC":"Low","PR":"Low","S":"Unchanged","C":"High","UI":"None","AV":"Local","I":"None"},"extraData":{}}</REMEDIATE> --> | non_priority | cve medium detected in ansible tar gz cve medium severity vulnerability vulnerable library ansible tar gz radically simple it automation library home page a href path to dependency file raymond massey requirements txt path to vulnerable library requirements txt dependency hierarchy x ansible tar gz vulnerable library found in head commit a href found in base branch master vulnerability details a flaw was found in the ansible engine when using module args tasks executed with check mode check mode do not properly neutralize sensitive data exposed in the event data this flaw allows unauthorized users to read this data the highest threat from this vulnerability is to confidentiality publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact high integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution rescue worker helmet automatic remediation is available for this issue isopenpronvulnerability true ispackagebased true isdefaultbranch true packages istransitivedependency false dependencytree ansible isminimumfixversionavailable true minimumfixversion basebranches vulnerabilityidentifier cve vulnerabilitydetails a flaw was found in the ansible engine when using module args tasks executed with check mode check mode do not properly neutralize sensitive data exposed in the event data this flaw allows unauthorized users to read this data the highest threat from this vulnerability is to confidentiality vulnerabilityurl | 0 |
62,838 | 12,248,696,745 | IssuesEvent | 2020-05-05 17:57:07 | microsoft/vscode-python | https://api.github.com/repos/microsoft/vscode-python | closed | Fix flaky multiroot CI tests which uses `api.serviceContainer` | P0 area-internal needs PR type-code health | All these tests seem to be using `api.serviceContainer` to get the container instead of creating a new `UnitTestIocContainer` object in `suiteSetup()` hooks.
```typescript
api = await initialize();
serviceContainer = api.serviceContainer;
```
These've recently started failing in CI every now and then. `serviceContainer ` is not initialized in the hooks (probably because of timeouts, but why didn't we get a timeout hook message 🤔), due to which accessing it later fails.
Changing them to use `UnitTestIocContainer` should solve the flakiness.

cc @karthiknadig I'll start fixing these if they appear on Github actions. | 1.0 | Fix flaky multiroot CI tests which uses `api.serviceContainer` - All these tests seem to be using `api.serviceContainer` to get the container instead of creating a new `UnitTestIocContainer` object in `suiteSetup()` hooks.
```typescript
api = await initialize();
serviceContainer = api.serviceContainer;
```
These've recently started failing in CI every now and then. `serviceContainer ` is not initialized in the hooks (probably because of timeouts, but why didn't we get a timeout hook message 🤔), due to which accessing it later fails.
Changing them to use `UnitTestIocContainer` should solve the flakiness.

cc @karthiknadig I'll start fixing these if they appear on Github actions. | non_priority | fix flaky multiroot ci tests which uses api servicecontainer all these tests seem to be using api servicecontainer to get the container instead of creating a new unittestioccontainer object in suitesetup hooks typescript api await initialize servicecontainer api servicecontainer these ve recently started failing in ci every now and then servicecontainer is not initialized in the hooks probably because of timeouts but why didn t we get a timeout hook message 🤔 due to which accessing it later fails changing them to use unittestioccontainer should solve the flakiness cc karthiknadig i ll start fixing these if they appear on github actions | 0 |
192,272 | 22,215,925,748 | IssuesEvent | 2022-06-08 01:37:47 | Nivaskumark/kernel_v4.1.15 | https://api.github.com/repos/Nivaskumark/kernel_v4.1.15 | reopened | CVE-2019-10125 (High) detected in linux-stable-rtv4.1.33 | security vulnerability | ## CVE-2019-10125 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-stable-rtv4.1.33</b></p></summary>
<p>
<p>Julia Cartwright's fork of linux-stable-rt.git</p>
<p>Library home page: <a href=https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git>https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git</a></p>
<p>Found in HEAD commit: <a href="https://github.com/Nivaskumark/kernel_v4.1.15/commit/00db4e8795bcbec692fb60b19160bdd763ad42e3">00db4e8795bcbec692fb60b19160bdd763ad42e3</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 (1)</summary>
<p></p>
<p>
</p>
</details>
<p></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>
An issue was discovered in aio_poll() in fs/aio.c in the Linux kernel through 5.0.4. A file may be released by aio_poll_wake() if an expected event is triggered immediately (e.g., by the close of a pair of pipes) after the return of vfs_poll(), and this will cause a use-after-free.
<p>Publish Date: 2019-03-27
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-10125>CVE-2019-10125</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-10125">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-10125</a></p>
<p>Release Date: 2019-03-27</p>
<p>Fix Resolution: v5.1-rc1</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2019-10125 (High) detected in linux-stable-rtv4.1.33 - ## CVE-2019-10125 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-stable-rtv4.1.33</b></p></summary>
<p>
<p>Julia Cartwright's fork of linux-stable-rt.git</p>
<p>Library home page: <a href=https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git>https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git</a></p>
<p>Found in HEAD commit: <a href="https://github.com/Nivaskumark/kernel_v4.1.15/commit/00db4e8795bcbec692fb60b19160bdd763ad42e3">00db4e8795bcbec692fb60b19160bdd763ad42e3</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 (1)</summary>
<p></p>
<p>
</p>
</details>
<p></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>
An issue was discovered in aio_poll() in fs/aio.c in the Linux kernel through 5.0.4. A file may be released by aio_poll_wake() if an expected event is triggered immediately (e.g., by the close of a pair of pipes) after the return of vfs_poll(), and this will cause a use-after-free.
<p>Publish Date: 2019-03-27
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-10125>CVE-2019-10125</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-10125">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-10125</a></p>
<p>Release Date: 2019-03-27</p>
<p>Fix Resolution: v5.1-rc1</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_priority | cve high detected in linux stable cve high severity vulnerability vulnerable library linux stable julia cartwright s fork of linux stable rt git library home page a href found in head commit a href found in base branch master vulnerable source files vulnerability details an issue was discovered in aio poll in fs aio c in the linux kernel through a file may be released by aio poll wake if an expected event is triggered immediately e g by the close of a pair of pipes after the return of vfs poll and this will cause a use after free publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high 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 |
160,420 | 6,089,085,753 | IssuesEvent | 2017-06-19 02:58:54 | piwik/piwik | https://api.github.com/repos/piwik/piwik | closed | single switch to disable eventtracking | Enhancement Lower priority | If you make use of extensive event-tracking, functions for that could be spread all over the website-code. And if you have different types of content on your site this could also be different for each of them.
Not only during development & setup but also on server maxload-times (see #5347)
it could be really helpful to have a possibility to stop event tracking (and with this "event firing") for a complete website using only a single "switch" but keep normal page tracking working...
any ideas howto do this best are very welcome
| 1.0 | single switch to disable eventtracking - If you make use of extensive event-tracking, functions for that could be spread all over the website-code. And if you have different types of content on your site this could also be different for each of them.
Not only during development & setup but also on server maxload-times (see #5347)
it could be really helpful to have a possibility to stop event tracking (and with this "event firing") for a complete website using only a single "switch" but keep normal page tracking working...
any ideas howto do this best are very welcome
| priority | single switch to disable eventtracking if you make use of extensive event tracking functions for that could be spread all over the website code and if you have different types of content on your site this could also be different for each of them not only during development setup but also on server maxload times see it could be really helpful to have a possibility to stop event tracking and with this event firing for a complete website using only a single switch but keep normal page tracking working any ideas howto do this best are very welcome | 1 |
589,937 | 17,767,247,091 | IssuesEvent | 2021-08-30 09:07:14 | nimblehq/nimble-medium-ios | https://api.github.com/repos/nimblehq/nimble-medium-ios | closed | As a user, I can signup from the left menu | type : feature category: integration priority : medium | ## Why
For the new users of the application, they should be able to see the `Signup` screen for being able to create a new account, explore and use more features from the application.
## Acceptance Criteria
- [ ] The `Signup` option is only visible when users are not logged in. Hide it when they are authenticated to the app.
- [ ] When the users tap on the `Signup` option from the left menu of the `Home` screen, toggle to hide the left menu and present the common `Signup` screen modally.
- [ ] When the users tap on the `Close` button in the `Signup` screen, dismiss it modally.
## Resources
- Sample UX Flow:
https://user-images.githubusercontent.com/70877098/128686372-0910abcb-37c6-4227-9ace-9c476da21fd2.mov
| 1.0 | As a user, I can signup from the left menu - ## Why
For the new users of the application, they should be able to see the `Signup` screen for being able to create a new account, explore and use more features from the application.
## Acceptance Criteria
- [ ] The `Signup` option is only visible when users are not logged in. Hide it when they are authenticated to the app.
- [ ] When the users tap on the `Signup` option from the left menu of the `Home` screen, toggle to hide the left menu and present the common `Signup` screen modally.
- [ ] When the users tap on the `Close` button in the `Signup` screen, dismiss it modally.
## Resources
- Sample UX Flow:
https://user-images.githubusercontent.com/70877098/128686372-0910abcb-37c6-4227-9ace-9c476da21fd2.mov
| priority | as a user i can signup from the left menu why for the new users of the application they should be able to see the signup screen for being able to create a new account explore and use more features from the application acceptance criteria the signup option is only visible when users are not logged in hide it when they are authenticated to the app when the users tap on the signup option from the left menu of the home screen toggle to hide the left menu and present the common signup screen modally when the users tap on the close button in the signup screen dismiss it modally resources sample ux flow | 1 |
781,594 | 27,443,381,291 | IssuesEvent | 2023-03-02 12:39:46 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | imperiallondon.sharepoint.com - site is not usable | browser-firefox priority-critical engine-gecko | <!-- @browser: Firefox 102.0 -->
<!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0 -->
<!-- @reported_with: unknown -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/118994 -->
**URL**: https://imperiallondon.sharepoint.com
**Browser / Version**: Firefox 102.0
**Operating System**: Windows 10
**Tested Another Browser**: Yes Chrome
**Problem type**: Site is not usable
**Description**: Browser unsupported
**Steps to Reproduce**:
I get 401 UNAUTHORIZED. Can usually access OK. Also happening with my Office 365 OneDrive
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2023/3/a422524c-cd6e-478e-9504-45f7346a8f5a.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | imperiallondon.sharepoint.com - site is not usable - <!-- @browser: Firefox 102.0 -->
<!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0 -->
<!-- @reported_with: unknown -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/118994 -->
**URL**: https://imperiallondon.sharepoint.com
**Browser / Version**: Firefox 102.0
**Operating System**: Windows 10
**Tested Another Browser**: Yes Chrome
**Problem type**: Site is not usable
**Description**: Browser unsupported
**Steps to Reproduce**:
I get 401 UNAUTHORIZED. Can usually access OK. Also happening with my Office 365 OneDrive
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2023/3/a422524c-cd6e-478e-9504-45f7346a8f5a.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_ | priority | imperiallondon sharepoint com site is not usable url browser version firefox operating system windows tested another browser yes chrome problem type site is not usable description browser unsupported steps to reproduce i get unauthorized can usually access ok also happening with my office onedrive view the screenshot img alt screenshot src browser configuration none from with ❤️ | 1 |
47,370 | 24,974,632,348 | IssuesEvent | 2022-11-02 06:24:37 | tailscale/tailscale | https://api.github.com/repos/tailscale/tailscale | closed | Kubernetes cluster with Calico can't establish direct connections | connectivity OS-kubernetes L1 Very few L3 Some users P2 Aggravating T3 Performance/Debugging bug | ### What is the issue?
Running a managed kubernetes cluster that's using Calico for networking, the default Calico settings give tailscale a very hard time getting a direct connection going. That's in contrast to cilium where out-of-the-box tailscale has no issues getting a direct connection
The host is setup to allow direct connections and has no blocking rules. Direct connection from/to the host is working fine, host is also able to have direct connections to the pods, but external access to the tailscale sidecards directly will always go through a relay
### Steps to reproduce
- Create k8s cluster with Calico CNI
- Create a deployment with ts-sidecar configuration:
```
- name: ts-sidecar
imagePullPolicy: Always
image: "ghcr.io/tailscale/tailscale:latest"
env:
- name: TS_SOCKET
value: "/var/run/tailscale/tailscaled.sock"
- name: TS_KUBE_SECRET
value: "tailscale"
- name: TS_USERSPACE
value: "false"
- name: TS_AUTH_KEY
valueFrom:
secretKeyRef:
name: tailscale-auth
key: TS_AUTH_KEY
securityContext:
capabilities:
add:
- NET_ADMIN
```
Calico DaemonSet env:
```
- env:
- name: DATASTORE_TYPE
value: kubernetes
- name: WAIT_FOR_DATASTORE
value: "true"
- name: NODENAME
valueFrom:
fieldRef:
apiVersion: v1
fieldPath: spec.nodeName
- name: CALICO_NETWORKING_BACKEND
valueFrom:
configMapKeyRef:
key: calico_backend
name: calico-config
- name: IP_AUTODETECTION_METHOD
value: interface=enp.*
- name: CLUSTER_TYPE
value: k8s,bgp
- name: IP
value: autodetect
- name: IP6
value: autodetect
- name: CALICO_IPV4POOL_IPIP
value: Never
- name: CALICO_IPV4POOL_VXLAN
value: Always
- name: CALICO_IPV6POOL_VXLAN
value: Always
- name: FELIX_IPINIPMTU
valueFrom:
configMapKeyRef:
key: veth_mtu
name: calico-config
- name: FELIX_VXLANMTU
valueFrom:
configMapKeyRef:
key: veth_mtu
name: calico-config
- name: FELIX_WIREGUARDMTU
valueFrom:
configMapKeyRef:
key: veth_mtu
name: calico-config
- name: CALICO_IPV4POOL_CIDR
value: xxx
- name: CALICO_IPV6POOL_CIDR
value: xxx
- name: CALICO_DISABLE_FILE_LOGGING
value: "true"
- name: FELIX_DEFAULTENDPOINTTOHOSTACTION
value: ACCEPT
- name: FELIX_IPV6SUPPORT
value: "true"
- name: FELIX_HEALTHENABLED
value: "true"
envFrom:
- configMapRef:
name: kubernetes-services-endpoint
optional: true
```
### Are there any recent changes that introduced the issue?
_No response_
### OS
Linux
### OS version
_No response_
### Tailscale version
1.32.2
### Bug report
BUG-29bf6fa8dfde61fb8512a09228e5dd3824caa02884b473199b9626c0ae698bc2-20221101102020Z-e34479754b97f824 | True | Kubernetes cluster with Calico can't establish direct connections - ### What is the issue?
Running a managed kubernetes cluster that's using Calico for networking, the default Calico settings give tailscale a very hard time getting a direct connection going. That's in contrast to cilium where out-of-the-box tailscale has no issues getting a direct connection
The host is setup to allow direct connections and has no blocking rules. Direct connection from/to the host is working fine, host is also able to have direct connections to the pods, but external access to the tailscale sidecards directly will always go through a relay
### Steps to reproduce
- Create k8s cluster with Calico CNI
- Create a deployment with ts-sidecar configuration:
```
- name: ts-sidecar
imagePullPolicy: Always
image: "ghcr.io/tailscale/tailscale:latest"
env:
- name: TS_SOCKET
value: "/var/run/tailscale/tailscaled.sock"
- name: TS_KUBE_SECRET
value: "tailscale"
- name: TS_USERSPACE
value: "false"
- name: TS_AUTH_KEY
valueFrom:
secretKeyRef:
name: tailscale-auth
key: TS_AUTH_KEY
securityContext:
capabilities:
add:
- NET_ADMIN
```
Calico DaemonSet env:
```
- env:
- name: DATASTORE_TYPE
value: kubernetes
- name: WAIT_FOR_DATASTORE
value: "true"
- name: NODENAME
valueFrom:
fieldRef:
apiVersion: v1
fieldPath: spec.nodeName
- name: CALICO_NETWORKING_BACKEND
valueFrom:
configMapKeyRef:
key: calico_backend
name: calico-config
- name: IP_AUTODETECTION_METHOD
value: interface=enp.*
- name: CLUSTER_TYPE
value: k8s,bgp
- name: IP
value: autodetect
- name: IP6
value: autodetect
- name: CALICO_IPV4POOL_IPIP
value: Never
- name: CALICO_IPV4POOL_VXLAN
value: Always
- name: CALICO_IPV6POOL_VXLAN
value: Always
- name: FELIX_IPINIPMTU
valueFrom:
configMapKeyRef:
key: veth_mtu
name: calico-config
- name: FELIX_VXLANMTU
valueFrom:
configMapKeyRef:
key: veth_mtu
name: calico-config
- name: FELIX_WIREGUARDMTU
valueFrom:
configMapKeyRef:
key: veth_mtu
name: calico-config
- name: CALICO_IPV4POOL_CIDR
value: xxx
- name: CALICO_IPV6POOL_CIDR
value: xxx
- name: CALICO_DISABLE_FILE_LOGGING
value: "true"
- name: FELIX_DEFAULTENDPOINTTOHOSTACTION
value: ACCEPT
- name: FELIX_IPV6SUPPORT
value: "true"
- name: FELIX_HEALTHENABLED
value: "true"
envFrom:
- configMapRef:
name: kubernetes-services-endpoint
optional: true
```
### Are there any recent changes that introduced the issue?
_No response_
### OS
Linux
### OS version
_No response_
### Tailscale version
1.32.2
### Bug report
BUG-29bf6fa8dfde61fb8512a09228e5dd3824caa02884b473199b9626c0ae698bc2-20221101102020Z-e34479754b97f824 | non_priority | kubernetes cluster with calico can t establish direct connections what is the issue running a managed kubernetes cluster that s using calico for networking the default calico settings give tailscale a very hard time getting a direct connection going that s in contrast to cilium where out of the box tailscale has no issues getting a direct connection the host is setup to allow direct connections and has no blocking rules direct connection from to the host is working fine host is also able to have direct connections to the pods but external access to the tailscale sidecards directly will always go through a relay steps to reproduce create cluster with calico cni create a deployment with ts sidecar configuration name ts sidecar imagepullpolicy always image ghcr io tailscale tailscale latest env name ts socket value var run tailscale tailscaled sock name ts kube secret value tailscale name ts userspace value false name ts auth key valuefrom secretkeyref name tailscale auth key ts auth key securitycontext capabilities add net admin calico daemonset env env name datastore type value kubernetes name wait for datastore value true name nodename valuefrom fieldref apiversion fieldpath spec nodename name calico networking backend valuefrom configmapkeyref key calico backend name calico config name ip autodetection method value interface enp name cluster type value bgp name ip value autodetect name value autodetect name calico ipip value never name calico vxlan value always name calico vxlan value always name felix ipinipmtu valuefrom configmapkeyref key veth mtu name calico config name felix vxlanmtu valuefrom configmapkeyref key veth mtu name calico config name felix wireguardmtu valuefrom configmapkeyref key veth mtu name calico config name calico cidr value xxx name calico cidr value xxx name calico disable file logging value true name felix defaultendpointtohostaction value accept name felix value true name felix healthenabled value true envfrom configmapref name kubernetes services endpoint optional true are there any recent changes that introduced the issue no response os linux os version no response tailscale version bug report bug | 0 |
761,696 | 26,692,682,284 | IssuesEvent | 2023-01-27 07:19:39 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | m.twitch.tv - video or audio doesn't play | priority-important browser-focus-geckoview engine-gecko android13 | <!-- @browser: Firefox Mobile 109.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 13; Mobile; rv:109.0) Gecko/109.0 Firefox/109.0 -->
<!-- @reported_with: android-components-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/117408 -->
<!-- @extra_labels: browser-focus-geckoview -->
**URL**: https://m.twitch.tv/dinossindgeil
**Browser / Version**: Firefox Mobile 109.0
**Operating System**: Android 13
**Tested Another Browser**: Yes Chrome
**Problem type**: Video or audio doesn't play
**Description**: The video or audio does not play
**Steps to Reproduce**:
When i put video on full screen it doesnt show. Screen is grey
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2023/1/0486ba0f-ab99-4e3a-a91d-b024d15609e6.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20230112150232</li><li>channel: release</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2023/1/bf44707d-b839-403b-8868-a1808b39d40a)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | m.twitch.tv - video or audio doesn't play - <!-- @browser: Firefox Mobile 109.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 13; Mobile; rv:109.0) Gecko/109.0 Firefox/109.0 -->
<!-- @reported_with: android-components-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/117408 -->
<!-- @extra_labels: browser-focus-geckoview -->
**URL**: https://m.twitch.tv/dinossindgeil
**Browser / Version**: Firefox Mobile 109.0
**Operating System**: Android 13
**Tested Another Browser**: Yes Chrome
**Problem type**: Video or audio doesn't play
**Description**: The video or audio does not play
**Steps to Reproduce**:
When i put video on full screen it doesnt show. Screen is grey
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2023/1/0486ba0f-ab99-4e3a-a91d-b024d15609e6.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20230112150232</li><li>channel: release</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2023/1/bf44707d-b839-403b-8868-a1808b39d40a)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | priority | m twitch tv video or audio doesn t play url browser version firefox mobile operating system android tested another browser yes chrome problem type video or audio doesn t play description the video or audio does not play steps to reproduce when i put video on full screen it doesnt show screen is grey view the screenshot img alt screenshot src browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel release hastouchscreen true mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️ | 1 |
397,292 | 11,726,370,238 | IssuesEvent | 2020-03-10 14:25:22 | tranquilitybase-io/tb-gcp | https://api.github.com/repos/tranquilitybase-io/tb-gcp | closed | Remove the use of primitive roles | priority:high security | As a best practice, remove the use of any primitive roles associated with service accounts (e.g., project/owner) | 1.0 | Remove the use of primitive roles - As a best practice, remove the use of any primitive roles associated with service accounts (e.g., project/owner) | priority | remove the use of primitive roles as a best practice remove the use of any primitive roles associated with service accounts e g project owner | 1 |
337,482 | 10,218,610,824 | IssuesEvent | 2019-08-15 16:22:08 | dignityofwar/digbot | https://api.github.com/repos/dignityofwar/digbot | opened | Play command music sometimes really low quality | Priority2: Low Status: Awaiting Assignment Type: Bug | So far I have only noticed it with video request. One of the videos I ran into this problem with https://www.youtube.com/watch?v=5zARzHddnWc. | 1.0 | Play command music sometimes really low quality - So far I have only noticed it with video request. One of the videos I ran into this problem with https://www.youtube.com/watch?v=5zARzHddnWc. | priority | play command music sometimes really low quality so far i have only noticed it with video request one of the videos i ran into this problem with | 1 |
756,313 | 26,466,208,351 | IssuesEvent | 2023-01-17 00:04:18 | evo-lua/evo-runtime | https://api.github.com/repos/evo-lua/evo-runtime | closed | Add a validation library to standardize the validation of function parameters | Priority: High Complexity: Low Scope: Runtime Status: In Progress Type: New Feature | Basically what NodeJS has: ``validateString(value, name)``, should raise an error if it's not a string. Then, use like this:
```lua
function someStringOperation(hopefullyStringValue)
validateString(hopefullyStringValue, "hopefullyStringValue")
end
someStringOperation(42) -- Not a string value
```
This would throw with "Expected argument hopefullyStringValue to be a string value, but received a number value instead" (or similar). | 1.0 | Add a validation library to standardize the validation of function parameters - Basically what NodeJS has: ``validateString(value, name)``, should raise an error if it's not a string. Then, use like this:
```lua
function someStringOperation(hopefullyStringValue)
validateString(hopefullyStringValue, "hopefullyStringValue")
end
someStringOperation(42) -- Not a string value
```
This would throw with "Expected argument hopefullyStringValue to be a string value, but received a number value instead" (or similar). | priority | add a validation library to standardize the validation of function parameters basically what nodejs has validatestring value name should raise an error if it s not a string then use like this lua function somestringoperation hopefullystringvalue validatestring hopefullystringvalue hopefullystringvalue end somestringoperation not a string value this would throw with expected argument hopefullystringvalue to be a string value but received a number value instead or similar | 1 |
25,556 | 5,173,802,524 | IssuesEvent | 2017-01-18 16:56:27 | opencv/opencv | https://api.github.com/repos/opencv/opencv | closed | CV3 Hough Line Transform beta documentation | bug category: documentation easy | <!--
If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses.
If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute).
This is a template helping you to create an issue which can be processed as quickly as possible. This is the bug reporting section for the OpenCV library.
-->
##### System information (version)
n/a
##### Detailed description
<!-- your description -->
typo plus suggestion in http://docs.opencv.org/3.0-beta/doc/py_tutorials/py_imgproc/py_houghlines/py_houghlines.html
"Hough Tranform in OpenCV" should be "Hough Transform in OpenCV"
I suggest this page should contain a link to API such as http://docs.opencv.org/3.0-beta/modules/imgproc/doc/feature_detection.html?highlight=houghlines#cv2.HoughLines. Anyone searching for "opencv houghlines documentation" will probably be looking for how to use it instead of how it works.
This might be a general problem with the documentation of opencv. It could usefully be separated into a low-level how-to-use (which I would call documentation), a high-level how-to-use (which I would call tutorial), and an explanation of how-it-works, which is what this page is.
##### Steps to reproduce
n/a
<!-- to add code example fence it with triple backticks and optional file extension
```.cpp
// C++ code example
```
or attach as .txt or .zip file
--> | 1.0 | CV3 Hough Line Transform beta documentation - <!--
If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses.
If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute).
This is a template helping you to create an issue which can be processed as quickly as possible. This is the bug reporting section for the OpenCV library.
-->
##### System information (version)
n/a
##### Detailed description
<!-- your description -->
typo plus suggestion in http://docs.opencv.org/3.0-beta/doc/py_tutorials/py_imgproc/py_houghlines/py_houghlines.html
"Hough Tranform in OpenCV" should be "Hough Transform in OpenCV"
I suggest this page should contain a link to API such as http://docs.opencv.org/3.0-beta/modules/imgproc/doc/feature_detection.html?highlight=houghlines#cv2.HoughLines. Anyone searching for "opencv houghlines documentation" will probably be looking for how to use it instead of how it works.
This might be a general problem with the documentation of opencv. It could usefully be separated into a low-level how-to-use (which I would call documentation), a high-level how-to-use (which I would call tutorial), and an explanation of how-it-works, which is what this page is.
##### Steps to reproduce
n/a
<!-- to add code example fence it with triple backticks and optional file extension
```.cpp
// C++ code example
```
or attach as .txt or .zip file
--> | non_priority | hough line transform beta documentation if you have a question rather than reporting a bug please go to where you get much faster responses if you need further assistance please read this is a template helping you to create an issue which can be processed as quickly as possible this is the bug reporting section for the opencv library system information version n a detailed description typo plus suggestion in hough tranform in opencv should be hough transform in opencv i suggest this page should contain a link to api such as anyone searching for opencv houghlines documentation will probably be looking for how to use it instead of how it works this might be a general problem with the documentation of opencv it could usefully be separated into a low level how to use which i would call documentation a high level how to use which i would call tutorial and an explanation of how it works which is what this page is steps to reproduce n a to add code example fence it with triple backticks and optional file extension cpp c code example or attach as txt or zip file | 0 |
779,157 | 27,341,937,436 | IssuesEvent | 2023-02-26 22:08:39 | ihhub/fheroes2 | https://api.github.com/repos/ihhub/fheroes2 | closed | Assertion while loading a particular map | bug high priority | ### Preliminary checks
- [X] I've checked that there aren't [**other open issues**](https://github.com/ihhub/fheroes2/issues?q=is%3Aissue) on the same topic.
- [X] I've checked that this issue is reproducible on the [**latest snapshot build**](https://ihhub.github.io/fheroes2/INSTALL.html#snapshots-latest-builds).
### Platform
Windows
### Describe the bug

Cannot start playing on this map.
### Save file
[Map_0072.zip](https://github.com/ihhub/fheroes2/files/10833512/Map_0072.zip)
### Additional info
_No response_ | 1.0 | Assertion while loading a particular map - ### Preliminary checks
- [X] I've checked that there aren't [**other open issues**](https://github.com/ihhub/fheroes2/issues?q=is%3Aissue) on the same topic.
- [X] I've checked that this issue is reproducible on the [**latest snapshot build**](https://ihhub.github.io/fheroes2/INSTALL.html#snapshots-latest-builds).
### Platform
Windows
### Describe the bug

Cannot start playing on this map.
### Save file
[Map_0072.zip](https://github.com/ihhub/fheroes2/files/10833512/Map_0072.zip)
### Additional info
_No response_ | priority | assertion while loading a particular map preliminary checks i ve checked that there aren t on the same topic i ve checked that this issue is reproducible on the platform windows describe the bug cannot start playing on this map save file additional info no response | 1 |
16,688 | 4,076,272,776 | IssuesEvent | 2016-05-29 20:01:57 | jessesquires/JSQMessagesViewController | https://api.github.com/repos/jessesquires/JSQMessagesViewController | closed | Contribution: swift demo chat functionality | documentation enhancement | ## New issue checklist
<!-- Before submitting this issue, make sure you have done the following -->
- [X] I have read all of the [`README`](https://github.com/jessesquires/JSQMessagesViewController/blob/develop/README.md), [documentation](http://cocoadocs.org/docsets/JSQMessagesViewController/), and [FAQ](https://github.com/jessesquires/JSQMessagesViewController/blob/develop/Documentation/faq.md).
- [X] I have reviewed the [contributing guidelines](https://github.com/jessesquires/JSQMessagesViewController/blob/develop/.github/CONTRIBUTING.md). Confirmation: 💪😎👊
- [X] I have searched [existing issues](https://github.com/jessesquires/JSQMessagesViewController/issues?q=is%3Aissue+sort%3Acreated-desc) and **this is not a duplicate**.
## Contribution
Hi @jessesquires I was about to make a pull request with the Swift demo completely updated to match all the chat functionality that the demo in Objective C has.
The thing is, besides all the functionality in the `JSQMessagesViewController` subclass, I saw that the ViewController containing the list of conversations has been removed currently in the branch `develop`. I would argue that seeing that most messaging apps have a chat list, it might make sense to include it in the demo. **Disclaimer:** In my branch I tweaked that ViewController haha
Here is my branch if you, or any of the contributors can check it out: [swift-demo](https://github.com/GianniCarlo/JSQMessagesViewController/tree/swift-demo) (commits already squashed)
If you prefer I can leave only the `JSQMessagesViewController` subclass implementation (and those of `User` and `Conversation` which it depends upon).
Let me know what you think. Really excited about the [port](https://github.com/MessageKit/MessageKit) of this library to Swift! | 1.0 | Contribution: swift demo chat functionality - ## New issue checklist
<!-- Before submitting this issue, make sure you have done the following -->
- [X] I have read all of the [`README`](https://github.com/jessesquires/JSQMessagesViewController/blob/develop/README.md), [documentation](http://cocoadocs.org/docsets/JSQMessagesViewController/), and [FAQ](https://github.com/jessesquires/JSQMessagesViewController/blob/develop/Documentation/faq.md).
- [X] I have reviewed the [contributing guidelines](https://github.com/jessesquires/JSQMessagesViewController/blob/develop/.github/CONTRIBUTING.md). Confirmation: 💪😎👊
- [X] I have searched [existing issues](https://github.com/jessesquires/JSQMessagesViewController/issues?q=is%3Aissue+sort%3Acreated-desc) and **this is not a duplicate**.
## Contribution
Hi @jessesquires I was about to make a pull request with the Swift demo completely updated to match all the chat functionality that the demo in Objective C has.
The thing is, besides all the functionality in the `JSQMessagesViewController` subclass, I saw that the ViewController containing the list of conversations has been removed currently in the branch `develop`. I would argue that seeing that most messaging apps have a chat list, it might make sense to include it in the demo. **Disclaimer:** In my branch I tweaked that ViewController haha
Here is my branch if you, or any of the contributors can check it out: [swift-demo](https://github.com/GianniCarlo/JSQMessagesViewController/tree/swift-demo) (commits already squashed)
If you prefer I can leave only the `JSQMessagesViewController` subclass implementation (and those of `User` and `Conversation` which it depends upon).
Let me know what you think. Really excited about the [port](https://github.com/MessageKit/MessageKit) of this library to Swift! | non_priority | contribution swift demo chat functionality new issue checklist i have read all of the and i have reviewed the confirmation 💪😎👊 i have searched and this is not a duplicate contribution hi jessesquires i was about to make a pull request with the swift demo completely updated to match all the chat functionality that the demo in objective c has the thing is besides all the functionality in the jsqmessagesviewcontroller subclass i saw that the viewcontroller containing the list of conversations has been removed currently in the branch develop i would argue that seeing that most messaging apps have a chat list it might make sense to include it in the demo disclaimer in my branch i tweaked that viewcontroller haha here is my branch if you or any of the contributors can check it out commits already squashed if you prefer i can leave only the jsqmessagesviewcontroller subclass implementation and those of user and conversation which it depends upon let me know what you think really excited about the of this library to swift | 0 |
23,215 | 2,657,336,693 | IssuesEvent | 2015-03-18 08:10:23 | JEvents/JEvents | https://api.github.com/repos/JEvents/JEvents | opened | Do not show popup link for menu item if no popup plugin | Priority - Medium | I think we should detect the popup plugin is not installed and offer the full url to the menu item of creating evetns. Otherwise it looks a bit buggy.
https://www.jevents.net/forum/viewtopic.php?f=35&t=28079 | 1.0 | Do not show popup link for menu item if no popup plugin - I think we should detect the popup plugin is not installed and offer the full url to the menu item of creating evetns. Otherwise it looks a bit buggy.
https://www.jevents.net/forum/viewtopic.php?f=35&t=28079 | priority | do not show popup link for menu item if no popup plugin i think we should detect the popup plugin is not installed and offer the full url to the menu item of creating evetns otherwise it looks a bit buggy | 1 |
27,560 | 5,048,360,098 | IssuesEvent | 2016-12-20 12:39:15 | TASVideos/BizHawk | https://api.github.com/repos/TASVideos/BizHawk | closed | Atari 7800 lightgun input display writes over itself when paused | auto-migrated Core-EMU7800 Priority-Low Type-Defect | ```
What steps will reproduce the problem?
1. Start recording a movie on Atari7800Hawk.
2. Check View>Display Input
3. Pause the emulator and move the mouse (lightgun) around.
What is the expected output? What do you see instead?
EmuHawk should display one X and one Y value for the lightgun position at a
time, and clear the screen and display the new values when the lightgun moves.
Instead, it fails to clear the screen and writes over the existing numbers,
making the current value difficult to see.
What version of the product are you using? On what operating system?
BizHawk 1.7.2a on Windows 7 x64.
Please provide any additional information below.
This issue does not occur when a movie is not being recorded.
```
Original issue reported on code.google.com by `coolkirb...@gmail.com` on 21 Jul 2014 at 1:42
Attachments:
- [lightgunbug.png](https://storage.googleapis.com/google-code-attachments/bizhawk/issue-215/comment-0/lightgunbug.png)
| 1.0 | Atari 7800 lightgun input display writes over itself when paused - ```
What steps will reproduce the problem?
1. Start recording a movie on Atari7800Hawk.
2. Check View>Display Input
3. Pause the emulator and move the mouse (lightgun) around.
What is the expected output? What do you see instead?
EmuHawk should display one X and one Y value for the lightgun position at a
time, and clear the screen and display the new values when the lightgun moves.
Instead, it fails to clear the screen and writes over the existing numbers,
making the current value difficult to see.
What version of the product are you using? On what operating system?
BizHawk 1.7.2a on Windows 7 x64.
Please provide any additional information below.
This issue does not occur when a movie is not being recorded.
```
Original issue reported on code.google.com by `coolkirb...@gmail.com` on 21 Jul 2014 at 1:42
Attachments:
- [lightgunbug.png](https://storage.googleapis.com/google-code-attachments/bizhawk/issue-215/comment-0/lightgunbug.png)
| non_priority | atari lightgun input display writes over itself when paused what steps will reproduce the problem start recording a movie on check view display input pause the emulator and move the mouse lightgun around what is the expected output what do you see instead emuhawk should display one x and one y value for the lightgun position at a time and clear the screen and display the new values when the lightgun moves instead it fails to clear the screen and writes over the existing numbers making the current value difficult to see what version of the product are you using on what operating system bizhawk on windows please provide any additional information below this issue does not occur when a movie is not being recorded original issue reported on code google com by coolkirb gmail com on jul at attachments | 0 |
204,512 | 7,088,259,045 | IssuesEvent | 2018-01-11 20:50:30 | TypeStrong/atom-typescript | https://api.github.com/repos/TypeStrong/atom-typescript | closed | View: Call stack explorer | priority:high stale wishlist | Basically from a function if you trigger this option you get a view where you
- can see all the places that call this (and further expand those)
- can see all the places that get called from the current function (and further expand those)
| 1.0 | View: Call stack explorer - Basically from a function if you trigger this option you get a view where you
- can see all the places that call this (and further expand those)
- can see all the places that get called from the current function (and further expand those)
| priority | view call stack explorer basically from a function if you trigger this option you get a view where you can see all the places that call this and further expand those can see all the places that get called from the current function and further expand those | 1 |
287,160 | 24,812,732,415 | IssuesEvent | 2022-10-25 10:43:48 | wazuh/wazuh-qa | https://api.github.com/repos/wazuh/wazuh-qa | opened | AIX package and capabilities testing | team/qa type/dev-testing status/not-tracked | | Target version | Related issue | Related PR |
|--------------------|--------------------|-----------------|
| 3.1.0 | https://github.com/wazuh/wazuh/issues/15228 | |
## Description
Hello team,
We built this Wazuh manager for AIX in local mode, meaning doesn't have remoted or Wazuh-DB/API. The manager will still generate alerts.
The deployment should run smoothly and we are going to cover the next uses cases to make sure they are working on the OS:
- Monitor system/application logs, using rules (signatures) to detect threats.
- Scan files/directories to monitor their integrity. For example configuration files or system binaries.
- Detect malware behavior (more specifically rootkits), by looking for hidden files, hidden processes, or hidden ports.
- Trigger automatic responses when a threat is detected.
## Proposed checks
<!-- Indicate through a list of checkboxes the suggested checks to be carried out by the QA tester -->
- [ ] Install Wazuh manager and check that is running as expected and generate alerts
- [ ] Monitor system/application logs, using rules (signatures) to detect threats.
- [ ] Scan files/directories to monitor their integrity. For example configuration files or system binaries.
- [ ] Detect malware behavior (more specifically rootkits), by looking for hidden files, hidden processes, or hidden ports.
- [ ] Trigger automatic responses when a threat is detected.
Regards,
Miguel Casares
| 1.0 | AIX package and capabilities testing - | Target version | Related issue | Related PR |
|--------------------|--------------------|-----------------|
| 3.1.0 | https://github.com/wazuh/wazuh/issues/15228 | |
## Description
Hello team,
We built this Wazuh manager for AIX in local mode, meaning doesn't have remoted or Wazuh-DB/API. The manager will still generate alerts.
The deployment should run smoothly and we are going to cover the next uses cases to make sure they are working on the OS:
- Monitor system/application logs, using rules (signatures) to detect threats.
- Scan files/directories to monitor their integrity. For example configuration files or system binaries.
- Detect malware behavior (more specifically rootkits), by looking for hidden files, hidden processes, or hidden ports.
- Trigger automatic responses when a threat is detected.
## Proposed checks
<!-- Indicate through a list of checkboxes the suggested checks to be carried out by the QA tester -->
- [ ] Install Wazuh manager and check that is running as expected and generate alerts
- [ ] Monitor system/application logs, using rules (signatures) to detect threats.
- [ ] Scan files/directories to monitor their integrity. For example configuration files or system binaries.
- [ ] Detect malware behavior (more specifically rootkits), by looking for hidden files, hidden processes, or hidden ports.
- [ ] Trigger automatic responses when a threat is detected.
Regards,
Miguel Casares
| non_priority | aix package and capabilities testing target version related issue related pr description hello team we built this wazuh manager for aix in local mode meaning doesn t have remoted or wazuh db api the manager will still generate alerts the deployment should run smoothly and we are going to cover the next uses cases to make sure they are working on the os monitor system application logs using rules signatures to detect threats scan files directories to monitor their integrity for example configuration files or system binaries detect malware behavior more specifically rootkits by looking for hidden files hidden processes or hidden ports trigger automatic responses when a threat is detected proposed checks install wazuh manager and check that is running as expected and generate alerts monitor system application logs using rules signatures to detect threats scan files directories to monitor their integrity for example configuration files or system binaries detect malware behavior more specifically rootkits by looking for hidden files hidden processes or hidden ports trigger automatic responses when a threat is detected regards miguel casares | 0 |
79,102 | 3,520,476,057 | IssuesEvent | 2016-01-12 21:01:57 | washingtontrails/vms | https://api.github.com/repos/washingtontrails/vms | opened | VMS: Parental Relase form updated and moved to final resting place | Enhancement Med-High Priority Plone Pyramid VMS BUDGET | The 2016 Parental Release form has been updated to removed the reference to a specific work party. This single for is good for the full year and at any location in the state. The PDF document is located at: http://www.wta.org/volunteer/documents/2016-youth-parental-release-form/at_download/file
VMS links to this file need to be updated to point to this final location and updated document. Examples of the link location are
- on the Document Tab of a Work Party.
- Also perhaps in the forms section of a Youth My Backpack in the Work Party section. | 1.0 | VMS: Parental Relase form updated and moved to final resting place - The 2016 Parental Release form has been updated to removed the reference to a specific work party. This single for is good for the full year and at any location in the state. The PDF document is located at: http://www.wta.org/volunteer/documents/2016-youth-parental-release-form/at_download/file
VMS links to this file need to be updated to point to this final location and updated document. Examples of the link location are
- on the Document Tab of a Work Party.
- Also perhaps in the forms section of a Youth My Backpack in the Work Party section. | priority | vms parental relase form updated and moved to final resting place the parental release form has been updated to removed the reference to a specific work party this single for is good for the full year and at any location in the state the pdf document is located at vms links to this file need to be updated to point to this final location and updated document examples of the link location are on the document tab of a work party also perhaps in the forms section of a youth my backpack in the work party section | 1 |
589,190 | 17,692,108,028 | IssuesEvent | 2021-08-24 11:18:18 | fxi/AccessMod_shiny | https://api.github.com/repos/fxi/AccessMod_shiny | closed | Sorting by amSelect does not seems to work (Health facilities selection) | in progress Priority 4 dependency related | I would have thought that clicking on the header of the amSelect column would put the selected facilities on top or bottom of the list but this is not the case.
| 1.0 | Sorting by amSelect does not seems to work (Health facilities selection) - I would have thought that clicking on the header of the amSelect column would put the selected facilities on top or bottom of the list but this is not the case.
| priority | sorting by amselect does not seems to work health facilities selection i would have thought that clicking on the header of the amselect column would put the selected facilities on top or bottom of the list but this is not the case | 1 |
30,153 | 8,485,900,993 | IssuesEvent | 2018-10-26 09:15:24 | ckeditor/ckeditor5 | https://api.github.com/repos/ckeditor/ckeditor5 | closed | Add media embed and tables to all builds | package:build-* status:confirmed type:feature | * [x] Add them to the builds themselves.
* [x] Find the space for them in the toolbars.
* [x] Change builds configuration.
* [x] Update examples (and demos) of these builds to showcase the new features. (Consult @m-kr and @gok9ok about the content.)
* [x] Check out the "Installation" sections of these features docs. There were notes like "This feature is not available in the builds..." which needs to be changed (take inspiration from guides of the features that are included).
* [x] Update screenshots in https://ckeditor.com/docs/ckeditor5/latest/builds/guides/overview.html.
Did I forget about something? | 1.0 | Add media embed and tables to all builds - * [x] Add them to the builds themselves.
* [x] Find the space for them in the toolbars.
* [x] Change builds configuration.
* [x] Update examples (and demos) of these builds to showcase the new features. (Consult @m-kr and @gok9ok about the content.)
* [x] Check out the "Installation" sections of these features docs. There were notes like "This feature is not available in the builds..." which needs to be changed (take inspiration from guides of the features that are included).
* [x] Update screenshots in https://ckeditor.com/docs/ckeditor5/latest/builds/guides/overview.html.
Did I forget about something? | non_priority | add media embed and tables to all builds add them to the builds themselves find the space for them in the toolbars change builds configuration update examples and demos of these builds to showcase the new features consult m kr and about the content check out the installation sections of these features docs there were notes like this feature is not available in the builds which needs to be changed take inspiration from guides of the features that are included update screenshots in did i forget about something | 0 |
189,908 | 22,047,151,014 | IssuesEvent | 2022-05-30 04:00:10 | nanopathi/linux-4.19.72_CVE-2021-32399 | https://api.github.com/repos/nanopathi/linux-4.19.72_CVE-2021-32399 | closed | CVE-2020-0432 (High) detected in linuxlinux-4.19.236 - autoclosed | security vulnerability | ## CVE-2020-0432 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.19.236</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/nanopathi/linux-4.19.72_CVE-2021-32399/commit/03cb3c6f0e0b62b5cbcd747df63781fbb2a6ef66">03cb3c6f0e0b62b5cbcd747df63781fbb2a6ef66</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 (1)</summary>
<p></p>
<p>
</p>
</details>
<p></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>
In skb_to_mamac of networking.c, there is a possible out of bounds write due to an integer overflow. This could lead to local escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android kernelAndroid ID: A-143560807
<p>Publish Date: 2020-09-17
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-0432>CVE-2020-0432</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.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- 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://www.linuxkernelcves.com/cves/CVE-2020-0432">https://www.linuxkernelcves.com/cves/CVE-2020-0432</a></p>
<p>Release Date: 2020-09-17</p>
<p>Fix Resolution: v4.4.213,v4.9.213,v4.14.170,v4.19.101,v5.4.17,v5.5.1,v5.6-rc1</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-0432 (High) detected in linuxlinux-4.19.236 - autoclosed - ## CVE-2020-0432 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.19.236</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/nanopathi/linux-4.19.72_CVE-2021-32399/commit/03cb3c6f0e0b62b5cbcd747df63781fbb2a6ef66">03cb3c6f0e0b62b5cbcd747df63781fbb2a6ef66</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 (1)</summary>
<p></p>
<p>
</p>
</details>
<p></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>
In skb_to_mamac of networking.c, there is a possible out of bounds write due to an integer overflow. This could lead to local escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android kernelAndroid ID: A-143560807
<p>Publish Date: 2020-09-17
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-0432>CVE-2020-0432</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.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- 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://www.linuxkernelcves.com/cves/CVE-2020-0432">https://www.linuxkernelcves.com/cves/CVE-2020-0432</a></p>
<p>Release Date: 2020-09-17</p>
<p>Fix Resolution: v4.4.213,v4.9.213,v4.14.170,v4.19.101,v5.4.17,v5.5.1,v5.6-rc1</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_priority | cve high detected in linuxlinux autoclosed cve high 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 vulnerability details in skb to mamac of networking c there is a possible out of bounds write due to an integer overflow this could lead to local escalation of privilege with no additional execution privileges needed user interaction is not needed for exploitation product androidversions android kernelandroid id a publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact 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 step up your open source security game with whitesource | 0 |
139,006 | 5,354,924,202 | IssuesEvent | 2017-02-20 11:20:10 | MTG/similarity-annotator | https://api.github.com/repos/MTG/similarity-annotator | closed | Annotations created in child tier shouldn't appear in parent tier | high-priority | By now when two tiers are related the annotations created in one of them are copied to the other one, as is the need of riyaz dataset. This could be changed to a new kind of relationship between tiers that would specify this behavior.
We would like to have a hierarchical relationship, so annotations in parent appear in child but not the other way around. We should keep a link between them so, even if a segment is subsegmented in the child tier, modifying the "shared" start time or endtime will modify the segments both in parent and child.
| 1.0 | Annotations created in child tier shouldn't appear in parent tier - By now when two tiers are related the annotations created in one of them are copied to the other one, as is the need of riyaz dataset. This could be changed to a new kind of relationship between tiers that would specify this behavior.
We would like to have a hierarchical relationship, so annotations in parent appear in child but not the other way around. We should keep a link between them so, even if a segment is subsegmented in the child tier, modifying the "shared" start time or endtime will modify the segments both in parent and child.
| priority | annotations created in child tier shouldn t appear in parent tier by now when two tiers are related the annotations created in one of them are copied to the other one as is the need of riyaz dataset this could be changed to a new kind of relationship between tiers that would specify this behavior we would like to have a hierarchical relationship so annotations in parent appear in child but not the other way around we should keep a link between them so even if a segment is subsegmented in the child tier modifying the shared start time or endtime will modify the segments both in parent and child | 1 |
181,314 | 30,666,700,807 | IssuesEvent | 2023-07-25 18:51:30 | phetsims/center-and-variability | https://api.github.com/repos/phetsims/center-and-variability | closed | Add minimum height to the range rectangle in info box | design:polish status:ready-for-review | The height of the rectangle in the info box (for Range) is disproportionately small compared to the height of the rectangle in the accordion box, and the space between the Range value on the left and the range value above the rectangle is very large. Let's put a minimum height on that rectangle so it looks more proportional. Not sure how big to make it, maybe 2.5 times higher?
<img width="832" alt="image" src="https://github.com/phetsims/center-and-variability/assets/109630002/d011cc23-b818-46c2-9ff6-1b92107d9e9f">
| 1.0 | Add minimum height to the range rectangle in info box - The height of the rectangle in the info box (for Range) is disproportionately small compared to the height of the rectangle in the accordion box, and the space between the Range value on the left and the range value above the rectangle is very large. Let's put a minimum height on that rectangle so it looks more proportional. Not sure how big to make it, maybe 2.5 times higher?
<img width="832" alt="image" src="https://github.com/phetsims/center-and-variability/assets/109630002/d011cc23-b818-46c2-9ff6-1b92107d9e9f">
| non_priority | add minimum height to the range rectangle in info box the height of the rectangle in the info box for range is disproportionately small compared to the height of the rectangle in the accordion box and the space between the range value on the left and the range value above the rectangle is very large let s put a minimum height on that rectangle so it looks more proportional not sure how big to make it maybe times higher img width alt image src | 0 |
372,526 | 11,016,557,922 | IssuesEvent | 2019-12-05 05:50:58 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | [0.9.0 staging-1277] Change Real Estate Desk logic | Fixed High Priority | - Remove Credit Tab
- Add account and currency to the Sell-buy tab
So everyone can buy and sell deed on one desk. | 1.0 | [0.9.0 staging-1277] Change Real Estate Desk logic - - Remove Credit Tab
- Add account and currency to the Sell-buy tab
So everyone can buy and sell deed on one desk. | priority | change real estate desk logic remove credit tab add account and currency to the sell buy tab so everyone can buy and sell deed on one desk | 1 |
344,887 | 10,349,713,554 | IssuesEvent | 2019-09-04 23:36:07 | oslc-op/oslc-specs | https://api.github.com/repos/oslc-op/oslc-specs | opened | Write a primer for OSLC Configuration Management | Domain: CfgM Priority: High Xtra: Jira | We need a document describing the motivation of the spec, and how to use it, with plenty of examples.
---
_Migrated from https://issues.oasis-open.org/browse/OSLCCORE-95 (opened by @ndjc; previously assigned to @ndjc)_
| 1.0 | Write a primer for OSLC Configuration Management - We need a document describing the motivation of the spec, and how to use it, with plenty of examples.
---
_Migrated from https://issues.oasis-open.org/browse/OSLCCORE-95 (opened by @ndjc; previously assigned to @ndjc)_
| priority | write a primer for oslc configuration management we need a document describing the motivation of the spec and how to use it with plenty of examples migrated from opened by ndjc previously assigned to ndjc | 1 |
270,388 | 28,960,529,101 | IssuesEvent | 2023-05-10 01:49:37 | Satheesh575555/linux-4.1.15 | https://api.github.com/repos/Satheesh575555/linux-4.1.15 | reopened | CVE-2020-10690 (Medium) detected in multiple libraries | Mend: dependency security vulnerability | ## CVE-2020-10690 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>linuxlinux-4.6</b>, <b>linuxlinux-4.6</b>, <b>linux-stable-rtv4.1.33</b>, <b>linux-stable-rtv4.1.33</b></p></summary>
<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>
There is a use-after-free in kernel versions before 5.5 due to a race condition between the release of ptp_clock and cdev while resource deallocation. When a (high privileged) process allocates a ptp device file (like /dev/ptpX) and voluntarily goes to sleep. During this time if the underlying device is removed, it can cause an exploitable condition as the process wakes up to terminate and clean all attached files. The system crashes due to the cdev structure being invalid (as already freed) which is pointed to by the inode.
<p>Publish Date: 2020-05-08
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-10690>CVE-2020-10690</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.4</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: 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-10690">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-10690</a></p>
<p>Release Date: 2020-05-08</p>
<p>Fix Resolution: v5.5-rc5</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2020-10690 (Medium) detected in multiple libraries - ## CVE-2020-10690 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>linuxlinux-4.6</b>, <b>linuxlinux-4.6</b>, <b>linux-stable-rtv4.1.33</b>, <b>linux-stable-rtv4.1.33</b></p></summary>
<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>
There is a use-after-free in kernel versions before 5.5 due to a race condition between the release of ptp_clock and cdev while resource deallocation. When a (high privileged) process allocates a ptp device file (like /dev/ptpX) and voluntarily goes to sleep. During this time if the underlying device is removed, it can cause an exploitable condition as the process wakes up to terminate and clean all attached files. The system crashes due to the cdev structure being invalid (as already freed) which is pointed to by the inode.
<p>Publish Date: 2020-05-08
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-10690>CVE-2020-10690</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.4</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: 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-10690">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-10690</a></p>
<p>Release Date: 2020-05-08</p>
<p>Fix Resolution: v5.5-rc5</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_priority | cve medium detected in multiple libraries cve medium severity vulnerability vulnerable libraries linuxlinux linuxlinux linux stable linux stable vulnerability details there is a use after free in kernel versions before due to a race condition between the release of ptp clock and cdev while resource deallocation when a high privileged process allocates a ptp device file like dev ptpx and voluntarily goes to sleep during this time if the underlying device is removed it can cause an exploitable condition as the process wakes up to terminate and clean all attached files the system crashes due to the cdev structure being invalid as already freed which is pointed to by the inode 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 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 step up your open source security game with mend | 0 |
190,203 | 14,537,541,073 | IssuesEvent | 2020-12-15 09:17:50 | Uninett/Argus | https://api.github.com/repos/Uninett/Argus | closed | Replace generate_fixtures.py | priority: low task tests | First: there are two types of fixtures:
- [x] 1. For filling lookup-tables/setting defaults in the database (like a default superuser). Use either
* a data-migration. Experience-wise, a hassle. Data-migrations are best for *changing* existing data in a production database, and removed whenever migrations are squashed.
* a management-command with lots of `manager.objects.get_or_create`. Kubernetes-friendly. Best to have one file defining the data and use the management command to check that they exist in the database.
* a json-fixture dumped from a live database with dumpdata and stored in version control. Process/checklist then needed to keep this up to date.
- [ ] 2. For testing. Use `factory_boy` with `faker` instead of reinventing the wheel. One file with the definitions, that are run by the tests only when needed.
Second. Any script to be run from the CLI, make it a management command.
| 1.0 | Replace generate_fixtures.py - First: there are two types of fixtures:
- [x] 1. For filling lookup-tables/setting defaults in the database (like a default superuser). Use either
* a data-migration. Experience-wise, a hassle. Data-migrations are best for *changing* existing data in a production database, and removed whenever migrations are squashed.
* a management-command with lots of `manager.objects.get_or_create`. Kubernetes-friendly. Best to have one file defining the data and use the management command to check that they exist in the database.
* a json-fixture dumped from a live database with dumpdata and stored in version control. Process/checklist then needed to keep this up to date.
- [ ] 2. For testing. Use `factory_boy` with `faker` instead of reinventing the wheel. One file with the definitions, that are run by the tests only when needed.
Second. Any script to be run from the CLI, make it a management command.
| non_priority | replace generate fixtures py first there are two types of fixtures for filling lookup tables setting defaults in the database like a default superuser use either a data migration experience wise a hassle data migrations are best for changing existing data in a production database and removed whenever migrations are squashed a management command with lots of manager objects get or create kubernetes friendly best to have one file defining the data and use the management command to check that they exist in the database a json fixture dumped from a live database with dumpdata and stored in version control process checklist then needed to keep this up to date for testing use factory boy with faker instead of reinventing the wheel one file with the definitions that are run by the tests only when needed second any script to be run from the cli make it a management command | 0 |
23,330 | 11,913,393,199 | IssuesEvent | 2020-03-31 11:55:36 | surveyjs/survey-creator | https://api.github.com/repos/surveyjs/survey-creator | closed | Performance improvement: Do not setup property editors in invisible tabs | Implemented enhancement performance issue | Setup property editors on demands, when end-user opens/expand the tab. | True | Performance improvement: Do not setup property editors in invisible tabs - Setup property editors on demands, when end-user opens/expand the tab. | non_priority | performance improvement do not setup property editors in invisible tabs setup property editors on demands when end user opens expand the tab | 0 |
158,201 | 12,405,748,001 | IssuesEvent | 2020-05-21 17:50:59 | microsoft/AzureStorageExplorer | https://api.github.com/repos/microsoft/AzureStorageExplorer | closed | No dialog pops up when using an existing name to create one queue | :beetle: regression :gear: queues :heavy_check_mark: merged 🧪 testing | **Storage Explorer Version:** 1.13.0
**Build**: [20200504.7](https://devdiv.visualstudio.com/DevDiv/_build/results?buildId=3700661&view=results)
**Branch**: master
**Platform/OS**: Windows 10/ macOS Catalina / Linux Ubuntu 16.04
**Architecture**: ia32/x64
**Regression From:** Previous release(1.13.0)
**Steps to reproduce:**
1. Expand one storage account -> Queues.
2. Create one queue -> Using an existing name to create one new queue.
3. Check the result.
**Expect Experience:**
A dialog pops up.

**Actual Experience:**
No dialog pops up. | 1.0 | No dialog pops up when using an existing name to create one queue - **Storage Explorer Version:** 1.13.0
**Build**: [20200504.7](https://devdiv.visualstudio.com/DevDiv/_build/results?buildId=3700661&view=results)
**Branch**: master
**Platform/OS**: Windows 10/ macOS Catalina / Linux Ubuntu 16.04
**Architecture**: ia32/x64
**Regression From:** Previous release(1.13.0)
**Steps to reproduce:**
1. Expand one storage account -> Queues.
2. Create one queue -> Using an existing name to create one new queue.
3. Check the result.
**Expect Experience:**
A dialog pops up.

**Actual Experience:**
No dialog pops up. | non_priority | no dialog pops up when using an existing name to create one queue storage explorer version build branch master platform os windows macos catalina linux ubuntu architecture regression from previous release steps to reproduce expand one storage account queues create one queue using an existing name to create one new queue check the result expect experience a dialog pops up actual experience no dialog pops up | 0 |
677,142 | 23,152,644,272 | IssuesEvent | 2022-07-29 09:49:13 | labring/sealos | https://api.github.com/repos/labring/sealos | closed | sealos4 添加节点失败 (mount数据丢失) | type: bug priority: high | ```
[root@master-168 ~]# sealos add --nodes 10.10.8.70
2022-07-26 15:29:44 [INFO] start to install app in this cluster
2022-07-26 15:29:44 [INFO] succeeded install app in this cluster: no change apps
2022-07-26 15:29:44 [INFO] start to scale this cluster
2022-07-26 15:29:44 [INFO] Executing pipeline JoinCheck in ScaleProcessor.
2022-07-26 15:29:44 [INFO] checker:hostname [192.168.2.168:22 10.10.8.70:22]
2022-07-26 15:29:45 [INFO] checker:timeSync [192.168.2.168:22 10.10.8.70:22]
2022-07-26 15:29:46 [INFO] Executing pipeline PreProcess in ScaleProcessor.
2022-07-26 15:29:46 [INFO] Executing pipeline RunConfig in ScaleProcessor.
2022-07-26 15:29:46 [INFO] Executing pipeline MountRootfs in ScaleProcessor.
10.10.8.70:22: bash: 第 0 行:cd: /var/lib/sealos/data/default/rootfs/scripts: 没有那个文件或目录
2022-07-26 15:29:46 [EROR] Applied to cluster error: failed to execute command(registryDomain=(sealos.hub) registryPassword=(passw0rd) registryPort=(5000) registryUsername=(admin) criData=(/var/lib/containerd) registryConfig=(/etc/registry) registryData=(/var/lib/registry) && cd /var/lib/sealos/data/default/rootfs/scripts && bash check.sh) on host(10.10.8.70:22): output(bash: 第 0 行:cd: /var/lib/sealos/data/default/rootfs/scripts: 没有那个文件或目录), error(Process exited with status 1)
2022-07-26 15:29:46 [INFO]
___ ___ ___ ___ ___ ___
/\ \ /\ \ /\ \ /\__\ /\ \ /\ \
/::\ \ /::\ \ /::\ \ /:/ / /::\ \ /::\ \
/:/\ \ \ /:/\:\ \ /:/\:\ \ /:/ / /:/\:\ \ /:/\ \ \
_\:\~\ \ \ /::\~\:\ \ /::\~\:\ \ /:/ / /:/ \:\ \ _\:\~\ \ \
/\ \:\ \ \__\ /:/\:\ \:\__\ /:/\:\ \:\__\ /:/__/ /:/__/ \:\__\ /\ \:\ \ \__\
\:\ \:\ \/__/ \:\~\:\ \/__/ \/__\:\/:/ / \:\ \ \:\ \ /:/ / \:\ \:\ \/__/
\:\ \:\__\ \:\ \:\__\ \::/ / \:\ \ \:\ /:/ / \:\ \:\__\
\:\/:/ / \:\ \/__/ /:/ / \:\ \ \:\/:/ / \:\/:/ /
\::/ / \:\__\ /:/ / \:\__\ \::/ / \::/ /
\/__/ \/__/ \/__/ \/__/ \/__/ \/__/
Website :https://www.sealos.io/
Address :github.com/labring/sealos
[root@master-168 ~]#
[root@master-168 ~]# sealos version
{"gitVersion":"4.0.0","gitCommit":"7146cfe","buildDate":"2022-06-30T14:24:31Z","goVersion":"go1.17.11","compiler":"gc","platform":"linux/amd64"}
[root@master-168 ~]#
[root@master-168 ~]# kubectl get no
NAME STATUS ROLES AGE VERSION
master-168 Ready control-plane 3h36m v1.24.3
[root@master-168 ~]#
```
| 1.0 | sealos4 添加节点失败 (mount数据丢失) - ```
[root@master-168 ~]# sealos add --nodes 10.10.8.70
2022-07-26 15:29:44 [INFO] start to install app in this cluster
2022-07-26 15:29:44 [INFO] succeeded install app in this cluster: no change apps
2022-07-26 15:29:44 [INFO] start to scale this cluster
2022-07-26 15:29:44 [INFO] Executing pipeline JoinCheck in ScaleProcessor.
2022-07-26 15:29:44 [INFO] checker:hostname [192.168.2.168:22 10.10.8.70:22]
2022-07-26 15:29:45 [INFO] checker:timeSync [192.168.2.168:22 10.10.8.70:22]
2022-07-26 15:29:46 [INFO] Executing pipeline PreProcess in ScaleProcessor.
2022-07-26 15:29:46 [INFO] Executing pipeline RunConfig in ScaleProcessor.
2022-07-26 15:29:46 [INFO] Executing pipeline MountRootfs in ScaleProcessor.
10.10.8.70:22: bash: 第 0 行:cd: /var/lib/sealos/data/default/rootfs/scripts: 没有那个文件或目录
2022-07-26 15:29:46 [EROR] Applied to cluster error: failed to execute command(registryDomain=(sealos.hub) registryPassword=(passw0rd) registryPort=(5000) registryUsername=(admin) criData=(/var/lib/containerd) registryConfig=(/etc/registry) registryData=(/var/lib/registry) && cd /var/lib/sealos/data/default/rootfs/scripts && bash check.sh) on host(10.10.8.70:22): output(bash: 第 0 行:cd: /var/lib/sealos/data/default/rootfs/scripts: 没有那个文件或目录), error(Process exited with status 1)
2022-07-26 15:29:46 [INFO]
___ ___ ___ ___ ___ ___
/\ \ /\ \ /\ \ /\__\ /\ \ /\ \
/::\ \ /::\ \ /::\ \ /:/ / /::\ \ /::\ \
/:/\ \ \ /:/\:\ \ /:/\:\ \ /:/ / /:/\:\ \ /:/\ \ \
_\:\~\ \ \ /::\~\:\ \ /::\~\:\ \ /:/ / /:/ \:\ \ _\:\~\ \ \
/\ \:\ \ \__\ /:/\:\ \:\__\ /:/\:\ \:\__\ /:/__/ /:/__/ \:\__\ /\ \:\ \ \__\
\:\ \:\ \/__/ \:\~\:\ \/__/ \/__\:\/:/ / \:\ \ \:\ \ /:/ / \:\ \:\ \/__/
\:\ \:\__\ \:\ \:\__\ \::/ / \:\ \ \:\ /:/ / \:\ \:\__\
\:\/:/ / \:\ \/__/ /:/ / \:\ \ \:\/:/ / \:\/:/ /
\::/ / \:\__\ /:/ / \:\__\ \::/ / \::/ /
\/__/ \/__/ \/__/ \/__/ \/__/ \/__/
Website :https://www.sealos.io/
Address :github.com/labring/sealos
[root@master-168 ~]#
[root@master-168 ~]# sealos version
{"gitVersion":"4.0.0","gitCommit":"7146cfe","buildDate":"2022-06-30T14:24:31Z","goVersion":"go1.17.11","compiler":"gc","platform":"linux/amd64"}
[root@master-168 ~]#
[root@master-168 ~]# kubectl get no
NAME STATUS ROLES AGE VERSION
master-168 Ready control-plane 3h36m v1.24.3
[root@master-168 ~]#
```
| priority | 添加节点失败 (mount数据丢失) sealos add nodes start to install app in this cluster succeeded install app in this cluster no change apps start to scale this cluster executing pipeline joincheck in scaleprocessor checker hostname checker timesync executing pipeline preprocess in scaleprocessor executing pipeline runconfig in scaleprocessor executing pipeline mountrootfs in scaleprocessor bash 第 行 cd var lib sealos data default rootfs scripts 没有那个文件或目录 applied to cluster error failed to execute command registrydomain sealos hub registrypassword registryport registryusername admin cridata var lib containerd registryconfig etc registry registrydata var lib registry cd var lib sealos data default rootfs scripts bash check sh on host output bash 第 行 cd var lib sealos data default rootfs scripts 没有那个文件或目录 error process exited with status website address github com labring sealos sealos version gitversion gitcommit builddate goversion compiler gc platform linux kubectl get no name status roles age version master ready control plane | 1 |
61,180 | 14,619,091,653 | IssuesEvent | 2020-12-22 17:15:36 | kenferrara/calcite | https://api.github.com/repos/kenferrara/calcite | opened | CVE-2016-1000027 (High) detected in spring-web-4.3.23.RELEASE.jar | security vulnerability | ## CVE-2016-1000027 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>spring-web-4.3.23.RELEASE.jar</b></p></summary>
<p>Spring Web</p>
<p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p>
<p>Path to dependency file: calcite/geode/build.gradle.kts</p>
<p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/4.3.23.RELEASE/7690431d7f2175a8a825997b38d1433560d1a434/spring-web-4.3.23.RELEASE.jar</p>
<p>
Dependency Hierarchy:
- geode-core-1.10.0.jar (Root Library)
- geode-management-1.10.0.jar
- :x: **spring-web-4.3.23.RELEASE.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/kenferrara/calcite/commit/5e2bb91de24b843d35df04b29fe7158fad414ee0">5e2bb91de24b843d35df04b29fe7158fad414ee0</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>
Pivotal Spring Framework 4.1.4 suffers from a potential remote code execution (RCE) issue if used for Java deserialization of untrusted data. Depending on how the library is implemented within a product, this issue may or not occur, and authentication may be required.
<p>Publish Date: 2020-01-02
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2016-1000027>CVE-2016-1000027</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- 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/spring-projects/spring-framework/commit/d9ccd618ea9cbf339eb5639d24d5a5fabe8157b5">https://github.com/spring-projects/spring-framework/commit/d9ccd618ea9cbf339eb5639d24d5a5fabe8157b5</a></p>
<p>Release Date: 2020-01-02</p>
<p>Fix Resolution: org.springframework:spring-web:5.3.0</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"org.springframework","packageName":"spring-web","packageVersion":"4.3.23.RELEASE","isTransitiveDependency":true,"dependencyTree":"org.apache.geode:geode-core:1.10.0;org.apache.geode:geode-management:1.10.0;org.springframework:spring-web:4.3.23.RELEASE","isMinimumFixVersionAvailable":true,"minimumFixVersion":"org.springframework:spring-web:5.3.0"}],"vulnerabilityIdentifier":"CVE-2016-1000027","vulnerabilityDetails":"Pivotal Spring Framework 4.1.4 suffers from a potential remote code execution (RCE) issue if used for Java deserialization of untrusted data. Depending on how the library is implemented within a product, this issue may or not occur, and authentication may be required.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2016-1000027","cvss3Severity":"high","cvss3Score":"9.8","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"High","UI":"None","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> --> | True | CVE-2016-1000027 (High) detected in spring-web-4.3.23.RELEASE.jar - ## CVE-2016-1000027 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>spring-web-4.3.23.RELEASE.jar</b></p></summary>
<p>Spring Web</p>
<p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p>
<p>Path to dependency file: calcite/geode/build.gradle.kts</p>
<p>Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/4.3.23.RELEASE/7690431d7f2175a8a825997b38d1433560d1a434/spring-web-4.3.23.RELEASE.jar</p>
<p>
Dependency Hierarchy:
- geode-core-1.10.0.jar (Root Library)
- geode-management-1.10.0.jar
- :x: **spring-web-4.3.23.RELEASE.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/kenferrara/calcite/commit/5e2bb91de24b843d35df04b29fe7158fad414ee0">5e2bb91de24b843d35df04b29fe7158fad414ee0</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>
Pivotal Spring Framework 4.1.4 suffers from a potential remote code execution (RCE) issue if used for Java deserialization of untrusted data. Depending on how the library is implemented within a product, this issue may or not occur, and authentication may be required.
<p>Publish Date: 2020-01-02
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2016-1000027>CVE-2016-1000027</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- 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/spring-projects/spring-framework/commit/d9ccd618ea9cbf339eb5639d24d5a5fabe8157b5">https://github.com/spring-projects/spring-framework/commit/d9ccd618ea9cbf339eb5639d24d5a5fabe8157b5</a></p>
<p>Release Date: 2020-01-02</p>
<p>Fix Resolution: org.springframework:spring-web:5.3.0</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"org.springframework","packageName":"spring-web","packageVersion":"4.3.23.RELEASE","isTransitiveDependency":true,"dependencyTree":"org.apache.geode:geode-core:1.10.0;org.apache.geode:geode-management:1.10.0;org.springframework:spring-web:4.3.23.RELEASE","isMinimumFixVersionAvailable":true,"minimumFixVersion":"org.springframework:spring-web:5.3.0"}],"vulnerabilityIdentifier":"CVE-2016-1000027","vulnerabilityDetails":"Pivotal Spring Framework 4.1.4 suffers from a potential remote code execution (RCE) issue if used for Java deserialization of untrusted data. Depending on how the library is implemented within a product, this issue may or not occur, and authentication may be required.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2016-1000027","cvss3Severity":"high","cvss3Score":"9.8","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"High","UI":"None","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> --> | non_priority | cve high detected in spring web release jar cve high severity vulnerability vulnerable library spring web release jar spring web library home page a href path to dependency file calcite geode build gradle kts path to vulnerable library home wss scanner gradle caches modules files org springframework spring web release spring web release jar dependency hierarchy geode core jar root library geode management jar x spring web release jar vulnerable library found in head commit a href found in base branch master vulnerability details pivotal spring framework suffers from a potential remote code execution rce issue if used for java deserialization of untrusted data depending on how the library is implemented within a product this issue may or not occur and authentication may be required publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution org springframework spring web isopenpronvulnerability true ispackagebased true isdefaultbranch true packages vulnerabilityidentifier cve vulnerabilitydetails pivotal spring framework suffers from a potential remote code execution rce issue if used for java deserialization of untrusted data depending on how the library is implemented within a product this issue may or not occur and authentication may be required vulnerabilityurl | 0 |
72,156 | 19,043,730,944 | IssuesEvent | 2021-11-25 03:27:12 | pombase/pombase-chado | https://api.github.com/repos/pombase/pombase-chado | closed | Automatically name alleles in Chado using the description if not named | builds QC genotype |
Start with
amino acid substitution
nucleic acid substitution
At the same time, check syntax for these.
(related to Intermine issue) | 1.0 | Automatically name alleles in Chado using the description if not named -
Start with
amino acid substitution
nucleic acid substitution
At the same time, check syntax for these.
(related to Intermine issue) | non_priority | automatically name alleles in chado using the description if not named start with amino acid substitution nucleic acid substitution at the same time check syntax for these related to intermine issue | 0 |
496,174 | 14,334,089,653 | IssuesEvent | 2020-11-27 07:25:20 | ballerina-platform/ballerina-lang | https://api.github.com/repos/ballerina-platform/ballerina-lang | closed | Project API crashes with `Compile the module first!` when accessing SemanticModel | Component/ProjectAPI Priority/Blocker Team/jBallerina Type/Bug | **Description:**
This issue happens when trying to put several text edits for the project instance and trying to access the SemanticModel through `module.getCompilation().getSemanticModel()`.
Initial debugging found that the **Compile the module first!** is thrown when the BLangPackage is not available in `ModuleContext`.
Further debugging relieved that when we keep on adding changes Project API loads the module compilation state from the BIR cache in https://github.com/ballerina-platform/ballerina-lang/blob/prj_api_module_refactor/compiler/ballerina-lang/src/main/java/io/ballerina/projects/ModuleContext.java#L220.
Eventually this results compilation state to be set `MODULE_SYMBOL_LOADED` and the `BLangPackage` is NULL.
**Affected Versions:**
2.0.0-SLP6-SNAPSHOT
| 1.0 | Project API crashes with `Compile the module first!` when accessing SemanticModel - **Description:**
This issue happens when trying to put several text edits for the project instance and trying to access the SemanticModel through `module.getCompilation().getSemanticModel()`.
Initial debugging found that the **Compile the module first!** is thrown when the BLangPackage is not available in `ModuleContext`.
Further debugging relieved that when we keep on adding changes Project API loads the module compilation state from the BIR cache in https://github.com/ballerina-platform/ballerina-lang/blob/prj_api_module_refactor/compiler/ballerina-lang/src/main/java/io/ballerina/projects/ModuleContext.java#L220.
Eventually this results compilation state to be set `MODULE_SYMBOL_LOADED` and the `BLangPackage` is NULL.
**Affected Versions:**
2.0.0-SLP6-SNAPSHOT
| priority | project api crashes with compile the module first when accessing semanticmodel description this issue happens when trying to put several text edits for the project instance and trying to access the semanticmodel through module getcompilation getsemanticmodel initial debugging found that the compile the module first is thrown when the blangpackage is not available in modulecontext further debugging relieved that when we keep on adding changes project api loads the module compilation state from the bir cache in eventually this results compilation state to be set module symbol loaded and the blangpackage is null affected versions snapshot | 1 |
359,514 | 10,677,316,857 | IssuesEvent | 2019-10-21 15:13:57 | wso2/product-apim | https://api.github.com/repos/wso2/product-apim | closed | [Publisher] User with create only permissions can see a clickable Publish button | 3.0.0 Priority/High Type/Bug | A user with create only permissions can see a clickable publish button in the **custom stepper**.
When it is clicked, an empty error message is displayed.

| 1.0 | [Publisher] User with create only permissions can see a clickable Publish button - A user with create only permissions can see a clickable publish button in the **custom stepper**.
When it is clicked, an empty error message is displayed.

| priority | user with create only permissions can see a clickable publish button a user with create only permissions can see a clickable publish button in the custom stepper when it is clicked an empty error message is displayed | 1 |
411,472 | 27,823,520,448 | IssuesEvent | 2023-03-19 14:04:45 | lwestfall/TeXpressions | https://api.github.com/repos/lwestfall/TeXpressions | closed | Provide a few usage examples in readme | documentation | Should include a few parsable LaTeX strings and their equivalent.
Should also show usage of Evaluate() and the results.
Avoid usage / examples of Simplify() since that's not well designed yet.
Add sample / minimal console app with examples from readme | 1.0 | Provide a few usage examples in readme - Should include a few parsable LaTeX strings and their equivalent.
Should also show usage of Evaluate() and the results.
Avoid usage / examples of Simplify() since that's not well designed yet.
Add sample / minimal console app with examples from readme | non_priority | provide a few usage examples in readme should include a few parsable latex strings and their equivalent should also show usage of evaluate and the results avoid usage examples of simplify since that s not well designed yet add sample minimal console app with examples from readme | 0 |
69,478 | 14,988,726,845 | IssuesEvent | 2021-01-29 01:58:30 | MValle21/oathkeeper | https://api.github.com/repos/MValle21/oathkeeper | opened | CVE-2020-7598 (Medium) detected in minimist-1.2.0.tgz | security vulnerability | ## CVE-2020-7598 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>minimist-1.2.0.tgz</b></p></summary>
<p>parse argument options</p>
<p>Library home page: <a href="https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz">https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz</a></p>
<p>Path to dependency file: oathkeeper/package.json</p>
<p>Path to vulnerable library: oathkeeper/node_modules/minimist/package.json</p>
<p>
Dependency Hierarchy:
- opencollective-1.0.3.tgz (Root Library)
- :x: **minimist-1.2.0.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/MValle21/oathkeeper/commit/43c00a05bdb772edb5194a57f42ee834b37f3774">43c00a05bdb772edb5194a57f42ee834b37f3774</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>
minimist before 1.2.2 could be tricked into adding or modifying properties of Object.prototype using a "constructor" or "__proto__" payload.
<p>Publish Date: 2020-03-11
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7598>CVE-2020-7598</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.6</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: 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/substack/minimist/commit/63e7ed05aa4b1889ec2f3b196426db4500cbda94">https://github.com/substack/minimist/commit/63e7ed05aa4b1889ec2f3b196426db4500cbda94</a></p>
<p>Release Date: 2020-03-11</p>
<p>Fix Resolution: minimist - 0.2.1,1.2.3</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"minimist","packageVersion":"1.2.0","isTransitiveDependency":true,"dependencyTree":"opencollective:1.0.3;minimist:1.2.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"minimist - 0.2.1,1.2.3"}],"vulnerabilityIdentifier":"CVE-2020-7598","vulnerabilityDetails":"minimist before 1.2.2 could be tricked into adding or modifying properties of Object.prototype using a \"constructor\" or \"__proto__\" payload.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7598","cvss3Severity":"medium","cvss3Score":"5.6","cvss3Metrics":{"A":"Low","AC":"High","PR":"None","S":"Unchanged","C":"Low","UI":"None","AV":"Network","I":"Low"},"extraData":{}}</REMEDIATE> --> | True | CVE-2020-7598 (Medium) detected in minimist-1.2.0.tgz - ## CVE-2020-7598 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>minimist-1.2.0.tgz</b></p></summary>
<p>parse argument options</p>
<p>Library home page: <a href="https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz">https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz</a></p>
<p>Path to dependency file: oathkeeper/package.json</p>
<p>Path to vulnerable library: oathkeeper/node_modules/minimist/package.json</p>
<p>
Dependency Hierarchy:
- opencollective-1.0.3.tgz (Root Library)
- :x: **minimist-1.2.0.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/MValle21/oathkeeper/commit/43c00a05bdb772edb5194a57f42ee834b37f3774">43c00a05bdb772edb5194a57f42ee834b37f3774</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>
minimist before 1.2.2 could be tricked into adding or modifying properties of Object.prototype using a "constructor" or "__proto__" payload.
<p>Publish Date: 2020-03-11
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7598>CVE-2020-7598</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.6</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: 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/substack/minimist/commit/63e7ed05aa4b1889ec2f3b196426db4500cbda94">https://github.com/substack/minimist/commit/63e7ed05aa4b1889ec2f3b196426db4500cbda94</a></p>
<p>Release Date: 2020-03-11</p>
<p>Fix Resolution: minimist - 0.2.1,1.2.3</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"minimist","packageVersion":"1.2.0","isTransitiveDependency":true,"dependencyTree":"opencollective:1.0.3;minimist:1.2.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"minimist - 0.2.1,1.2.3"}],"vulnerabilityIdentifier":"CVE-2020-7598","vulnerabilityDetails":"minimist before 1.2.2 could be tricked into adding or modifying properties of Object.prototype using a \"constructor\" or \"__proto__\" payload.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7598","cvss3Severity":"medium","cvss3Score":"5.6","cvss3Metrics":{"A":"Low","AC":"High","PR":"None","S":"Unchanged","C":"Low","UI":"None","AV":"Network","I":"Low"},"extraData":{}}</REMEDIATE> --> | non_priority | cve medium detected in minimist tgz cve medium severity vulnerability vulnerable library minimist tgz parse argument options library home page a href path to dependency file oathkeeper package json path to vulnerable library oathkeeper node modules minimist package json dependency hierarchy opencollective tgz root library x minimist tgz vulnerable library found in head commit a href found in base branch master vulnerability details minimist before could be tricked into adding or modifying properties of object prototype using a constructor or proto payload 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 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 minimist isopenpronvulnerability true ispackagebased true isdefaultbranch true packages vulnerabilityidentifier cve vulnerabilitydetails minimist before could be tricked into adding or modifying properties of object prototype using a constructor or proto payload vulnerabilityurl | 0 |
251,262 | 27,151,047,764 | IssuesEvent | 2023-02-17 01:18:22 | billdiamond/cbapi-installer | https://api.github.com/repos/billdiamond/cbapi-installer | opened | CVE-2023-25577 (High) detected in Werkzeug-0.15.4-py2.py3-none-any.whl | security vulnerability | ## CVE-2023-25577 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>Werkzeug-0.15.4-py2.py3-none-any.whl</b></p></summary>
<p>The comprehensive WSGI web application library.</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/9f/57/92a497e38161ce40606c27a86759c6b92dd34fcdb33f64171ec559257c02/Werkzeug-0.15.4-py2.py3-none-any.whl">https://files.pythonhosted.org/packages/9f/57/92a497e38161ce40606c27a86759c6b92dd34fcdb33f64171ec559257c02/Werkzeug-0.15.4-py2.py3-none-any.whl</a></p>
<p>Path to dependency file: /requests-2.22.0.tar/requests-2.22.0/Pipfile</p>
<p>Path to vulnerable library: /requests-2.22.0.tar/requests-2.22.0/Pipfile</p>
<p>
Dependency Hierarchy:
- pytest_httpbin-0.3.0-py2.py3-none-any.whl (Root Library)
- httpbin-0.7.0-py2.py3-none-any.whl
- :x: **Werkzeug-0.15.4-py2.py3-none-any.whl** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/billdiamond/cbapi-installer/commit/7d3638518fc9d694dc8d419faaf0d97be7077d07">7d3638518fc9d694dc8d419faaf0d97be7077d07</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>
Werkzeug is a comprehensive WSGI web application library. Prior to version 2.2.3, Werkzeug's multipart form data parser will parse an unlimited number of parts, including file parts. Parts can be a small amount of bytes, but each requires CPU time to parse and may use more memory as Python data. If a request can be made to an endpoint that accesses `request.data`, `request.form`, `request.files`, or `request.get_data(parse_form_data=False)`, it can cause unexpectedly high resource usage. This allows an attacker to cause a denial of service by sending crafted multipart data to an endpoint that will parse it. The amount of CPU time required can block worker processes from handling legitimate requests. The amount of RAM required can trigger an out of memory kill of the process. Unlimited file parts can use up memory and file handles. If many concurrent requests are sent continuously, this can exhaust or kill all available workers. Version 2.2.3 contains a patch for this issue.
<p>Publish Date: 2023-02-14
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-25577>CVE-2023-25577</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<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://www.cve.org/CVERecord?id=CVE-2023-25577">https://www.cve.org/CVERecord?id=CVE-2023-25577</a></p>
<p>Release Date: 2023-02-14</p>
<p>Fix Resolution: Werkzeug - 2.2.3</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2023-25577 (High) detected in Werkzeug-0.15.4-py2.py3-none-any.whl - ## CVE-2023-25577 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>Werkzeug-0.15.4-py2.py3-none-any.whl</b></p></summary>
<p>The comprehensive WSGI web application library.</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/9f/57/92a497e38161ce40606c27a86759c6b92dd34fcdb33f64171ec559257c02/Werkzeug-0.15.4-py2.py3-none-any.whl">https://files.pythonhosted.org/packages/9f/57/92a497e38161ce40606c27a86759c6b92dd34fcdb33f64171ec559257c02/Werkzeug-0.15.4-py2.py3-none-any.whl</a></p>
<p>Path to dependency file: /requests-2.22.0.tar/requests-2.22.0/Pipfile</p>
<p>Path to vulnerable library: /requests-2.22.0.tar/requests-2.22.0/Pipfile</p>
<p>
Dependency Hierarchy:
- pytest_httpbin-0.3.0-py2.py3-none-any.whl (Root Library)
- httpbin-0.7.0-py2.py3-none-any.whl
- :x: **Werkzeug-0.15.4-py2.py3-none-any.whl** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/billdiamond/cbapi-installer/commit/7d3638518fc9d694dc8d419faaf0d97be7077d07">7d3638518fc9d694dc8d419faaf0d97be7077d07</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>
Werkzeug is a comprehensive WSGI web application library. Prior to version 2.2.3, Werkzeug's multipart form data parser will parse an unlimited number of parts, including file parts. Parts can be a small amount of bytes, but each requires CPU time to parse and may use more memory as Python data. If a request can be made to an endpoint that accesses `request.data`, `request.form`, `request.files`, or `request.get_data(parse_form_data=False)`, it can cause unexpectedly high resource usage. This allows an attacker to cause a denial of service by sending crafted multipart data to an endpoint that will parse it. The amount of CPU time required can block worker processes from handling legitimate requests. The amount of RAM required can trigger an out of memory kill of the process. Unlimited file parts can use up memory and file handles. If many concurrent requests are sent continuously, this can exhaust or kill all available workers. Version 2.2.3 contains a patch for this issue.
<p>Publish Date: 2023-02-14
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-25577>CVE-2023-25577</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<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://www.cve.org/CVERecord?id=CVE-2023-25577">https://www.cve.org/CVERecord?id=CVE-2023-25577</a></p>
<p>Release Date: 2023-02-14</p>
<p>Fix Resolution: Werkzeug - 2.2.3</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_priority | cve high detected in werkzeug none any whl cve high severity vulnerability vulnerable library werkzeug none any whl the comprehensive wsgi web application library library home page a href path to dependency file requests tar requests pipfile path to vulnerable library requests tar requests pipfile dependency hierarchy pytest httpbin none any whl root library httpbin none any whl x werkzeug none any whl vulnerable library found in head commit a href vulnerability details werkzeug is a comprehensive wsgi web application library prior to version werkzeug s multipart form data parser will parse an unlimited number of parts including file parts parts can be a small amount of bytes but each requires cpu time to parse and may use more memory as python data if a request can be made to an endpoint that accesses request data request form request files or request get data parse form data false it can cause unexpectedly high resource usage this allows an attacker to cause a denial of service by sending crafted multipart data to an endpoint that will parse it the amount of cpu time required can block worker processes from handling legitimate requests the amount of ram required can trigger an out of memory kill of the process unlimited file parts can use up memory and file handles if many concurrent requests are sent continuously this can exhaust or kill all available workers version contains a patch for this issue publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution werkzeug step up your open source security game with mend | 0 |
531,382 | 15,496,465,072 | IssuesEvent | 2021-03-11 02:43:48 | eventespresso/barista | https://api.github.com/repos/eventespresso/barista | opened | Registration Form + Conditional Logic | C: data systems 🗑 D: EDTR ✏️ P3: med priority 😐 S5: planning 📋 T: feature request 🙏 | ## Background
Our current registration form schema utililzes a system carried over from EE3 consisting of questions and question groups of which the latter are associated with events.
This system has many shortcomings that we have encountered over the years including:
- inability to add the same question to more than one question group, for example the "email" question is part of the "personal" question group and can not be added to any other groups due to the way that the model objets are related.
- inability to associate conditional logic with a question for a particular event because questions are essentially global items shared with all events
- inability to easily customize the registration form for different events, not just with the way question groups are created and assigned, but also with presentation.
- inability to associate questions (or question groups) with individual datetimes or tickets
## Task
As part of our modernization process involving the conversion of our presentation layer to React + Apollo & GraphQL, as well as facilitating the ability to provide our users with some long awaited features, we will be refactoring the registration form system. This will involve:
- modifying the existing question related models in order to expand the customization and relational capabilities for forms
- moving the registration form generation UI into the EDTR
- saving unique records for each event as opposed to "global" records shared by all events
- allowing questions or question groups to be tagged as "defaults" and automagically applied to all new events
- allowing questions to be associated with specific datetimes or tickets
- adding two new models for enabling the use of conditional logic in registration forms
## Data Schema
The following tables show the proposed GQL data schema with the corresponding server side model schema where new fields are marked with an `*`.
#### Question
Questions are the "Form Inputs" and we may want to refer to them as such from now on.
GQL Field | DB Field (`*`=new) | Type | notes
--- | --- | --- | ---
adminLabel | admin_label | string |
adminOnly | admin_only | bool |
dbId | QST_ID | int | autoimcrement id
default? | system | int | immutable question: 1 (personal) or 2 (address)
displayText | display_text | string | html label text
helpClass | help_class`*` | string |
helpText | help_text`*` | string |
htmlClass | html_class`*` | string |
id | UUID`*` | string | save UUID to DB?
max | max | int |
order | order | int |
placeholder | placeholder`*` | string |
required | required | bool |
requiredText | required_text | string |
status | deleted | string | convert from bool to string
type | type | string |
wpUser | wp_user | int |
### Question Group
Question Groups are essentially "Form Sections" and we may want to refer to them as such from now on.
GQL Field | DB Field (`*`=new) | Type | notes
--- | --- | --- | ---
dbId | QSG_ID | int | autoimcrement id
default? | system | int | immutable group: 1 (personal) or 2 (address)
description | description | string |
htmlClass | html_class`*` | string |
id | UUID`*` | string | save UUID to DB?
identifier | identifier | string | deprecate?
name | name | string |
order | order | int |
parent | parent`*` | int| ID or UUID of another form section
showDesc | show_group_desc | bool |
showName | show_group_name | bool |
status | deleted | string | convert from bool to "archived"
wpUser | wp_user | int | who created it
### Event Question Group
This is currently the intersection table between Events and Question Groups, but we should refer to it from now on as "Form Relations" because this table will be getting heavily modified in order to expand what entities a question or question group can be related to
GQL Field | DB Field (`*`=new) | Type | notes
--- | --- | --- | ---
appliesTo | applies_to`*` | string | "purchaser", "primary", "additional", "all", ???
dbId | EQG_ID | int | autoimcrement id
id | UUID`*` | string | save UUID to DB?
objId | OBJ_ID`*` | int| model object ID: `EVT_ID`, `DTT_ID`, `TKT_ID`
objType | OBJ_type`*` | string | model object type: "Event", "Datetime", "Ticket", etc
qsgId | QSG_ID | int | link Form Section to Event, Datetime, Ticket, etc
qstId | QST_ID`*` | int| link Form Input to Event, Datetime, Ticket, etc
| | EVT_ID | int | deprecate?
| | primary | string | deprecate?
| | additional | string | deprecate?
### Rule
This is a new table added to facilitate conditional logic. This model will be used for multiple features beyond conditional logic in the registration form, so some of its functionality might not make complete sense for the time being.
GQL Field | DB Field | Type | notes
--- | --- | --- | ---
comparison | comparison | enum | (see "Comparison Enum Options" below)
dbId | RUL_ID | int | autoimcrement id
modifier | modifier | string | callable applied to value prior to comparison
id | UUID | string | save UUID to DB?
source | source | string | model/object name or FQCN for strategy class
target | target | string | model field or class method
type | type | enum | "query", "model", "strategy"
value | value | mixed |
Each record could be viewed as representing a single condition from the WHERE clause of an SQL query. example:
> perform some action if registration status equals approved
would utilize the following Rule fields
```
// perform some action if
{source} {target} {comparison} {value}
// {registration} {status} {equals} {approved}
```
modifier represents a callback that can be applied to the value prior to comparison to facilitate rules like:
> perform some action when 25% of tickets have been sold
```
// perform some action when
{source} {target} {comparison} modifier({value})
// {tickets} {sold} {>=} modifier({ticket_qty})
// where
modifier = (qty) => qty / 4;
```
#### Comparison Enum Options
- BEFORE (< for dates)
- AFTER (> for dates)
- EMPTY
- NOT EMPTY
- EQUALS
- NOT EQUALS
- GREATER THAN
- GREATER THAN OR EQUALS
- LESS THAN
- LESS THAN OR EQUALS
- IN (or CONTAINS)
- NOT IN (or NOT CONTAINS)
- PARAM (means target is function & value is param)
### Object Rule | Rule Relation (new)
This is the intersection table for connecting rues to other entities
GQL Field | DB Field | Type | notes
--- | --- | --- | ---
dbId | ORL_ID | int | autoimcrement id
id | UUID | string | save UUID to DB?
objId | OBJ_ID | int| model object ID: `EVT_ID`, `DTT_ID`, `TKT_ID`, "QST_ID"
object | object | string | model object type: "Event", "Datetime", "Ticket", "Question", etc
operator | operator | enum | 'AND', 'OR', NULL
order | order | int |
parent | parent | int | ORL_ID that rule is child of
ruleId | RUL_ID | int | foreign key to Rule table
This is the initial issue for planning things out and is still a work in progress. Additional focused issues will be created for directing PRs. | 1.0 | Registration Form + Conditional Logic - ## Background
Our current registration form schema utililzes a system carried over from EE3 consisting of questions and question groups of which the latter are associated with events.
This system has many shortcomings that we have encountered over the years including:
- inability to add the same question to more than one question group, for example the "email" question is part of the "personal" question group and can not be added to any other groups due to the way that the model objets are related.
- inability to associate conditional logic with a question for a particular event because questions are essentially global items shared with all events
- inability to easily customize the registration form for different events, not just with the way question groups are created and assigned, but also with presentation.
- inability to associate questions (or question groups) with individual datetimes or tickets
## Task
As part of our modernization process involving the conversion of our presentation layer to React + Apollo & GraphQL, as well as facilitating the ability to provide our users with some long awaited features, we will be refactoring the registration form system. This will involve:
- modifying the existing question related models in order to expand the customization and relational capabilities for forms
- moving the registration form generation UI into the EDTR
- saving unique records for each event as opposed to "global" records shared by all events
- allowing questions or question groups to be tagged as "defaults" and automagically applied to all new events
- allowing questions to be associated with specific datetimes or tickets
- adding two new models for enabling the use of conditional logic in registration forms
## Data Schema
The following tables show the proposed GQL data schema with the corresponding server side model schema where new fields are marked with an `*`.
#### Question
Questions are the "Form Inputs" and we may want to refer to them as such from now on.
GQL Field | DB Field (`*`=new) | Type | notes
--- | --- | --- | ---
adminLabel | admin_label | string |
adminOnly | admin_only | bool |
dbId | QST_ID | int | autoimcrement id
default? | system | int | immutable question: 1 (personal) or 2 (address)
displayText | display_text | string | html label text
helpClass | help_class`*` | string |
helpText | help_text`*` | string |
htmlClass | html_class`*` | string |
id | UUID`*` | string | save UUID to DB?
max | max | int |
order | order | int |
placeholder | placeholder`*` | string |
required | required | bool |
requiredText | required_text | string |
status | deleted | string | convert from bool to string
type | type | string |
wpUser | wp_user | int |
### Question Group
Question Groups are essentially "Form Sections" and we may want to refer to them as such from now on.
GQL Field | DB Field (`*`=new) | Type | notes
--- | --- | --- | ---
dbId | QSG_ID | int | autoimcrement id
default? | system | int | immutable group: 1 (personal) or 2 (address)
description | description | string |
htmlClass | html_class`*` | string |
id | UUID`*` | string | save UUID to DB?
identifier | identifier | string | deprecate?
name | name | string |
order | order | int |
parent | parent`*` | int| ID or UUID of another form section
showDesc | show_group_desc | bool |
showName | show_group_name | bool |
status | deleted | string | convert from bool to "archived"
wpUser | wp_user | int | who created it
### Event Question Group
This is currently the intersection table between Events and Question Groups, but we should refer to it from now on as "Form Relations" because this table will be getting heavily modified in order to expand what entities a question or question group can be related to
GQL Field | DB Field (`*`=new) | Type | notes
--- | --- | --- | ---
appliesTo | applies_to`*` | string | "purchaser", "primary", "additional", "all", ???
dbId | EQG_ID | int | autoimcrement id
id | UUID`*` | string | save UUID to DB?
objId | OBJ_ID`*` | int| model object ID: `EVT_ID`, `DTT_ID`, `TKT_ID`
objType | OBJ_type`*` | string | model object type: "Event", "Datetime", "Ticket", etc
qsgId | QSG_ID | int | link Form Section to Event, Datetime, Ticket, etc
qstId | QST_ID`*` | int| link Form Input to Event, Datetime, Ticket, etc
| | EVT_ID | int | deprecate?
| | primary | string | deprecate?
| | additional | string | deprecate?
### Rule
This is a new table added to facilitate conditional logic. This model will be used for multiple features beyond conditional logic in the registration form, so some of its functionality might not make complete sense for the time being.
GQL Field | DB Field | Type | notes
--- | --- | --- | ---
comparison | comparison | enum | (see "Comparison Enum Options" below)
dbId | RUL_ID | int | autoimcrement id
modifier | modifier | string | callable applied to value prior to comparison
id | UUID | string | save UUID to DB?
source | source | string | model/object name or FQCN for strategy class
target | target | string | model field or class method
type | type | enum | "query", "model", "strategy"
value | value | mixed |
Each record could be viewed as representing a single condition from the WHERE clause of an SQL query. example:
> perform some action if registration status equals approved
would utilize the following Rule fields
```
// perform some action if
{source} {target} {comparison} {value}
// {registration} {status} {equals} {approved}
```
modifier represents a callback that can be applied to the value prior to comparison to facilitate rules like:
> perform some action when 25% of tickets have been sold
```
// perform some action when
{source} {target} {comparison} modifier({value})
// {tickets} {sold} {>=} modifier({ticket_qty})
// where
modifier = (qty) => qty / 4;
```
#### Comparison Enum Options
- BEFORE (< for dates)
- AFTER (> for dates)
- EMPTY
- NOT EMPTY
- EQUALS
- NOT EQUALS
- GREATER THAN
- GREATER THAN OR EQUALS
- LESS THAN
- LESS THAN OR EQUALS
- IN (or CONTAINS)
- NOT IN (or NOT CONTAINS)
- PARAM (means target is function & value is param)
### Object Rule | Rule Relation (new)
This is the intersection table for connecting rues to other entities
GQL Field | DB Field | Type | notes
--- | --- | --- | ---
dbId | ORL_ID | int | autoimcrement id
id | UUID | string | save UUID to DB?
objId | OBJ_ID | int| model object ID: `EVT_ID`, `DTT_ID`, `TKT_ID`, "QST_ID"
object | object | string | model object type: "Event", "Datetime", "Ticket", "Question", etc
operator | operator | enum | 'AND', 'OR', NULL
order | order | int |
parent | parent | int | ORL_ID that rule is child of
ruleId | RUL_ID | int | foreign key to Rule table
This is the initial issue for planning things out and is still a work in progress. Additional focused issues will be created for directing PRs. | priority | registration form conditional logic background our current registration form schema utililzes a system carried over from consisting of questions and question groups of which the latter are associated with events this system has many shortcomings that we have encountered over the years including inability to add the same question to more than one question group for example the email question is part of the personal question group and can not be added to any other groups due to the way that the model objets are related inability to associate conditional logic with a question for a particular event because questions are essentially global items shared with all events inability to easily customize the registration form for different events not just with the way question groups are created and assigned but also with presentation inability to associate questions or question groups with individual datetimes or tickets task as part of our modernization process involving the conversion of our presentation layer to react apollo graphql as well as facilitating the ability to provide our users with some long awaited features we will be refactoring the registration form system this will involve modifying the existing question related models in order to expand the customization and relational capabilities for forms moving the registration form generation ui into the edtr saving unique records for each event as opposed to global records shared by all events allowing questions or question groups to be tagged as defaults and automagically applied to all new events allowing questions to be associated with specific datetimes or tickets adding two new models for enabling the use of conditional logic in registration forms data schema the following tables show the proposed gql data schema with the corresponding server side model schema where new fields are marked with an question questions are the form inputs and we may want to refer to them as such from now on gql field db field new type notes adminlabel admin label string adminonly admin only bool dbid qst id int autoimcrement id default system int immutable question personal or address displaytext display text string html label text helpclass help class string helptext help text string htmlclass html class string id uuid string save uuid to db max max int order order int placeholder placeholder string required required bool requiredtext required text string status deleted string convert from bool to string type type string wpuser wp user int question group question groups are essentially form sections and we may want to refer to them as such from now on gql field db field new type notes dbid qsg id int autoimcrement id default system int immutable group personal or address description description string htmlclass html class string id uuid string save uuid to db identifier identifier string deprecate name name string order order int parent parent int id or uuid of another form section showdesc show group desc bool showname show group name bool status deleted string convert from bool to archived wpuser wp user int who created it event question group this is currently the intersection table between events and question groups but we should refer to it from now on as form relations because this table will be getting heavily modified in order to expand what entities a question or question group can be related to gql field db field new type notes appliesto applies to string purchaser primary additional all dbid eqg id int autoimcrement id id uuid string save uuid to db objid obj id int model object id evt id dtt id tkt id objtype obj type string model object type event datetime ticket etc qsgid qsg id int link form section to event datetime ticket etc qstid qst id int link form input to event datetime ticket etc evt id int deprecate primary string deprecate additional string deprecate rule this is a new table added to facilitate conditional logic this model will be used for multiple features beyond conditional logic in the registration form so some of its functionality might not make complete sense for the time being gql field db field type notes comparison comparison enum see comparison enum options below dbid rul id int autoimcrement id modifier modifier string callable applied to value prior to comparison id uuid string save uuid to db source source string model object name or fqcn for strategy class target target string model field or class method type type enum query model strategy value value mixed each record could be viewed as representing a single condition from the where clause of an sql query example perform some action if registration status equals approved would utilize the following rule fields perform some action if source target comparison value registration status equals approved modifier represents a callback that can be applied to the value prior to comparison to facilitate rules like perform some action when of tickets have been sold perform some action when source target comparison modifier value tickets sold modifier ticket qty where modifier qty qty comparison enum options before for dates after for dates empty not empty equals not equals greater than greater than or equals less than less than or equals in or contains not in or not contains param means target is function value is param object rule rule relation new this is the intersection table for connecting rues to other entities gql field db field type notes dbid orl id int autoimcrement id id uuid string save uuid to db objid obj id int model object id evt id dtt id tkt id qst id object object string model object type event datetime ticket question etc operator operator enum and or null order order int parent parent int orl id that rule is child of ruleid rul id int foreign key to rule table this is the initial issue for planning things out and is still a work in progress additional focused issues will be created for directing prs | 1 |
296,999 | 9,159,179,778 | IssuesEvent | 2019-03-01 01:20:48 | RobotLocomotion/drake | https://api.github.com/repos/RobotLocomotion/drake | closed | arm64 support? Bazel build fails on NVIDIA Jetson TX2 | configuration: linux priority: backlog team: kitware type: feature request type: installation and distribution | Platform: out of the box NVIDIA Jetson TX2 with Ubuntu 16.04
```bash
$ uname -a
Linux tegra-ubuntu 4.4.38-tegra #1 SMP PREEMPT Fri Jul 28 09:55:22 PDT 2017 aarch64 aarch64 aarch64 GNU/Linux
```
I successfully installed prereqs on latest master, with the exception of bazel (the prereqs script tries to pull down an `amd64` binary, so I built 0.21.0 from source).
Output of `bazel build //...`:
```
INFO: Invocation ID: 4ec3a940-eb8c-407a-b952-65b3005b9f7b
INFO: Analysed 7811 targets (2 packages loaded, 5366 targets configured).
INFO: Found 7811 targets...
ERROR: /home/nvidia/.cache/bazel/_bazel_nvidia/20f9ec868d4333090f45a3fe92d28c3f/external/lcm/BUILD.bazel:144:1: Linking of rule '@lcm//:lcm-gen' failed (Exit 1) gcc failed: error executing command /usr/bin/gcc -o bazel-out/host/bin/external/lcm/lcm-gen '-Wl,-rpath,$ORIGIN/../../_solib_aarch64/_U@lcm_S_S_Clcm___Uexternal_Slcm' -Lbazel-out/host/bin/_solib_aarch64/_U@lcm_S_S_Clcm___Uexternal_Slcm ... (remaining 8 argument(s) skipped)
Use --sandbox_debug to see verbose messages from the sandbox
bazel-out/host/bin/_solib_aarch64/_U@lcm_S_S_Clcm___Uexternal_Slcm/libdrake_lcm.so: error: undefined reference to 'pthread_sigmask'
collect2: error: ld returned 1 exit status
INFO: Elapsed time: 1167.759s, Critical Path: 208.92s
INFO: 505 processes: 505 processwrapper-sandbox.
FAILED: Build did NOT complete successfully
```
Not sure if this is a platform dependent issue, and curious if anyone has built successfully on `arm64`. I tried checking the existing issues and wasn't able to find any related discussion. Please advise. | 1.0 | arm64 support? Bazel build fails on NVIDIA Jetson TX2 - Platform: out of the box NVIDIA Jetson TX2 with Ubuntu 16.04
```bash
$ uname -a
Linux tegra-ubuntu 4.4.38-tegra #1 SMP PREEMPT Fri Jul 28 09:55:22 PDT 2017 aarch64 aarch64 aarch64 GNU/Linux
```
I successfully installed prereqs on latest master, with the exception of bazel (the prereqs script tries to pull down an `amd64` binary, so I built 0.21.0 from source).
Output of `bazel build //...`:
```
INFO: Invocation ID: 4ec3a940-eb8c-407a-b952-65b3005b9f7b
INFO: Analysed 7811 targets (2 packages loaded, 5366 targets configured).
INFO: Found 7811 targets...
ERROR: /home/nvidia/.cache/bazel/_bazel_nvidia/20f9ec868d4333090f45a3fe92d28c3f/external/lcm/BUILD.bazel:144:1: Linking of rule '@lcm//:lcm-gen' failed (Exit 1) gcc failed: error executing command /usr/bin/gcc -o bazel-out/host/bin/external/lcm/lcm-gen '-Wl,-rpath,$ORIGIN/../../_solib_aarch64/_U@lcm_S_S_Clcm___Uexternal_Slcm' -Lbazel-out/host/bin/_solib_aarch64/_U@lcm_S_S_Clcm___Uexternal_Slcm ... (remaining 8 argument(s) skipped)
Use --sandbox_debug to see verbose messages from the sandbox
bazel-out/host/bin/_solib_aarch64/_U@lcm_S_S_Clcm___Uexternal_Slcm/libdrake_lcm.so: error: undefined reference to 'pthread_sigmask'
collect2: error: ld returned 1 exit status
INFO: Elapsed time: 1167.759s, Critical Path: 208.92s
INFO: 505 processes: 505 processwrapper-sandbox.
FAILED: Build did NOT complete successfully
```
Not sure if this is a platform dependent issue, and curious if anyone has built successfully on `arm64`. I tried checking the existing issues and wasn't able to find any related discussion. Please advise. | priority | support bazel build fails on nvidia jetson platform out of the box nvidia jetson with ubuntu bash uname a linux tegra ubuntu tegra smp preempt fri jul pdt gnu linux i successfully installed prereqs on latest master with the exception of bazel the prereqs script tries to pull down an binary so i built from source output of bazel build info invocation id info analysed targets packages loaded targets configured info found targets error home nvidia cache bazel bazel nvidia external lcm build bazel linking of rule lcm lcm gen failed exit gcc failed error executing command usr bin gcc o bazel out host bin external lcm lcm gen wl rpath origin solib u lcm s s clcm uexternal slcm lbazel out host bin solib u lcm s s clcm uexternal slcm remaining argument s skipped use sandbox debug to see verbose messages from the sandbox bazel out host bin solib u lcm s s clcm uexternal slcm libdrake lcm so error undefined reference to pthread sigmask error ld returned exit status info elapsed time critical path info processes processwrapper sandbox failed build did not complete successfully not sure if this is a platform dependent issue and curious if anyone has built successfully on i tried checking the existing issues and wasn t able to find any related discussion please advise | 1 |
213,475 | 7,254,129,000 | IssuesEvent | 2018-02-16 09:43:47 | geosolutions-it/clevmetro-nfd | https://api.github.com/repos/geosolutions-it/clevmetro-nfd | opened | Decoupling form items positions mapping from model fields | Priority High backend | Form items positioning into the frontend panel tabs must be flexible.
Decoupling from model fields structure must be implemented | 1.0 | Decoupling form items positions mapping from model fields - Form items positioning into the frontend panel tabs must be flexible.
Decoupling from model fields structure must be implemented | priority | decoupling form items positions mapping from model fields form items positioning into the frontend panel tabs must be flexible decoupling from model fields structure must be implemented | 1 |
259,830 | 19,634,463,285 | IssuesEvent | 2022-01-08 02:51:59 | HealthScreening/HealthScreeningBot | https://api.github.com/repos/HealthScreening/HealthScreeningBot | closed | [Feature Request]: Contributing a Guide: Suggest use of the script over manually adding an entry | documentation enhancement manually filed feature | ### Description
There is a script that automatically builds the guide list in a specific order.
### Describe the solution you'd like
The script should be used 100% of the time.
### Describe alternatives you've considered
_No response_ | 1.0 | [Feature Request]: Contributing a Guide: Suggest use of the script over manually adding an entry - ### Description
There is a script that automatically builds the guide list in a specific order.
### Describe the solution you'd like
The script should be used 100% of the time.
### Describe alternatives you've considered
_No response_ | non_priority | contributing a guide suggest use of the script over manually adding an entry description there is a script that automatically builds the guide list in a specific order describe the solution you d like the script should be used of the time describe alternatives you ve considered no response | 0 |
67,632 | 12,990,984,836 | IssuesEvent | 2020-07-23 01:58:28 | microsoft/AdaptiveCards | https://api.github.com/repos/microsoft/AdaptiveCards | closed | [iOS][InputEvolution] [Submit Action Data is not included] | Bug BugBash Status-In Code Review Triage-Approved for Fix | # Platform
What platform is your issue or question related to? (Delete other platforms).
* iOS
# Details
* Tested with Calendar Remiander card in samples/Scenario/1.0
* Expected to have "x" : "snooze" is clicked when I'll be late button is clicked
* But only included the data gathered from inputs. | 1.0 | [iOS][InputEvolution] [Submit Action Data is not included] - # Platform
What platform is your issue or question related to? (Delete other platforms).
* iOS
# Details
* Tested with Calendar Remiander card in samples/Scenario/1.0
* Expected to have "x" : "snooze" is clicked when I'll be late button is clicked
* But only included the data gathered from inputs. | non_priority | platform what platform is your issue or question related to delete other platforms ios details tested with calendar remiander card in samples scenario expected to have x snooze is clicked when i ll be late button is clicked but only included the data gathered from inputs | 0 |
293,461 | 8,990,764,916 | IssuesEvent | 2019-02-01 06:44:08 | threefoldtech/jumpscaleX | https://api.github.com/repos/threefoldtech/jumpscaleX | closed | show docstring of method, property, ... in kosmos shell | priority_major state_verification | <img width="1470" alt="image" src="https://user-images.githubusercontent.com/6021844/51438192-1d694600-1ca9-11e9-8f21-d6056cba004e.png">
show as markdown (formatted with pygments)
| 1.0 | show docstring of method, property, ... in kosmos shell - <img width="1470" alt="image" src="https://user-images.githubusercontent.com/6021844/51438192-1d694600-1ca9-11e9-8f21-d6056cba004e.png">
show as markdown (formatted with pygments)
| priority | show docstring of method property in kosmos shell img width alt image src show as markdown formatted with pygments | 1 |
128,191 | 17,460,249,201 | IssuesEvent | 2021-08-06 09:25:14 | Altinn/altinn-studio | https://api.github.com/repos/Altinn/altinn-studio | closed | Add dynamic generation of instance model (element metadata) | area/data-modeling solution/studio/designer kind/user-story | **Functional architect/designer:** @-mention
**Technical architect:** @-mention
**Description**
As a user I want to change the schema and want the instance model to be updated dynamically
**Sketch (if relevant)**
(Screenshot and link to Figma, make sure your sketch is public!)
**Navigation from/to (if relevant)**
This functionality is reached from...
**Technical considerations**
Input (beyond tasks) on how the user story should be solved can be put here.
**Acceptance criterea**
- What is allowed/not allowed
- Validations
- Error messages and warnings
- ...
**Tasks**
- [ ] Generate instance model on the fly
- [ ] If generation fails, keep last previous generated file.
| 1.0 | Add dynamic generation of instance model (element metadata) - **Functional architect/designer:** @-mention
**Technical architect:** @-mention
**Description**
As a user I want to change the schema and want the instance model to be updated dynamically
**Sketch (if relevant)**
(Screenshot and link to Figma, make sure your sketch is public!)
**Navigation from/to (if relevant)**
This functionality is reached from...
**Technical considerations**
Input (beyond tasks) on how the user story should be solved can be put here.
**Acceptance criterea**
- What is allowed/not allowed
- Validations
- Error messages and warnings
- ...
**Tasks**
- [ ] Generate instance model on the fly
- [ ] If generation fails, keep last previous generated file.
| non_priority | add dynamic generation of instance model element metadata functional architect designer mention technical architect mention description as a user i want to change the schema and want the instance model to be updated dynamically sketch if relevant screenshot and link to figma make sure your sketch is public navigation from to if relevant this functionality is reached from technical considerations input beyond tasks on how the user story should be solved can be put here acceptance criterea what is allowed not allowed validations error messages and warnings tasks generate instance model on the fly if generation fails keep last previous generated file | 0 |
191,333 | 6,828,173,913 | IssuesEvent | 2017-11-08 19:30:10 | music-encoding/music-encoding | https://api.github.com/repos/music-encoding/music-encoding | closed | @staff="0" or @staff="all" for <dir> and <harm>, etc. | Component: Core Schema Priority: Medium Status: Needs Discussion Type: Feature Request | It would be useful to have a way of attaching things like text directions and harmony (floating elements) to the system rather than a staff. Is this possible in MEI?
For example `<tempo>` is more properly attached to the system rather than to the top staff in a system (or to the top staff in a beamed group), since it applies to all staves rather than only the top staff.
This would be useful in particular when extracting parts from a full score. Elements labeled `@staff="0"` or `@staff="all"` or something similar would also be extracted from the full score into the part. If `@place="above"` then the item would be placed above the system, and `@place="below"` would place the item below the system.
| 1.0 | @staff="0" or @staff="all" for <dir> and <harm>, etc. - It would be useful to have a way of attaching things like text directions and harmony (floating elements) to the system rather than a staff. Is this possible in MEI?
For example `<tempo>` is more properly attached to the system rather than to the top staff in a system (or to the top staff in a beamed group), since it applies to all staves rather than only the top staff.
This would be useful in particular when extracting parts from a full score. Elements labeled `@staff="0"` or `@staff="all"` or something similar would also be extracted from the full score into the part. If `@place="above"` then the item would be placed above the system, and `@place="below"` would place the item below the system.
| priority | staff or staff all for and etc it would be useful to have a way of attaching things like text directions and harmony floating elements to the system rather than a staff is this possible in mei for example is more properly attached to the system rather than to the top staff in a system or to the top staff in a beamed group since it applies to all staves rather than only the top staff this would be useful in particular when extracting parts from a full score elements labeled staff or staff all or something similar would also be extracted from the full score into the part if place above then the item would be placed above the system and place below would place the item below the system | 1 |
683,942 | 23,400,403,708 | IssuesEvent | 2022-08-12 07:19:33 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | www.google.com - design is broken | priority-critical browser-fenix engine-gecko | <!-- @browser: Firefox Mobile 105.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 10; Mobile; rv:105.0) Gecko/105.0 Firefox/105.0 -->
<!-- @reported_with: android-components-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/108984 -->
<!-- @extra_labels: browser-fenix -->
**URL**: https://www.google.com/search?client=firefox-b-m&sxsrf=ALiCzsbNxmuTTCLDIu_K4IbS6VYBMqTmSg%3A1660271860682&q=xperia+5ii+navigation+bar+hide+android+12&oq=xperia+5ii+navigation+bar+hide+android+12&aqs=heirloom-srp..
**Browser / Version**: Firefox Mobile 105.0
**Operating System**: Android 10
**Tested Another Browser**: Yes Chrome
**Problem type**: Design is broken
**Description**: Items not fully visible
**Steps to Reproduce**:
Half the webpage is black, always the bottom part where the keyboard is . It doesn't go away untill I relaunch Firefox(going to home and reopening the app works as well)
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2022/8/458c0827-3a72-4151-8375-cffcc9de2f40.jpg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20220805092851</li><li>channel: nightly</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2022/8/1f6eae99-09db-4fc0-943c-11cdef19e315)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | www.google.com - design is broken - <!-- @browser: Firefox Mobile 105.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 10; Mobile; rv:105.0) Gecko/105.0 Firefox/105.0 -->
<!-- @reported_with: android-components-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/108984 -->
<!-- @extra_labels: browser-fenix -->
**URL**: https://www.google.com/search?client=firefox-b-m&sxsrf=ALiCzsbNxmuTTCLDIu_K4IbS6VYBMqTmSg%3A1660271860682&q=xperia+5ii+navigation+bar+hide+android+12&oq=xperia+5ii+navigation+bar+hide+android+12&aqs=heirloom-srp..
**Browser / Version**: Firefox Mobile 105.0
**Operating System**: Android 10
**Tested Another Browser**: Yes Chrome
**Problem type**: Design is broken
**Description**: Items not fully visible
**Steps to Reproduce**:
Half the webpage is black, always the bottom part where the keyboard is . It doesn't go away untill I relaunch Firefox(going to home and reopening the app works as well)
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2022/8/458c0827-3a72-4151-8375-cffcc9de2f40.jpg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20220805092851</li><li>channel: nightly</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2022/8/1f6eae99-09db-4fc0-943c-11cdef19e315)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | priority | design is broken url browser version firefox mobile operating system android tested another browser yes chrome problem type design is broken description items not fully visible steps to reproduce half the webpage is black always the bottom part where the keyboard is it doesn t go away untill i relaunch firefox going to home and reopening the app works as well view the screenshot img alt screenshot src browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel nightly hastouchscreen true mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️ | 1 |
314,789 | 23,536,689,112 | IssuesEvent | 2022-08-19 21:52:43 | comp426-2022-fall/a00 | https://api.github.com/repos/comp426-2022-fall/a00 | closed | Clarification needed: The file install_check.sh doesn't exist when I run bash ./install_check.sh | documentation duplicate | #### URL of file with confusing thing
com426-2022-fall/a00-onboarding-jusurkin3/README.md
#### Line number of confusing thing
248
#### What is confusing?
I've followed all the directions so far but when I ran the command, "bash ./install_check.sh," in my cloned repo and it said that the file/directory "install_check.sh" does not exist.
#### What do you think the confusing thing means?
Maybe I have to make the file manually (with mkdir or something like that)? But then I'm not sure where to get the script that make the new file install_check.log. Maybe I'm supposed to run a file with a different name?
Thanks for your help! | 1.0 | Clarification needed: The file install_check.sh doesn't exist when I run bash ./install_check.sh - #### URL of file with confusing thing
com426-2022-fall/a00-onboarding-jusurkin3/README.md
#### Line number of confusing thing
248
#### What is confusing?
I've followed all the directions so far but when I ran the command, "bash ./install_check.sh," in my cloned repo and it said that the file/directory "install_check.sh" does not exist.
#### What do you think the confusing thing means?
Maybe I have to make the file manually (with mkdir or something like that)? But then I'm not sure where to get the script that make the new file install_check.log. Maybe I'm supposed to run a file with a different name?
Thanks for your help! | non_priority | clarification needed the file install check sh doesn t exist when i run bash install check sh url of file with confusing thing fall onboarding readme md line number of confusing thing what is confusing i ve followed all the directions so far but when i ran the command bash install check sh in my cloned repo and it said that the file directory install check sh does not exist what do you think the confusing thing means maybe i have to make the file manually with mkdir or something like that but then i m not sure where to get the script that make the new file install check log maybe i m supposed to run a file with a different name thanks for your help | 0 |
627,221 | 19,899,730,722 | IssuesEvent | 2022-01-25 06:03:51 | wso2/product-microgateway | https://api.github.com/repos/wso2/product-microgateway | closed | Move adapter model constants to a seperate package | Type/Task Priority/Normal | ### Describe your problem(s)
Move constants to a separate package to avoid confusions with variables and models, and having to use special patterns when naming constants.
### Describe your solution
<!-- Describe the feature/improvement -->
### How will you implement it
<!-- If you like to suggest an approach or a design -->
---
### Optional Fields
#### Related Issues:
<!-- Any related issues from this/other repositories-->
#### Suggested Labels:
<!--Only to be used by non-members-->
#### Suggested Assignees:
<!--Only to be used by non-members-->
| 1.0 | Move adapter model constants to a seperate package - ### Describe your problem(s)
Move constants to a separate package to avoid confusions with variables and models, and having to use special patterns when naming constants.
### Describe your solution
<!-- Describe the feature/improvement -->
### How will you implement it
<!-- If you like to suggest an approach or a design -->
---
### Optional Fields
#### Related Issues:
<!-- Any related issues from this/other repositories-->
#### Suggested Labels:
<!--Only to be used by non-members-->
#### Suggested Assignees:
<!--Only to be used by non-members-->
| priority | move adapter model constants to a seperate package describe your problem s move constants to a separate package to avoid confusions with variables and models and having to use special patterns when naming constants describe your solution how will you implement it optional fields related issues suggested labels suggested assignees | 1 |
60,240 | 17,023,377,651 | IssuesEvent | 2021-07-03 01:42:44 | tomhughes/trac-tickets | https://api.github.com/repos/tomhughes/trac-tickets | closed | Rendering of highway=turning_circle is distracting | Component: mapnik Priority: minor Resolution: duplicate Type: defect | **[Submitted to the original trac issue database at 4.09am, Monday, 23rd March 2009]**
At zoom 15+ where highway=turning_circle is rendered, the large gray turning_circle outline distracts from the roads, particularly the road names.
Example: http://www.openstreetmap.org/?lat=38.89647&lon=-94.70019&zoom=15&layers=B000FTF
Osmarender draws a smaller circle on top so that the turning_circle outline is the same width as the road outline. | 1.0 | Rendering of highway=turning_circle is distracting - **[Submitted to the original trac issue database at 4.09am, Monday, 23rd March 2009]**
At zoom 15+ where highway=turning_circle is rendered, the large gray turning_circle outline distracts from the roads, particularly the road names.
Example: http://www.openstreetmap.org/?lat=38.89647&lon=-94.70019&zoom=15&layers=B000FTF
Osmarender draws a smaller circle on top so that the turning_circle outline is the same width as the road outline. | non_priority | rendering of highway turning circle is distracting at zoom where highway turning circle is rendered the large gray turning circle outline distracts from the roads particularly the road names example osmarender draws a smaller circle on top so that the turning circle outline is the same width as the road outline | 0 |
83,497 | 10,329,900,769 | IssuesEvent | 2019-09-02 13:23:02 | Hameds/RostamBot | https://api.github.com/repos/Hameds/RostamBot | opened | تمیز کردن آدرسهای API | documentation | <div dir="rtl">
پیرو این توییتها [https://twitter.com/khos2ow/status/1166391145112449024](https://twitter.com/khos2ow/status/1166391145112449024)
> یه پیشنهادی که فقط با دیدن اون اسکرینشات بالا دارم اینه که اندپوینتهای api خیلی تمیز نیست. به نظر من بهتره که همه اندپوینت ها زیر /api/v1 برن. اساس کار این ربات روی Suspicious اکتیویتیه، دیگه احتیاجی نیست همون کلمه suspicious توی آدرس باشه
لیست GetTwitterBlockedList خیلی redundantه، مخصوصا که روی GET داره جواب میده و میتونه باشه
GET /api/v1/twitter/list
و به همین ترتیب برای بقیه ایپیآیها. و نکته آخر اینکه همه اندپوینتها به حروف کوچیک باشن.
</div> | 1.0 | تمیز کردن آدرسهای API - <div dir="rtl">
پیرو این توییتها [https://twitter.com/khos2ow/status/1166391145112449024](https://twitter.com/khos2ow/status/1166391145112449024)
> یه پیشنهادی که فقط با دیدن اون اسکرینشات بالا دارم اینه که اندپوینتهای api خیلی تمیز نیست. به نظر من بهتره که همه اندپوینت ها زیر /api/v1 برن. اساس کار این ربات روی Suspicious اکتیویتیه، دیگه احتیاجی نیست همون کلمه suspicious توی آدرس باشه
لیست GetTwitterBlockedList خیلی redundantه، مخصوصا که روی GET داره جواب میده و میتونه باشه
GET /api/v1/twitter/list
و به همین ترتیب برای بقیه ایپیآیها. و نکته آخر اینکه همه اندپوینتها به حروف کوچیک باشن.
</div> | non_priority | تمیز کردن آدرسهای api پیرو این توییتها یه پیشنهادی که فقط با دیدن اون اسکرینشات بالا دارم اینه که اندپوینتهای api خیلی تمیز نیست به نظر من بهتره که همه اندپوینت ها زیر api برن اساس کار این ربات روی suspicious اکتیویتیه، دیگه احتیاجی نیست همون کلمه suspicious توی آدرس باشه لیست gettwitterblockedlist خیلی redundantه، مخصوصا که روی get داره جواب میده و میتونه باشه get api twitter list و به همین ترتیب برای بقیه ایپیآیها و نکته آخر اینکه همه اندپوینتها به حروف کوچیک باشن | 0 |
135,495 | 11,008,213,914 | IssuesEvent | 2019-12-04 10:05:08 | microsoft/AzureStorageExplorer | https://api.github.com/repos/microsoft/AzureStorageExplorer | opened | The activity log always keep renaming when renaming one file under one attached file share | :gear: attach :gear: files :gear: sas 🧪 testing | **Storage Explorer Version:** 1.11.1
**Build:** [20191204.2](https://devdiv.visualstudio.com/DevDiv/_build/results?buildId=3292206)
**Branch:** master
**Platform/OS:** Windows 10/ Linux Ubuntu 18.04/macOS High Sierra
**Architecture:** ia32/x64
**Regression From:** Not a regression
**Steps to reproduce:**
1. Launch Storage Explorer.
2. Expand a storage account -> File Shares.
3. Create a new file share -> Upload one file to it -> Use SAS to attach the file share.
4. Open the attached file share -> Try to rename the file.
5. Check the result.
**Expect Experience:**
Succeed to rename the file.
**Actual Experience:**
1. The original file still shows.
2. The activity log always keep renaming.

| 1.0 | The activity log always keep renaming when renaming one file under one attached file share - **Storage Explorer Version:** 1.11.1
**Build:** [20191204.2](https://devdiv.visualstudio.com/DevDiv/_build/results?buildId=3292206)
**Branch:** master
**Platform/OS:** Windows 10/ Linux Ubuntu 18.04/macOS High Sierra
**Architecture:** ia32/x64
**Regression From:** Not a regression
**Steps to reproduce:**
1. Launch Storage Explorer.
2. Expand a storage account -> File Shares.
3. Create a new file share -> Upload one file to it -> Use SAS to attach the file share.
4. Open the attached file share -> Try to rename the file.
5. Check the result.
**Expect Experience:**
Succeed to rename the file.
**Actual Experience:**
1. The original file still shows.
2. The activity log always keep renaming.

| non_priority | the activity log always keep renaming when renaming one file under one attached file share storage explorer version build branch master platform os windows linux ubuntu macos high sierra architecture regression from not a regression steps to reproduce launch storage explorer expand a storage account file shares create a new file share upload one file to it use sas to attach the file share open the attached file share try to rename the file check the result expect experience succeed to rename the file actual experience the original file still shows the activity log always keep renaming | 0 |
340,948 | 24,677,950,832 | IssuesEvent | 2022-10-18 18:38:04 | openjs-foundation/cross-project-council | https://api.github.com/repos/openjs-foundation/cross-project-council | closed | Forum for keeping certain project details | documentation | Reviewing the onboarding checklist (see #262) we identified that we ask projects for information related to their:
1) Infrastructure
2) Personal contact information
which we probably don't want to display _publicly_, but may need certain roles to have access to that information from time to time. @brianwarner suggested this could be a private repository for the ED, Program Manager, CPC Chair, and/ or other designated roles to keep up-to-date. | 1.0 | Forum for keeping certain project details - Reviewing the onboarding checklist (see #262) we identified that we ask projects for information related to their:
1) Infrastructure
2) Personal contact information
which we probably don't want to display _publicly_, but may need certain roles to have access to that information from time to time. @brianwarner suggested this could be a private repository for the ED, Program Manager, CPC Chair, and/ or other designated roles to keep up-to-date. | non_priority | forum for keeping certain project details reviewing the onboarding checklist see we identified that we ask projects for information related to their infrastructure personal contact information which we probably don t want to display publicly but may need certain roles to have access to that information from time to time brianwarner suggested this could be a private repository for the ed program manager cpc chair and or other designated roles to keep up to date | 0 |
798,250 | 28,241,170,538 | IssuesEvent | 2023-04-06 07:17:20 | AY2223S2-CS2103T-T12-2/tp | https://api.github.com/repos/AY2223S2-CS2103T-T12-2/tp | closed | Create Ward and refactor model for Ward | type.Task priority.High | Ward is a simple card containing a string
Patient will have attribute ward
Ward will be editable | 1.0 | Create Ward and refactor model for Ward - Ward is a simple card containing a string
Patient will have attribute ward
Ward will be editable | priority | create ward and refactor model for ward ward is a simple card containing a string patient will have attribute ward ward will be editable | 1 |
215,923 | 16,722,728,378 | IssuesEvent | 2021-06-10 09:15:50 | Azure/azure-sdk-for-java | https://api.github.com/repos/Azure/azure-sdk-for-java | closed | Spring Data Cosmos Readme issue | Client Cosmos Docs needs-team-triage test-manual-pass | 1.
Section [Link](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cosmos/azure-spring-data-cosmos#prerequisites):

Suggestion:
Text change to `Java Development Kit (JDK) with version 8 or above` and add link https://docs.microsoft.com/java/azure/jdk/
Add hyperlink for `Maven` https://maven.apache.org/
@jongio for notification
| 1.0 | Spring Data Cosmos Readme issue - 1.
Section [Link](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cosmos/azure-spring-data-cosmos#prerequisites):

Suggestion:
Text change to `Java Development Kit (JDK) with version 8 or above` and add link https://docs.microsoft.com/java/azure/jdk/
Add hyperlink for `Maven` https://maven.apache.org/
@jongio for notification
| non_priority | spring data cosmos readme issue section suggestion text change to java development kit jdk with version or above and add link add hyperlink for maven jongio for notification | 0 |
584,635 | 17,460,525,134 | IssuesEvent | 2021-08-06 09:47:04 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | se.ftd.com.br - Browser unsupported | browser-opera priority-normal type-uaoverride severity-critical type-unsupported form-v2-experiment ml-needsdiagnosis-false | <!-- @browser: Opera 67.0.3575 -->
<!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36 OPR/67.0.3575.115 -->
<!-- @reported_with: -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/50803 -->
<!-- @extra_labels: form-v2-experiment -->
**URL**: https://se.ftd.com.br/incompativel
**Browser / Version**: Opera 67.0.3575
**Operating System**: Windows 10
**Tested Another Browser**: Yes Chrome
**Problem type**: Site is not usable
**Description**: Browser unsupported
**Steps to Reproduce**:
This website only seems to work with Google Chrome.
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | se.ftd.com.br - Browser unsupported - <!-- @browser: Opera 67.0.3575 -->
<!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36 OPR/67.0.3575.115 -->
<!-- @reported_with: -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/50803 -->
<!-- @extra_labels: form-v2-experiment -->
**URL**: https://se.ftd.com.br/incompativel
**Browser / Version**: Opera 67.0.3575
**Operating System**: Windows 10
**Tested Another Browser**: Yes Chrome
**Problem type**: Site is not usable
**Description**: Browser unsupported
**Steps to Reproduce**:
This website only seems to work with Google Chrome.
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_ | priority | se ftd com br browser unsupported url browser version opera operating system windows tested another browser yes chrome problem type site is not usable description browser unsupported steps to reproduce this website only seems to work with google chrome browser configuration none from with ❤️ | 1 |
672,238 | 22,796,821,224 | IssuesEvent | 2022-07-10 21:00:31 | KinsonDigital/Velaptor | https://api.github.com/repos/KinsonDigital/Velaptor | closed | 🚧Figure out how to get a custom domain name for Velaptor | high priority preview 🔗has dependencies | ### I have done the items below . . .
- [X] I have updated the title by replacing the '**_\<title\>_**' section.
### Description
Do some research to figure out how to secure a domain for the doc site for **Velaptor**.
### Acceptance Criteria
**This issue is finished when:**
- [ ] Find best place to get domain from (godaddy.com maybe?)
- [ ] Get cost based on best place to get it
- [ ] Make changes to the doc site to use the new domain and get it working
### ToDo Items
- [ ] Draft pull request created and linked to this issue
- [X] Priority label added to issue (**_low priority_**, **_medium priority_**, or **_high priority_**)
- [X] Issue linked to the proper project
- [X] Issue linked to proper milestone
### Issue Dependencies
- #266
### Related Work
_No response_
### Code of Conduct
- [X] I agree to follow this project's Code of Conduct | 1.0 | 🚧Figure out how to get a custom domain name for Velaptor - ### I have done the items below . . .
- [X] I have updated the title by replacing the '**_\<title\>_**' section.
### Description
Do some research to figure out how to secure a domain for the doc site for **Velaptor**.
### Acceptance Criteria
**This issue is finished when:**
- [ ] Find best place to get domain from (godaddy.com maybe?)
- [ ] Get cost based on best place to get it
- [ ] Make changes to the doc site to use the new domain and get it working
### ToDo Items
- [ ] Draft pull request created and linked to this issue
- [X] Priority label added to issue (**_low priority_**, **_medium priority_**, or **_high priority_**)
- [X] Issue linked to the proper project
- [X] Issue linked to proper milestone
### Issue Dependencies
- #266
### Related Work
_No response_
### Code of Conduct
- [X] I agree to follow this project's Code of Conduct | priority | 🚧figure out how to get a custom domain name for velaptor i have done the items below i have updated the title by replacing the section description do some research to figure out how to secure a domain for the doc site for velaptor acceptance criteria this issue is finished when find best place to get domain from godaddy com maybe get cost based on best place to get it make changes to the doc site to use the new domain and get it working todo items draft pull request created and linked to this issue priority label added to issue low priority medium priority or high priority issue linked to the proper project issue linked to proper milestone issue dependencies related work no response code of conduct i agree to follow this project s code of conduct | 1 |
205,930 | 23,362,880,004 | IssuesEvent | 2022-08-10 13:12:45 | MatBenfield/news | https://api.github.com/repos/MatBenfield/news | closed | [SecurityWeek] IBM Patches High-Severity Vulnerabilities in Cloud, Voice, Security Products | SecurityWeek Stale |
**IBM on Monday announced patches for multiple high-severity vulnerabilities impacting products such as Netezza for Cloud Pak for Data, Voice Gateway, and SiteProtector.**
[read more](https://www.securityweek.com/ibm-patches-high-severity-vulnerabilities-cloud-voice-security-products)
<https://www.securityweek.com/ibm-patches-high-severity-vulnerabilities-cloud-voice-security-products>
| True | [SecurityWeek] IBM Patches High-Severity Vulnerabilities in Cloud, Voice, Security Products -
**IBM on Monday announced patches for multiple high-severity vulnerabilities impacting products such as Netezza for Cloud Pak for Data, Voice Gateway, and SiteProtector.**
[read more](https://www.securityweek.com/ibm-patches-high-severity-vulnerabilities-cloud-voice-security-products)
<https://www.securityweek.com/ibm-patches-high-severity-vulnerabilities-cloud-voice-security-products>
| non_priority | ibm patches high severity vulnerabilities in cloud voice security products ibm on monday announced patches for multiple high severity vulnerabilities impacting products such as netezza for cloud pak for data voice gateway and siteprotector | 0 |
149,085 | 5,707,213,943 | IssuesEvent | 2017-04-18 13:24:24 | Cadasta/cadasta-platform | https://api.github.com/repos/Cadasta/cadasta-platform | closed | Resources with the same filename cannot be exported correctly | bug First Contribution Friendly priority: medium | ### Steps to reproduce the error
1. Add a resource to a project.
2. Add a different resource with the same filename to that project.
3. Export the resources of that project.
### Actual behavior
Extracting the zip file will only produce one of the 2 resources.
### Expected behavior
Extracting the zip file will produce both resources intact.
| 1.0 | Resources with the same filename cannot be exported correctly - ### Steps to reproduce the error
1. Add a resource to a project.
2. Add a different resource with the same filename to that project.
3. Export the resources of that project.
### Actual behavior
Extracting the zip file will only produce one of the 2 resources.
### Expected behavior
Extracting the zip file will produce both resources intact.
| priority | resources with the same filename cannot be exported correctly steps to reproduce the error add a resource to a project add a different resource with the same filename to that project export the resources of that project actual behavior extracting the zip file will only produce one of the resources expected behavior extracting the zip file will produce both resources intact | 1 |
31,512 | 7,375,323,920 | IssuesEvent | 2018-03-13 23:49:40 | MicrosoftDocs/live-share | https://api.github.com/repos/MicrosoftDocs/live-share | closed | [VS Code] Sign-in failed. | area: identity and sign-in duplicate needs more info vscode |
## Error:
Sign-in failed.
## Steps to Reproduce:
1. Connect to NetMotion (VPN)
2. Open Visual Studio or Visual Studio Code.
3. Attempt to start a new sharing session (Visual Studio) or sign into Live Share (VS Code)
4. Visual Studio will immediately fail with the error:
> [2018-03-09 22:02:37.396 VSIX I] Acquired an access token for the VSO account '<14:eb047f03>'
> [2018-03-09 22:02:37.420 VSIX E] Failed to create a collaboration session. An internal error occurred. Please contact Microsoft Product Support Services.
VS Code will get to 'Ready to Collaborate' page on browser, but will display 'Sign-in Failed' on actual instance of VS Code.
Note: If I disable VPNing, which probably also disables use of my corporate proxy, everything works as expected.
Note: My system currently works (on the VPN + Proxy) with Spotify, MS Teams, NuGet in Visual Studio, and Docker, which either natively support IE proxy settings or have their own setup for proxy details.
Note: When I use bash shell on windows and CURL https://download.microsoft.com, it fails with `(56) Proxy CONNECT aborted`.
Note: I have the HTTP_PROXY and HTTPS_PROXY environment variables set up with my corporate proxy url (url only, no credentials).
||Version Data|
|-:|:-|
|**extensionName**|VSLS|
|**extensionVersion**|0.2.206|
|**protocolVersion**|2.1|
|**applicationName**|VSCode|
|**applicationVersion**|1.21.0|
|**platformName**|Windows|
|**platformVersion**|10.0.14393| | 1.0 | [VS Code] Sign-in failed. -
## Error:
Sign-in failed.
## Steps to Reproduce:
1. Connect to NetMotion (VPN)
2. Open Visual Studio or Visual Studio Code.
3. Attempt to start a new sharing session (Visual Studio) or sign into Live Share (VS Code)
4. Visual Studio will immediately fail with the error:
> [2018-03-09 22:02:37.396 VSIX I] Acquired an access token for the VSO account '<14:eb047f03>'
> [2018-03-09 22:02:37.420 VSIX E] Failed to create a collaboration session. An internal error occurred. Please contact Microsoft Product Support Services.
VS Code will get to 'Ready to Collaborate' page on browser, but will display 'Sign-in Failed' on actual instance of VS Code.
Note: If I disable VPNing, which probably also disables use of my corporate proxy, everything works as expected.
Note: My system currently works (on the VPN + Proxy) with Spotify, MS Teams, NuGet in Visual Studio, and Docker, which either natively support IE proxy settings or have their own setup for proxy details.
Note: When I use bash shell on windows and CURL https://download.microsoft.com, it fails with `(56) Proxy CONNECT aborted`.
Note: I have the HTTP_PROXY and HTTPS_PROXY environment variables set up with my corporate proxy url (url only, no credentials).
||Version Data|
|-:|:-|
|**extensionName**|VSLS|
|**extensionVersion**|0.2.206|
|**protocolVersion**|2.1|
|**applicationName**|VSCode|
|**applicationVersion**|1.21.0|
|**platformName**|Windows|
|**platformVersion**|10.0.14393| | non_priority | sign in failed error sign in failed steps to reproduce connect to netmotion vpn open visual studio or visual studio code attempt to start a new sharing session visual studio or sign into live share vs code visual studio will immediately fail with the error acquired an access token for the vso account failed to create a collaboration session an internal error occurred please contact microsoft product support services vs code will get to ready to collaborate page on browser but will display sign in failed on actual instance of vs code note if i disable vpning which probably also disables use of my corporate proxy everything works as expected note my system currently works on the vpn proxy with spotify ms teams nuget in visual studio and docker which either natively support ie proxy settings or have their own setup for proxy details note when i use bash shell on windows and curl it fails with proxy connect aborted note i have the http proxy and https proxy environment variables set up with my corporate proxy url url only no credentials version data extensionname vsls extensionversion protocolversion applicationname vscode applicationversion platformname windows platformversion | 0 |
285,448 | 31,154,586,662 | IssuesEvent | 2023-08-16 12:21:21 | Trinadh465/linux-4.1.15_CVE-2018-5873 | https://api.github.com/repos/Trinadh465/linux-4.1.15_CVE-2018-5873 | opened | CVE-2021-29155 (Medium) detected in linuxlinux-4.1.52 | Mend: dependency security vulnerability | ## CVE-2021-29155 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.1.52</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/linux-4.1.15_CVE-2018-5873/commit/32145daf0c96b012284199f23418243e0168269f">32145daf0c96b012284199f23418243e0168269f</a></p>
<p>Found in base branch: <b>main</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>/kernel/bpf/verifier.c</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/kernel/bpf/verifier.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>
An issue was discovered in the Linux kernel through 5.11.x. kernel/bpf/verifier.c performs undesirable out-of-bounds speculation on pointer arithmetic, leading to side-channel attacks that defeat Spectre mitigations and obtain sensitive information from kernel memory. Specifically, for sequences of pointer arithmetic operations, the pointer modification performed by the first operation is not correctly accounted for when restricting subsequent operations.
<p>Publish Date: 2021-04-20
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2021-29155>CVE-2021-29155</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.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</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-2021-29155">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29155</a></p>
<p>Release Date: 2021-04-20</p>
<p>Fix Resolution: v5.12-rc8</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2021-29155 (Medium) detected in linuxlinux-4.1.52 - ## CVE-2021-29155 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.1.52</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/linux-4.1.15_CVE-2018-5873/commit/32145daf0c96b012284199f23418243e0168269f">32145daf0c96b012284199f23418243e0168269f</a></p>
<p>Found in base branch: <b>main</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>/kernel/bpf/verifier.c</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/kernel/bpf/verifier.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>
An issue was discovered in the Linux kernel through 5.11.x. kernel/bpf/verifier.c performs undesirable out-of-bounds speculation on pointer arithmetic, leading to side-channel attacks that defeat Spectre mitigations and obtain sensitive information from kernel memory. Specifically, for sequences of pointer arithmetic operations, the pointer modification performed by the first operation is not correctly accounted for when restricting subsequent operations.
<p>Publish Date: 2021-04-20
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2021-29155>CVE-2021-29155</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.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</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-2021-29155">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29155</a></p>
<p>Release Date: 2021-04-20</p>
<p>Fix Resolution: v5.12-rc8</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_priority | 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 main vulnerable source files kernel bpf verifier c kernel bpf verifier c vulnerability details an issue was discovered in the linux kernel through x kernel bpf verifier c performs undesirable out of bounds speculation on pointer arithmetic leading to side channel attacks that defeat spectre mitigations and obtain sensitive information from kernel memory specifically for sequences of pointer arithmetic operations the pointer modification performed by the first operation is not correctly accounted for when restricting subsequent operations publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact high integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with mend | 0 |
311,381 | 9,532,368,637 | IssuesEvent | 2019-04-29 18:24:59 | kubernetes/kubernetes | https://api.github.com/repos/kubernetes/kubernetes | closed | Deprecate kubelet cAdvisor-based endpoints | kind/bug priority/important-longterm sig/node | The cAdvisor port, which exposed the raw cAdvisor UI & API was removed in Kubernetes 1.12.
Now, we should also begin the deprecation process for the Kueblet API endpoints that are backed by the cAdvisor API. These are legacy endpoints, that expose undocumented APIs that don't conform to Kubernetes API standards. They no longer have any internal usage, as we moved core components to the summary API, and soon to the core metrics API. The cAdvisor APIs also tie us to cAdvisor internally, which we would eventually like to move to an implementation detail.
The endpoints I propose deprecating, and eventually removing are:
- `/spec`
- `/stats/*` _except_ `/stats/summary`
- `/metrics/cadvisor`
/milestone v1.15
/assign @tallclair @dashpole
/sig node
/priority important-longterm | 1.0 | Deprecate kubelet cAdvisor-based endpoints - The cAdvisor port, which exposed the raw cAdvisor UI & API was removed in Kubernetes 1.12.
Now, we should also begin the deprecation process for the Kueblet API endpoints that are backed by the cAdvisor API. These are legacy endpoints, that expose undocumented APIs that don't conform to Kubernetes API standards. They no longer have any internal usage, as we moved core components to the summary API, and soon to the core metrics API. The cAdvisor APIs also tie us to cAdvisor internally, which we would eventually like to move to an implementation detail.
The endpoints I propose deprecating, and eventually removing are:
- `/spec`
- `/stats/*` _except_ `/stats/summary`
- `/metrics/cadvisor`
/milestone v1.15
/assign @tallclair @dashpole
/sig node
/priority important-longterm | priority | deprecate kubelet cadvisor based endpoints the cadvisor port which exposed the raw cadvisor ui api was removed in kubernetes now we should also begin the deprecation process for the kueblet api endpoints that are backed by the cadvisor api these are legacy endpoints that expose undocumented apis that don t conform to kubernetes api standards they no longer have any internal usage as we moved core components to the summary api and soon to the core metrics api the cadvisor apis also tie us to cadvisor internally which we would eventually like to move to an implementation detail the endpoints i propose deprecating and eventually removing are spec stats except stats summary metrics cadvisor milestone assign tallclair dashpole sig node priority important longterm | 1 |
145,090 | 22,608,471,888 | IssuesEvent | 2022-06-29 15:05:06 | dotnet/roslyn | https://api.github.com/repos/dotnet/roslyn | closed | Allow `EmitCompilerGeneratedFiles` to specify specific generators | Bug Area-Compilers Area-Language Design New Feature - Source Generators | In a case where a project has couple of generators, I'm only interested in persisting a specific generator to disk. The current design doesn't seem to allow that?
## Proposal
Add a new MSBuild property, for example `GeneratorFullyQualifiedNamesToPersist`.
If the property value isn't set, keep the current behavior. Otherwise, treat the property value as a list of generators fully qualified names separated by a semicolon, e.g:
```xml
<GeneratorFullyQualifiedNamesToPersist>MyApp.Generators.MyAwesomeGenerator1;MyApp.Generators.MyAwesomeGenerator4</GeneratorFullyQualifiedNamesToPersist>
``` | 1.0 | Allow `EmitCompilerGeneratedFiles` to specify specific generators - In a case where a project has couple of generators, I'm only interested in persisting a specific generator to disk. The current design doesn't seem to allow that?
## Proposal
Add a new MSBuild property, for example `GeneratorFullyQualifiedNamesToPersist`.
If the property value isn't set, keep the current behavior. Otherwise, treat the property value as a list of generators fully qualified names separated by a semicolon, e.g:
```xml
<GeneratorFullyQualifiedNamesToPersist>MyApp.Generators.MyAwesomeGenerator1;MyApp.Generators.MyAwesomeGenerator4</GeneratorFullyQualifiedNamesToPersist>
``` | non_priority | allow emitcompilergeneratedfiles to specify specific generators in a case where a project has couple of generators i m only interested in persisting a specific generator to disk the current design doesn t seem to allow that proposal add a new msbuild property for example generatorfullyqualifiednamestopersist if the property value isn t set keep the current behavior otherwise treat the property value as a list of generators fully qualified names separated by a semicolon e g xml myapp generators myapp generators | 0 |
40,287 | 8,766,397,227 | IssuesEvent | 2018-12-17 16:43:09 | pnp/pnpjs | https://api.github.com/repos/pnp/pnpjs | closed | renderListData returns HTML encoded special characters (&) | area: code status: answered type: question | ### Category
- [ ] Enhancement
- [ ] Bug
- [X] Question
- [ ] Documentation gap/issue
### Version
Please specify what version of the library you are using: [1.2.4]
Please specify what version(s) of SharePoint you are targeting: [Online/SPFx 1.6]
### Expected / Desired Behavior / Question
When I return list items via renderListData, I get HTML encoded special characters (`&` in my case) in the field values if there is an & in a text field. When I return the same item via list.items.getById(); I do not get encoded characters.
Wondering if this is by design/built into SharePoint/a bug and whether I should parse the string myself to fix this etc.
### Steps to Reproduce
- Create a list item with a single line text field and an ampersand (&) in the text field value. For example: a single line text field called myTextField with the value: `m&m's`
- Run: renderListData and pass in a CAML query to get that list item: myTextField value: `m&m's`
- Run: sp.list.items.getById(id). myTextField value: `m&m's` | 1.0 | renderListData returns HTML encoded special characters (&) - ### Category
- [ ] Enhancement
- [ ] Bug
- [X] Question
- [ ] Documentation gap/issue
### Version
Please specify what version of the library you are using: [1.2.4]
Please specify what version(s) of SharePoint you are targeting: [Online/SPFx 1.6]
### Expected / Desired Behavior / Question
When I return list items via renderListData, I get HTML encoded special characters (`&` in my case) in the field values if there is an & in a text field. When I return the same item via list.items.getById(); I do not get encoded characters.
Wondering if this is by design/built into SharePoint/a bug and whether I should parse the string myself to fix this etc.
### Steps to Reproduce
- Create a list item with a single line text field and an ampersand (&) in the text field value. For example: a single line text field called myTextField with the value: `m&m's`
- Run: renderListData and pass in a CAML query to get that list item: myTextField value: `m&m's`
- Run: sp.list.items.getById(id). myTextField value: `m&m's` | non_priority | renderlistdata returns html encoded special characters amp category enhancement bug question documentation gap issue version please specify what version of the library you are using please specify what version s of sharepoint you are targeting expected desired behavior question when i return list items via renderlistdata i get html encoded special characters amp in my case in the field values if there is an in a text field when i return the same item via list items getbyid i do not get encoded characters wondering if this is by design built into sharepoint a bug and whether i should parse the string myself to fix this etc steps to reproduce create a list item with a single line text field and an ampersand in the text field value for example a single line text field called mytextfield with the value m m s run renderlistdata and pass in a caml query to get that list item mytextfield value m amp m s run sp list items getbyid id mytextfield value m m s | 0 |
568,906 | 16,990,375,157 | IssuesEvent | 2021-06-30 19:34:31 | rich-iannone/pointblank | https://api.github.com/repos/rich-iannone/pointblank | opened | Tolerance for testing column value equality | Difficulty: [3] Advanced Effort: [3] High Priority: [3] High Type: ★ Enhancement | Apply this to `col_vals_equal()` and `col_vals_not_equal()` (plus the variants of those functions). Use whatever *testthat* 3e uses for tolerance (based on `all_equal()`). Make sure this works in YAML, when creating testthat files, and across all data sources (e.g., databases).
Thank you @eveyp for this! (original post from Discussions below)
### Discussed in https://github.com/rich-iannone/pointblank/discussions/325
<div type='discussions-op-text'>
<sup>Originally posted by **eveyp** June 30, 2021</sup>
Would it be possible to specify a tolerance when testing if column values are equal to a specified value? This would be helpful to avoid floating point round off issues.
It could be similar to how `testthat` has `expect_equal()` which allows for a tolerance and `expect_identical()` which requires the values to be exactly the same (https://testthat.r-lib.org/reference/equality-expectations.html).</div> | 1.0 | Tolerance for testing column value equality - Apply this to `col_vals_equal()` and `col_vals_not_equal()` (plus the variants of those functions). Use whatever *testthat* 3e uses for tolerance (based on `all_equal()`). Make sure this works in YAML, when creating testthat files, and across all data sources (e.g., databases).
Thank you @eveyp for this! (original post from Discussions below)
### Discussed in https://github.com/rich-iannone/pointblank/discussions/325
<div type='discussions-op-text'>
<sup>Originally posted by **eveyp** June 30, 2021</sup>
Would it be possible to specify a tolerance when testing if column values are equal to a specified value? This would be helpful to avoid floating point round off issues.
It could be similar to how `testthat` has `expect_equal()` which allows for a tolerance and `expect_identical()` which requires the values to be exactly the same (https://testthat.r-lib.org/reference/equality-expectations.html).</div> | priority | tolerance for testing column value equality apply this to col vals equal and col vals not equal plus the variants of those functions use whatever testthat uses for tolerance based on all equal make sure this works in yaml when creating testthat files and across all data sources e g databases thank you eveyp for this original post from discussions below discussed in originally posted by eveyp june would it be possible to specify a tolerance when testing if column values are equal to a specified value this would be helpful to avoid floating point round off issues it could be similar to how testthat has expect equal which allows for a tolerance and expect identical which requires the values to be exactly the same | 1 |
779,972 | 27,374,200,365 | IssuesEvent | 2023-02-28 03:37:42 | yugabyte/yugabyte-db | https://api.github.com/repos/yugabyte/yugabyte-db | closed | [YSQL] Colocation GA: Unable to create tables with joins using colocation grammar | kind/bug area/ysql priority/medium status/awaiting-triage | Jira Link: [DB-5666](https://yugabyte.atlassian.net/browse/DB-5666)
### Description
- Create a colocated(with explicit colocation=true definition) or a non-colocated table joining 2 tables in a colocated database
**Issue:**
The create table grammar using joins does not accommodate the colocation clause.
```
cl_db_001=# create table join_ncl_and_ncl_NCLTABLE as select table_1.name,table_with_cl_def_1.contact from table_1 join table_with_cl_def_1 using (id) WITH (COLOCATION = false);
ERROR: syntax error at or near "("
LINE 1: ... table_1 join table_with_cl_def_1 using (id) WITH (COLOCATIO...
^
cl_db_001=# create table join_ncl_and_ncl_NCLTABLE as select table_1.name,table_with_cl_def_1.contact from table_1 join table_with_cl_def_1 using (id) WITH COLOCATION = false;
ERROR: syntax error at or near "COLOCATION"
LINE 1: ... table_1 join table_with_cl_def_1 using (id) WITH COLOCATION...
cl_db_001=# create table join_ncl_and_ncl_NCLTABLE as SELECT name
cl_db_001-# FROM table_with_cl_def_1
cl_db_001-# LEFT JOIN table_with_cl_def_2
cl_db_001-# ON table_with_cl_def_1.id = table_with_cl_def_2.id WITH (COLOCATION = false);
ERROR: syntax error at or near "("
LINE 4: ...le_with_cl_def_1.id = table_with_cl_def_2.id WITH (COLOCATIO...
^
cl_db_001=# create table join_ncl_and_ncl_NCLTABLE as SELECT name FROM table_with_cl_def_1
cl_db_001-# LEFT JOIN table_with_cl_def_2
cl_db_001-# ON table_with_cl_def_1.id = table_with_cl_def_2.id WITH COLOCATION = false
cl_db_001-# ;
ERROR: syntax error at or near "COLOCATION"
LINE 3: ...le_with_cl_def_1.id = table_with_cl_def_2.id WITH COLOCATION...
cl_db_001=# create table join_ncl_and_ncl_NCLTABLE as select table_1.name,table_with_cl_def_1.contact from table_1 join table_with_cl_def_1 using (id) WITH (COLOCATION = true);
ERROR: syntax error at or near "("
LINE 1: ... table_1 join table_with_cl_def_1 using (id) WITH (COLOCATIO...
```
[DB-5666]: https://yugabyte.atlassian.net/browse/DB-5666?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ | 1.0 | [YSQL] Colocation GA: Unable to create tables with joins using colocation grammar - Jira Link: [DB-5666](https://yugabyte.atlassian.net/browse/DB-5666)
### Description
- Create a colocated(with explicit colocation=true definition) or a non-colocated table joining 2 tables in a colocated database
**Issue:**
The create table grammar using joins does not accommodate the colocation clause.
```
cl_db_001=# create table join_ncl_and_ncl_NCLTABLE as select table_1.name,table_with_cl_def_1.contact from table_1 join table_with_cl_def_1 using (id) WITH (COLOCATION = false);
ERROR: syntax error at or near "("
LINE 1: ... table_1 join table_with_cl_def_1 using (id) WITH (COLOCATIO...
^
cl_db_001=# create table join_ncl_and_ncl_NCLTABLE as select table_1.name,table_with_cl_def_1.contact from table_1 join table_with_cl_def_1 using (id) WITH COLOCATION = false;
ERROR: syntax error at or near "COLOCATION"
LINE 1: ... table_1 join table_with_cl_def_1 using (id) WITH COLOCATION...
cl_db_001=# create table join_ncl_and_ncl_NCLTABLE as SELECT name
cl_db_001-# FROM table_with_cl_def_1
cl_db_001-# LEFT JOIN table_with_cl_def_2
cl_db_001-# ON table_with_cl_def_1.id = table_with_cl_def_2.id WITH (COLOCATION = false);
ERROR: syntax error at or near "("
LINE 4: ...le_with_cl_def_1.id = table_with_cl_def_2.id WITH (COLOCATIO...
^
cl_db_001=# create table join_ncl_and_ncl_NCLTABLE as SELECT name FROM table_with_cl_def_1
cl_db_001-# LEFT JOIN table_with_cl_def_2
cl_db_001-# ON table_with_cl_def_1.id = table_with_cl_def_2.id WITH COLOCATION = false
cl_db_001-# ;
ERROR: syntax error at or near "COLOCATION"
LINE 3: ...le_with_cl_def_1.id = table_with_cl_def_2.id WITH COLOCATION...
cl_db_001=# create table join_ncl_and_ncl_NCLTABLE as select table_1.name,table_with_cl_def_1.contact from table_1 join table_with_cl_def_1 using (id) WITH (COLOCATION = true);
ERROR: syntax error at or near "("
LINE 1: ... table_1 join table_with_cl_def_1 using (id) WITH (COLOCATIO...
```
[DB-5666]: https://yugabyte.atlassian.net/browse/DB-5666?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ | priority | colocation ga unable to create tables with joins using colocation grammar jira link description create a colocated with explicit colocation true definition or a non colocated table joining tables in a colocated database issue the create table grammar using joins does not accommodate the colocation clause cl db create table join ncl and ncl ncltable as select table name table with cl def contact from table join table with cl def using id with colocation false error syntax error at or near line table join table with cl def using id with colocatio cl db create table join ncl and ncl ncltable as select table name table with cl def contact from table join table with cl def using id with colocation false error syntax error at or near colocation line table join table with cl def using id with colocation cl db create table join ncl and ncl ncltable as select name cl db from table with cl def cl db left join table with cl def cl db on table with cl def id table with cl def id with colocation false error syntax error at or near line le with cl def id table with cl def id with colocatio cl db create table join ncl and ncl ncltable as select name from table with cl def cl db left join table with cl def cl db on table with cl def id table with cl def id with colocation false cl db error syntax error at or near colocation line le with cl def id table with cl def id with colocation cl db create table join ncl and ncl ncltable as select table name table with cl def contact from table join table with cl def using id with colocation true error syntax error at or near line table join table with cl def using id with colocatio | 1 |
806,592 | 29,837,059,755 | IssuesEvent | 2023-06-19 00:16:41 | brave/brave-browser | https://api.github.com/repos/brave/brave-browser | closed | cmd+a shortcut to select all text not working on URL bar | bug OS/macOS priority/P2 QA/Yes | <!-- Have you searched for similar issues? Before submitting this issue, please check the open issues and add a note before logging a new issue.
PLEASE USE THE TEMPLATE BELOW TO PROVIDE INFORMATION ABOUT THE ISSUE.
INSUFFICIENT INFO WILL GET THE ISSUE CLOSED. IT WILL ONLY BE REOPENED AFTER SUFFICIENT INFO IS PROVIDED-->
## Description
<!--Provide a brief description of the issue-->
Reported by @StephenHeaps and reproduced by @soner-yuksel and @LaurenWags
See https://bravesoftware.slack.com/archives/C02DT9F5EP5/p1686766361475489?thread_ts=1686624460.493189&cid=C02DT9F5EP5 for more info.
Generally, with the URL bar focused, pressing CMD+A (macOS select-all text) or selecting Edit > Select All from macOS menu is moving to the next tab unless all text is already selected in the URL bar.
Maybe the shortcuts functionality is causing this issue or some other griffin study enabled on relaunch as the issue does not reproduce on a clean profile prior to getting griffin seed.
## Steps to Reproduce
<!--Please add a series of steps to reproduce the issue-->
1. Clean profile 1.53.x (do not relaunch to pull griffin)
2. Open a 3-4 tabs with a few sites
3. On the first tab focus on URL box but don't have any text selected
4. Either cmd+a or if on macOS, go to Edit from macOS menu and choose "Select all" --> all text in URL bar is selected as expected
5. Close and relaunch to pull griffin
6. On the first tab focus on URL box but don't have any text selected
7. Either cmd+a or if on macOS, go to Edit from macOS menu and choose "Select all" --> you are navigated to the next tab and your URL text is not selected
## Actual result:
<!--Please add screenshots if needed-->
Navigated to next tab and URL bar text is not selected. Thanks for the videos @StephenHeaps!
https://bravesoftware.slack.com/archives/C02DT9F5EP5/p1686766361475489?thread_ts=1686624460.493189&cid=C02DT9F5EP5
https://bravesoftware.slack.com/archives/C02DT9F5EP5/p1686767019516679?thread_ts=1686624460.493189&cid=C02DT9F5EP5
## Expected result:
All text in URL bar to be selected
## Reproduces how often:
<!--[Easily reproduced/Intermittent issue/No steps to reproduce]-->
easily
## Brave version (brave://version info)
<!--For installed build, please copy Brave, Revision and OS from brave://version and paste here. If building from source please mention it along with brave://version details-->
```
Brave | 1.53.92 Chromium: 114.0.5735.110 (Official Build) beta (x86_64)
-- | --
Revision | 1c828682b85bbc70230a48f5e345489ec447373e-refs/branch-heads/5735_90@{#13}
OS | macOS Version 13.4 (Build 22F66)
```
## Version/Channel Information:
<!--Does this issue happen on any other channels? Or is it specific to a certain channel?-->
- Can you reproduce this issue with the current release?
- Can you reproduce this issue with the beta channel? yes 1.53.x
- Can you reproduce this issue with the nightly channel? yes 1.54.x
## Other Additional Information:
- Does the issue resolve itself when disabling Brave Shields?
- Does the issue resolve itself when disabling Brave Rewards?
- Is the issue reproducible on the latest version of Chrome?
## Miscellaneous Information:
<!--Any additional information, related issues, extra QA steps, configuration or data that might be necessary to reproduce the issue-->
cc @rebron @brave/qa-team | 1.0 | cmd+a shortcut to select all text not working on URL bar - <!-- Have you searched for similar issues? Before submitting this issue, please check the open issues and add a note before logging a new issue.
PLEASE USE THE TEMPLATE BELOW TO PROVIDE INFORMATION ABOUT THE ISSUE.
INSUFFICIENT INFO WILL GET THE ISSUE CLOSED. IT WILL ONLY BE REOPENED AFTER SUFFICIENT INFO IS PROVIDED-->
## Description
<!--Provide a brief description of the issue-->
Reported by @StephenHeaps and reproduced by @soner-yuksel and @LaurenWags
See https://bravesoftware.slack.com/archives/C02DT9F5EP5/p1686766361475489?thread_ts=1686624460.493189&cid=C02DT9F5EP5 for more info.
Generally, with the URL bar focused, pressing CMD+A (macOS select-all text) or selecting Edit > Select All from macOS menu is moving to the next tab unless all text is already selected in the URL bar.
Maybe the shortcuts functionality is causing this issue or some other griffin study enabled on relaunch as the issue does not reproduce on a clean profile prior to getting griffin seed.
## Steps to Reproduce
<!--Please add a series of steps to reproduce the issue-->
1. Clean profile 1.53.x (do not relaunch to pull griffin)
2. Open a 3-4 tabs with a few sites
3. On the first tab focus on URL box but don't have any text selected
4. Either cmd+a or if on macOS, go to Edit from macOS menu and choose "Select all" --> all text in URL bar is selected as expected
5. Close and relaunch to pull griffin
6. On the first tab focus on URL box but don't have any text selected
7. Either cmd+a or if on macOS, go to Edit from macOS menu and choose "Select all" --> you are navigated to the next tab and your URL text is not selected
## Actual result:
<!--Please add screenshots if needed-->
Navigated to next tab and URL bar text is not selected. Thanks for the videos @StephenHeaps!
https://bravesoftware.slack.com/archives/C02DT9F5EP5/p1686766361475489?thread_ts=1686624460.493189&cid=C02DT9F5EP5
https://bravesoftware.slack.com/archives/C02DT9F5EP5/p1686767019516679?thread_ts=1686624460.493189&cid=C02DT9F5EP5
## Expected result:
All text in URL bar to be selected
## Reproduces how often:
<!--[Easily reproduced/Intermittent issue/No steps to reproduce]-->
easily
## Brave version (brave://version info)
<!--For installed build, please copy Brave, Revision and OS from brave://version and paste here. If building from source please mention it along with brave://version details-->
```
Brave | 1.53.92 Chromium: 114.0.5735.110 (Official Build) beta (x86_64)
-- | --
Revision | 1c828682b85bbc70230a48f5e345489ec447373e-refs/branch-heads/5735_90@{#13}
OS | macOS Version 13.4 (Build 22F66)
```
## Version/Channel Information:
<!--Does this issue happen on any other channels? Or is it specific to a certain channel?-->
- Can you reproduce this issue with the current release?
- Can you reproduce this issue with the beta channel? yes 1.53.x
- Can you reproduce this issue with the nightly channel? yes 1.54.x
## Other Additional Information:
- Does the issue resolve itself when disabling Brave Shields?
- Does the issue resolve itself when disabling Brave Rewards?
- Is the issue reproducible on the latest version of Chrome?
## Miscellaneous Information:
<!--Any additional information, related issues, extra QA steps, configuration or data that might be necessary to reproduce the issue-->
cc @rebron @brave/qa-team | priority | cmd a shortcut to select all text not working on url bar have you searched for similar issues before submitting this issue please check the open issues and add a note before logging a new issue please use the template below to provide information about the issue insufficient info will get the issue closed it will only be reopened after sufficient info is provided description reported by stephenheaps and reproduced by soner yuksel and laurenwags see for more info generally with the url bar focused pressing cmd a macos select all text or selecting edit select all from macos menu is moving to the next tab unless all text is already selected in the url bar maybe the shortcuts functionality is causing this issue or some other griffin study enabled on relaunch as the issue does not reproduce on a clean profile prior to getting griffin seed steps to reproduce clean profile x do not relaunch to pull griffin open a tabs with a few sites on the first tab focus on url box but don t have any text selected either cmd a or if on macos go to edit from macos menu and choose select all all text in url bar is selected as expected close and relaunch to pull griffin on the first tab focus on url box but don t have any text selected either cmd a or if on macos go to edit from macos menu and choose select all you are navigated to the next tab and your url text is not selected actual result navigated to next tab and url bar text is not selected thanks for the videos stephenheaps expected result all text in url bar to be selected reproduces how often easily brave version brave version info brave chromium official build beta revision refs branch heads os macos version build version channel information can you reproduce this issue with the current release can you reproduce this issue with the beta channel yes x can you reproduce this issue with the nightly channel yes x other additional information does the issue resolve itself when disabling brave shields does the issue resolve itself when disabling brave rewards is the issue reproducible on the latest version of chrome miscellaneous information cc rebron brave qa team | 1 |
439,549 | 30,703,020,728 | IssuesEvent | 2023-07-27 02:17:10 | hyc-sg/Helios-public | https://api.github.com/repos/hyc-sg/Helios-public | reopened | Conveyor Belt Speed Change | documentation CIP request (functional) request (data) | **Machine ID**
SA031/alpha system
**Describe the bug**
Footprint Mike Miles said, for the Conveyor Belt Speed change, they would like a software revision that permits the user to set the belt speed anywhere between 30-105.
Currently we have 3 speeds, 30, 60, 105. They want to be able to adjust the conveyor belt to run a bit faster than their infeed product transfer belt.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Run at ...
4. Bug present
**Expected behavior**
A clear and concise description of what you expected to happen.
**Images or Screenshots**
Please try to capture images or screenshots of the bug for better understanding and resolution.
**Additional context**
Add any other context about the problem here.
| 1.0 | Conveyor Belt Speed Change - **Machine ID**
SA031/alpha system
**Describe the bug**
Footprint Mike Miles said, for the Conveyor Belt Speed change, they would like a software revision that permits the user to set the belt speed anywhere between 30-105.
Currently we have 3 speeds, 30, 60, 105. They want to be able to adjust the conveyor belt to run a bit faster than their infeed product transfer belt.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Run at ...
4. Bug present
**Expected behavior**
A clear and concise description of what you expected to happen.
**Images or Screenshots**
Please try to capture images or screenshots of the bug for better understanding and resolution.
**Additional context**
Add any other context about the problem here.
| non_priority | conveyor belt speed change machine id alpha system describe the bug footprint mike miles said for the conveyor belt speed change they would like a software revision that permits the user to set the belt speed anywhere between currently we have speeds they want to be able to adjust the conveyor belt to run a bit faster than their infeed product transfer belt to reproduce steps to reproduce the behavior go to click on run at bug present expected behavior a clear and concise description of what you expected to happen images or screenshots please try to capture images or screenshots of the bug for better understanding and resolution additional context add any other context about the problem here | 0 |
68,086 | 3,284,155,619 | IssuesEvent | 2015-10-28 15:37:47 | CenterForOpenScience/osf.io | https://api.github.com/repos/CenterForOpenScience/osf.io | closed | Easier token process for non-web applications | Core: API v2 JIRA priority - high | Current and immediate-term plans for authentication for the API require a web browser to authenticate a token. Many of our expected uses will not involve a web browser. We need a streamlined way to get people into authenticated APIs that give them appropriate project permissions. This task will require a short proposal and will involve UI as well as possible CAS interaction. | 1.0 | Easier token process for non-web applications - Current and immediate-term plans for authentication for the API require a web browser to authenticate a token. Many of our expected uses will not involve a web browser. We need a streamlined way to get people into authenticated APIs that give them appropriate project permissions. This task will require a short proposal and will involve UI as well as possible CAS interaction. | priority | easier token process for non web applications current and immediate term plans for authentication for the api require a web browser to authenticate a token many of our expected uses will not involve a web browser we need a streamlined way to get people into authenticated apis that give them appropriate project permissions this task will require a short proposal and will involve ui as well as possible cas interaction | 1 |
311,081 | 9,528,109,648 | IssuesEvent | 2019-04-29 07:24:19 | bounswe/bounswe2019group10 | https://api.github.com/repos/bounswe/bounswe2019group10 | closed | Create an Amazon AWS EC2 instance | Priority: Medium | Create an Amazon AWS EC2 instance to deploy and serve our application | 1.0 | Create an Amazon AWS EC2 instance - Create an Amazon AWS EC2 instance to deploy and serve our application | priority | create an amazon aws instance create an amazon aws instance to deploy and serve our application | 1 |
448,507 | 12,951,753,746 | IssuesEvent | 2020-07-19 17:57:22 | BlueMap-Minecraft/BlueMap | https://api.github.com/repos/BlueMap-Minecraft/BlueMap | opened | Render-Command does Chunk-Collection on the server-thread instead of async | bug high priority module: common | Chunk-Collection needs to be done async!
Also optimize the chunk-collection if a chunk-filter is used.
Related Watchdog-Timeout:
```
[18:31:48] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[18:31:48] [Paper Watchdog Thread/ERROR]: PID: 44 | Suspended: false | Native: false | State: RUNNABLE
[18:31:48] [Paper Watchdog Thread/ERROR]: Stack:
[18:31:48] [Paper Watchdog Thread/ERROR]: java.base@14.0.1/java.io.RandomAccessFile.read0(Native Method)
[18:31:48] [Paper Watchdog Thread/ERROR]: java.base@14.0.1/java.io.RandomAccessFile.read(RandomAccessFile.java:368)
[18:31:48] [Paper Watchdog Thread/ERROR]: java.base@14.0.1/java.io.RandomAccessFile.readByte(RandomAccessFile.java:710)
[18:31:48] [Paper Watchdog Thread/ERROR]: de.bluecolored.bluemap.core.mca.MCAWorld.getChunkList(MCAWorld.java:285)
[18:31:48] [Paper Watchdog Thread/ERROR]: de.bluecolored.bluemap.core.world.World.getChunkList(World.java:93)
[18:31:48] [Paper Watchdog Thread/ERROR]: de.bluecolored.bluemap.common.plugin.commands.CommandHelper.createMapRenderTask(CommandHelper.java:135)
[18:31:48] [Paper Watchdog Thread/ERROR]: de.bluecolored.bluemap.common.plugin.commands.CommandHelper.createWorldRenderTask(CommandHelper.java:115)
[18:31:48] [Paper Watchdog Thread/ERROR]: de.bluecolored.bluemap.common.plugin.commands.Commands.renderCommand(Commands.java:446)
[18:31:48] [Paper Watchdog Thread/ERROR]: de.bluecolored.bluemap.common.plugin.commands.Commands$$Lambda$3458/0x00000008014cbc40.run(Unknown Source)
[18:31:48] [Paper Watchdog Thread/ERROR]: de.bluecolored.shadow.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:262)
[18:31:48] [Paper Watchdog Thread/ERROR]: de.bluecolored.shadow.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:176)
[18:31:48] [Paper Watchdog Thread/ERROR]: de.bluecolored.shadow.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:141)
[18:31:48] [Paper Watchdog Thread/ERROR]: de.bluecolored.bluemap.bukkit.BukkitCommands$CommandProxy.execute(BukkitCommands.java:106)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:159)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//org.bukkit.craftbukkit.v1_16_R1.CraftServer.dispatchCommand(CraftServer.java:794)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.PlayerConnection.handleCommand(PlayerConnection.java:1921)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.PlayerConnection.a(PlayerConnection.java:1732)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.PacketPlayInChat.a(PacketPlayInChat.java:47)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.PacketPlayInChat.a(PacketPlayInChat.java:5)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.PlayerConnectionUtils.lambda$ensureMainThread$1(PlayerConnectionUtils.java:43)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.PlayerConnectionUtils$$Lambda$7262/0x0000000802dfa440.run(Unknown Source)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.TickTask.run(SourceFile:18)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.MinecraftServer.aZ(MinecraftServer.java:1191)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.MinecraftServer.executeNext(MinecraftServer.java:1184)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.MinecraftServer.sleepForTick(MinecraftServer.java:1160)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.MinecraftServer.v(MinecraftServer.java:1004)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.MinecraftServer.lambda$a$0(MinecraftServer.java:177)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.MinecraftServer$$Lambda$3061/0x0000000801329c40.run(Unknown Source)
[18:31:48] [Paper Watchdog Thread/ERROR]: java.base@14.0.1/java.lang.Thread.run(Thread.java:832)
``` | 1.0 | Render-Command does Chunk-Collection on the server-thread instead of async - Chunk-Collection needs to be done async!
Also optimize the chunk-collection if a chunk-filter is used.
Related Watchdog-Timeout:
```
[18:31:48] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[18:31:48] [Paper Watchdog Thread/ERROR]: PID: 44 | Suspended: false | Native: false | State: RUNNABLE
[18:31:48] [Paper Watchdog Thread/ERROR]: Stack:
[18:31:48] [Paper Watchdog Thread/ERROR]: java.base@14.0.1/java.io.RandomAccessFile.read0(Native Method)
[18:31:48] [Paper Watchdog Thread/ERROR]: java.base@14.0.1/java.io.RandomAccessFile.read(RandomAccessFile.java:368)
[18:31:48] [Paper Watchdog Thread/ERROR]: java.base@14.0.1/java.io.RandomAccessFile.readByte(RandomAccessFile.java:710)
[18:31:48] [Paper Watchdog Thread/ERROR]: de.bluecolored.bluemap.core.mca.MCAWorld.getChunkList(MCAWorld.java:285)
[18:31:48] [Paper Watchdog Thread/ERROR]: de.bluecolored.bluemap.core.world.World.getChunkList(World.java:93)
[18:31:48] [Paper Watchdog Thread/ERROR]: de.bluecolored.bluemap.common.plugin.commands.CommandHelper.createMapRenderTask(CommandHelper.java:135)
[18:31:48] [Paper Watchdog Thread/ERROR]: de.bluecolored.bluemap.common.plugin.commands.CommandHelper.createWorldRenderTask(CommandHelper.java:115)
[18:31:48] [Paper Watchdog Thread/ERROR]: de.bluecolored.bluemap.common.plugin.commands.Commands.renderCommand(Commands.java:446)
[18:31:48] [Paper Watchdog Thread/ERROR]: de.bluecolored.bluemap.common.plugin.commands.Commands$$Lambda$3458/0x00000008014cbc40.run(Unknown Source)
[18:31:48] [Paper Watchdog Thread/ERROR]: de.bluecolored.shadow.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:262)
[18:31:48] [Paper Watchdog Thread/ERROR]: de.bluecolored.shadow.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:176)
[18:31:48] [Paper Watchdog Thread/ERROR]: de.bluecolored.shadow.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:141)
[18:31:48] [Paper Watchdog Thread/ERROR]: de.bluecolored.bluemap.bukkit.BukkitCommands$CommandProxy.execute(BukkitCommands.java:106)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:159)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//org.bukkit.craftbukkit.v1_16_R1.CraftServer.dispatchCommand(CraftServer.java:794)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.PlayerConnection.handleCommand(PlayerConnection.java:1921)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.PlayerConnection.a(PlayerConnection.java:1732)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.PacketPlayInChat.a(PacketPlayInChat.java:47)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.PacketPlayInChat.a(PacketPlayInChat.java:5)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.PlayerConnectionUtils.lambda$ensureMainThread$1(PlayerConnectionUtils.java:43)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.PlayerConnectionUtils$$Lambda$7262/0x0000000802dfa440.run(Unknown Source)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.TickTask.run(SourceFile:18)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.MinecraftServer.aZ(MinecraftServer.java:1191)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.MinecraftServer.executeNext(MinecraftServer.java:1184)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.MinecraftServer.sleepForTick(MinecraftServer.java:1160)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.MinecraftServer.v(MinecraftServer.java:1004)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.MinecraftServer.lambda$a$0(MinecraftServer.java:177)
[18:31:48] [Paper Watchdog Thread/ERROR]: app//net.minecraft.server.v1_16_R1.MinecraftServer$$Lambda$3061/0x0000000801329c40.run(Unknown Source)
[18:31:48] [Paper Watchdog Thread/ERROR]: java.base@14.0.1/java.lang.Thread.run(Thread.java:832)
``` | priority | render command does chunk collection on the server thread instead of async chunk collection needs to be done async also optimize the chunk collection if a chunk filter is used related watchdog timeout current thread server thread pid suspended false native false state runnable stack java base java io randomaccessfile native method java base java io randomaccessfile read randomaccessfile java java base java io randomaccessfile readbyte randomaccessfile java de bluecolored bluemap core mca mcaworld getchunklist mcaworld java de bluecolored bluemap core world world getchunklist world java de bluecolored bluemap common plugin commands commandhelper createmaprendertask commandhelper java de bluecolored bluemap common plugin commands commandhelper createworldrendertask commandhelper java de bluecolored bluemap common plugin commands commands rendercommand commands java de bluecolored bluemap common plugin commands commands lambda run unknown source de bluecolored shadow mojang brigadier commanddispatcher execute commanddispatcher java de bluecolored shadow mojang brigadier commanddispatcher execute commanddispatcher java de bluecolored shadow mojang brigadier commanddispatcher execute commanddispatcher java de bluecolored bluemap bukkit bukkitcommands commandproxy execute bukkitcommands java app org bukkit command simplecommandmap dispatch simplecommandmap java app org bukkit craftbukkit craftserver dispatchcommand craftserver java app net minecraft server playerconnection handlecommand playerconnection java app net minecraft server playerconnection a playerconnection java app net minecraft server packetplayinchat a packetplayinchat java app net minecraft server packetplayinchat a packetplayinchat java app net minecraft server playerconnectionutils lambda ensuremainthread playerconnectionutils java app net minecraft server playerconnectionutils lambda run unknown source app net minecraft server ticktask run sourcefile app net minecraft server iasynctaskhandler executetask iasynctaskhandler java app net minecraft server iasynctaskhandlerreentrant executetask sourcefile app net minecraft server iasynctaskhandler executenext iasynctaskhandler java app net minecraft server minecraftserver az minecraftserver java app net minecraft server minecraftserver executenext minecraftserver java app net minecraft server iasynctaskhandler awaittasks iasynctaskhandler java app net minecraft server minecraftserver sleepfortick minecraftserver java app net minecraft server minecraftserver v minecraftserver java app net minecraft server minecraftserver lambda a minecraftserver java app net minecraft server minecraftserver lambda run unknown source java base java lang thread run thread java | 1 |
663,281 | 22,172,027,321 | IssuesEvent | 2022-06-06 02:37:35 | authzed/spicedb | https://api.github.com/repos/authzed/spicedb | closed | Modular peer discovery for dispatch | area/CLI priority/4 maybe area/tooling state/needs discussion area/dispatch | Distributed dispatching currently relies on a single implementation of peer discovery that uses Servok.
Because there are various ways to discover peers, this should likely be placed behind an interface so that more implementations can arise over time. | 1.0 | Modular peer discovery for dispatch - Distributed dispatching currently relies on a single implementation of peer discovery that uses Servok.
Because there are various ways to discover peers, this should likely be placed behind an interface so that more implementations can arise over time. | priority | modular peer discovery for dispatch distributed dispatching currently relies on a single implementation of peer discovery that uses servok because there are various ways to discover peers this should likely be placed behind an interface so that more implementations can arise over time | 1 |
262,279 | 22,828,560,529 | IssuesEvent | 2022-07-12 10:49:07 | tobyink/p5-mite | https://api.github.com/repos/tobyink/p5-mite | closed | Test suite should use Test2::V0 instead of Fennec | good first issue test suite | Fennec is deprecated and has fails on Windows, which I think are the main cause of Mite's Windows test failures. | 1.0 | Test suite should use Test2::V0 instead of Fennec - Fennec is deprecated and has fails on Windows, which I think are the main cause of Mite's Windows test failures. | non_priority | test suite should use instead of fennec fennec is deprecated and has fails on windows which i think are the main cause of mite s windows test failures | 0 |
4,633 | 7,097,200,036 | IssuesEvent | 2018-01-14 16:43:22 | EGC-G2-Trabajo-1718/recuento-de-votos | https://api.github.com/repos/EGC-G2-Trabajo-1718/recuento-de-votos | closed | Programar recibir API | enhancement por comenzar requirement | Prioridad: Alta
Se ha de implementar los métodos que se encarguen de procesar los JSON que recibiremos de las demás API.
Principalmente necesitamos recibir una lista de todos los votos almacenados por el subsistema de Almacenamiento de votos. | 1.0 | Programar recibir API - Prioridad: Alta
Se ha de implementar los métodos que se encarguen de procesar los JSON que recibiremos de las demás API.
Principalmente necesitamos recibir una lista de todos los votos almacenados por el subsistema de Almacenamiento de votos. | non_priority | programar recibir api prioridad alta se ha de implementar los métodos que se encarguen de procesar los json que recibiremos de las demás api principalmente necesitamos recibir una lista de todos los votos almacenados por el subsistema de almacenamiento de votos | 0 |
19,161 | 26,602,255,322 | IssuesEvent | 2023-01-23 16:33:35 | davidpcaldwell/slime | https://api.github.com/repos/davidpcaldwell/slime | closed | Add support for Scala 3 | check compatibility | Steps:
1. Implement a world-oriented `jsh.shell.jsh` replacement
2. Implement a `jsh/tools/install` fixture that allows running with arbitrary JSH_SHELL_LIB (and other configuration)
3. Implement a test that installs Scala 3 and invokes `scala -version`. | True | Add support for Scala 3 - Steps:
1. Implement a world-oriented `jsh.shell.jsh` replacement
2. Implement a `jsh/tools/install` fixture that allows running with arbitrary JSH_SHELL_LIB (and other configuration)
3. Implement a test that installs Scala 3 and invokes `scala -version`. | non_priority | add support for scala steps implement a world oriented jsh shell jsh replacement implement a jsh tools install fixture that allows running with arbitrary jsh shell lib and other configuration implement a test that installs scala and invokes scala version | 0 |
790,090 | 27,815,444,621 | IssuesEvent | 2023-03-18 16:26:49 | asastats/channel | https://api.github.com/repos/asastats/channel | closed | [Internal] Fix Algofi fees for lending and Nano Swap LP pools | bug medium priority | Only regular pools and STBL2-ALGO lending pools are calculated correctly, while the other lending pools and Nano Swap pools need recalculation.
This issue is connected and will be deployed with https://github.com/asastats/channel/issues/453 .
| 1.0 | [Internal] Fix Algofi fees for lending and Nano Swap LP pools - Only regular pools and STBL2-ALGO lending pools are calculated correctly, while the other lending pools and Nano Swap pools need recalculation.
This issue is connected and will be deployed with https://github.com/asastats/channel/issues/453 .
| priority | fix algofi fees for lending and nano swap lp pools only regular pools and algo lending pools are calculated correctly while the other lending pools and nano swap pools need recalculation this issue is connected and will be deployed with | 1 |
184,520 | 21,784,907,156 | IssuesEvent | 2022-05-14 01:45:43 | n-devs/Testter | https://api.github.com/repos/n-devs/Testter | opened | CVE-2022-1650 (High) detected in eventsource-0.1.6.tgz | security vulnerability | ## CVE-2022-1650 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>eventsource-0.1.6.tgz</b></p></summary>
<p>W3C compliant EventSource client for Node.js</p>
<p>Library home page: <a href="https://registry.npmjs.org/eventsource/-/eventsource-0.1.6.tgz">https://registry.npmjs.org/eventsource/-/eventsource-0.1.6.tgz</a></p>
<p>Path to dependency file: /Testter/package.json</p>
<p>Path to vulnerable library: /node_modules/eventsource/package.json</p>
<p>
Dependency Hierarchy:
- react-scripts-1.0.16.tgz (Root Library)
- react-dev-utils-4.2.1.tgz
- sockjs-client-1.1.4.tgz
- :x: **eventsource-0.1.6.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>
Exposure of Sensitive Information to an Unauthorized Actor in GitHub repository eventsource/eventsource prior to v2.0.2.
<p>Publish Date: 2022-05-12
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-1650>CVE-2022-1650</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: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</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://huntr.dev/bounties/dc9e467f-be5d-4945-867d-1044d27e9b8e/">https://huntr.dev/bounties/dc9e467f-be5d-4945-867d-1044d27e9b8e/</a></p>
<p>Release Date: 2022-05-12</p>
<p>Fix Resolution: eventsource - 2.0.2</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-1650 (High) detected in eventsource-0.1.6.tgz - ## CVE-2022-1650 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>eventsource-0.1.6.tgz</b></p></summary>
<p>W3C compliant EventSource client for Node.js</p>
<p>Library home page: <a href="https://registry.npmjs.org/eventsource/-/eventsource-0.1.6.tgz">https://registry.npmjs.org/eventsource/-/eventsource-0.1.6.tgz</a></p>
<p>Path to dependency file: /Testter/package.json</p>
<p>Path to vulnerable library: /node_modules/eventsource/package.json</p>
<p>
Dependency Hierarchy:
- react-scripts-1.0.16.tgz (Root Library)
- react-dev-utils-4.2.1.tgz
- sockjs-client-1.1.4.tgz
- :x: **eventsource-0.1.6.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>
Exposure of Sensitive Information to an Unauthorized Actor in GitHub repository eventsource/eventsource prior to v2.0.2.
<p>Publish Date: 2022-05-12
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-1650>CVE-2022-1650</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: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</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://huntr.dev/bounties/dc9e467f-be5d-4945-867d-1044d27e9b8e/">https://huntr.dev/bounties/dc9e467f-be5d-4945-867d-1044d27e9b8e/</a></p>
<p>Release Date: 2022-05-12</p>
<p>Fix Resolution: eventsource - 2.0.2</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_priority | cve high detected in eventsource tgz cve high severity vulnerability vulnerable library eventsource tgz compliant eventsource client for node js library home page a href path to dependency file testter package json path to vulnerable library node modules eventsource package json dependency hierarchy react scripts tgz root library react dev utils tgz sockjs client tgz x eventsource tgz vulnerable library vulnerability details exposure of sensitive information to an unauthorized actor in github repository eventsource eventsource 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 required scope unchanged impact metrics confidentiality impact high integrity impact high availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution eventsource step up your open source security game with whitesource | 0 |
222,642 | 7,434,699,964 | IssuesEvent | 2018-03-26 12:00:21 | wso2/docker-apim | https://api.github.com/repos/wso2/docker-apim | closed | Update Docker Compose Templates to use new API-M Docker Images | Priority/High Type/Improvement | **Description:**
Currently, API Manager Docker Compose templates use a separate set of Dockerfiles for building its Docker images. This process can be improved by using the API Manager Docker images built with the default Dockerfiles and using volume mounts to provide the configurations. As a result, Docker Compose templates would not need to build new product Docker images.
**Affected Product Version:**
2.1.0
**Related Issues:**
https://github.com/wso2/docker-is/issues/18, https://github.com/wso2/docker-ei/issues/13, https://github.com/wso2/docker-das/issues/3 | 1.0 | Update Docker Compose Templates to use new API-M Docker Images - **Description:**
Currently, API Manager Docker Compose templates use a separate set of Dockerfiles for building its Docker images. This process can be improved by using the API Manager Docker images built with the default Dockerfiles and using volume mounts to provide the configurations. As a result, Docker Compose templates would not need to build new product Docker images.
**Affected Product Version:**
2.1.0
**Related Issues:**
https://github.com/wso2/docker-is/issues/18, https://github.com/wso2/docker-ei/issues/13, https://github.com/wso2/docker-das/issues/3 | priority | update docker compose templates to use new api m docker images description currently api manager docker compose templates use a separate set of dockerfiles for building its docker images this process can be improved by using the api manager docker images built with the default dockerfiles and using volume mounts to provide the configurations as a result docker compose templates would not need to build new product docker images affected product version related issues | 1 |
24,312 | 12,259,326,343 | IssuesEvent | 2020-05-06 16:25:20 | beakerbrowser/beaker | https://api.github.com/repos/beakerbrowser/beaker | closed | Higher memory consuming webpages reload | performance | Since the latest update websites with higher memory usage (Google Inbox, Google Docs), but sometimes even Are.na or just random sites, after the first load don't stop reloading for another few times and it makes a few sites unusable. I think it's related somehow to memory.
Operation System: Linux
Beaker version: 0.8.2
| True | Higher memory consuming webpages reload - Since the latest update websites with higher memory usage (Google Inbox, Google Docs), but sometimes even Are.na or just random sites, after the first load don't stop reloading for another few times and it makes a few sites unusable. I think it's related somehow to memory.
Operation System: Linux
Beaker version: 0.8.2
| non_priority | higher memory consuming webpages reload since the latest update websites with higher memory usage google inbox google docs but sometimes even are na or just random sites after the first load don t stop reloading for another few times and it makes a few sites unusable i think it s related somehow to memory operation system linux beaker version | 0 |
708,218 | 24,334,499,894 | IssuesEvent | 2022-10-01 00:09:02 | AlphaWallet/alpha-wallet-android | https://api.github.com/repos/AlphaWallet/alpha-wallet-android | closed | Implement displaying NFT rarity (not attribute rarity) from OpenSea API | High Priority | Keywords to look for: [OpenSea OpenRarity]
If so, let's figure out how to get it in | 1.0 | Implement displaying NFT rarity (not attribute rarity) from OpenSea API - Keywords to look for: [OpenSea OpenRarity]
If so, let's figure out how to get it in | priority | implement displaying nft rarity not attribute rarity from opensea api keywords to look for if so let s figure out how to get it in | 1 |
194,768 | 14,686,406,435 | IssuesEvent | 2021-01-01 14:49:06 | github-vet/rangeloop-pointer-findings | https://api.github.com/repos/github-vet/rangeloop-pointer-findings | closed | terraform-providers/terraform-provider-oci: oci/sch_service_connector_test.go; 16 LoC | fresh small test |
Found a possible issue in [terraform-providers/terraform-provider-oci](https://www.github.com/terraform-providers/terraform-provider-oci) at [oci/sch_service_connector_test.go](https://github.com/terraform-providers/terraform-provider-oci/blob/507acd0ed6517dbca2fbcfb8100874929c8fd8e1/oci/sch_service_connector_test.go#L464-L479)
Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message.
> reference to serviceConnectorId is reassigned at line 468
[Click here to see the code in its original context.](https://github.com/terraform-providers/terraform-provider-oci/blob/507acd0ed6517dbca2fbcfb8100874929c8fd8e1/oci/sch_service_connector_test.go#L464-L479)
<details>
<summary>Click here to show the 16 line(s) of Go which triggered the analyzer.</summary>
```go
for _, serviceConnectorId := range serviceConnectorIds {
if ok := SweeperDefaultResourceId[serviceConnectorId]; !ok {
deleteServiceConnectorRequest := oci_sch.DeleteServiceConnectorRequest{}
deleteServiceConnectorRequest.ServiceConnectorId = &serviceConnectorId
deleteServiceConnectorRequest.RequestMetadata.RetryPolicy = getRetryPolicy(true, "sch")
_, error := serviceConnectorClient.DeleteServiceConnector(context.Background(), deleteServiceConnectorRequest)
if error != nil {
fmt.Printf("Error deleting ServiceConnector %s %s, It is possible that the resource is already deleted. Please verify manually \n", serviceConnectorId, error)
continue
}
waitTillCondition(testAccProvider, &serviceConnectorId, serviceConnectorSweepWaitCondition, time.Duration(3*time.Minute),
serviceConnectorSweepResponseFetchOperation, "sch", true)
}
}
```
</details>
Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket:
See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information.
commit ID: 507acd0ed6517dbca2fbcfb8100874929c8fd8e1
| 1.0 | terraform-providers/terraform-provider-oci: oci/sch_service_connector_test.go; 16 LoC -
Found a possible issue in [terraform-providers/terraform-provider-oci](https://www.github.com/terraform-providers/terraform-provider-oci) at [oci/sch_service_connector_test.go](https://github.com/terraform-providers/terraform-provider-oci/blob/507acd0ed6517dbca2fbcfb8100874929c8fd8e1/oci/sch_service_connector_test.go#L464-L479)
Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message.
> reference to serviceConnectorId is reassigned at line 468
[Click here to see the code in its original context.](https://github.com/terraform-providers/terraform-provider-oci/blob/507acd0ed6517dbca2fbcfb8100874929c8fd8e1/oci/sch_service_connector_test.go#L464-L479)
<details>
<summary>Click here to show the 16 line(s) of Go which triggered the analyzer.</summary>
```go
for _, serviceConnectorId := range serviceConnectorIds {
if ok := SweeperDefaultResourceId[serviceConnectorId]; !ok {
deleteServiceConnectorRequest := oci_sch.DeleteServiceConnectorRequest{}
deleteServiceConnectorRequest.ServiceConnectorId = &serviceConnectorId
deleteServiceConnectorRequest.RequestMetadata.RetryPolicy = getRetryPolicy(true, "sch")
_, error := serviceConnectorClient.DeleteServiceConnector(context.Background(), deleteServiceConnectorRequest)
if error != nil {
fmt.Printf("Error deleting ServiceConnector %s %s, It is possible that the resource is already deleted. Please verify manually \n", serviceConnectorId, error)
continue
}
waitTillCondition(testAccProvider, &serviceConnectorId, serviceConnectorSweepWaitCondition, time.Duration(3*time.Minute),
serviceConnectorSweepResponseFetchOperation, "sch", true)
}
}
```
</details>
Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket:
See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information.
commit ID: 507acd0ed6517dbca2fbcfb8100874929c8fd8e1
| non_priority | terraform providers terraform provider oci oci sch service connector test go loc found a possible issue in at below is the message reported by the analyzer for this snippet of code beware that the analyzer only reports the first issue it finds so please do not limit your consideration to the contents of the below message reference to serviceconnectorid is reassigned at line click here to show the line s of go which triggered the analyzer go for serviceconnectorid range serviceconnectorids if ok sweeperdefaultresourceid ok deleteserviceconnectorrequest oci sch deleteserviceconnectorrequest deleteserviceconnectorrequest serviceconnectorid serviceconnectorid deleteserviceconnectorrequest requestmetadata retrypolicy getretrypolicy true sch error serviceconnectorclient deleteserviceconnector context background deleteserviceconnectorrequest if error nil fmt printf error deleting serviceconnector s s it is possible that the resource is already deleted please verify manually n serviceconnectorid error continue waittillcondition testaccprovider serviceconnectorid serviceconnectorsweepwaitcondition time duration time minute serviceconnectorsweepresponsefetchoperation sch true leave a reaction on this issue to contribute to the project by classifying this instance as a bug mitigated or desirable behavior rocket see the descriptions of the classifications for more information commit id | 0 |
178,505 | 29,864,956,808 | IssuesEvent | 2023-06-20 02:23:31 | antrea-io/antrea | https://api.github.com/repos/antrea-io/antrea | closed | Use NXAST_CONTROLLER2 and NXT_PACKET_IN2 in PacketInHandler | kind/design lifecycle/stale | **Describe what you are trying to solve**
<!-- A description of the current limitation/problem/challenge that you are experiencing. -->
In the existing antrea code, a feature needs to use action `NXAST_CONTROLLER` in a flow and register a `PacketInHandler` with a desired reason if it is expected to leverage OpenFlow packet_in mechanism to perform special actions, e.g., TraceFlow, ANP with FQDN, etc.
There exists limitations in the available reasons in OVS packets:
1. OVS has limited vlues in packet_in.reason field, the stand values include [0, 5], although the field type is uint8. After testing with OVS 2.17.0, only value 0/1/3/4/5 could work with packet_in message, and value 2 may cause OVS fails to send the packet to Antrea Agent via the UDS or Windows named pipe.
2. Only reason 0 and 1 are used in antrea, because the previous OVS versions have issues with other values, e.g., the packetIn message fails to receive when using other values.
To levearge the packet_in mechanism, antrea uses reason 0 and 1, and use reg0 to extend for different mechanism:
1. Reason==1 is used by Traceflow feature
2. Reason==0 is shared by all other features, ANP(logging/reject/FQDN)/Multicast/Service
3. reg0[13..17] is used to indicate the reasons of sending packet to the controller
The weaknesses of the existing solution include,
1. A mix usage of packetIn.reason and OVS regs: packetIn.reason is used to register PacketInHandler and dispatch the packetIn messages to handlers.
2. PacketInHandler performance. For a handler using the shared reasons, it may receive messages that it is not focusing on, and a second filter is needed based on the OVS regs
3. The extendability of OVS regs. Each time a new PacketInHandler is introduced, a new bit in reg0 needs to be reserved
**Describe the solution you have in mind**
<!-- A clear and concise description of what you want to happen. -->
A new design for the packetIn usage is proposed in this doc by introducing NXAST_CONTROLLER2 and NXT_PACKET_IN2 in the desired Flow action and packetIn format.
NXAST_CONTROLLER2 action adds a new field `userdata` whose type is `[]byte` comparing to NXAST_CONTROLLER, which has little limitation on the usage. Hence, antrea can leverage it in the flow action "controller" to substitute the previous customization on reg0. eg.,
```
cookie=0x5, duration=95.734s, table=0, priority=100,tcp,nw_src=1.1.1.2,nw_dst=2.2.2.1 actions=set_field:0x1234/0xffff->reg0,set_field:0xaaaa00/0xffff00->reg1,controller(max_len=128,id=13342,userdata=01.02.03)
```
The `userdata` value could be taken by a `NXT_PACKET_IN2` message. So antrea can use it as the key to dispatch the messages to handler. In this way, we could implement a flat organization for multiple packetIn handlers.
**Describe how your solution impacts user flows**
<!-- Does your solution impact how users interact with Antrea? If your proposal introduces a new user-facing feature, describe how it can be consumed. -->
PacketInHandlers don't need to use reg0 to customize reasons any more (including set value in OpenFlow actions and parse values from packetIn message).
**Describe the main design/architecture of your solution**
<!-- A clear and concise description of what does your solution look like. Rich text and diagrams are preferred. -->
To use NXAST_CONTROLLER2 and NXT_PACKET_IN2 in PacketInHandler, following steps are needed:
1. Set PacketInFormat with value `openflow15.OFPUTIL_PACKET_IN_NXT2` on br-int each time antrea-agent connected to OVS
2. Use OpenFlow message `NXAST_CONTROLLER2` in the flow action `SendToController` when expecting to send the packet to antrea-agent. In the meanwhile, supporting to set userdata in the parameter.
4. Use OpenFlow message `NXT_PACKET_IN2` for ofctrl.PacketIn
5. Use the `userdata` as a key to register PacketInHandler or dispatch packetIn mesasge
6. Remove stale code in the existing handlers, including the logics to set or parseOVS regs which are used to represent the customized reason.
**Test plan**
<!-- Describe what kind of tests you plan on adding to exercise your changes. -->
1. Update the existing unit test and integration code as the corresponding flow actions and the parsers in packetIn messages are changed.
2. The existing e2e test is supposed to work for the new design.
**Additional context**
<!-- Any other relevant information.-->
| 1.0 | Use NXAST_CONTROLLER2 and NXT_PACKET_IN2 in PacketInHandler - **Describe what you are trying to solve**
<!-- A description of the current limitation/problem/challenge that you are experiencing. -->
In the existing antrea code, a feature needs to use action `NXAST_CONTROLLER` in a flow and register a `PacketInHandler` with a desired reason if it is expected to leverage OpenFlow packet_in mechanism to perform special actions, e.g., TraceFlow, ANP with FQDN, etc.
There exists limitations in the available reasons in OVS packets:
1. OVS has limited vlues in packet_in.reason field, the stand values include [0, 5], although the field type is uint8. After testing with OVS 2.17.0, only value 0/1/3/4/5 could work with packet_in message, and value 2 may cause OVS fails to send the packet to Antrea Agent via the UDS or Windows named pipe.
2. Only reason 0 and 1 are used in antrea, because the previous OVS versions have issues with other values, e.g., the packetIn message fails to receive when using other values.
To levearge the packet_in mechanism, antrea uses reason 0 and 1, and use reg0 to extend for different mechanism:
1. Reason==1 is used by Traceflow feature
2. Reason==0 is shared by all other features, ANP(logging/reject/FQDN)/Multicast/Service
3. reg0[13..17] is used to indicate the reasons of sending packet to the controller
The weaknesses of the existing solution include,
1. A mix usage of packetIn.reason and OVS regs: packetIn.reason is used to register PacketInHandler and dispatch the packetIn messages to handlers.
2. PacketInHandler performance. For a handler using the shared reasons, it may receive messages that it is not focusing on, and a second filter is needed based on the OVS regs
3. The extendability of OVS regs. Each time a new PacketInHandler is introduced, a new bit in reg0 needs to be reserved
**Describe the solution you have in mind**
<!-- A clear and concise description of what you want to happen. -->
A new design for the packetIn usage is proposed in this doc by introducing NXAST_CONTROLLER2 and NXT_PACKET_IN2 in the desired Flow action and packetIn format.
NXAST_CONTROLLER2 action adds a new field `userdata` whose type is `[]byte` comparing to NXAST_CONTROLLER, which has little limitation on the usage. Hence, antrea can leverage it in the flow action "controller" to substitute the previous customization on reg0. eg.,
```
cookie=0x5, duration=95.734s, table=0, priority=100,tcp,nw_src=1.1.1.2,nw_dst=2.2.2.1 actions=set_field:0x1234/0xffff->reg0,set_field:0xaaaa00/0xffff00->reg1,controller(max_len=128,id=13342,userdata=01.02.03)
```
The `userdata` value could be taken by a `NXT_PACKET_IN2` message. So antrea can use it as the key to dispatch the messages to handler. In this way, we could implement a flat organization for multiple packetIn handlers.
**Describe how your solution impacts user flows**
<!-- Does your solution impact how users interact with Antrea? If your proposal introduces a new user-facing feature, describe how it can be consumed. -->
PacketInHandlers don't need to use reg0 to customize reasons any more (including set value in OpenFlow actions and parse values from packetIn message).
**Describe the main design/architecture of your solution**
<!-- A clear and concise description of what does your solution look like. Rich text and diagrams are preferred. -->
To use NXAST_CONTROLLER2 and NXT_PACKET_IN2 in PacketInHandler, following steps are needed:
1. Set PacketInFormat with value `openflow15.OFPUTIL_PACKET_IN_NXT2` on br-int each time antrea-agent connected to OVS
2. Use OpenFlow message `NXAST_CONTROLLER2` in the flow action `SendToController` when expecting to send the packet to antrea-agent. In the meanwhile, supporting to set userdata in the parameter.
4. Use OpenFlow message `NXT_PACKET_IN2` for ofctrl.PacketIn
5. Use the `userdata` as a key to register PacketInHandler or dispatch packetIn mesasge
6. Remove stale code in the existing handlers, including the logics to set or parseOVS regs which are used to represent the customized reason.
**Test plan**
<!-- Describe what kind of tests you plan on adding to exercise your changes. -->
1. Update the existing unit test and integration code as the corresponding flow actions and the parsers in packetIn messages are changed.
2. The existing e2e test is supposed to work for the new design.
**Additional context**
<!-- Any other relevant information.-->
| non_priority | use nxast and nxt packet in packetinhandler describe what you are trying to solve in the existing antrea code a feature needs to use action nxast controller in a flow and register a packetinhandler with a desired reason if it is expected to leverage openflow packet in mechanism to perform special actions e g traceflow anp with fqdn etc there exists limitations in the available reasons in ovs packets ovs has limited vlues in packet in reason field the stand values include although the field type is after testing with ovs only value could work with packet in message and value may cause ovs fails to send the packet to antrea agent via the uds or windows named pipe only reason and are used in antrea because the previous ovs versions have issues with other values e g the packetin message fails to receive when using other values to levearge the packet in mechanism antrea uses reason and and use to extend for different mechanism reason is used by traceflow feature reason is shared by all other features anp logging reject fqdn multicast service is used to indicate the reasons of sending packet to the controller the weaknesses of the existing solution include a mix usage of packetin reason and ovs regs packetin reason is used to register packetinhandler and dispatch the packetin messages to handlers packetinhandler performance for a handler using the shared reasons it may receive messages that it is not focusing on and a second filter is needed based on the ovs regs the extendability of ovs regs each time a new packetinhandler is introduced a new bit in needs to be reserved describe the solution you have in mind a new design for the packetin usage is proposed in this doc by introducing nxast and nxt packet in the desired flow action and packetin format nxast action adds a new field userdata whose type is byte comparing to nxast controller which has little limitation on the usage hence antrea can leverage it in the flow action controller to substitute the previous customization on eg cookie duration table priority tcp nw src nw dst actions set field set field controller max len id userdata the userdata value could be taken by a nxt packet message so antrea can use it as the key to dispatch the messages to handler in this way we could implement a flat organization for multiple packetin handlers describe how your solution impacts user flows packetinhandlers don t need to use to customize reasons any more including set value in openflow actions and parse values from packetin message describe the main design architecture of your solution to use nxast and nxt packet in packetinhandler following steps are needed set packetinformat with value ofputil packet in on br int each time antrea agent connected to ovs use openflow message nxast in the flow action sendtocontroller when expecting to send the packet to antrea agent in the meanwhile supporting to set userdata in the parameter use openflow message nxt packet for ofctrl packetin use the userdata as a key to register packetinhandler or dispatch packetin mesasge remove stale code in the existing handlers including the logics to set or parseovs regs which are used to represent the customized reason test plan update the existing unit test and integration code as the corresponding flow actions and the parsers in packetin messages are changed the existing test is supposed to work for the new design additional context | 0 |
40,521 | 2,868,925,300 | IssuesEvent | 2015-06-05 21:59:51 | dart-lang/pub | https://api.github.com/repos/dart-lang/pub | closed | Run a lint check on pub.dartlang.org | bug Fixed Priority-Medium | <a href="https://github.com/nex3"><img src="https://avatars.githubusercontent.com/u/188?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [nex3](https://github.com/nex3)**
_Originally opened as dart-lang/sdk#5420_
----
I think there are tools that will run over a website and make sure it has no dangling links or what-have-you. We should do this for pub.dartlang.org before we launch. | 1.0 | Run a lint check on pub.dartlang.org - <a href="https://github.com/nex3"><img src="https://avatars.githubusercontent.com/u/188?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [nex3](https://github.com/nex3)**
_Originally opened as dart-lang/sdk#5420_
----
I think there are tools that will run over a website and make sure it has no dangling links or what-have-you. We should do this for pub.dartlang.org before we launch. | priority | run a lint check on pub dartlang org issue by originally opened as dart lang sdk i think there are tools that will run over a website and make sure it has no dangling links or what have you we should do this for pub dartlang org before we launch | 1 |
26,383 | 4,690,524,815 | IssuesEvent | 2016-10-11 07:10:07 | netty/netty | https://api.github.com/repos/netty/netty | closed | SingleThreadEventLoopTest#scheduleLaggyTaskAtFixedRateB failure | defect | ```
[01:10:22][io.netty.channel.SingleThreadEventLoopTest] scheduleLaggyTaskAtFixedRateB
[01:10:22][scheduleLaggyTaskAtFixedRateB] java.lang.AssertionError: expected:<5> but was:<0>
[01:10:22]
[scheduleLaggyTaskAtFixedRateB] java.lang.AssertionError: expected:<5> but was:<0>
at io.netty.channel.SingleThreadEventLoopTest.testScheduleLaggyTaskAtFixedRate(SingleThreadEventLoopTest.java:244)
at io.netty.channel.SingleThreadEventLoopTest.scheduleLaggyTaskAtFixedRateB(SingleThreadEventLoopTest.java:223)
``` | 1.0 | SingleThreadEventLoopTest#scheduleLaggyTaskAtFixedRateB failure - ```
[01:10:22][io.netty.channel.SingleThreadEventLoopTest] scheduleLaggyTaskAtFixedRateB
[01:10:22][scheduleLaggyTaskAtFixedRateB] java.lang.AssertionError: expected:<5> but was:<0>
[01:10:22]
[scheduleLaggyTaskAtFixedRateB] java.lang.AssertionError: expected:<5> but was:<0>
at io.netty.channel.SingleThreadEventLoopTest.testScheduleLaggyTaskAtFixedRate(SingleThreadEventLoopTest.java:244)
at io.netty.channel.SingleThreadEventLoopTest.scheduleLaggyTaskAtFixedRateB(SingleThreadEventLoopTest.java:223)
``` | non_priority | singlethreadeventlooptest schedulelaggytaskatfixedrateb failure schedulelaggytaskatfixedrateb java lang assertionerror expected but was java lang assertionerror expected but was at io netty channel singlethreadeventlooptest testschedulelaggytaskatfixedrate singlethreadeventlooptest java at io netty channel singlethreadeventlooptest schedulelaggytaskatfixedrateb singlethreadeventlooptest java | 0 |
439,720 | 30,711,245,732 | IssuesEvent | 2023-07-27 09:55:58 | secureCodeBox/secureCodeBox | https://api.github.com/repos/secureCodeBox/secureCodeBox | closed | Check "upgrading" and "versioning" information in repository | documentation | Double-check all references to upgrading and versioning in this repository and the documentation repo to ensure that they are in line with [ADR-0011](https://github.com/secureCodeBox/secureCodeBox/pull/936). | 1.0 | Check "upgrading" and "versioning" information in repository - Double-check all references to upgrading and versioning in this repository and the documentation repo to ensure that they are in line with [ADR-0011](https://github.com/secureCodeBox/secureCodeBox/pull/936). | non_priority | check upgrading and versioning information in repository double check all references to upgrading and versioning in this repository and the documentation repo to ensure that they are in line with | 0 |
83,698 | 3,640,871,241 | IssuesEvent | 2016-02-13 06:19:29 | DistrictDataLabs/trinket | https://api.github.com/repos/DistrictDataLabs/trinket | closed | Multi file dataset workflow | priority: high type: feature | Implement/wireframe the multi-file dataset workflow and detail pages. | 1.0 | Multi file dataset workflow - Implement/wireframe the multi-file dataset workflow and detail pages. | priority | multi file dataset workflow implement wireframe the multi file dataset workflow and detail pages | 1 |
254,981 | 21,891,778,979 | IssuesEvent | 2022-05-20 03:01:38 | MPMG-DCC-UFMG/F01 | https://api.github.com/repos/MPMG-DCC-UFMG/F01 | closed | Teste de generalizacao para a tag Despesas com diárias - Despesas com diárias - Siplanweb - Piranga | generalization test development template-Siplanweb tag-Despesas com diárias subtag-Despesas com diárias | DoD: Realizar o teste de Generalização do validador da tag Despesas com diárias - Despesas com diárias - Siplanweb para o Município de Piranga. | 1.0 | Teste de generalizacao para a tag Despesas com diárias - Despesas com diárias - Siplanweb - Piranga - DoD: Realizar o teste de Generalização do validador da tag Despesas com diárias - Despesas com diárias - Siplanweb para o Município de Piranga. | non_priority | teste de generalizacao para a tag despesas com diárias despesas com diárias siplanweb piranga dod realizar o teste de generalização do validador da tag despesas com diárias despesas com diárias siplanweb para o município de piranga | 0 |
361,970 | 25,356,368,543 | IssuesEvent | 2022-11-20 11:46:16 | CloneCoding-Pinterest/PinterestBE | https://api.github.com/repos/CloneCoding-Pinterest/PinterestBE | closed | Docs : EC2 인스턴스 셋업 총괄 (Git, Node, Nginx 까지) | documentation | ## Nginx + Express 사용 설정
- 작성자 : @unchaptered
- 작성일자 : `2022-08-23`
직전에 작성해 두었던 문서를 기반으로 제작되었습니다.
https://velog.io/@unchapterd/%EA%B5%AC%ED%98%84-Reverse-Proxy-Server
https://github.com/motd-5/motd-backend/blob/main/docs/technique/aws/Nginx%20%2B%20Express%20%EC%82%AC%EC%9A%A9%20%EC%84%A4%EC%A0%95.md
## 1단계 : AWS 설정
### 보안 그룹 생성 : 이름 가제 [project-security-group]
- SSH 22 Anywhere IPv4
- HTTP 80 Anywhere IPv4
- 사용자 정의 TCP/IP 3000 Anywhere IPv4
### EC2 인스턴스 생성 : 이름 가제 [project-server]
1. 보안그룹 선택 : project-security-group
2. SSH 발급 및 저장
3. \*.pem 키 권한 설정 [참고글](https://github.com/unchaptered/hanghae-backend-1/issues/5)
### Node 설치 및 기본설정
```cmd
curl -s https://deb.nodesource.com/setup_16.x | sudo bash
sudo apt update
sudo apt install nodejs
sudo node -v
sudo npm -v
sudo git -v
sudo npm install pm2 -g
sudo npm ls -g
sudo git clone -b submain https://github.com/motd-5/motd-backend project
ls
cd /home/ubuntu/project
sudo npm ci
cd /home/ubuntu/project/src/sequelize
sudo mkdir seeders
sudo mkdir config
cd /home/ubuntu/project/src/sequelize/config
sudo nano config.json
```
-- Ctrl + O > Enter : 저장 -- Ctrl + X : 저장이 완료되었을 때는 바로 나와지고, 그렇지 않을 때는 아래 읽어보면 됨...
#### sequelize/config/config.json
```json
{
"development": {
"username": "root",
"password": "RDS-비밀번호",
"database": "RDS-DB-이름",
"host": "RDS-주소값",
"dialect": "mysql"
},
"test": {
"username": "root",
"password": "RDS-비밀번호",
"database": "database_test",
"host": "RDS-주소값",
"dialect": "mysql"
},
"production": {
"username": "root",
"password": "RDS-비밀번호",
"database": "database_production",
"host": "RDS-주소값",
"dialect": "mysql"
}
}
```
또한 다음의 파일을 만들어 주세요.
```cmd
cd /home/ubuntu/project/src/middlewares/s3
sudo mkdir config
cd /home/ubuntu/project/src/middlewares/s3/config
sudo nano s3.config.json
```
#### middlewares/s3/config/s3.config.json
```json
{
"accessKeyId": "엑세스 키",
"secretAccessKey": "시크릿 키",
"region": "ap-northeast-2"
}
```
최종적으로 sequelize 를 설정해주세요.
```cmd
cd /home/ubuntu/project/src/sequelize
sudo npx sequelize db:drop
sudo npx sequelize db:create
sudo npx sequelize db:migrate
```
준비가 종료되면 다음을 입력해주세요.
```cmd
cd /home/ubuntu/project
npm run dev
pm2 start ./src/index.js
```
## 2단계 : Nginx
```cmd
sudo apt install nginx
cd /etc/nginx/sites-enabled
sudo nano 도메인-주소
```
```default
server {
listen 80;
listen [::]:80;
location / {
proxy_pass http://127.0.0.1:3000;
}
}
```
```cmd
cd /etc/nginx
sudo nano nginx.conf
```
1. `# server_names_hash_bucket_size 64;` 구문을 찾아서 `#` 주석 표시용 문구를 지워주세요
2. `include /etc/nginx/sites-enabled/*;` 구문을 찾아서 `include /etc/nginx/sites-enabled/도메인-주소;` 로 변경해주세요.
| 1.0 | Docs : EC2 인스턴스 셋업 총괄 (Git, Node, Nginx 까지) - ## Nginx + Express 사용 설정
- 작성자 : @unchaptered
- 작성일자 : `2022-08-23`
직전에 작성해 두었던 문서를 기반으로 제작되었습니다.
https://velog.io/@unchapterd/%EA%B5%AC%ED%98%84-Reverse-Proxy-Server
https://github.com/motd-5/motd-backend/blob/main/docs/technique/aws/Nginx%20%2B%20Express%20%EC%82%AC%EC%9A%A9%20%EC%84%A4%EC%A0%95.md
## 1단계 : AWS 설정
### 보안 그룹 생성 : 이름 가제 [project-security-group]
- SSH 22 Anywhere IPv4
- HTTP 80 Anywhere IPv4
- 사용자 정의 TCP/IP 3000 Anywhere IPv4
### EC2 인스턴스 생성 : 이름 가제 [project-server]
1. 보안그룹 선택 : project-security-group
2. SSH 발급 및 저장
3. \*.pem 키 권한 설정 [참고글](https://github.com/unchaptered/hanghae-backend-1/issues/5)
### Node 설치 및 기본설정
```cmd
curl -s https://deb.nodesource.com/setup_16.x | sudo bash
sudo apt update
sudo apt install nodejs
sudo node -v
sudo npm -v
sudo git -v
sudo npm install pm2 -g
sudo npm ls -g
sudo git clone -b submain https://github.com/motd-5/motd-backend project
ls
cd /home/ubuntu/project
sudo npm ci
cd /home/ubuntu/project/src/sequelize
sudo mkdir seeders
sudo mkdir config
cd /home/ubuntu/project/src/sequelize/config
sudo nano config.json
```
-- Ctrl + O > Enter : 저장 -- Ctrl + X : 저장이 완료되었을 때는 바로 나와지고, 그렇지 않을 때는 아래 읽어보면 됨...
#### sequelize/config/config.json
```json
{
"development": {
"username": "root",
"password": "RDS-비밀번호",
"database": "RDS-DB-이름",
"host": "RDS-주소값",
"dialect": "mysql"
},
"test": {
"username": "root",
"password": "RDS-비밀번호",
"database": "database_test",
"host": "RDS-주소값",
"dialect": "mysql"
},
"production": {
"username": "root",
"password": "RDS-비밀번호",
"database": "database_production",
"host": "RDS-주소값",
"dialect": "mysql"
}
}
```
또한 다음의 파일을 만들어 주세요.
```cmd
cd /home/ubuntu/project/src/middlewares/s3
sudo mkdir config
cd /home/ubuntu/project/src/middlewares/s3/config
sudo nano s3.config.json
```
#### middlewares/s3/config/s3.config.json
```json
{
"accessKeyId": "엑세스 키",
"secretAccessKey": "시크릿 키",
"region": "ap-northeast-2"
}
```
최종적으로 sequelize 를 설정해주세요.
```cmd
cd /home/ubuntu/project/src/sequelize
sudo npx sequelize db:drop
sudo npx sequelize db:create
sudo npx sequelize db:migrate
```
준비가 종료되면 다음을 입력해주세요.
```cmd
cd /home/ubuntu/project
npm run dev
pm2 start ./src/index.js
```
## 2단계 : Nginx
```cmd
sudo apt install nginx
cd /etc/nginx/sites-enabled
sudo nano 도메인-주소
```
```default
server {
listen 80;
listen [::]:80;
location / {
proxy_pass http://127.0.0.1:3000;
}
}
```
```cmd
cd /etc/nginx
sudo nano nginx.conf
```
1. `# server_names_hash_bucket_size 64;` 구문을 찾아서 `#` 주석 표시용 문구를 지워주세요
2. `include /etc/nginx/sites-enabled/*;` 구문을 찾아서 `include /etc/nginx/sites-enabled/도메인-주소;` 로 변경해주세요.
| non_priority | docs 인스턴스 셋업 총괄 git node nginx 까지 nginx express 사용 설정 작성자 unchaptered 작성일자 직전에 작성해 두었던 문서를 기반으로 제작되었습니다 aws 설정 보안 그룹 생성 이름 가제 ssh anywhere http anywhere 사용자 정의 tcp ip anywhere 인스턴스 생성 이름 가제 보안그룹 선택 project security group ssh 발급 및 저장 pem 키 권한 설정 node 설치 및 기본설정 cmd curl s sudo bash sudo apt update sudo apt install nodejs sudo node v sudo npm v sudo git v sudo npm install g sudo npm ls g sudo git clone b submain project ls cd home ubuntu project sudo npm ci cd home ubuntu project src sequelize sudo mkdir seeders sudo mkdir config cd home ubuntu project src sequelize config sudo nano config json ctrl o enter 저장 ctrl x 저장이 완료되었을 때는 바로 나와지고 그렇지 않을 때는 아래 읽어보면 됨 sequelize config config json json development username root password rds 비밀번호 database rds db 이름 host rds 주소값 dialect mysql test username root password rds 비밀번호 database database test host rds 주소값 dialect mysql production username root password rds 비밀번호 database database production host rds 주소값 dialect mysql 또한 다음의 파일을 만들어 주세요 cmd cd home ubuntu project src middlewares sudo mkdir config cd home ubuntu project src middlewares config sudo nano config json middlewares config config json json accesskeyid 엑세스 키 secretaccesskey 시크릿 키 region ap northeast 최종적으로 sequelize 를 설정해주세요 cmd cd home ubuntu project src sequelize sudo npx sequelize db drop sudo npx sequelize db create sudo npx sequelize db migrate 준비가 종료되면 다음을 입력해주세요 cmd cd home ubuntu project npm run dev start src index js nginx cmd sudo apt install nginx cd etc nginx sites enabled sudo nano 도메인 주소 default server listen listen location proxy pass cmd cd etc nginx sudo nano nginx conf server names hash bucket size 구문을 찾아서 주석 표시용 문구를 지워주세요 include etc nginx sites enabled 구문을 찾아서 include etc nginx sites enabled 도메인 주소 로 변경해주세요 | 0 |
57,547 | 11,765,176,976 | IssuesEvent | 2020-03-14 16:11:41 | zixuan75/react-project | https://api.github.com/repos/zixuan75/react-project | closed | Add #25 extension | React help React lines of code enhancement good first issue | #25: Clarify code is now obsolete so I've added new tasks.
----------------------------------------------------------------------------------------------
Here are the new tasks:
- [ ] Be nice and friendly to users
- [x] Say hello to the visitors | 1.0 | Add #25 extension - #25: Clarify code is now obsolete so I've added new tasks.
----------------------------------------------------------------------------------------------
Here are the new tasks:
- [ ] Be nice and friendly to users
- [x] Say hello to the visitors | non_priority | add extension clarify code is now obsolete so i ve added new tasks here are the new tasks be nice and friendly to users say hello to the visitors | 0 |
751,139 | 26,230,953,830 | IssuesEvent | 2023-01-05 00:07:03 | brave/brave-browser | https://api.github.com/repos/brave/brave-browser | opened | [Follow up to 27572] App crash when searching on normal tab after private tab | bug crash priority/P1 feature/search QA/Yes regression OS/Android | <!-- Have you searched for similar issues? Before submitting this issue, please check the open issues and add a note before logging a new issue.
PLEASE USE THE TEMPLATE BELOW TO PROVIDE INFORMATION ABOUT THE ISSUE.
INSUFFICIENT INFO WILL GET THE ISSUE CLOSED. IT WILL ONLY BE REOPENED AFTER SUFFICIENT INFO IS PROVIDED-->
## Description <!-- Provide a brief description of the issue -->
App crash when searching on normal tab after private tab
Crash log:
```
--------- beginning of crash
2023-01-04 18:56:46.632 9612-9612/? A/libc: Fatal signal 5 (SIGTRAP), code 1 (TRAP_BRKPT), fault addr 0x75c9b10550 in tid 9612 (browser_nightly), pid 9612 (browser_nightly)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: Build fingerprint: 'samsung/o1quew/o1q:12/SP1A.210812.016/G991U1UES5CVI8:user/release-keys'
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: Revision: '14'
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: ABI: 'arm64'
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: Processor: '6'
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: Timestamp: 2023-01-04 18:56:46.709215332-0500
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: Process uptime: 17s
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: Cmdline: com.brave.browser_nightly
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: pid: 9612, tid: 9612, name: browser_nightly >>> com.brave.browser_nightly <<<
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: uid: 11655
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: signal 5 (SIGTRAP), code 1 (TRAP_BRKPT), fault addr 0x75c9b10550
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: Abort message: '[FATAL:jni_android.cc(315)] Please include Java exception stack in crash report
'
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: x0 0000000000000000 x1 00000075c5c1ca2b x2 ffffffffffffffff x3 ffffffffffffffff
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: x4 0000000000000000 x5 60646b4f1f5c2834 x6 60646b4f1f5c2834 x7 7f7f7f7f7f7f7f7f
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: x8 0000000000000000 x9 0000000000000000 x10 0000000000000001 x11 0000000000000000
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: x12 0000007ff41e9b10 x13 0000000000000051 x14 0000000000000000 x15 0000000034155555
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: x16 00000075cd05cde0 x17 000000795030e2f4 x18 0000000000000000 x19 0000007ff41eb418
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: x20 0000007ff41eb428 x21 00000075cd097000 x22 00000072017e8d00 x23 000000000000013b
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: x24 00000075c5cdc136 x25 0000007975ac2000 x26 000000000000004f x27 00000075cd129000
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: x28 00000002002e8e88 x29 0000007ff41eb3b0
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: lr 00000075c9b10040 sp 0000007ff41eadd0 pc 00000075c9b10550 pst 0000000060001000
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: backtrace:
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #00 pc 000000000426a550 /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #01 pc 00000000042fc744 /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #02 pc 00000000023873d0 /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #03 pc 000000000581c948 /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #04 pc 0000000005815164 /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #05 pc 00000000058155a0 /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #06 pc 0000000005816148 /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #07 pc 00000000071d0788 /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #08 pc 00000000057834ec /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #09 pc 00000000042a4998 /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #10 pc 00000000042b6bbc /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #11 pc 00000000042e8e78 /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #12 pc 00000000042e87b4 /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #13 pc 0000000000018184 /system/lib64/libutils.so (android::Looper::pollInner(int)+916) (BuildId: 748948a5650ad93d18b12eb1d9a51a89)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #14 pc 0000000000017d84 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+116) (BuildId: 748948a5650ad93d18b12eb1d9a51a89)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #15 pc 0000000000159170 /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+48) (BuildId: 33b6cccb8cb818db0b8648d93b8de614)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #16 pc 00000000003fe504 /data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat (art_jni_trampoline+116)
2023-01-04 18:56:46.949 821-821/? E/tombstoned: Tombstone written to: tombstone_23
2023-01-04 18:56:46.951 1105-1105/? E/audit: type=1701 audit(1672876606.948:116122): auid=4294967295 uid=11655 gid=11655 ses=4294967295 subj=u:r:untrusted_app:s0:c119,c262,c512,c768 pid=9612 comm="browser_nightly" exe="/system/bin/app_process64" sig=5 res=1
2023-01-04 18:56:46.970 3128-3209/? E/TaskStackListenerAbstract: onTaskSnapshotChanged called by Binder.getCallingPid() 0 android.app.ITaskStackListener$Stub.onTransact:585 android.os.Binder.execTransactInternal:1220 android.os.Binder.execTransact:1179 <bottom of call stack>
2023-01-04 18:56:46.970 15919-15934/? E/TaskStackListenerAbstract: onTaskSnapshotChanged called by Binder.getCallingPid() 0 android.app.ITaskStackListener$Stub.onTransact:585 android.os.Binder.execTransactInternal:1220 android.os.Binder.execTransact:1179 <bottom of call stack>
2023-01-04 18:56:46.972 3128-5690/? E/TaskStackListenerAbstract: onTaskSnapshotChanged called by Binder.getCallingPid() 0 android.app.ITaskStackListener$Stub.onTransact:585 android.os.Binder.execTransactInternal:1220 android.os.Binder.execTransact:1179 <bottom of call stack>
2023-01-04 18:56:46.973 16062-19046/? E/TaskStackListenerAbstract: onTaskSnapshotChanged called by Binder.getCallingPid() 0 android.app.ITaskStackListener$Stub.onTransact:585 android.os.Binder.execTransactInternal:1220 android.os.Binder.execTransact:1179 <bottom of call stack>
2023-01-04 18:56:46.985 1551-1857/? E/Native_CFMS: nativePerfMgrAddTask Fail tid : 3858 return : -1
2023-01-04 18:56:46.985 1551-1857/? E/Native_CFMS: nativePerfMgrAddTask Fail tid : 16403 return : -1
2023-01-04 18:56:47.020 1551-1857/? E/Native_CFMS: nativePerfMgrRemoveTask Fail tid : 9612 return : -1
2023-01-04 18:56:47.029 1446-1446/? E/BpTransactionCompletedListener: Failed to transact (-32)
2023-01-04 18:56:47.040 3858-3858/? E/libprocessgroup: set_timerslack_ns write failed: Operation not permitted
2023-01-04 18:56:47.064 1446-2571/? E/NativeCustomFrequencyManager: [NativeCFMS] BpCustomFrequencyManager::acquire()
2023-01-04 18:56:47.109 3858-3858/? E/libprocessgroup: set_timerslack_ns write failed: Operation not permitted
2023-01-04 18:56:47.110 4148-4148/? E/pageboostd: Received HALT command code 2
2023-01-04 18:56:47.135 1551-3966/? E/WindowManager: win=Window{93e9844 u0 InputMethod} destroySurfaces: appStopped=true win.mWindowRemovalAllowed=false win.mRemoveOnExit=false win.mViewVisibility=8 caller=com.android.server.wm.WindowManagerService.tryStartExitingAnimation:2970 com.android.server.wm.WindowManagerService.relayoutWindow:2694 com.android.server.wm.Session.relayout:242 android.view.IWindowSession$Stub.onTransact:790 com.android.server.wm.Session.onTransact:176 android.os.Binder.execTransactInternal:1215 android.os.Binder.execTransact:1179
2023-01-04 18:56:47.513 4148-9957/? E/pageboostd: prefetch start : app combravebrowser_nightly
2023-01-04 18:56:47.513 4148-4148/? E/pageboostd: Received Reclaim command code 3, 139MB
2023-01-04 18:56:47.528 1105-1105/? E/audit: type=1400 audit(1672876607.524:116123): avc: denied { search } for pid=4148 comm="pageboostd" name="overlay" dev="dm-6" ino=115 scontext=u:r:pageboostd:s0 tcontext=u:object_r:vendor_overlay_file:s0 tclass=dir permissive=0 SEPF_SM-G991U1_12_0001 audit_filtered
2023-01-04 18:56:47.528 1105-1105/? E/audit: type=1300 audit(1672876607.524:116123): arch=c00000b7 syscall=56 success=no exit=-13 a0=ffffff9c a1=737ce8b0b0 a2=0 a3=0 items=1 ppid=1 pid=4148 auid=4294967295 uid=1000 gid=1000 euid=1000 suid=1000 fsuid=1000 egid=1000 sgid=1000 fsgid=1000 tty=(none) ses=4294967295 comm="pageboostd" exe="/system/bin/pageboostd" subj=u:r:pageboostd:s0 key=(null)
2023-01-04 18:56:47.528 1105-1105/? E/audit: type=1302 audit(1672876607.524:116123): item=0 name="/product/overlay/framework-res__auto_generated_rro_product.apk" nametype=UNKNOWN cap_fp=0 cap_fi=0 cap_fe=0 cap_fver=0 cap_frootid=0
2023-01-04 18:56:47.528 1105-1105/? E/audit: type=1327 audit(1672876607.524:116123): proctitle="/system/bin/pageboostd"
2023-01-04 18:56:47.528 4148-9957/? E/pageboostd: combravebrowser_nightly, amt 53583872 scnt 39 fcnt 85
2023-01-04 18:56:47.528 4148-9957/? E/pageboostd: prefetch end : app combravebrowser_nightly data_amount 53583872
2023-01-04 18:56:47.528 4148-9958/? E/pageboostd: mem prepare start : 139 MB
2023-01-04 18:56:47.580 4148-9958/? E/pageboostd: mem prepare done : 145752064 bytes
2023-01-04 18:56:50.091 1551-21174/? E/TaskPersister: File error accessing recents directory (directory doesn't exist?).
2023-01-04 18:56:50.828 1446-2571/? E/NativeCustomFrequencyManager: [NativeCFMS] BpCustomFrequencyManager::acquire()
2023-01-04 18:56:52.105 1551-2001/? E/libprocessgroup: getpgid(9663) failed: Permission denied
2023-01-04 18:56:52.105 1105-1105/? E/audit: type=1400 audit(1672876612.100:116124): avc: denied { getpgid } for pid=1551 comm="ActivityManager" scontext=u:r:system_server:s0 tcontext=u:r:app_zygote:s0:c512,c768 tclass=process permissive=0 SEPF_SM-G991U1_12_0001 audit_filtered
2023-01-04 18:56:52.105 1105-1105/? E/audit: type=1300 audit(1672876612.100:116124): arch=c00000b7 syscall=155 success=no exit=-13 a0=25bf a1=77a8f15120 a2=1000 a3=ffffffffffffffff items=0 ppid=1139 pid=1551 auid=4294967295 uid=1000 gid=1000 euid=1000 suid=1000 fsuid=1000 egid=1000 sgid=1000 fsgid=1000 tty=(none) ses=4294967295 comm="ActivityManager" exe="/system/bin/app_process64" subj=u:r:system_server:s0 key=(null)
2023-01-04 18:56:52.105 1105-1105/? E/audit: type=1327 audit(1672876612.100:116124): proctitle="system_server"
2023-01-04 18:56:52.105 1105-1105/? E/audit: type=1400 audit(1672876612.100:116125): avc: denied { getpgid } for pid=1551 comm="ActivityManager" scontext=u:r:system_server:s0 tcontext=u:r:app_zygote:s0:c512,c768 tclass=process permissive=0 SEPF_SM-G991U1_12_0001 audit_filtered
2023-01-04 18:56:52.105 1105-1105/? E/audit: type=1300 audit(1672876612.100:116125): arch=c00000b7 syscall=155 success=no exit=-13 a0=25bf a1=0 a2=0 a3=0 items=0 ppid=1139 pid=1551 auid=4294967295 uid=1000 gid=1000 euid=1000 suid=1000 fsuid=1000 egid=1000 sgid=1000 fsgid=1000 tty=(none) ses=4294967295 comm="ActivityManager" exe="/system/bin/app_process64" subj=u:r:system_server:s0 key=(null)
2023-01-04 18:56:52.106 1105-1105/? E/audit: type=1327 audit(1672876612.100:116125): proctitle="system_server"
```
## Steps to reproduce <!-- Please add a series of steps to reproduce the issue -->
1. Open private tab using tab tray
2. Open a new normal tab using tab tray
3. Search something in url box
## Actual result <!-- Please add screenshots if needed -->
Crash when searching
## Expected result
Should not crash
## Issue reproduces how often <!-- [Easily reproduced/Intermittent issue/No steps to reproduce] -->
Easily
## Version/Channel Information:
<!--Does this issue happen on any other channels? Or is it specific to a certain channel?-->
- Can you reproduce this issue with the current Play Store version? No (1.46.146)
- Can you reproduce this issue with the current Play Store Beta version? Yes
- Can you reproduce this issue with the current Play Store Nightly version? Yes
## Device details
- Install type (ARM, x86): ARM
- Device type (Phone, Tablet, Phablet): Samsung Galaxy S21
- Android version: 12
## Brave version
Brave 1.47.161 Chromium: 109.0.5414.61
### Website problems only
- Does the issue resolve itself when disabling Brave Shields?
- Does the issue resolve itself when disabling Brave Rewards?
- Is the issue reproducible on the latest version of Chrome?
### Additional information
<!-- Any additional information, related issues, extra QA steps, configuration or data that might be necessary to reproduce the issue -->
| 1.0 | [Follow up to 27572] App crash when searching on normal tab after private tab - <!-- Have you searched for similar issues? Before submitting this issue, please check the open issues and add a note before logging a new issue.
PLEASE USE THE TEMPLATE BELOW TO PROVIDE INFORMATION ABOUT THE ISSUE.
INSUFFICIENT INFO WILL GET THE ISSUE CLOSED. IT WILL ONLY BE REOPENED AFTER SUFFICIENT INFO IS PROVIDED-->
## Description <!-- Provide a brief description of the issue -->
App crash when searching on normal tab after private tab
Crash log:
```
--------- beginning of crash
2023-01-04 18:56:46.632 9612-9612/? A/libc: Fatal signal 5 (SIGTRAP), code 1 (TRAP_BRKPT), fault addr 0x75c9b10550 in tid 9612 (browser_nightly), pid 9612 (browser_nightly)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: Build fingerprint: 'samsung/o1quew/o1q:12/SP1A.210812.016/G991U1UES5CVI8:user/release-keys'
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: Revision: '14'
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: ABI: 'arm64'
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: Processor: '6'
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: Timestamp: 2023-01-04 18:56:46.709215332-0500
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: Process uptime: 17s
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: Cmdline: com.brave.browser_nightly
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: pid: 9612, tid: 9612, name: browser_nightly >>> com.brave.browser_nightly <<<
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: uid: 11655
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: signal 5 (SIGTRAP), code 1 (TRAP_BRKPT), fault addr 0x75c9b10550
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: Abort message: '[FATAL:jni_android.cc(315)] Please include Java exception stack in crash report
'
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: x0 0000000000000000 x1 00000075c5c1ca2b x2 ffffffffffffffff x3 ffffffffffffffff
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: x4 0000000000000000 x5 60646b4f1f5c2834 x6 60646b4f1f5c2834 x7 7f7f7f7f7f7f7f7f
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: x8 0000000000000000 x9 0000000000000000 x10 0000000000000001 x11 0000000000000000
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: x12 0000007ff41e9b10 x13 0000000000000051 x14 0000000000000000 x15 0000000034155555
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: x16 00000075cd05cde0 x17 000000795030e2f4 x18 0000000000000000 x19 0000007ff41eb418
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: x20 0000007ff41eb428 x21 00000075cd097000 x22 00000072017e8d00 x23 000000000000013b
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: x24 00000075c5cdc136 x25 0000007975ac2000 x26 000000000000004f x27 00000075cd129000
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: x28 00000002002e8e88 x29 0000007ff41eb3b0
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: lr 00000075c9b10040 sp 0000007ff41eadd0 pc 00000075c9b10550 pst 0000000060001000
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: backtrace:
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #00 pc 000000000426a550 /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #01 pc 00000000042fc744 /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #02 pc 00000000023873d0 /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #03 pc 000000000581c948 /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #04 pc 0000000005815164 /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #05 pc 00000000058155a0 /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #06 pc 0000000005816148 /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #07 pc 00000000071d0788 /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #08 pc 00000000057834ec /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #09 pc 00000000042a4998 /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #10 pc 00000000042b6bbc /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #11 pc 00000000042e8e78 /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #12 pc 00000000042e87b4 /data/app/~~DQ55YRj8TDUGCvFosi2vQQ==/com.brave.browser_nightly-HYRy24NtX1S-Ddn_YQsX3A==/base.apk!libmonochrome_64.so (BuildId: 099e4d65b97a86acc7265b5cd08e460fc14896f4)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #13 pc 0000000000018184 /system/lib64/libutils.so (android::Looper::pollInner(int)+916) (BuildId: 748948a5650ad93d18b12eb1d9a51a89)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #14 pc 0000000000017d84 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+116) (BuildId: 748948a5650ad93d18b12eb1d9a51a89)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #15 pc 0000000000159170 /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+48) (BuildId: 33b6cccb8cb818db0b8648d93b8de614)
2023-01-04 18:56:46.931 9920-9920/? A/DEBUG: #16 pc 00000000003fe504 /data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat (art_jni_trampoline+116)
2023-01-04 18:56:46.949 821-821/? E/tombstoned: Tombstone written to: tombstone_23
2023-01-04 18:56:46.951 1105-1105/? E/audit: type=1701 audit(1672876606.948:116122): auid=4294967295 uid=11655 gid=11655 ses=4294967295 subj=u:r:untrusted_app:s0:c119,c262,c512,c768 pid=9612 comm="browser_nightly" exe="/system/bin/app_process64" sig=5 res=1
2023-01-04 18:56:46.970 3128-3209/? E/TaskStackListenerAbstract: onTaskSnapshotChanged called by Binder.getCallingPid() 0 android.app.ITaskStackListener$Stub.onTransact:585 android.os.Binder.execTransactInternal:1220 android.os.Binder.execTransact:1179 <bottom of call stack>
2023-01-04 18:56:46.970 15919-15934/? E/TaskStackListenerAbstract: onTaskSnapshotChanged called by Binder.getCallingPid() 0 android.app.ITaskStackListener$Stub.onTransact:585 android.os.Binder.execTransactInternal:1220 android.os.Binder.execTransact:1179 <bottom of call stack>
2023-01-04 18:56:46.972 3128-5690/? E/TaskStackListenerAbstract: onTaskSnapshotChanged called by Binder.getCallingPid() 0 android.app.ITaskStackListener$Stub.onTransact:585 android.os.Binder.execTransactInternal:1220 android.os.Binder.execTransact:1179 <bottom of call stack>
2023-01-04 18:56:46.973 16062-19046/? E/TaskStackListenerAbstract: onTaskSnapshotChanged called by Binder.getCallingPid() 0 android.app.ITaskStackListener$Stub.onTransact:585 android.os.Binder.execTransactInternal:1220 android.os.Binder.execTransact:1179 <bottom of call stack>
2023-01-04 18:56:46.985 1551-1857/? E/Native_CFMS: nativePerfMgrAddTask Fail tid : 3858 return : -1
2023-01-04 18:56:46.985 1551-1857/? E/Native_CFMS: nativePerfMgrAddTask Fail tid : 16403 return : -1
2023-01-04 18:56:47.020 1551-1857/? E/Native_CFMS: nativePerfMgrRemoveTask Fail tid : 9612 return : -1
2023-01-04 18:56:47.029 1446-1446/? E/BpTransactionCompletedListener: Failed to transact (-32)
2023-01-04 18:56:47.040 3858-3858/? E/libprocessgroup: set_timerslack_ns write failed: Operation not permitted
2023-01-04 18:56:47.064 1446-2571/? E/NativeCustomFrequencyManager: [NativeCFMS] BpCustomFrequencyManager::acquire()
2023-01-04 18:56:47.109 3858-3858/? E/libprocessgroup: set_timerslack_ns write failed: Operation not permitted
2023-01-04 18:56:47.110 4148-4148/? E/pageboostd: Received HALT command code 2
2023-01-04 18:56:47.135 1551-3966/? E/WindowManager: win=Window{93e9844 u0 InputMethod} destroySurfaces: appStopped=true win.mWindowRemovalAllowed=false win.mRemoveOnExit=false win.mViewVisibility=8 caller=com.android.server.wm.WindowManagerService.tryStartExitingAnimation:2970 com.android.server.wm.WindowManagerService.relayoutWindow:2694 com.android.server.wm.Session.relayout:242 android.view.IWindowSession$Stub.onTransact:790 com.android.server.wm.Session.onTransact:176 android.os.Binder.execTransactInternal:1215 android.os.Binder.execTransact:1179
2023-01-04 18:56:47.513 4148-9957/? E/pageboostd: prefetch start : app combravebrowser_nightly
2023-01-04 18:56:47.513 4148-4148/? E/pageboostd: Received Reclaim command code 3, 139MB
2023-01-04 18:56:47.528 1105-1105/? E/audit: type=1400 audit(1672876607.524:116123): avc: denied { search } for pid=4148 comm="pageboostd" name="overlay" dev="dm-6" ino=115 scontext=u:r:pageboostd:s0 tcontext=u:object_r:vendor_overlay_file:s0 tclass=dir permissive=0 SEPF_SM-G991U1_12_0001 audit_filtered
2023-01-04 18:56:47.528 1105-1105/? E/audit: type=1300 audit(1672876607.524:116123): arch=c00000b7 syscall=56 success=no exit=-13 a0=ffffff9c a1=737ce8b0b0 a2=0 a3=0 items=1 ppid=1 pid=4148 auid=4294967295 uid=1000 gid=1000 euid=1000 suid=1000 fsuid=1000 egid=1000 sgid=1000 fsgid=1000 tty=(none) ses=4294967295 comm="pageboostd" exe="/system/bin/pageboostd" subj=u:r:pageboostd:s0 key=(null)
2023-01-04 18:56:47.528 1105-1105/? E/audit: type=1302 audit(1672876607.524:116123): item=0 name="/product/overlay/framework-res__auto_generated_rro_product.apk" nametype=UNKNOWN cap_fp=0 cap_fi=0 cap_fe=0 cap_fver=0 cap_frootid=0
2023-01-04 18:56:47.528 1105-1105/? E/audit: type=1327 audit(1672876607.524:116123): proctitle="/system/bin/pageboostd"
2023-01-04 18:56:47.528 4148-9957/? E/pageboostd: combravebrowser_nightly, amt 53583872 scnt 39 fcnt 85
2023-01-04 18:56:47.528 4148-9957/? E/pageboostd: prefetch end : app combravebrowser_nightly data_amount 53583872
2023-01-04 18:56:47.528 4148-9958/? E/pageboostd: mem prepare start : 139 MB
2023-01-04 18:56:47.580 4148-9958/? E/pageboostd: mem prepare done : 145752064 bytes
2023-01-04 18:56:50.091 1551-21174/? E/TaskPersister: File error accessing recents directory (directory doesn't exist?).
2023-01-04 18:56:50.828 1446-2571/? E/NativeCustomFrequencyManager: [NativeCFMS] BpCustomFrequencyManager::acquire()
2023-01-04 18:56:52.105 1551-2001/? E/libprocessgroup: getpgid(9663) failed: Permission denied
2023-01-04 18:56:52.105 1105-1105/? E/audit: type=1400 audit(1672876612.100:116124): avc: denied { getpgid } for pid=1551 comm="ActivityManager" scontext=u:r:system_server:s0 tcontext=u:r:app_zygote:s0:c512,c768 tclass=process permissive=0 SEPF_SM-G991U1_12_0001 audit_filtered
2023-01-04 18:56:52.105 1105-1105/? E/audit: type=1300 audit(1672876612.100:116124): arch=c00000b7 syscall=155 success=no exit=-13 a0=25bf a1=77a8f15120 a2=1000 a3=ffffffffffffffff items=0 ppid=1139 pid=1551 auid=4294967295 uid=1000 gid=1000 euid=1000 suid=1000 fsuid=1000 egid=1000 sgid=1000 fsgid=1000 tty=(none) ses=4294967295 comm="ActivityManager" exe="/system/bin/app_process64" subj=u:r:system_server:s0 key=(null)
2023-01-04 18:56:52.105 1105-1105/? E/audit: type=1327 audit(1672876612.100:116124): proctitle="system_server"
2023-01-04 18:56:52.105 1105-1105/? E/audit: type=1400 audit(1672876612.100:116125): avc: denied { getpgid } for pid=1551 comm="ActivityManager" scontext=u:r:system_server:s0 tcontext=u:r:app_zygote:s0:c512,c768 tclass=process permissive=0 SEPF_SM-G991U1_12_0001 audit_filtered
2023-01-04 18:56:52.105 1105-1105/? E/audit: type=1300 audit(1672876612.100:116125): arch=c00000b7 syscall=155 success=no exit=-13 a0=25bf a1=0 a2=0 a3=0 items=0 ppid=1139 pid=1551 auid=4294967295 uid=1000 gid=1000 euid=1000 suid=1000 fsuid=1000 egid=1000 sgid=1000 fsgid=1000 tty=(none) ses=4294967295 comm="ActivityManager" exe="/system/bin/app_process64" subj=u:r:system_server:s0 key=(null)
2023-01-04 18:56:52.106 1105-1105/? E/audit: type=1327 audit(1672876612.100:116125): proctitle="system_server"
```
## Steps to reproduce <!-- Please add a series of steps to reproduce the issue -->
1. Open private tab using tab tray
2. Open a new normal tab using tab tray
3. Search something in url box
## Actual result <!-- Please add screenshots if needed -->
Crash when searching
## Expected result
Should not crash
## Issue reproduces how often <!-- [Easily reproduced/Intermittent issue/No steps to reproduce] -->
Easily
## Version/Channel Information:
<!--Does this issue happen on any other channels? Or is it specific to a certain channel?-->
- Can you reproduce this issue with the current Play Store version? No (1.46.146)
- Can you reproduce this issue with the current Play Store Beta version? Yes
- Can you reproduce this issue with the current Play Store Nightly version? Yes
## Device details
- Install type (ARM, x86): ARM
- Device type (Phone, Tablet, Phablet): Samsung Galaxy S21
- Android version: 12
## Brave version
Brave 1.47.161 Chromium: 109.0.5414.61
### Website problems only
- Does the issue resolve itself when disabling Brave Shields?
- Does the issue resolve itself when disabling Brave Rewards?
- Is the issue reproducible on the latest version of Chrome?
### Additional information
<!-- Any additional information, related issues, extra QA steps, configuration or data that might be necessary to reproduce the issue -->
| priority | app crash when searching on normal tab after private tab have you searched for similar issues before submitting this issue please check the open issues and add a note before logging a new issue please use the template below to provide information about the issue insufficient info will get the issue closed it will only be reopened after sufficient info is provided description app crash when searching on normal tab after private tab crash log beginning of crash a libc fatal signal sigtrap code trap brkpt fault addr in tid browser nightly pid browser nightly a debug a debug build fingerprint samsung user release keys a debug revision a debug abi a debug processor a debug timestamp a debug process uptime a debug cmdline com brave browser nightly a debug pid tid name browser nightly com brave browser nightly a debug uid a debug signal sigtrap code trap brkpt fault addr a debug abort message please include java exception stack in crash report a debug ffffffffffffffff ffffffffffffffff a debug a debug a debug a debug a debug a debug a debug a debug lr sp pc pst a debug backtrace a debug pc data app com brave browser nightly ddn base apk libmonochrome so buildid a debug pc data app com brave browser nightly ddn base apk libmonochrome so buildid a debug pc data app com brave browser nightly ddn base apk libmonochrome so buildid a debug pc data app com brave browser nightly ddn base apk libmonochrome so buildid a debug pc data app com brave browser nightly ddn base apk libmonochrome so buildid a debug pc data app com brave browser nightly ddn base apk libmonochrome so buildid a debug pc data app com brave browser nightly ddn base apk libmonochrome so buildid a debug pc data app com brave browser nightly ddn base apk libmonochrome so buildid a debug pc data app com brave browser nightly ddn base apk libmonochrome so buildid a debug pc data app com brave browser nightly ddn base apk libmonochrome so buildid a debug pc data app com brave browser nightly ddn base apk libmonochrome so buildid a debug pc data app com brave browser nightly ddn base apk libmonochrome so buildid a debug pc data app com brave browser nightly ddn base apk libmonochrome so buildid a debug pc system libutils so android looper pollinner int buildid a debug pc system libutils so android looper pollonce int int int void buildid a debug pc system libandroid runtime so android android os messagequeue nativepollonce jnienv jobject long int buildid a debug pc data misc apexdata com android art dalvik cache boot oat art jni trampoline e tombstoned tombstone written to tombstone e audit type audit auid uid gid ses subj u r untrusted app pid comm browser nightly exe system bin app sig res e taskstacklistenerabstract ontasksnapshotchanged called by binder getcallingpid android app itaskstacklistener stub ontransact android os binder exectransactinternal android os binder exectransact e taskstacklistenerabstract ontasksnapshotchanged called by binder getcallingpid android app itaskstacklistener stub ontransact android os binder exectransactinternal android os binder exectransact e taskstacklistenerabstract ontasksnapshotchanged called by binder getcallingpid android app itaskstacklistener stub ontransact android os binder exectransactinternal android os binder exectransact e taskstacklistenerabstract ontasksnapshotchanged called by binder getcallingpid android app itaskstacklistener stub ontransact android os binder exectransactinternal android os binder exectransact e native cfms nativeperfmgraddtask fail tid return e native cfms nativeperfmgraddtask fail tid return e native cfms nativeperfmgrremovetask fail tid return e bptransactioncompletedlistener failed to transact e libprocessgroup set timerslack ns write failed operation not permitted e nativecustomfrequencymanager bpcustomfrequencymanager acquire e libprocessgroup set timerslack ns write failed operation not permitted e pageboostd received halt command code e windowmanager win window inputmethod destroysurfaces appstopped true win mwindowremovalallowed false win mremoveonexit false win mviewvisibility caller com android server wm windowmanagerservice trystartexitinganimation com android server wm windowmanagerservice relayoutwindow com android server wm session relayout android view iwindowsession stub ontransact com android server wm session ontransact android os binder exectransactinternal android os binder exectransact e pageboostd prefetch start app combravebrowser nightly e pageboostd received reclaim command code e audit type audit avc denied search for pid comm pageboostd name overlay dev dm ino scontext u r pageboostd tcontext u object r vendor overlay file tclass dir permissive sepf sm audit filtered e audit type audit arch syscall success no exit items ppid pid auid uid gid euid suid fsuid egid sgid fsgid tty none ses comm pageboostd exe system bin pageboostd subj u r pageboostd key null e audit type audit item name product overlay framework res auto generated rro product apk nametype unknown cap fp cap fi cap fe cap fver cap frootid e audit type audit proctitle system bin pageboostd e pageboostd combravebrowser nightly amt scnt fcnt e pageboostd prefetch end app combravebrowser nightly data amount e pageboostd mem prepare start mb e pageboostd mem prepare done bytes e taskpersister file error accessing recents directory directory doesn t exist e nativecustomfrequencymanager bpcustomfrequencymanager acquire e libprocessgroup getpgid failed permission denied e audit type audit avc denied getpgid for pid comm activitymanager scontext u r system server tcontext u r app zygote tclass process permissive sepf sm audit filtered e audit type audit arch syscall success no exit ffffffffffffffff items ppid pid auid uid gid euid suid fsuid egid sgid fsgid tty none ses comm activitymanager exe system bin app subj u r system server key null e audit type audit proctitle system server e audit type audit avc denied getpgid for pid comm activitymanager scontext u r system server tcontext u r app zygote tclass process permissive sepf sm audit filtered e audit type audit arch syscall success no exit items ppid pid auid uid gid euid suid fsuid egid sgid fsgid tty none ses comm activitymanager exe system bin app subj u r system server key null e audit type audit proctitle system server steps to reproduce open private tab using tab tray open a new normal tab using tab tray search something in url box actual result crash when searching expected result should not crash issue reproduces how often easily version channel information can you reproduce this issue with the current play store version no can you reproduce this issue with the current play store beta version yes can you reproduce this issue with the current play store nightly version yes device details install type arm arm device type phone tablet phablet samsung galaxy android version brave version brave chromium website problems only does the issue resolve itself when disabling brave shields does the issue resolve itself when disabling brave rewards is the issue reproducible on the latest version of chrome additional information | 1 |
651,474 | 21,480,222,621 | IssuesEvent | 2022-04-26 16:59:25 | r-priyam/expecto-patronum | https://api.github.com/repos/r-priyam/expecto-patronum | closed | Commands: reminder | Meta: BugFix Priority: High SEM: Minor Status: WIP | Add `reminder` related commands.
Command to add -
- create
- delete
- clear
- list | 1.0 | Commands: reminder - Add `reminder` related commands.
Command to add -
- create
- delete
- clear
- list | priority | commands reminder add reminder related commands command to add create delete clear list | 1 |
171,099 | 13,218,427,400 | IssuesEvent | 2020-08-17 08:43:30 | remirror/remirror | https://api.github.com/repos/remirror/remirror | opened | Add `@remirror/extension-markdown-block` | needs: sponsor :pleading_face: status: experimental :test_tube: type: feature :sparkles: | ### Description
Add a block node that only displays markdown text content. It is similar to the `CodeBlockExtension` since it uses refractor to automatically decorate matching markdown tokens. However, it will not be wrapped in a code block. Since refractor is supported we should also automatically have support for syntax highlighting within code fences.
Once ready this will be the recommended way to create markdown editors.
```ts
import { DocExtension } from 'remirror/extension/doc';
import { TextExtension } from 'remirror/extension/text';
import { MarkdownBlockExtension } from 'remirror/extension/markdown-block';
import { RemirrorManager } from 'remirror/core';
const manager = RemirrorManager.create(() => [
new MarkdownBlockExtension(),
new DocExtension({ content: 'markdownBlock+' }),
new TextExtension(),
]);
```
Questions to answer:
- [ ] Will this work without being wrapped in a code tag?
- [ ] How should the enter key be handled?
- Should it create a new `markdownBlock` or insert a break tag.
Items to work on.
- [ ] Seek an interested sponsor.
- [ ] Create basic `MarkdownBlockExtension`.
- [ ] Verify it works in the playground.
| 1.0 | Add `@remirror/extension-markdown-block` - ### Description
Add a block node that only displays markdown text content. It is similar to the `CodeBlockExtension` since it uses refractor to automatically decorate matching markdown tokens. However, it will not be wrapped in a code block. Since refractor is supported we should also automatically have support for syntax highlighting within code fences.
Once ready this will be the recommended way to create markdown editors.
```ts
import { DocExtension } from 'remirror/extension/doc';
import { TextExtension } from 'remirror/extension/text';
import { MarkdownBlockExtension } from 'remirror/extension/markdown-block';
import { RemirrorManager } from 'remirror/core';
const manager = RemirrorManager.create(() => [
new MarkdownBlockExtension(),
new DocExtension({ content: 'markdownBlock+' }),
new TextExtension(),
]);
```
Questions to answer:
- [ ] Will this work without being wrapped in a code tag?
- [ ] How should the enter key be handled?
- Should it create a new `markdownBlock` or insert a break tag.
Items to work on.
- [ ] Seek an interested sponsor.
- [ ] Create basic `MarkdownBlockExtension`.
- [ ] Verify it works in the playground.
| non_priority | add remirror extension markdown block description add a block node that only displays markdown text content it is similar to the codeblockextension since it uses refractor to automatically decorate matching markdown tokens however it will not be wrapped in a code block since refractor is supported we should also automatically have support for syntax highlighting within code fences once ready this will be the recommended way to create markdown editors ts import docextension from remirror extension doc import textextension from remirror extension text import markdownblockextension from remirror extension markdown block import remirrormanager from remirror core const manager remirrormanager create new markdownblockextension new docextension content markdownblock new textextension questions to answer will this work without being wrapped in a code tag how should the enter key be handled should it create a new markdownblock or insert a break tag items to work on seek an interested sponsor create basic markdownblockextension verify it works in the playground | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.