Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1 value | created_at stringlengths 19 19 | repo stringlengths 7 112 | repo_url stringlengths 36 141 | action stringclasses 3 values | title stringlengths 2 665 | labels stringlengths 4 554 | body stringlengths 3 235k | index stringclasses 6 values | text_combine stringlengths 96 235k | label stringclasses 2 values | text stringlengths 96 196k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
23,571 | 16,420,730,652 | IssuesEvent | 2021-05-19 12:16:09 | google/site-kit-wp | https://api.github.com/repos/google/site-kit-wp | opened | Tag Manager setup stories are broken | P1 Type: Infrastructure | ## Bug Description
Currently all of our stories for Tag manager setup are broken. I opened #3378 earlier to prevent this in the future but this issue is just about fixing these (and any others we might have right now) which is likely a simple fix.
## Screenshots

---------------
_Do not alter or remove anything below. The following sections will be managed by moderators only._
## Acceptance criteria
* No stories should be broken (i.e. displaying the Storybook red/black error boundary as shown above)
## Implementation Brief
* <!-- One or more bullet points for how to technically resolve the issue. -->
### Test Coverage
* <!-- One or more bullet points for how to implement automated tests to verify the issue is resolved. -->
### Visual Regression Changes
* <!-- One or more bullet points describing how the feature will affect visual regression tests, if applicable. -->
## QA Brief
* <!-- One or more bullet points for how to test that the issue has been resolved. -->
## Changelog entry
* <!-- One sentence summarizing the PR, to be used in the changelog. -->
| 1.0 | Tag Manager setup stories are broken - ## Bug Description
Currently all of our stories for Tag manager setup are broken. I opened #3378 earlier to prevent this in the future but this issue is just about fixing these (and any others we might have right now) which is likely a simple fix.
## Screenshots

---------------
_Do not alter or remove anything below. The following sections will be managed by moderators only._
## Acceptance criteria
* No stories should be broken (i.e. displaying the Storybook red/black error boundary as shown above)
## Implementation Brief
* <!-- One or more bullet points for how to technically resolve the issue. -->
### Test Coverage
* <!-- One or more bullet points for how to implement automated tests to verify the issue is resolved. -->
### Visual Regression Changes
* <!-- One or more bullet points describing how the feature will affect visual regression tests, if applicable. -->
## QA Brief
* <!-- One or more bullet points for how to test that the issue has been resolved. -->
## Changelog entry
* <!-- One sentence summarizing the PR, to be used in the changelog. -->
| infrastructure | tag manager setup stories are broken bug description currently all of our stories for tag manager setup are broken i opened earlier to prevent this in the future but this issue is just about fixing these and any others we might have right now which is likely a simple fix screenshots do not alter or remove anything below the following sections will be managed by moderators only acceptance criteria no stories should be broken i e displaying the storybook red black error boundary as shown above implementation brief test coverage visual regression changes qa brief changelog entry | 1 |
221,193 | 7,374,434,199 | IssuesEvent | 2018-03-13 20:20:53 | knowmetools/km-api | https://api.github.com/repos/knowmetools/km-api | closed | Marking profiles as private has no effect | Priority: Medium Status: Available Type: Bug | ### Bug Report
#### Expected Behavior
Even after #261 is fixed, private profiles have no effect on permissions.
#### Actual Behavior
Profiles should require an additional check for if the requesting user is an admin.
| 1.0 | Marking profiles as private has no effect - ### Bug Report
#### Expected Behavior
Even after #261 is fixed, private profiles have no effect on permissions.
#### Actual Behavior
Profiles should require an additional check for if the requesting user is an admin.
| non_infrastructure | marking profiles as private has no effect bug report expected behavior even after is fixed private profiles have no effect on permissions actual behavior profiles should require an additional check for if the requesting user is an admin | 0 |
32,015 | 26,349,804,017 | IssuesEvent | 2023-01-11 03:04:48 | fosscord/fosscord-server | https://api.github.com/repos/fosscord/fosscord-server | closed | Migrate away from TypeORM | enhancement infrastructure | TypeORM forces too tight a coupling of API and database storage. Hence, we need to migrate away from it. It also structures some of the tables in a suboptimal way, by creating unnecessary indexes and/or junction tables.
- [ ] Seek for alternatives
- [ ] Build experimental branches with alternative DB adapters
- [ ] Write a lossless migration for existing installations
- [ ] Adopt one of the branches | 1.0 | Migrate away from TypeORM - TypeORM forces too tight a coupling of API and database storage. Hence, we need to migrate away from it. It also structures some of the tables in a suboptimal way, by creating unnecessary indexes and/or junction tables.
- [ ] Seek for alternatives
- [ ] Build experimental branches with alternative DB adapters
- [ ] Write a lossless migration for existing installations
- [ ] Adopt one of the branches | infrastructure | migrate away from typeorm typeorm forces too tight a coupling of api and database storage hence we need to migrate away from it it also structures some of the tables in a suboptimal way by creating unnecessary indexes and or junction tables seek for alternatives build experimental branches with alternative db adapters write a lossless migration for existing installations adopt one of the branches | 1 |
18,359 | 12,953,447,389 | IssuesEvent | 2020-07-20 00:37:23 | zinc-collective/convene | https://api.github.com/repos/zinc-collective/convene | closed | Multiple Operators may SSH into Provisioned Convene instances | enhancement infrastructure | ```features/managing-convene.feature
In order to not carry the full weight of supporting Convene
As an Operator
I would like other Operators to be able to manage and maintain Convene instances
@skip-ci
Scenario: Multiple Operators may log in to Provisioned Convene Instances
Given a running Convene instance that was launched from a packer image with the following ssh authorized keys:
| user | key |
| zee | https://github.com/zspencer.keys |
| tomlee | https://github.com/user512.keys |
When I ssh into the running instance using my private key
Then I am logged into the running instance
```
## Technical Notes
Currently, we build the AMI without any SSH keys, and create a public key on AWS when we provision the instance.
Instead, we could update the build script so AMIs built for Convene allow logins from @user512 and @zspencer, ideally using individual usernames and public github keys
Docs:
- [Ansible's Authorized Key Module Docs](https://docs.ansible.com/ansible/latest/modules/authorized_key_module.html)
- [Terraform's Ansible Provisioner Docs](https://www.packer.io/docs/provisioners/ansible) | 1.0 | Multiple Operators may SSH into Provisioned Convene instances - ```features/managing-convene.feature
In order to not carry the full weight of supporting Convene
As an Operator
I would like other Operators to be able to manage and maintain Convene instances
@skip-ci
Scenario: Multiple Operators may log in to Provisioned Convene Instances
Given a running Convene instance that was launched from a packer image with the following ssh authorized keys:
| user | key |
| zee | https://github.com/zspencer.keys |
| tomlee | https://github.com/user512.keys |
When I ssh into the running instance using my private key
Then I am logged into the running instance
```
## Technical Notes
Currently, we build the AMI without any SSH keys, and create a public key on AWS when we provision the instance.
Instead, we could update the build script so AMIs built for Convene allow logins from @user512 and @zspencer, ideally using individual usernames and public github keys
Docs:
- [Ansible's Authorized Key Module Docs](https://docs.ansible.com/ansible/latest/modules/authorized_key_module.html)
- [Terraform's Ansible Provisioner Docs](https://www.packer.io/docs/provisioners/ansible) | infrastructure | multiple operators may ssh into provisioned convene instances features managing convene feature in order to not carry the full weight of supporting convene as an operator i would like other operators to be able to manage and maintain convene instances skip ci scenario multiple operators may log in to provisioned convene instances given a running convene instance that was launched from a packer image with the following ssh authorized keys user key zee tomlee when i ssh into the running instance using my private key then i am logged into the running instance technical notes currently we build the ami without any ssh keys and create a public key on aws when we provision the instance instead we could update the build script so amis built for convene allow logins from and zspencer ideally using individual usernames and public github keys docs | 1 |
1,230 | 3,088,208,723 | IssuesEvent | 2015-08-25 15:32:55 | dotnet/wcf | https://api.github.com/repos/dotnet/wcf | closed | Enable Bridge to handle cert management rather than CMD scripts | Infrastructure test bug | Right now our build scripts install and uninstall certs to allow tests to run, but this does not work well with other scenarios (F5, remote Bridge, etc.). Change this so that if certs are handled like Bridge IResources that can be PUT. And the Bridge can uninstall them when it exits. This probably also requires a version of 'endureBridge' that installs them locally when the Bridge is remote. | 1.0 | Enable Bridge to handle cert management rather than CMD scripts - Right now our build scripts install and uninstall certs to allow tests to run, but this does not work well with other scenarios (F5, remote Bridge, etc.). Change this so that if certs are handled like Bridge IResources that can be PUT. And the Bridge can uninstall them when it exits. This probably also requires a version of 'endureBridge' that installs them locally when the Bridge is remote. | infrastructure | enable bridge to handle cert management rather than cmd scripts right now our build scripts install and uninstall certs to allow tests to run but this does not work well with other scenarios remote bridge etc change this so that if certs are handled like bridge iresources that can be put and the bridge can uninstall them when it exits this probably also requires a version of endurebridge that installs them locally when the bridge is remote | 1 |
6,464 | 6,437,715,721 | IssuesEvent | 2017-08-11 00:24:16 | LLNL/maestrowf | https://api.github.com/repos/LLNL/maestrowf | opened | The conductor is not robust when forced to terminate abnormally | High Priority Infrastructure | It's the case where the conductor fails in execution due to unexpected issues (system crash or file permission errors due to unexpected file system issues). When the conductor crashes, the user currently must manually restart the study by pointing the conductor to the pkl file in the output directory. If done soon enough after a crash, a scheduler most likely still contains job states and the conductor can resume.
However, in the usual case -- the conductor crashes without the user's knowledge. The scheduler usually loses the state of the jobs by the time the conductor is restarted meaning that the ExecutionGraph doesn't recover because it cannot find the states of jobs that we previously running. The best case is that the jobs are long running and are still being managed by the scheduler. The worst case is that jobs have finished and the state is no longer kept.
The ExecutionGraph needs a more graceful way to handle these conditions -- there are a couple of options here:
* If a step in the graph is detected to have been running and the job isn't detected -- restart the simulation from scratch.
* If a step was pending -- restart it from scratch.
* If a step had failed -- either consider it failed (make sure all dependent steps are marked as such) OR attempt to restart the step from scratch.
* Otherwise, treat the step normally. | 1.0 | The conductor is not robust when forced to terminate abnormally - It's the case where the conductor fails in execution due to unexpected issues (system crash or file permission errors due to unexpected file system issues). When the conductor crashes, the user currently must manually restart the study by pointing the conductor to the pkl file in the output directory. If done soon enough after a crash, a scheduler most likely still contains job states and the conductor can resume.
However, in the usual case -- the conductor crashes without the user's knowledge. The scheduler usually loses the state of the jobs by the time the conductor is restarted meaning that the ExecutionGraph doesn't recover because it cannot find the states of jobs that we previously running. The best case is that the jobs are long running and are still being managed by the scheduler. The worst case is that jobs have finished and the state is no longer kept.
The ExecutionGraph needs a more graceful way to handle these conditions -- there are a couple of options here:
* If a step in the graph is detected to have been running and the job isn't detected -- restart the simulation from scratch.
* If a step was pending -- restart it from scratch.
* If a step had failed -- either consider it failed (make sure all dependent steps are marked as such) OR attempt to restart the step from scratch.
* Otherwise, treat the step normally. | infrastructure | the conductor is not robust when forced to terminate abnormally it s the case where the conductor fails in execution due to unexpected issues system crash or file permission errors due to unexpected file system issues when the conductor crashes the user currently must manually restart the study by pointing the conductor to the pkl file in the output directory if done soon enough after a crash a scheduler most likely still contains job states and the conductor can resume however in the usual case the conductor crashes without the user s knowledge the scheduler usually loses the state of the jobs by the time the conductor is restarted meaning that the executiongraph doesn t recover because it cannot find the states of jobs that we previously running the best case is that the jobs are long running and are still being managed by the scheduler the worst case is that jobs have finished and the state is no longer kept the executiongraph needs a more graceful way to handle these conditions there are a couple of options here if a step in the graph is detected to have been running and the job isn t detected restart the simulation from scratch if a step was pending restart it from scratch if a step had failed either consider it failed make sure all dependent steps are marked as such or attempt to restart the step from scratch otherwise treat the step normally | 1 |
25,113 | 18,109,450,896 | IssuesEvent | 2021-09-23 00:23:06 | dotnet/installer | https://api.github.com/repos/dotnet/installer | opened | Build failed: Validate-DotNet/main real signed, installer, .NET 6.0.1xx SDK RC 2, validation-installer-.NET 6.0.1xx SDK RC 2 #installer-110409-.NET6.0.1xxSDKRC2 | Area-Infrastructure | Build [#installer-110409-.NET6.0.1xxSDKRC2](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_build/results?buildId=1379344) failed
## :x: : internal / Validate-DotNet failed
### Summary
**Finished** - Thu, 23 Sep 2021 00:22:43 GMT
**Duration** - 75 minutes
**Requested for** - DotNet Bot
**Reason** - manual
### Details
#### Signing Ring
- :x: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/1379344/logs/100) - (NETCORE_ENGINEERING_TELEMETRY=ReleaseStaging-Signing) Error occurred when executing SignTool.
- :x: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/1379344/logs/100) - PowerShell exited with code '1'.
### Changes
- [c9813550](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_git/c02a7e43-a426-455b-bba9-335409c459ba/commit/c9813550b5ee9e6bb427505f851a8a95b03ad3de) - Michelle McDaniel - Merged PR 18305: Add some very basic coherency validation
- [ed419caf](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_git/c02a7e43-a426-455b-bba9-335409c459ba/commit/ed419cafb679672d856b2bff1fe62d3bd4679090) - Michelle McDaniel - Merged PR 18167: Repo propagation should handle RC releases similarly to preview releases
| 1.0 | Build failed: Validate-DotNet/main real signed, installer, .NET 6.0.1xx SDK RC 2, validation-installer-.NET 6.0.1xx SDK RC 2 #installer-110409-.NET6.0.1xxSDKRC2 - Build [#installer-110409-.NET6.0.1xxSDKRC2](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_build/results?buildId=1379344) failed
## :x: : internal / Validate-DotNet failed
### Summary
**Finished** - Thu, 23 Sep 2021 00:22:43 GMT
**Duration** - 75 minutes
**Requested for** - DotNet Bot
**Reason** - manual
### Details
#### Signing Ring
- :x: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/1379344/logs/100) - (NETCORE_ENGINEERING_TELEMETRY=ReleaseStaging-Signing) Error occurred when executing SignTool.
- :x: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/1379344/logs/100) - PowerShell exited with code '1'.
### Changes
- [c9813550](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_git/c02a7e43-a426-455b-bba9-335409c459ba/commit/c9813550b5ee9e6bb427505f851a8a95b03ad3de) - Michelle McDaniel - Merged PR 18305: Add some very basic coherency validation
- [ed419caf](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_git/c02a7e43-a426-455b-bba9-335409c459ba/commit/ed419cafb679672d856b2bff1fe62d3bd4679090) - Michelle McDaniel - Merged PR 18167: Repo propagation should handle RC releases similarly to preview releases
| infrastructure | build failed validate dotnet main real signed installer net sdk rc validation installer net sdk rc installer build failed x internal validate dotnet failed summary finished thu sep gmt duration minutes requested for dotnet bot reason manual details signing ring x netcore engineering telemetry releasestaging signing error occurred when executing signtool x powershell exited with code changes michelle mcdaniel merged pr add some very basic coherency validation michelle mcdaniel merged pr repo propagation should handle rc releases similarly to preview releases | 1 |
25,771 | 19,142,731,673 | IssuesEvent | 2021-12-02 01:59:02 | deneb-viz/deneb | https://api.github.com/repos/deneb-viz/deneb | closed | Replace Redux Store with More Lightweight State Management | performance infrastructure | Related to items in #135 - the Redux store can start to become quite a burden on perf, particularly if large(ish) datasets are used. We can certainly work with a more lightweight state management framework than this, and initial tests with [Zustand](https://github.com/pmndrs/zustand) and a forked version have been particularly encouraging.
This will require us to move the hotkey management into a more appropriate location. We fragmented this in 3e862c2, which perhaps wasn't the best choice in hindsight. | 1.0 | Replace Redux Store with More Lightweight State Management - Related to items in #135 - the Redux store can start to become quite a burden on perf, particularly if large(ish) datasets are used. We can certainly work with a more lightweight state management framework than this, and initial tests with [Zustand](https://github.com/pmndrs/zustand) and a forked version have been particularly encouraging.
This will require us to move the hotkey management into a more appropriate location. We fragmented this in 3e862c2, which perhaps wasn't the best choice in hindsight. | infrastructure | replace redux store with more lightweight state management related to items in the redux store can start to become quite a burden on perf particularly if large ish datasets are used we can certainly work with a more lightweight state management framework than this and initial tests with and a forked version have been particularly encouraging this will require us to move the hotkey management into a more appropriate location we fragmented this in which perhaps wasn t the best choice in hindsight | 1 |
21,512 | 14,610,685,551 | IssuesEvent | 2020-12-22 01:06:51 | MrDogeBro/content_filter | https://api.github.com/repos/MrDogeBro/content_filter | closed | Comply with PEP8 standards | type/infrastructure | Update the module and its functions to comply with the PEP8 standards.
### Features
* Update naming conventions
* Update imports
* Update anything else non PEP8 complaint | 1.0 | Comply with PEP8 standards - Update the module and its functions to comply with the PEP8 standards.
### Features
* Update naming conventions
* Update imports
* Update anything else non PEP8 complaint | infrastructure | comply with standards update the module and its functions to comply with the standards features update naming conventions update imports update anything else non complaint | 1 |
165,072 | 20,574,131,500 | IssuesEvent | 2022-03-04 01:23:39 | 4k4xs4pH1r3/metasploit-framework | https://api.github.com/repos/4k4xs4pH1r3/metasploit-framework | opened | WS-2022-0089 (High) detected in nokogiri-1.12.5.gem | security vulnerability | ## WS-2022-0089 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>nokogiri-1.12.5.gem</b></p></summary>
<p>Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby. It provides a
sensible, easy-to-understand API for reading, writing, modifying, and querying documents. It is
fast and standards-compliant by relying on native parsers like libxml2 (C) and xerces (Java).
</p>
<p>Library home page: <a href="https://rubygems.org/gems/nokogiri-1.12.5.gem">https://rubygems.org/gems/nokogiri-1.12.5.gem</a></p>
<p>
Dependency Hierarchy:
- factory_bot_rails-6.2.0.gem (Root Library)
- railties-6.1.4.1.gem
- actionpack-6.1.4.1.gem
- rails-dom-testing-2.0.3.gem
- :x: **nokogiri-1.12.5.gem** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Nokogiri before version 1.13.2 is vulnerable.
<p>Publish Date: 2022-03-01
<p>URL: <a href=https://github.com/sparklemotion/nokogiri/commit/472913378794b8cae21751b0777205e7c0606a95>WS-2022-0089</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/sparklemotion/nokogiri/security/advisories/GHSA-fq42-c5rg-92c2">https://github.com/sparklemotion/nokogiri/security/advisories/GHSA-fq42-c5rg-92c2</a></p>
<p>Release Date: 2022-03-01</p>
<p>Fix Resolution: nokogiri - v1.13.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 | WS-2022-0089 (High) detected in nokogiri-1.12.5.gem - ## WS-2022-0089 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>nokogiri-1.12.5.gem</b></p></summary>
<p>Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby. It provides a
sensible, easy-to-understand API for reading, writing, modifying, and querying documents. It is
fast and standards-compliant by relying on native parsers like libxml2 (C) and xerces (Java).
</p>
<p>Library home page: <a href="https://rubygems.org/gems/nokogiri-1.12.5.gem">https://rubygems.org/gems/nokogiri-1.12.5.gem</a></p>
<p>
Dependency Hierarchy:
- factory_bot_rails-6.2.0.gem (Root Library)
- railties-6.1.4.1.gem
- actionpack-6.1.4.1.gem
- rails-dom-testing-2.0.3.gem
- :x: **nokogiri-1.12.5.gem** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Nokogiri before version 1.13.2 is vulnerable.
<p>Publish Date: 2022-03-01
<p>URL: <a href=https://github.com/sparklemotion/nokogiri/commit/472913378794b8cae21751b0777205e7c0606a95>WS-2022-0089</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/sparklemotion/nokogiri/security/advisories/GHSA-fq42-c5rg-92c2">https://github.com/sparklemotion/nokogiri/security/advisories/GHSA-fq42-c5rg-92c2</a></p>
<p>Release Date: 2022-03-01</p>
<p>Fix Resolution: nokogiri - v1.13.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_infrastructure | ws high detected in nokogiri gem ws high severity vulnerability vulnerable library nokogiri gem nokogiri 鋸 makes it easy and painless to work with xml and html from ruby it provides a sensible easy to understand api for reading writing modifying and querying documents it is fast and standards compliant by relying on native parsers like c and xerces java library home page a href dependency hierarchy factory bot rails gem root library railties gem actionpack gem rails dom testing gem x nokogiri gem vulnerable library found in base branch master vulnerability details nokogiri before version is vulnerable publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution nokogiri step up your open source security game with whitesource | 0 |
10,779 | 8,718,523,290 | IssuesEvent | 2018-12-07 20:44:25 | RITlug/tasks | https://api.github.com/repos/RITlug/tasks | opened | Look at moving all infrastructure-related issues to RITlug/Infrastructure | infrastructure priority:med | It may be a good idea to look at consolidating all issues related to the RITlug infrastructure to the [RITlug Infrastructure](https://github.com/RITlug/infrastructure) repository.
That way, we can get good use out of the repo, and all infra-related issues can be hosted in one central location. | 1.0 | Look at moving all infrastructure-related issues to RITlug/Infrastructure - It may be a good idea to look at consolidating all issues related to the RITlug infrastructure to the [RITlug Infrastructure](https://github.com/RITlug/infrastructure) repository.
That way, we can get good use out of the repo, and all infra-related issues can be hosted in one central location. | infrastructure | look at moving all infrastructure related issues to ritlug infrastructure it may be a good idea to look at consolidating all issues related to the ritlug infrastructure to the repository that way we can get good use out of the repo and all infra related issues can be hosted in one central location | 1 |
17,620 | 12,484,992,043 | IssuesEvent | 2020-05-30 17:25:53 | badoo/Reaktive | https://api.github.com/repos/badoo/Reaktive | closed | Internal stuff is included into binary compatibility files for coroutines-interop module | Infrastructure bug | And maybe for some other modules? | 1.0 | Internal stuff is included into binary compatibility files for coroutines-interop module - And maybe for some other modules? | infrastructure | internal stuff is included into binary compatibility files for coroutines interop module and maybe for some other modules | 1 |
62,503 | 26,023,095,177 | IssuesEvent | 2022-12-21 14:15:36 | ubtue/tuefind | https://api.github.com/repos/ubtue/tuefind | closed | Upload request permission | ready for testing publication service | Es sollte verhindert werden, dass man einen zweiten request absetzt, wenn man schon seine Person authorisiert hat.
Momentan ist das wohl noch möglich, obwohl zwischendurch eine Fehlermeldung kommt. Habe das bei folgendem Autorensatz ausprobiert:
<img width="831" alt="Bildschirmfoto 2022-05-16 um 21 55 31" src="https://user-images.githubusercontent.com/14169098/168672342-03146ab1-052b-4fcc-8925-0d0e62daaf20.png">
das füht dann zu folgender Fehlermeldung:
<img width="676" alt="Bildschirmfoto 2022-05-16 um 21 55 44" src="https://user-images.githubusercontent.com/14169098/168672428-cd5f8471-9fb9-4bc8-b1ea-a23d9ef8d8e6.png">
Schlussendlich wird einem aber das angezeigt:
<img width="824" alt="Bildschirmfoto 2022-05-16 um 21 55 58" src="https://user-images.githubusercontent.com/14169098/168672539-5d07176c-f7e6-4899-8ea2-4b591303b568.png">
Eine Mail ist bei mir aber nicht angekommen | 1.0 | Upload request permission - Es sollte verhindert werden, dass man einen zweiten request absetzt, wenn man schon seine Person authorisiert hat.
Momentan ist das wohl noch möglich, obwohl zwischendurch eine Fehlermeldung kommt. Habe das bei folgendem Autorensatz ausprobiert:
<img width="831" alt="Bildschirmfoto 2022-05-16 um 21 55 31" src="https://user-images.githubusercontent.com/14169098/168672342-03146ab1-052b-4fcc-8925-0d0e62daaf20.png">
das füht dann zu folgender Fehlermeldung:
<img width="676" alt="Bildschirmfoto 2022-05-16 um 21 55 44" src="https://user-images.githubusercontent.com/14169098/168672428-cd5f8471-9fb9-4bc8-b1ea-a23d9ef8d8e6.png">
Schlussendlich wird einem aber das angezeigt:
<img width="824" alt="Bildschirmfoto 2022-05-16 um 21 55 58" src="https://user-images.githubusercontent.com/14169098/168672539-5d07176c-f7e6-4899-8ea2-4b591303b568.png">
Eine Mail ist bei mir aber nicht angekommen | non_infrastructure | upload request permission es sollte verhindert werden dass man einen zweiten request absetzt wenn man schon seine person authorisiert hat momentan ist das wohl noch möglich obwohl zwischendurch eine fehlermeldung kommt habe das bei folgendem autorensatz ausprobiert img width alt bildschirmfoto um src das füht dann zu folgender fehlermeldung img width alt bildschirmfoto um src schlussendlich wird einem aber das angezeigt img width alt bildschirmfoto um src eine mail ist bei mir aber nicht angekommen | 0 |
214,816 | 7,277,059,956 | IssuesEvent | 2018-02-21 18:13:53 | NuGet/Home | https://api.github.com/repos/NuGet/Home | opened | Ensure NugetLockService doesn't deadlock waiting for the UI thread | Area: Perf Area:VS.Client NuGet Visual Studio UI Priority:0 Type:Bug | NuGetLockService should not require the UI thread. This makes it have a possible deadlock if anything inside the lock that needs the UI thread goes to another thread and when trying to resume, the resource is blocked by a thread waiting on the lock.
The code from `EnsureNuGetAndVsProjectAdapterCacheAsync` needs to be refactored to make sure the code is only running the necessary processes inside of the lock and have nothing that explicit needs the UI thread if possible.
| 1.0 | Ensure NugetLockService doesn't deadlock waiting for the UI thread - NuGetLockService should not require the UI thread. This makes it have a possible deadlock if anything inside the lock that needs the UI thread goes to another thread and when trying to resume, the resource is blocked by a thread waiting on the lock.
The code from `EnsureNuGetAndVsProjectAdapterCacheAsync` needs to be refactored to make sure the code is only running the necessary processes inside of the lock and have nothing that explicit needs the UI thread if possible.
| non_infrastructure | ensure nugetlockservice doesn t deadlock waiting for the ui thread nugetlockservice should not require the ui thread this makes it have a possible deadlock if anything inside the lock that needs the ui thread goes to another thread and when trying to resume the resource is blocked by a thread waiting on the lock the code from ensurenugetandvsprojectadaptercacheasync needs to be refactored to make sure the code is only running the necessary processes inside of the lock and have nothing that explicit needs the ui thread if possible | 0 |
9,325 | 7,920,276,124 | IssuesEvent | 2018-07-04 22:42:50 | arikrupnik/the-heir | https://api.github.com/repos/arikrupnik/the-heir | closed | Continuous Delivery | Infrastructure | It is desirable to compile binaries (PDFs now, video going forward) on every commit. Right now, only the sources are available online; we must email PDFs to people outside the project who cannot build their own. (CD: continuous delivery)
Additionally, it is desirable to run validity checks (e.g. spellcheck) on every commit. (CI: continuous integration) | 1.0 | Continuous Delivery - It is desirable to compile binaries (PDFs now, video going forward) on every commit. Right now, only the sources are available online; we must email PDFs to people outside the project who cannot build their own. (CD: continuous delivery)
Additionally, it is desirable to run validity checks (e.g. spellcheck) on every commit. (CI: continuous integration) | infrastructure | continuous delivery it is desirable to compile binaries pdfs now video going forward on every commit right now only the sources are available online we must email pdfs to people outside the project who cannot build their own cd continuous delivery additionally it is desirable to run validity checks e g spellcheck on every commit ci continuous integration | 1 |
125,253 | 17,836,012,030 | IssuesEvent | 2021-09-03 01:14:38 | ThibautCas/ThibautCastelain_5_04012021 | https://api.github.com/repos/ThibautCas/ThibautCastelain_5_04012021 | opened | CVE-2021-23438 (Medium) detected in mpath-0.8.1.tgz | security vulnerability | ## CVE-2021-23438 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>mpath-0.8.1.tgz</b></p></summary>
<p>{G,S}et object values using MongoDB-like path notation</p>
<p>Library home page: <a href="https://registry.npmjs.org/mpath/-/mpath-0.8.1.tgz">https://registry.npmjs.org/mpath/-/mpath-0.8.1.tgz</a></p>
<p>Path to dependency file: ThibautCastelain_5_04012021/package.json</p>
<p>Path to vulnerable library: ThibautCastelain_5_04012021/node_modules/mpath/package.json</p>
<p>
Dependency Hierarchy:
- mongoose-5.11.9.tgz (Root Library)
- :x: **mpath-0.8.1.tgz** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
This affects the package mpath before 0.8.4. A type confusion vulnerability can lead to a bypass of CVE-2018-16490. In particular, the condition ignoreProperties.indexOf(parts[i]) !== -1 returns -1 if parts[i] is ['__proto__']. This is because the method that has been called if the input is an array is Array.prototype.indexOf() and not String.prototype.indexOf(). They behave differently depending on the type of the input.
<p>Publish Date: 2021-09-01
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23438>CVE-2021-23438</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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23438">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23438</a></p>
<p>Release Date: 2021-09-01</p>
<p>Fix Resolution: mpath - 0.8.4</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-2021-23438 (Medium) detected in mpath-0.8.1.tgz - ## CVE-2021-23438 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>mpath-0.8.1.tgz</b></p></summary>
<p>{G,S}et object values using MongoDB-like path notation</p>
<p>Library home page: <a href="https://registry.npmjs.org/mpath/-/mpath-0.8.1.tgz">https://registry.npmjs.org/mpath/-/mpath-0.8.1.tgz</a></p>
<p>Path to dependency file: ThibautCastelain_5_04012021/package.json</p>
<p>Path to vulnerable library: ThibautCastelain_5_04012021/node_modules/mpath/package.json</p>
<p>
Dependency Hierarchy:
- mongoose-5.11.9.tgz (Root Library)
- :x: **mpath-0.8.1.tgz** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
This affects the package mpath before 0.8.4. A type confusion vulnerability can lead to a bypass of CVE-2018-16490. In particular, the condition ignoreProperties.indexOf(parts[i]) !== -1 returns -1 if parts[i] is ['__proto__']. This is because the method that has been called if the input is an array is Array.prototype.indexOf() and not String.prototype.indexOf(). They behave differently depending on the type of the input.
<p>Publish Date: 2021-09-01
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23438>CVE-2021-23438</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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23438">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23438</a></p>
<p>Release Date: 2021-09-01</p>
<p>Fix Resolution: mpath - 0.8.4</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_infrastructure | cve medium detected in mpath tgz cve medium severity vulnerability vulnerable library mpath tgz g s et object values using mongodb like path notation library home page a href path to dependency file thibautcastelain package json path to vulnerable library thibautcastelain node modules mpath package json dependency hierarchy mongoose tgz root library x mpath tgz vulnerable library found in base branch master vulnerability details this affects the package mpath before a type confusion vulnerability can lead to a bypass of cve in particular the condition ignoreproperties indexof parts returns if parts is this is because the method that has been called if the input is an array is array prototype indexof and not string prototype indexof they behave differently depending on the type of the input 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 mpath step up your open source security game with whitesource | 0 |
226,017 | 17,935,013,990 | IssuesEvent | 2021-09-10 14:18:46 | ValveSoftware/steam-for-linux | https://api.github.com/repos/ValveSoftware/steam-for-linux | closed | Steam is ~~trying to redownload~~ UNINSTALLS certain games since proton-4.2.3 | Steam client Need Retest Proton | This happens on ubuntu_18.04 and manjaro too.
Sometimes, when I validate the game files the issue gets resolved for certain games. | 1.0 | Steam is ~~trying to redownload~~ UNINSTALLS certain games since proton-4.2.3 - This happens on ubuntu_18.04 and manjaro too.
Sometimes, when I validate the game files the issue gets resolved for certain games. | non_infrastructure | steam is trying to redownload uninstalls certain games since proton this happens on ubuntu and manjaro too sometimes when i validate the game files the issue gets resolved for certain games | 0 |
49,013 | 13,435,425,384 | IssuesEvent | 2020-09-07 12:55:28 | jgeraigery/build-your-own-radar | https://api.github.com/repos/jgeraigery/build-your-own-radar | opened | CVE-2020-7656 (Medium) detected in jquery-1.7.1.min.js | security vulnerability | ## CVE-2020-7656 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jquery-1.7.1.min.js</b></p></summary>
<p>JavaScript library for DOM operations</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.7.1/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.7.1/jquery.min.js</a></p>
<p>Path to dependency file: /tmp/ws-scm/build-your-own-radar/node_modules/vm-browserify/example/run/index.html</p>
<p>Path to vulnerable library: /build-your-own-radar/node_modules/vm-browserify/example/run/index.html</p>
<p>
Dependency Hierarchy:
- :x: **jquery-1.7.1.min.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/jgeraigery/build-your-own-radar/commit/5b494897963ed9e0f6812a2c57bf72a061bb2792">5b494897963ed9e0f6812a2c57bf72a061bb2792</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
jquery prior to 1.9.0 allows Cross-site Scripting attacks via the load method. The load method fails to recognize and remove "<script>" HTML tags that contain a whitespace character, i.e: "</script >", which results in the enclosed script logic to be executed.
<p>Publish Date: 2020-05-19
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7656>CVE-2020-7656</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/rails/jquery-rails/commit/8f601cbfa08749ee5bbd2bffb6e509db9d753568">https://github.com/rails/jquery-rails/commit/8f601cbfa08749ee5bbd2bffb6e509db9d753568</a></p>
<p>Release Date: 2020-05-19</p>
<p>Fix Resolution: jquery-rails - 2.2.0</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"JavaScript","packageName":"jquery","packageVersion":"1.7.1","isTransitiveDependency":false,"dependencyTree":"jquery:1.7.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"jquery-rails - 2.2.0"}],"vulnerabilityIdentifier":"CVE-2020-7656","vulnerabilityDetails":"jquery prior to 1.9.0 allows Cross-site Scripting attacks via the load method. The load method fails to recognize and remove \"\u003cscript\u003e\" HTML tags that contain a whitespace character, i.e: \"\u003c/script \u003e\", which results in the enclosed script logic to be executed.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7656","cvss3Severity":"medium","cvss3Score":"6.1","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Changed","C":"Low","UI":"Required","AV":"Network","I":"Low"},"extraData":{}}</REMEDIATE> --> | True | CVE-2020-7656 (Medium) detected in jquery-1.7.1.min.js - ## CVE-2020-7656 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jquery-1.7.1.min.js</b></p></summary>
<p>JavaScript library for DOM operations</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.7.1/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.7.1/jquery.min.js</a></p>
<p>Path to dependency file: /tmp/ws-scm/build-your-own-radar/node_modules/vm-browserify/example/run/index.html</p>
<p>Path to vulnerable library: /build-your-own-radar/node_modules/vm-browserify/example/run/index.html</p>
<p>
Dependency Hierarchy:
- :x: **jquery-1.7.1.min.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/jgeraigery/build-your-own-radar/commit/5b494897963ed9e0f6812a2c57bf72a061bb2792">5b494897963ed9e0f6812a2c57bf72a061bb2792</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
jquery prior to 1.9.0 allows Cross-site Scripting attacks via the load method. The load method fails to recognize and remove "<script>" HTML tags that contain a whitespace character, i.e: "</script >", which results in the enclosed script logic to be executed.
<p>Publish Date: 2020-05-19
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7656>CVE-2020-7656</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/rails/jquery-rails/commit/8f601cbfa08749ee5bbd2bffb6e509db9d753568">https://github.com/rails/jquery-rails/commit/8f601cbfa08749ee5bbd2bffb6e509db9d753568</a></p>
<p>Release Date: 2020-05-19</p>
<p>Fix Resolution: jquery-rails - 2.2.0</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"JavaScript","packageName":"jquery","packageVersion":"1.7.1","isTransitiveDependency":false,"dependencyTree":"jquery:1.7.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"jquery-rails - 2.2.0"}],"vulnerabilityIdentifier":"CVE-2020-7656","vulnerabilityDetails":"jquery prior to 1.9.0 allows Cross-site Scripting attacks via the load method. The load method fails to recognize and remove \"\u003cscript\u003e\" HTML tags that contain a whitespace character, i.e: \"\u003c/script \u003e\", which results in the enclosed script logic to be executed.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7656","cvss3Severity":"medium","cvss3Score":"6.1","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Changed","C":"Low","UI":"Required","AV":"Network","I":"Low"},"extraData":{}}</REMEDIATE> --> | non_infrastructure | cve medium detected in jquery min js cve medium severity vulnerability vulnerable library jquery min js javascript library for dom operations library home page a href path to dependency file tmp ws scm build your own radar node modules vm browserify example run index html path to vulnerable library build your own radar node modules vm browserify example run index html dependency hierarchy x jquery min js vulnerable library found in head commit a href vulnerability details jquery prior to allows cross site scripting attacks via the load method the load method fails to recognize and remove html tags that contain a whitespace character i e which results in the enclosed script logic to be executed publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution jquery rails isopenpronvulnerability true ispackagebased true isdefaultbranch true packages vulnerabilityidentifier cve vulnerabilitydetails jquery prior to allows cross site scripting attacks via the load method the load method fails to recognize and remove html tags that contain a whitespace character i e script which results in the enclosed script logic to be executed vulnerabilityurl | 0 |
27,433 | 21,708,108,423 | IssuesEvent | 2022-05-10 11:33:14 | celeritas-project/celeritas | https://api.github.com/repos/celeritas-project/celeritas | opened | Require C++17 | infrastructure | At some point we could use new features of C++17, since it's been supported by CUDA since version 11. (Since we're pretty careful to separate device code from support/setup code, we could probably even run dual 14/17.) It's also now required by Geant4 11 and VecGeom 1.2.
Update usage:
- `constexpr if` for expressions with macros
- `inline constexpr` for class values that we currently return with a function
- Possibly remove some helper functions since we will have templated constructor deduction
- `std::variant` or `std::any` as values in maps for ImportData
- Structured binding to replace `auto iter_inserted` | 1.0 | Require C++17 - At some point we could use new features of C++17, since it's been supported by CUDA since version 11. (Since we're pretty careful to separate device code from support/setup code, we could probably even run dual 14/17.) It's also now required by Geant4 11 and VecGeom 1.2.
Update usage:
- `constexpr if` for expressions with macros
- `inline constexpr` for class values that we currently return with a function
- Possibly remove some helper functions since we will have templated constructor deduction
- `std::variant` or `std::any` as values in maps for ImportData
- Structured binding to replace `auto iter_inserted` | infrastructure | require c at some point we could use new features of c since it s been supported by cuda since version since we re pretty careful to separate device code from support setup code we could probably even run dual it s also now required by and vecgeom update usage constexpr if for expressions with macros inline constexpr for class values that we currently return with a function possibly remove some helper functions since we will have templated constructor deduction std variant or std any as values in maps for importdata structured binding to replace auto iter inserted | 1 |
26,949 | 20,955,358,914 | IssuesEvent | 2022-03-27 02:53:13 | scikit-image/scikit-image | https://api.github.com/repos/scikit-image/scikit-image | reopened | Testing docstring integrity | type: infrastructure | ## Description
I just came across this on Twitter: scikit-learn test docstrings for compliance with the NumPyDoc standard *and* matching to the actual function signature.
https://github.com/NicolasHug/scikit-learn/blob/27625cfa573c9f7208da596966ed769030d5f5bd/sklearn/tests/test_docstring_parameters.py
Seems like a useful thing to have.
| 1.0 | Testing docstring integrity - ## Description
I just came across this on Twitter: scikit-learn test docstrings for compliance with the NumPyDoc standard *and* matching to the actual function signature.
https://github.com/NicolasHug/scikit-learn/blob/27625cfa573c9f7208da596966ed769030d5f5bd/sklearn/tests/test_docstring_parameters.py
Seems like a useful thing to have.
| infrastructure | testing docstring integrity description i just came across this on twitter scikit learn test docstrings for compliance with the numpydoc standard and matching to the actual function signature seems like a useful thing to have | 1 |
9,499 | 8,014,497,910 | IssuesEvent | 2018-07-25 06:46:38 | MichaelKohler/activate-rewrite | https://api.github.com/repos/MichaelKohler/activate-rewrite | closed | Make direct links work on GitHub Pages | bug infrastructure | After #40 is merged, a call to https://rewrite.michaelkohler.info/es/eventguide/ will lead to a 404 as GitHub won't find the file as we're using client side routing GitHub doesn't know anything about. There are workarounds for this, will have a look :) | 1.0 | Make direct links work on GitHub Pages - After #40 is merged, a call to https://rewrite.michaelkohler.info/es/eventguide/ will lead to a 404 as GitHub won't find the file as we're using client side routing GitHub doesn't know anything about. There are workarounds for this, will have a look :) | infrastructure | make direct links work on github pages after is merged a call to will lead to a as github won t find the file as we re using client side routing github doesn t know anything about there are workarounds for this will have a look | 1 |
175,442 | 13,551,983,360 | IssuesEvent | 2020-09-17 11:57:08 | hazelcast/hazelcast | https://api.github.com/repos/hazelcast/hazelcast | opened | DelegatingCompletableFuture_WrappingInvocationFutureTest | Type: Test-Failure | ```
java.lang.AssertionError: expected:<java.lang.Object@7a5b4ab2> but was:<com.hazelcast.spi.impl.AbstractInvocationFuture$WhenCompleteNode@3f59cb9d>
at org.junit.Assert.fail(Assert.java:88)
at org.junit.Assert.failNotEquals(Assert.java:834)
at org.junit.Assert.assertEquals(Assert.java:118)
at org.junit.Assert.assertEquals(Assert.java:144)
at com.hazelcast.spi.impl.CompletableFutureAbstractTest.exceptionally_whenAsync(CompletableFutureAbstractTest.java:812)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at com.hazelcast.test.FailOnTimeoutStatement$CallableStatement.call(FailOnTimeoutStatement.java:114)
at com.hazelcast.test.FailOnTimeoutStatement$CallableStatement.call(FailOnTimeoutStatement.java:106)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.lang.Thread.run(Thread.java:748)
```
http://jenkins.hazelcast.com/job/Hazelcast-pr-builder/2389/testReport/junit/com.hazelcast.spi.impl/DelegatingCompletableFuture_WrappingInvocationFutureTest/exceptionally_whenAsync/ | 1.0 | DelegatingCompletableFuture_WrappingInvocationFutureTest - ```
java.lang.AssertionError: expected:<java.lang.Object@7a5b4ab2> but was:<com.hazelcast.spi.impl.AbstractInvocationFuture$WhenCompleteNode@3f59cb9d>
at org.junit.Assert.fail(Assert.java:88)
at org.junit.Assert.failNotEquals(Assert.java:834)
at org.junit.Assert.assertEquals(Assert.java:118)
at org.junit.Assert.assertEquals(Assert.java:144)
at com.hazelcast.spi.impl.CompletableFutureAbstractTest.exceptionally_whenAsync(CompletableFutureAbstractTest.java:812)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at com.hazelcast.test.FailOnTimeoutStatement$CallableStatement.call(FailOnTimeoutStatement.java:114)
at com.hazelcast.test.FailOnTimeoutStatement$CallableStatement.call(FailOnTimeoutStatement.java:106)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.lang.Thread.run(Thread.java:748)
```
http://jenkins.hazelcast.com/job/Hazelcast-pr-builder/2389/testReport/junit/com.hazelcast.spi.impl/DelegatingCompletableFuture_WrappingInvocationFutureTest/exceptionally_whenAsync/ | non_infrastructure | delegatingcompletablefuture wrappinginvocationfuturetest java lang assertionerror expected but was at org junit assert fail assert java at org junit assert failnotequals assert java at org junit assert assertequals assert java at org junit assert assertequals assert java at com hazelcast spi impl completablefutureabstracttest exceptionally whenasync completablefutureabstracttest java at sun reflect nativemethodaccessorimpl native method at sun reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at sun reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java lang reflect method invoke method java at org junit runners model frameworkmethod runreflectivecall frameworkmethod java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners model frameworkmethod invokeexplosively frameworkmethod java at org junit internal runners statements invokemethod evaluate invokemethod java at com hazelcast test failontimeoutstatement callablestatement call failontimeoutstatement java at com hazelcast test failontimeoutstatement callablestatement call failontimeoutstatement java at java util concurrent futuretask run futuretask java at java lang thread run thread java | 0 |
9,024 | 7,778,862,799 | IssuesEvent | 2018-06-05 15:13:20 | tanzquotient/tq_website | https://api.github.com/repos/tanzquotient/tq_website | opened | Separate the code for updating and creating user profiles | infrastructure | There should be two functions:
- Update user profile (e. g. change address etc.)
- Create user profile (signup)
Especially: Remove the function get_or_create_user() in courses/services.py
**Reasons**:
- Creation of users should be done in only one place (DRY)
- No implicit creation of profiles means no multiaccounts
- Explicit is better than implicit
- a function should serve exactly one purpose: easier to read, test and maintain | 1.0 | Separate the code for updating and creating user profiles - There should be two functions:
- Update user profile (e. g. change address etc.)
- Create user profile (signup)
Especially: Remove the function get_or_create_user() in courses/services.py
**Reasons**:
- Creation of users should be done in only one place (DRY)
- No implicit creation of profiles means no multiaccounts
- Explicit is better than implicit
- a function should serve exactly one purpose: easier to read, test and maintain | infrastructure | separate the code for updating and creating user profiles there should be two functions update user profile e g change address etc create user profile signup especially remove the function get or create user in courses services py reasons creation of users should be done in only one place dry no implicit creation of profiles means no multiaccounts explicit is better than implicit a function should serve exactly one purpose easier to read test and maintain | 1 |
43,593 | 5,656,412,443 | IssuesEvent | 2017-04-10 01:24:22 | dotnet/roslyn | https://api.github.com/repos/dotnet/roslyn | closed | Tuple types in using directives | 1 - Planning Area-Language Design Language-C# New Language Feature - Tuples | It has [been requested that](https://github.com/dotnet/roslyn/issues/347#issuecomment-258845034) we support
```cs
using Subject = (bool Gender, double Age);
```
| 1.0 | Tuple types in using directives - It has [been requested that](https://github.com/dotnet/roslyn/issues/347#issuecomment-258845034) we support
```cs
using Subject = (bool Gender, double Age);
```
| non_infrastructure | tuple types in using directives it has we support cs using subject bool gender double age | 0 |
117,401 | 17,480,587,398 | IssuesEvent | 2021-08-09 01:00:35 | keanhankins/ranger | https://api.github.com/repos/keanhankins/ranger | closed | WS-2018-0232 (Medium) detected in multiple libraries - autoclosed | security vulnerability | ## WS-2018-0232 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>underscore.string-2.4.0.tgz</b>, <b>underscore.string-2.3.3.tgz</b>, <b>underscore.string-2.2.1.tgz</b></p></summary>
<p>
<details><summary><b>underscore.string-2.4.0.tgz</b></p></summary>
<p>String manipulation extensions for Underscore.js javascript library.</p>
<p>Library home page: <a href="https://registry.npmjs.org/underscore.string/-/underscore.string-2.4.0.tgz">https://registry.npmjs.org/underscore.string/-/underscore.string-2.4.0.tgz</a></p>
<p>Path to dependency file: ranger/security-admin/src/main/webapp/libs/other/jquery-cookie/js/package.json</p>
<p>Path to vulnerable library: ranger/security-admin/src/main/webapp/libs/other/jquery-cookie/js/node_modules/argparse/node_modules/underscore.string/package.json</p>
<p>
Dependency Hierarchy:
- grunt-0.4.5.tgz (Root Library)
- js-yaml-2.0.5.tgz
- argparse-0.1.16.tgz
- :x: **underscore.string-2.4.0.tgz** (Vulnerable Library)
</details>
<details><summary><b>underscore.string-2.3.3.tgz</b></p></summary>
<p>String manipulation extensions for Underscore.js javascript library.</p>
<p>Library home page: <a href="https://registry.npmjs.org/underscore.string/-/underscore.string-2.3.3.tgz">https://registry.npmjs.org/underscore.string/-/underscore.string-2.3.3.tgz</a></p>
<p>Path to dependency file: ranger/security-admin/src/main/webapp/libs/other/jquery-cookie/js/package.json</p>
<p>Path to vulnerable library: ranger/security-admin/src/main/webapp/libs/other/jquery-cookie/js/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/package.json,ranger/security-admin/src/main/webapp/libs/other/jquery-cookie/js/node_modules/grunt-legacy-log/node_modules/underscore.string/package.json</p>
<p>
Dependency Hierarchy:
- grunt-0.4.5.tgz (Root Library)
- grunt-legacy-log-0.1.3.tgz
- :x: **underscore.string-2.3.3.tgz** (Vulnerable Library)
</details>
<details><summary><b>underscore.string-2.2.1.tgz</b></p></summary>
<p>String manipulation extensions for Underscore.js javascript library.</p>
<p>Library home page: <a href="https://registry.npmjs.org/underscore.string/-/underscore.string-2.2.1.tgz">https://registry.npmjs.org/underscore.string/-/underscore.string-2.2.1.tgz</a></p>
<p>Path to dependency file: ranger/security-admin/src/main/webapp/libs/other/jquery-cookie/js/package.json</p>
<p>Path to vulnerable library: ranger/security-admin/src/main/webapp/libs/other/jquery-cookie/js/node_modules/underscore.string/package.json</p>
<p>
Dependency Hierarchy:
- grunt-0.4.5.tgz (Root Library)
- :x: **underscore.string-2.2.1.tgz** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/keanhankins/ranger/commit/3d8c1142c5739a45e8e562215c8c83915a44ee6c">3d8c1142c5739a45e8e562215c8c83915a44ee6c</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>
Underscore.string, before 3.3.5, is vulnerable to Regular Expression Denial of Service (ReDoS).
<p>Publish Date: 2018-10-03
<p>URL: <a href=https://github.com/epeli/underscore.string/commit/f486cd684c94c12db48b45d52b1472a1b9661029>WS-2018-0232</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 2 Score Details (<b>5.0</b>)</summary>
<p>
Base Score Metrics not available</p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://www.npmjs.com/advisories/745">https://www.npmjs.com/advisories/745</a></p>
<p>Release Date: 2018-12-30</p>
<p>Fix Resolution: 3.3.5</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"underscore.string","packageVersion":"2.4.0","packageFilePaths":["/security-admin/src/main/webapp/libs/other/jquery-cookie/js/package.json"],"isTransitiveDependency":true,"dependencyTree":"grunt:0.4.5;js-yaml:2.0.5;argparse:0.1.16;underscore.string:2.4.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"3.3.5"},{"packageType":"javascript/Node.js","packageName":"underscore.string","packageVersion":"2.3.3","packageFilePaths":["/security-admin/src/main/webapp/libs/other/jquery-cookie/js/package.json"],"isTransitiveDependency":true,"dependencyTree":"grunt:0.4.5;grunt-legacy-log:0.1.3;underscore.string:2.3.3","isMinimumFixVersionAvailable":true,"minimumFixVersion":"3.3.5"},{"packageType":"javascript/Node.js","packageName":"underscore.string","packageVersion":"2.2.1","packageFilePaths":["/security-admin/src/main/webapp/libs/other/jquery-cookie/js/package.json"],"isTransitiveDependency":true,"dependencyTree":"grunt:0.4.5;underscore.string:2.2.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"3.3.5"}],"baseBranches":["master"],"vulnerabilityIdentifier":"WS-2018-0232","vulnerabilityDetails":"Underscore.string, before 3.3.5, is vulnerable to Regular Expression Denial of Service (ReDoS).","vulnerabilityUrl":"https://github.com/epeli/underscore.string/commit/f486cd684c94c12db48b45d52b1472a1b9661029","cvss2Severity":"medium","cvss2Score":"5.0","extraData":{}}</REMEDIATE> --> | True | WS-2018-0232 (Medium) detected in multiple libraries - autoclosed - ## WS-2018-0232 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>underscore.string-2.4.0.tgz</b>, <b>underscore.string-2.3.3.tgz</b>, <b>underscore.string-2.2.1.tgz</b></p></summary>
<p>
<details><summary><b>underscore.string-2.4.0.tgz</b></p></summary>
<p>String manipulation extensions for Underscore.js javascript library.</p>
<p>Library home page: <a href="https://registry.npmjs.org/underscore.string/-/underscore.string-2.4.0.tgz">https://registry.npmjs.org/underscore.string/-/underscore.string-2.4.0.tgz</a></p>
<p>Path to dependency file: ranger/security-admin/src/main/webapp/libs/other/jquery-cookie/js/package.json</p>
<p>Path to vulnerable library: ranger/security-admin/src/main/webapp/libs/other/jquery-cookie/js/node_modules/argparse/node_modules/underscore.string/package.json</p>
<p>
Dependency Hierarchy:
- grunt-0.4.5.tgz (Root Library)
- js-yaml-2.0.5.tgz
- argparse-0.1.16.tgz
- :x: **underscore.string-2.4.0.tgz** (Vulnerable Library)
</details>
<details><summary><b>underscore.string-2.3.3.tgz</b></p></summary>
<p>String manipulation extensions for Underscore.js javascript library.</p>
<p>Library home page: <a href="https://registry.npmjs.org/underscore.string/-/underscore.string-2.3.3.tgz">https://registry.npmjs.org/underscore.string/-/underscore.string-2.3.3.tgz</a></p>
<p>Path to dependency file: ranger/security-admin/src/main/webapp/libs/other/jquery-cookie/js/package.json</p>
<p>Path to vulnerable library: ranger/security-admin/src/main/webapp/libs/other/jquery-cookie/js/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/package.json,ranger/security-admin/src/main/webapp/libs/other/jquery-cookie/js/node_modules/grunt-legacy-log/node_modules/underscore.string/package.json</p>
<p>
Dependency Hierarchy:
- grunt-0.4.5.tgz (Root Library)
- grunt-legacy-log-0.1.3.tgz
- :x: **underscore.string-2.3.3.tgz** (Vulnerable Library)
</details>
<details><summary><b>underscore.string-2.2.1.tgz</b></p></summary>
<p>String manipulation extensions for Underscore.js javascript library.</p>
<p>Library home page: <a href="https://registry.npmjs.org/underscore.string/-/underscore.string-2.2.1.tgz">https://registry.npmjs.org/underscore.string/-/underscore.string-2.2.1.tgz</a></p>
<p>Path to dependency file: ranger/security-admin/src/main/webapp/libs/other/jquery-cookie/js/package.json</p>
<p>Path to vulnerable library: ranger/security-admin/src/main/webapp/libs/other/jquery-cookie/js/node_modules/underscore.string/package.json</p>
<p>
Dependency Hierarchy:
- grunt-0.4.5.tgz (Root Library)
- :x: **underscore.string-2.2.1.tgz** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/keanhankins/ranger/commit/3d8c1142c5739a45e8e562215c8c83915a44ee6c">3d8c1142c5739a45e8e562215c8c83915a44ee6c</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>
Underscore.string, before 3.3.5, is vulnerable to Regular Expression Denial of Service (ReDoS).
<p>Publish Date: 2018-10-03
<p>URL: <a href=https://github.com/epeli/underscore.string/commit/f486cd684c94c12db48b45d52b1472a1b9661029>WS-2018-0232</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 2 Score Details (<b>5.0</b>)</summary>
<p>
Base Score Metrics not available</p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://www.npmjs.com/advisories/745">https://www.npmjs.com/advisories/745</a></p>
<p>Release Date: 2018-12-30</p>
<p>Fix Resolution: 3.3.5</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"underscore.string","packageVersion":"2.4.0","packageFilePaths":["/security-admin/src/main/webapp/libs/other/jquery-cookie/js/package.json"],"isTransitiveDependency":true,"dependencyTree":"grunt:0.4.5;js-yaml:2.0.5;argparse:0.1.16;underscore.string:2.4.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"3.3.5"},{"packageType":"javascript/Node.js","packageName":"underscore.string","packageVersion":"2.3.3","packageFilePaths":["/security-admin/src/main/webapp/libs/other/jquery-cookie/js/package.json"],"isTransitiveDependency":true,"dependencyTree":"grunt:0.4.5;grunt-legacy-log:0.1.3;underscore.string:2.3.3","isMinimumFixVersionAvailable":true,"minimumFixVersion":"3.3.5"},{"packageType":"javascript/Node.js","packageName":"underscore.string","packageVersion":"2.2.1","packageFilePaths":["/security-admin/src/main/webapp/libs/other/jquery-cookie/js/package.json"],"isTransitiveDependency":true,"dependencyTree":"grunt:0.4.5;underscore.string:2.2.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"3.3.5"}],"baseBranches":["master"],"vulnerabilityIdentifier":"WS-2018-0232","vulnerabilityDetails":"Underscore.string, before 3.3.5, is vulnerable to Regular Expression Denial of Service (ReDoS).","vulnerabilityUrl":"https://github.com/epeli/underscore.string/commit/f486cd684c94c12db48b45d52b1472a1b9661029","cvss2Severity":"medium","cvss2Score":"5.0","extraData":{}}</REMEDIATE> --> | non_infrastructure | ws medium detected in multiple libraries autoclosed ws medium severity vulnerability vulnerable libraries underscore string tgz underscore string tgz underscore string tgz underscore string tgz string manipulation extensions for underscore js javascript library library home page a href path to dependency file ranger security admin src main webapp libs other jquery cookie js package json path to vulnerable library ranger security admin src main webapp libs other jquery cookie js node modules argparse node modules underscore string package json dependency hierarchy grunt tgz root library js yaml tgz argparse tgz x underscore string tgz vulnerable library underscore string tgz string manipulation extensions for underscore js javascript library library home page a href path to dependency file ranger security admin src main webapp libs other jquery cookie js package json path to vulnerable library ranger security admin src main webapp libs other jquery cookie js node modules grunt legacy log utils node modules underscore string package json ranger security admin src main webapp libs other jquery cookie js node modules grunt legacy log node modules underscore string package json dependency hierarchy grunt tgz root library grunt legacy log tgz x underscore string tgz vulnerable library underscore string tgz string manipulation extensions for underscore js javascript library library home page a href path to dependency file ranger security admin src main webapp libs other jquery cookie js package json path to vulnerable library ranger security admin src main webapp libs other jquery cookie js node modules underscore string package json dependency hierarchy grunt tgz root library x underscore string tgz vulnerable library found in head commit a href found in base branch master vulnerability details underscore string before is vulnerable to regular expression denial of service redos publish date url a href cvss score details base score metrics not available suggested fix type upgrade version origin a href release date fix resolution isopenpronvulnerability true ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree grunt js yaml argparse underscore string isminimumfixversionavailable true minimumfixversion packagetype javascript node js packagename underscore string packageversion packagefilepaths istransitivedependency true dependencytree grunt grunt legacy log underscore string isminimumfixversionavailable true minimumfixversion packagetype javascript node js packagename underscore string packageversion packagefilepaths istransitivedependency true dependencytree grunt underscore string isminimumfixversionavailable true minimumfixversion basebranches vulnerabilityidentifier ws vulnerabilitydetails underscore string before is vulnerable to regular expression denial of service redos vulnerabilityurl | 0 |
18,012 | 12,732,995,233 | IssuesEvent | 2020-06-25 11:27:46 | spring-projects/spring-batch | https://api.github.com/repos/spring-projects/spring-batch | closed | Use BulkOperations API in MongoItemWriter | in: infrastructure theme: performance type: enhancement | As of v4.2, the `MongoItemWriter` [uses a for loop to save items through the mongo template](https://github.com/spring-projects/spring-batch/blob/d8fc58338d3b059b67b5f777adc132d2564d7402/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/data/MongoItemWriter.java#L136-L145). Using `org.springframework.data.mongodb.core.BulkOperations` should give better performance.
It should be noted that `template.save` is an [upsert operation](https://docs.spring.io/spring-data/mongodb/docs/2.2.7.RELEASE/api/org/springframework/data/mongodb/core/MongoOperations.html#save-T-java.lang.String-), so we need to use an equivalent operation in the `BulkOperations` API.
Reference: https://stackoverflow.com/questions/61644406
| 1.0 | Use BulkOperations API in MongoItemWriter - As of v4.2, the `MongoItemWriter` [uses a for loop to save items through the mongo template](https://github.com/spring-projects/spring-batch/blob/d8fc58338d3b059b67b5f777adc132d2564d7402/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/data/MongoItemWriter.java#L136-L145). Using `org.springframework.data.mongodb.core.BulkOperations` should give better performance.
It should be noted that `template.save` is an [upsert operation](https://docs.spring.io/spring-data/mongodb/docs/2.2.7.RELEASE/api/org/springframework/data/mongodb/core/MongoOperations.html#save-T-java.lang.String-), so we need to use an equivalent operation in the `BulkOperations` API.
Reference: https://stackoverflow.com/questions/61644406
| infrastructure | use bulkoperations api in mongoitemwriter as of the mongoitemwriter using org springframework data mongodb core bulkoperations should give better performance it should be noted that template save is an so we need to use an equivalent operation in the bulkoperations api reference | 1 |
38,798 | 10,243,999,483 | IssuesEvent | 2019-08-20 09:25:40 | ShaikASK/Testing | https://api.github.com/repos/ShaikASK/Testing | opened | Pre Production : New Hire : Attachment : Description : New Hire Attachment description is marked as mandatory | Account Manager Defect HR Admin Module HR User Module New Hire P3 Release #5 Build #51 | Steps To Replicate :
1.Launch the URL
2.Sign in as HR Admin user
3.Click on New Hire from side menu
4.Navigate to New Hire screen
5.Add New Hire and upload attachment
6.Check the description field displayed against uploaded attachment
Experienced Behavior : Observed that New Hire Attachment description is marked as mandatory (Refer Screen shot)
Expected Behavior : Ensure that description field displayed against uploaded attachment should be optional it should not be mandatory

| 1.0 | Pre Production : New Hire : Attachment : Description : New Hire Attachment description is marked as mandatory - Steps To Replicate :
1.Launch the URL
2.Sign in as HR Admin user
3.Click on New Hire from side menu
4.Navigate to New Hire screen
5.Add New Hire and upload attachment
6.Check the description field displayed against uploaded attachment
Experienced Behavior : Observed that New Hire Attachment description is marked as mandatory (Refer Screen shot)
Expected Behavior : Ensure that description field displayed against uploaded attachment should be optional it should not be mandatory

| non_infrastructure | pre production new hire attachment description new hire attachment description is marked as mandatory steps to replicate launch the url sign in as hr admin user click on new hire from side menu navigate to new hire screen add new hire and upload attachment check the description field displayed against uploaded attachment experienced behavior observed that new hire attachment description is marked as mandatory refer screen shot expected behavior ensure that description field displayed against uploaded attachment should be optional it should not be mandatory | 0 |
24,818 | 17,795,650,425 | IssuesEvent | 2021-08-31 21:47:36 | dotnet/aspnetcore | https://api.github.com/repos/dotnet/aspnetcore | closed | Build failed: Validate-DotNet/main real signed, aspnetcore, .NET 6 RC 1, validation-aspnetcore-.NET 6 RC 1 #aspnetcore-104199-.NET6RC1 | area-infrastructure | Build [#aspnetcore-104199-.NET6RC1](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_build/results?buildId=1319087) partiallySucceeded
## :warning: : internal / Validate-DotNet partiallySucceeded
### Summary
**Finished** - Thu, 26 Aug 2021 01:38:07 GMT
**Duration** - 150 minutes
**Requested for** - DotNet Bot
**Reason** - manual
### Details
#### Validation Ring
- :x: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/1319087/logs/243) - (NETCORE_ENGINEERING_TELEMETRY=SourceLink) 12 package(s) failed validation.
- :x: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/1319087/logs/243) - PowerShell exited with code '1'.
#### Required Validation Ring
- :warning: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/1319087/logs/204) - Number of checksums and assets don't match. Checksums: 26. Assets: 299. Assets with no corresponding checksum are:
<details>
aspnetcore/Runtime/6.0.0-rc.1.21425.26/dotnet-hosting-6.0.0-rc.1.21425.26-win.exe.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/AspNetCoreSharedFrameworkLibx64.wixlib.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcoremodule_x86_en_v2_6.0.0-rc.1.21425.26.msi.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/AspNetCoreModuleV2IISExpress_x64.msi.wixpack.zip
assets/symbols/Microsoft.AspNetCore.App.Runtime.win-x86.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Authentication.MicrosoftAccount.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Authentication.Google.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Authentication.AzureAD.UI.6.0.0-rc.1.21425.26.symbols.nupkg
aspnetcore/npm/6.0.0-rc.1.21425.26/microsoft-signalr-6.0.0-rc.1.21425.26.tgz
aspnetcore/jar/6.0.0-rc.1.21425.26/signalr-6.0.0-rc.1.21425.26.jar
assets/symbols/Microsoft.AspNetCore.AzureAppServices.HostingStartup.6.0.0-rc.1.21425.26.symbols.nupkg
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-6.0.0-rc.1.21425.26-win-x64.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-6.0.0-rc.1.21425.26-win-x64.msi
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-internal-6.0.0-rc.1.21425.26-win-x64.wixlib
Microsoft.AspNetCore.App.Runtime.win-x64
aspnetcore/Runtime/6.0.0-rc.1.21425.26/AspNetCoreSharedFrameworkLibarm64.wixlib.wixpack.zip
assets/symbols/Microsoft.AspNetCore.App.Runtime.win-arm64.6.0.0-rc.1.21425.26.symbols.nupkg
Microsoft.AspNetCore.App.Runtime.linux-musl-arm
assets/symbols/Microsoft.AspNetCore.SignalR.Specification.Tests.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Configuration.KeyPerFile.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.JSInterop.WebAssembly.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.JSInterop.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Diagnostics.HealthChecks.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Localization.Abstractions.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Identity.Core.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.DataProtection.Abstractions.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Connections.Abstractions.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Components.WebAssembly.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Components.Analyzers.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.AzureAppServicesIntegration.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Identity.UI.6.0.0-rc.1.21425.26.symbols.nupkg
Microsoft.AspNetCore.ApiAuthorization.IdentityServer
Microsoft.AspNetCore.App.Runtime.linux-musl-arm64
assets/symbols/Microsoft.AspNetCore.App.Runtime.linux-musl-arm.6.0.0-rc.1.21425.26.symbols.nupkg
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcoremodule.version
assets/symbols/Microsoft.AspNetCore.Authentication.Certificate.6.0.0-rc.1.21425.26.symbols.nupkg
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-targeting-pack-6.0.0-rc.1.21425.26-win-x86.msi.wixpack.zip
assets/symbols/Microsoft.AspNetCore.Authentication.AzureADB2C.UI.6.0.0-rc.1.21425.26.symbols.nupkg
aspnetcore/jar/6.0.0-rc.1.21425.26/signalr-messagepack-6.0.0-rc.1.21425.26.pom
aspnetcore/jar/6.0.0-rc.1.21425.26/signalr-messagepack-6.0.0-rc.1.21425.26-sources.jar
aspnetcore/jar/6.0.0-rc.1.21425.26/signalr-6.0.0-rc.1.21425.26.pom
aspnetcore/jar/6.0.0-rc.1.21425.26/signalr-6.0.0-rc.1.21425.26-javadoc.jar
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-targeting-pack-6.0.0-rc.1.21425.26-win-x64.msi.wixpack.zip
Microsoft.AspNetCore.App.Runtime.linux-musl-x64
Microsoft.AspNetCore.SignalR.Client.Core
Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv
Microsoft.AspNetCore.Mvc.Testing
Microsoft.DotNet.Web.ProjectTemplates.6.0
Microsoft.DotNet.Web.Client.ItemTemplates
Microsoft.AspNetCore.Components.WebAssembly.DevServer
Microsoft.AspNetCore.Components.Web
Microsoft.AspNetCore.Components
Microsoft.AspNetCore.Components.WebAssembly.Server
aspnetcore/Runtime/6.0.0-rc.1.21425.26/AspNetCoreSharedFrameworkBundle-x64.exe.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore_base_runtime.version
assets/symbols/Microsoft.AspNetCore.App.Runtime.win-x64.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Authentication.JwtBearer.6.0.0-rc.1.21425.26.symbols.nupkg
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-targeting-pack-6.0.0-rc.1.21425.26.zip
aspnetcore/npm/6.0.0-rc.1.21425.26/microsoft-signalr-protocol-msgpack-6.0.0-rc.1.21425.26.tgz
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-internal-6.0.0-rc.1.21425.26-win-x86.wixlib
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-6.0.0-rc.1.21425.26-win-x86.exe.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-6.0.0-rc.1.21425.26-win-x64.exe.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-6.0.0-rc.1.21425.26-win-x86.exe
Microsoft.AspNetCore.App.Runtime.win-arm
assets/symbols/Microsoft.AspNetCore.App.Runtime.win-arm.6.0.0-rc.1.21425.26.symbols.nupkg
Microsoft.AspNetCore.App.Runtime.osx-x64
Microsoft.AspNetCore.App.Runtime.win-x86
AspNetCoreRuntime.6.0.x64
Microsoft.AspNetCore.Authentication.AzureAD.UI
Microsoft.AspNetCore.App.Runtime.linux-x64
Microsoft.Extensions.Localization.Abstractions
Microsoft.CodeAnalysis.Razor
Microsoft.AspNetCore.AzureAppServicesIntegration
Microsoft.AspNetCore.Authentication.Negotiate
Microsoft.AspNetCore.Authentication.JwtBearer
aspnetcore/Runtime/6.0.0-rc.1.21425.26/productVersion.txt
aspnetcore/Runtime/6.0.0-rc.1.21425.26/AspNetCoreSharedFrameworkBundle-x86.exe.wixpack.zip
assets/symbols/Microsoft.AspNetCore.ApiAuthorization.IdentityServer.6.0.0-rc.1.21425.26.symbols.nupkg
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-targeting-pack-6.0.0-rc.1.21425.26.tar.gz
aspnetcore/Runtime/6.0.0-rc.1.21425.26/ancm_iis_express_x64_en_v2_6.0.0-rc.1.21425.26.msi
aspnetcore/Runtime/6.0.0-rc.1.21425.26/ancm_iis_express_x64_en_v2_6.0.0-rc.1.21425.26.msi.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-6.0.0-rc.1.21425.26-win-x64.exe
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-targeting-pack-6.0.0-rc.1.21425.26-win-x86.msi
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-targeting-pack-6.0.0-rc.1.21425.26-win-x64.msi
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-targeting-pack-6.0.0-rc.1.21425.26-win-arm64.msi
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-internal-6.0.0-rc.1.21425.26-win-x64.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-6.0.0-rc.1.21425.26-win-x86.msi
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-6.0.0-rc.1.21425.26-win-x64.msi.wixpack.zip
assets/symbols/Microsoft.dotnet-openapi.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Authentication.WebAssembly.Msal.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.SignalR.StackExchangeRedis.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.TestHost.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.SignalR.Protocols.Json.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.SignalR.Protocols.MessagePack.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Localization.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Logging.AzureAppServices.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.WebEncoders.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Components.Web.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Components.Forms.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Components.Authorization.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Components.WebAssembly.Server.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Razor.Language.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.HeaderPropagation.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Mvc.Razor.Extensions.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.JsonPatch.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Http.Connections.Common.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Mvc.NewtonsoftJson.6.0.0-rc.1.21425.26.symbols.nupkg
Microsoft.AspNetCore.App.Runtime.win-arm64
Microsoft.Extensions.ObjectPool
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-6.0.0-rc.1.21425.26-win-arm64.msi.wixpack.zip
Microsoft.AspNetCore.App.Ref
dotnet-sql-cache
Microsoft.AspNetCore.Authentication.AzureADB2C.UI
assets/symbols/Microsoft.AspNetCore.App.Runtime.linux-musl-x64.6.0.0-rc.1.21425.26.symbols.nupkg
Microsoft.AspNetCore.SignalR.Protocols.MessagePack
Microsoft.AspNetCore.Owin
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation
Microsoft.Authentication.WebAssembly.Msal
Microsoft.Extensions.Logging.AzureAppServices
Microsoft.Extensions.Identity.Stores
Microsoft.Extensions.FileProviders.Embedded
Microsoft.Extensions.Http.Polly
Microsoft.Extensions.Features
Microsoft.Extensions.Configuration.KeyPerFile
Microsoft.Extensions.Caching.StackExchangeRedis
Microsoft.Extensions.ApiDescription.Server
Microsoft.Extensions.Diagnostics.HealthChecks
Microsoft.AspNetCore.Authentication.Facebook
Microsoft.AspNetCore.Components.Forms
Microsoft.AspNetCore.Components.Authorization
Microsoft.AspNetCore.Components.WebView
Microsoft.AspNetCore.Identity.UI
Microsoft.AspNetCore.Metadata
Microsoft.AspNetCore.Identity.EntityFrameworkCore
Microsoft.AspNetCore.Http.Connections.Common
Microsoft.AspNetCore.Hosting.WindowsServices
Microsoft.AspNetCore.DataProtection.StackExchangeRedis
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcoremodule_x86_en_v2_6.0.0-rc.1.21425.26.msi
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcoremodule_x64_en_v2_6.0.0-rc.1.21425.26.msi
assets/symbols/Microsoft.Extensions.ApiDescription.Server.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.App.Runtime.linux-arm64.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.App.Runtime.linux-arm.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.App.Runtime.linux-musl-arm64.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.App.Runtime.linux-x64.6.0.0-rc.1.21425.26.symbols.nupkg
Microsoft.AspNetCore.Authentication.Google
Microsoft.AspNetCore.TestHost
Microsoft.AspNetCore.SignalR.StackExchangeRedis
Microsoft.AspNetCore.SignalR.Specification.Tests
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson
Microsoft.AspNetCore.SignalR.Protocols.Json
Microsoft.AspNetCore.Razor.Language
Microsoft.AspNetCore.SignalR.Client
Microsoft.dotnet-openapi
Microsoft.Extensions.Localization
Microsoft.Extensions.Identity.Core
Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore
Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions
Microsoft.Extensions.Caching.SqlServer
Microsoft.DotNet.Web.Spa.ProjectTemplates.6.0
Microsoft.DotNet.Web.ItemTemplates
Microsoft.AspNetCore.Mvc.NewtonsoftJson
Microsoft.AspNetCore.Components.WebAssembly.Authentication
Microsoft.AspNetCore.Components.Analyzers
Microsoft.AspNetCore.Authorization
Microsoft.AspNetCore.Authentication.WsFederation
Microsoft.AspNetCore.Authentication.Twitter
Microsoft.AspNetCore.Connections.Abstractions
Microsoft.AspNetCore.Mvc.Razor.Extensions
Microsoft.AspNetCore.MiddlewareAnalysis
Microsoft.AspNetCore.JsonPatch
Microsoft.AspNetCore.Http.Connections.Client
Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore
Microsoft.AspNetCore.DataProtection.EntityFrameworkCore
Microsoft.AspNetCore.Cryptography.Internal
aspnetcore/Runtime/6.0.0-rc.1.21425.26/WindowsServerHostingBundle.exe.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/dotnet-hosting-6.0.0-rc.1.21425.26-win.exe
assets/symbols/AspNetCoreRuntime.6.0.x64.6.0.0-rc-1-21425-26.symbols.nupkg
aspnetcore/Runtime/6.0.0-rc.1.21425.26/AspNetCoreSharedFrameworkLibx86.wixlib.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcoremodule_x64_en_v2_6.0.0-rc.1.21425.26.msi.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/AspNetCoreModuleV2_x64.msi.wixpack.zip
assets/symbols/Microsoft.AspNetCore.App.Ref.6.0.0-rc.1.21425.26.symbols.nupkg
aspnetcore/Runtime/6.0.0-rc.1.21425.26/AspNetCoreModuleV2_x86.msi.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/AspNetCoreModuleV2IISExpress_x86.msi.wixpack.zip
assets/symbols/dotnet-sql-cache.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Authorization.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Authentication.WsFederation.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Authentication.Twitter.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Authentication.Negotiate.6.0.0-rc.1.21425.26.symbols.nupkg
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-targeting-pack-6.0.0-rc.1.21425.26-win-arm64.msi.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-6.0.0-rc.1.21425.26-win-x86.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-internal-6.0.0-rc.1.21425.26-win-x86.wixlib.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-6.0.0-rc.1.21425.26-win-x86.msi.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-productVersion.txt
assets/symbols/Microsoft.AspNetCore.SpaProxy.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.SpaServices.Extensions.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.SignalR.Common.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Identity.Stores.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.FileProviders.Embedded.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Features.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.DataProtection.Extensions.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.DataProtection.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Cryptography.KeyDerivation.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.ConcurrencyLimiter.6.0.0-rc.1.21425.26.symbols.nupkg
Microsoft.JSInterop
assets/symbols/Microsoft.AspNetCore.Owin.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.MiddlewareAnalysis.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Metadata.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Http.Connections.Client.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Identity.EntityFrameworkCore.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.App.Runtime.osx-x64.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.App.Runtime.osx-arm64.6.0.0-rc.1.21425.26.symbols.nupkg
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-internal-6.0.0-rc.1.21425.26-win-arm64.wixlib.wixpack.zip
Microsoft.AspNetCore.App.Runtime.linux-arm
Microsoft.AspNetCore.Authentication.Certificate
Microsoft.AspNetCore.SpaServices.Extensions
Microsoft.AspNetCore.SpaProxy
Microsoft.AspNetCore.SignalR.Common
Microsoft.Extensions.ApiDescription.Client
Microsoft.AspNetCore.Components.WebAssembly
Microsoft.AspNetCore.AzureAppServices.HostingStartup
Microsoft.AspNetCore.Authentication.OpenIdConnect
Microsoft.AspNetCore.Authentication.MicrosoftAccount
Microsoft.AspNetCore.ConcurrencyLimiter
Microsoft.AspNetCore.DataProtection.Abstractions
Microsoft.AspNetCore.DataProtection.Extensions
Microsoft.AspNetCore.Cryptography.KeyDerivation
assets/symbols/AspNetCoreRuntime.6.0.x86.6.0.0-rc-1-21425-26.symbols.nupkg
Microsoft.JSInterop.WebAssembly
assets/symbols/Microsoft.AspNetCore.Authentication.OpenIdConnect.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Authentication.Facebook.6.0.0-rc.1.21425.26.symbols.nupkg
aspnetcore/npm/6.0.0-rc.1.21425.26/microsoft-dotnet-js-interop-6.0.0-rc.1.21425.26.tgz
aspnetcore/Runtime/6.0.0-rc.1.21425.26/ancm_iis_express_x86_en_v2_6.0.0-rc.1.21425.26.msi
aspnetcore/jar/6.0.0-rc.1.21425.26/signalr-messagepack-6.0.0-rc.1.21425.26.jar
aspnetcore/jar/6.0.0-rc.1.21425.26/signalr-messagepack-6.0.0-rc.1.21425.26-javadoc.jar
aspnetcore/jar/6.0.0-rc.1.21425.26/signalr-6.0.0-rc.1.21425.26-sources.jar
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-internal-6.0.0-rc.1.21425.26-win-x86.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/ancm_iis_express_x86_en_v2_6.0.0-rc.1.21425.26.msi.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-internal-6.0.0-rc.1.21425.26-win-x64.wixlib.wixpack.zip
assets/symbols/Microsoft.Extensions.Caching.SqlServer.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.DotNet.Web.ProjectTemplates.6.0.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.AzureAppServices.SiteExtension.6.0.0-rc-1-21425-26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Caching.StackExchangeRedis.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.ApiDescription.Client.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.DotNet.Web.Spa.ProjectTemplates.6.0.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.DotNet.Web.ItemTemplates.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.DotNet.Web.Client.ItemTemplates.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.CodeAnalysis.Razor.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.SignalR.Client.Core.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Components.WebAssembly.DevServer.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Http.Polly.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.ObjectPool.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.SignalR.Client.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Cryptography.Internal.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Components.WebView.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Components.WebAssembly.Authentication.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Components.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Hosting.WindowsServices.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Mvc.Testing.6.0.0-rc.1.21425.26.symbols.nupkg
Microsoft.Extensions.WebEncoders
AspNetCoreRuntime.6.0.x86
Microsoft.AspNetCore.App.Runtime.osx-arm64
Microsoft.AspNetCore.App.Runtime.linux-arm64
Microsoft.AspNetCore.AzureAppServices.SiteExtension
Microsoft.AspNetCore.DataProtection
Microsoft.AspNetCore.HeaderPropagation
</details>
#### Source Code Validation
- :x: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/1319087/logs/95) - (NETCORE_ENGINEERING_TELEMETRY=Sdl) Last command failed with exit code 1.
### Changes
- [bce12e6b](https://dev.azure.com/dnceng/internal/_git/dotnet-release/commit/bce12e6bfa421376a72349b30686d6776f199545) - Epsitha Ananth - Merged PR 17673: Sign Mariner files with Mariner cert
- [2bd8ba9a](https://dev.azure.com/dnceng/internal/_git/dotnet-release/commit/2bd8ba9a1cf98e18b527a717f1c5ce610d2f875b) - Jon Fortescue - Merged PR 16997: Do real publishing in test runs of Stage-DotNet
- [2e7d6fd5](https://dev.azure.com/dnceng/internal/_git/dotnet-release/commit/2e7d6fd5ffe2a257e09bbb800d6e04ea6faef341) - Michelle McDaniel - Merged PR 17663: Merged PR 17651: Hotfix publishing signed packages
- [c47f9d3d](https://dev.azure.com/dnceng/internal/_git/dotnet-release/commit/c47f9d3d76b7616f5fb9f30a3172e605b8868e08) - Michelle McDaniel - Merged PR 17651: Hotfix publishing signed packages
- [848c4592](https://dev.azure.com/dnceng/internal/_git/dotnet-release/commit/848c459272a5d3da38e7f48f2a805f74a182369a) - DotNet Bot - [main] Update dependencies from dotnet/arcade
| 1.0 | Build failed: Validate-DotNet/main real signed, aspnetcore, .NET 6 RC 1, validation-aspnetcore-.NET 6 RC 1 #aspnetcore-104199-.NET6RC1 - Build [#aspnetcore-104199-.NET6RC1](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_build/results?buildId=1319087) partiallySucceeded
## :warning: : internal / Validate-DotNet partiallySucceeded
### Summary
**Finished** - Thu, 26 Aug 2021 01:38:07 GMT
**Duration** - 150 minutes
**Requested for** - DotNet Bot
**Reason** - manual
### Details
#### Validation Ring
- :x: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/1319087/logs/243) - (NETCORE_ENGINEERING_TELEMETRY=SourceLink) 12 package(s) failed validation.
- :x: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/1319087/logs/243) - PowerShell exited with code '1'.
#### Required Validation Ring
- :warning: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/1319087/logs/204) - Number of checksums and assets don't match. Checksums: 26. Assets: 299. Assets with no corresponding checksum are:
<details>
aspnetcore/Runtime/6.0.0-rc.1.21425.26/dotnet-hosting-6.0.0-rc.1.21425.26-win.exe.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/AspNetCoreSharedFrameworkLibx64.wixlib.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcoremodule_x86_en_v2_6.0.0-rc.1.21425.26.msi.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/AspNetCoreModuleV2IISExpress_x64.msi.wixpack.zip
assets/symbols/Microsoft.AspNetCore.App.Runtime.win-x86.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Authentication.MicrosoftAccount.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Authentication.Google.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Authentication.AzureAD.UI.6.0.0-rc.1.21425.26.symbols.nupkg
aspnetcore/npm/6.0.0-rc.1.21425.26/microsoft-signalr-6.0.0-rc.1.21425.26.tgz
aspnetcore/jar/6.0.0-rc.1.21425.26/signalr-6.0.0-rc.1.21425.26.jar
assets/symbols/Microsoft.AspNetCore.AzureAppServices.HostingStartup.6.0.0-rc.1.21425.26.symbols.nupkg
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-6.0.0-rc.1.21425.26-win-x64.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-6.0.0-rc.1.21425.26-win-x64.msi
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-internal-6.0.0-rc.1.21425.26-win-x64.wixlib
Microsoft.AspNetCore.App.Runtime.win-x64
aspnetcore/Runtime/6.0.0-rc.1.21425.26/AspNetCoreSharedFrameworkLibarm64.wixlib.wixpack.zip
assets/symbols/Microsoft.AspNetCore.App.Runtime.win-arm64.6.0.0-rc.1.21425.26.symbols.nupkg
Microsoft.AspNetCore.App.Runtime.linux-musl-arm
assets/symbols/Microsoft.AspNetCore.SignalR.Specification.Tests.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Configuration.KeyPerFile.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.JSInterop.WebAssembly.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.JSInterop.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Diagnostics.HealthChecks.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Localization.Abstractions.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Identity.Core.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.DataProtection.Abstractions.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Connections.Abstractions.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Components.WebAssembly.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Components.Analyzers.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.AzureAppServicesIntegration.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Identity.UI.6.0.0-rc.1.21425.26.symbols.nupkg
Microsoft.AspNetCore.ApiAuthorization.IdentityServer
Microsoft.AspNetCore.App.Runtime.linux-musl-arm64
assets/symbols/Microsoft.AspNetCore.App.Runtime.linux-musl-arm.6.0.0-rc.1.21425.26.symbols.nupkg
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcoremodule.version
assets/symbols/Microsoft.AspNetCore.Authentication.Certificate.6.0.0-rc.1.21425.26.symbols.nupkg
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-targeting-pack-6.0.0-rc.1.21425.26-win-x86.msi.wixpack.zip
assets/symbols/Microsoft.AspNetCore.Authentication.AzureADB2C.UI.6.0.0-rc.1.21425.26.symbols.nupkg
aspnetcore/jar/6.0.0-rc.1.21425.26/signalr-messagepack-6.0.0-rc.1.21425.26.pom
aspnetcore/jar/6.0.0-rc.1.21425.26/signalr-messagepack-6.0.0-rc.1.21425.26-sources.jar
aspnetcore/jar/6.0.0-rc.1.21425.26/signalr-6.0.0-rc.1.21425.26.pom
aspnetcore/jar/6.0.0-rc.1.21425.26/signalr-6.0.0-rc.1.21425.26-javadoc.jar
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-targeting-pack-6.0.0-rc.1.21425.26-win-x64.msi.wixpack.zip
Microsoft.AspNetCore.App.Runtime.linux-musl-x64
Microsoft.AspNetCore.SignalR.Client.Core
Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv
Microsoft.AspNetCore.Mvc.Testing
Microsoft.DotNet.Web.ProjectTemplates.6.0
Microsoft.DotNet.Web.Client.ItemTemplates
Microsoft.AspNetCore.Components.WebAssembly.DevServer
Microsoft.AspNetCore.Components.Web
Microsoft.AspNetCore.Components
Microsoft.AspNetCore.Components.WebAssembly.Server
aspnetcore/Runtime/6.0.0-rc.1.21425.26/AspNetCoreSharedFrameworkBundle-x64.exe.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore_base_runtime.version
assets/symbols/Microsoft.AspNetCore.App.Runtime.win-x64.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Authentication.JwtBearer.6.0.0-rc.1.21425.26.symbols.nupkg
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-targeting-pack-6.0.0-rc.1.21425.26.zip
aspnetcore/npm/6.0.0-rc.1.21425.26/microsoft-signalr-protocol-msgpack-6.0.0-rc.1.21425.26.tgz
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-internal-6.0.0-rc.1.21425.26-win-x86.wixlib
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-6.0.0-rc.1.21425.26-win-x86.exe.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-6.0.0-rc.1.21425.26-win-x64.exe.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-6.0.0-rc.1.21425.26-win-x86.exe
Microsoft.AspNetCore.App.Runtime.win-arm
assets/symbols/Microsoft.AspNetCore.App.Runtime.win-arm.6.0.0-rc.1.21425.26.symbols.nupkg
Microsoft.AspNetCore.App.Runtime.osx-x64
Microsoft.AspNetCore.App.Runtime.win-x86
AspNetCoreRuntime.6.0.x64
Microsoft.AspNetCore.Authentication.AzureAD.UI
Microsoft.AspNetCore.App.Runtime.linux-x64
Microsoft.Extensions.Localization.Abstractions
Microsoft.CodeAnalysis.Razor
Microsoft.AspNetCore.AzureAppServicesIntegration
Microsoft.AspNetCore.Authentication.Negotiate
Microsoft.AspNetCore.Authentication.JwtBearer
aspnetcore/Runtime/6.0.0-rc.1.21425.26/productVersion.txt
aspnetcore/Runtime/6.0.0-rc.1.21425.26/AspNetCoreSharedFrameworkBundle-x86.exe.wixpack.zip
assets/symbols/Microsoft.AspNetCore.ApiAuthorization.IdentityServer.6.0.0-rc.1.21425.26.symbols.nupkg
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-targeting-pack-6.0.0-rc.1.21425.26.tar.gz
aspnetcore/Runtime/6.0.0-rc.1.21425.26/ancm_iis_express_x64_en_v2_6.0.0-rc.1.21425.26.msi
aspnetcore/Runtime/6.0.0-rc.1.21425.26/ancm_iis_express_x64_en_v2_6.0.0-rc.1.21425.26.msi.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-6.0.0-rc.1.21425.26-win-x64.exe
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-targeting-pack-6.0.0-rc.1.21425.26-win-x86.msi
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-targeting-pack-6.0.0-rc.1.21425.26-win-x64.msi
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-targeting-pack-6.0.0-rc.1.21425.26-win-arm64.msi
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-internal-6.0.0-rc.1.21425.26-win-x64.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-6.0.0-rc.1.21425.26-win-x86.msi
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-6.0.0-rc.1.21425.26-win-x64.msi.wixpack.zip
assets/symbols/Microsoft.dotnet-openapi.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Authentication.WebAssembly.Msal.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.SignalR.StackExchangeRedis.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.TestHost.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.SignalR.Protocols.Json.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.SignalR.Protocols.MessagePack.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Localization.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Logging.AzureAppServices.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.WebEncoders.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Components.Web.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Components.Forms.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Components.Authorization.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Components.WebAssembly.Server.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Razor.Language.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.HeaderPropagation.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Mvc.Razor.Extensions.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.JsonPatch.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Http.Connections.Common.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Mvc.NewtonsoftJson.6.0.0-rc.1.21425.26.symbols.nupkg
Microsoft.AspNetCore.App.Runtime.win-arm64
Microsoft.Extensions.ObjectPool
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-6.0.0-rc.1.21425.26-win-arm64.msi.wixpack.zip
Microsoft.AspNetCore.App.Ref
dotnet-sql-cache
Microsoft.AspNetCore.Authentication.AzureADB2C.UI
assets/symbols/Microsoft.AspNetCore.App.Runtime.linux-musl-x64.6.0.0-rc.1.21425.26.symbols.nupkg
Microsoft.AspNetCore.SignalR.Protocols.MessagePack
Microsoft.AspNetCore.Owin
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation
Microsoft.Authentication.WebAssembly.Msal
Microsoft.Extensions.Logging.AzureAppServices
Microsoft.Extensions.Identity.Stores
Microsoft.Extensions.FileProviders.Embedded
Microsoft.Extensions.Http.Polly
Microsoft.Extensions.Features
Microsoft.Extensions.Configuration.KeyPerFile
Microsoft.Extensions.Caching.StackExchangeRedis
Microsoft.Extensions.ApiDescription.Server
Microsoft.Extensions.Diagnostics.HealthChecks
Microsoft.AspNetCore.Authentication.Facebook
Microsoft.AspNetCore.Components.Forms
Microsoft.AspNetCore.Components.Authorization
Microsoft.AspNetCore.Components.WebView
Microsoft.AspNetCore.Identity.UI
Microsoft.AspNetCore.Metadata
Microsoft.AspNetCore.Identity.EntityFrameworkCore
Microsoft.AspNetCore.Http.Connections.Common
Microsoft.AspNetCore.Hosting.WindowsServices
Microsoft.AspNetCore.DataProtection.StackExchangeRedis
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcoremodule_x86_en_v2_6.0.0-rc.1.21425.26.msi
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcoremodule_x64_en_v2_6.0.0-rc.1.21425.26.msi
assets/symbols/Microsoft.Extensions.ApiDescription.Server.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.App.Runtime.linux-arm64.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.App.Runtime.linux-arm.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.App.Runtime.linux-musl-arm64.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.App.Runtime.linux-x64.6.0.0-rc.1.21425.26.symbols.nupkg
Microsoft.AspNetCore.Authentication.Google
Microsoft.AspNetCore.TestHost
Microsoft.AspNetCore.SignalR.StackExchangeRedis
Microsoft.AspNetCore.SignalR.Specification.Tests
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson
Microsoft.AspNetCore.SignalR.Protocols.Json
Microsoft.AspNetCore.Razor.Language
Microsoft.AspNetCore.SignalR.Client
Microsoft.dotnet-openapi
Microsoft.Extensions.Localization
Microsoft.Extensions.Identity.Core
Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore
Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions
Microsoft.Extensions.Caching.SqlServer
Microsoft.DotNet.Web.Spa.ProjectTemplates.6.0
Microsoft.DotNet.Web.ItemTemplates
Microsoft.AspNetCore.Mvc.NewtonsoftJson
Microsoft.AspNetCore.Components.WebAssembly.Authentication
Microsoft.AspNetCore.Components.Analyzers
Microsoft.AspNetCore.Authorization
Microsoft.AspNetCore.Authentication.WsFederation
Microsoft.AspNetCore.Authentication.Twitter
Microsoft.AspNetCore.Connections.Abstractions
Microsoft.AspNetCore.Mvc.Razor.Extensions
Microsoft.AspNetCore.MiddlewareAnalysis
Microsoft.AspNetCore.JsonPatch
Microsoft.AspNetCore.Http.Connections.Client
Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore
Microsoft.AspNetCore.DataProtection.EntityFrameworkCore
Microsoft.AspNetCore.Cryptography.Internal
aspnetcore/Runtime/6.0.0-rc.1.21425.26/WindowsServerHostingBundle.exe.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/dotnet-hosting-6.0.0-rc.1.21425.26-win.exe
assets/symbols/AspNetCoreRuntime.6.0.x64.6.0.0-rc-1-21425-26.symbols.nupkg
aspnetcore/Runtime/6.0.0-rc.1.21425.26/AspNetCoreSharedFrameworkLibx86.wixlib.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcoremodule_x64_en_v2_6.0.0-rc.1.21425.26.msi.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/AspNetCoreModuleV2_x64.msi.wixpack.zip
assets/symbols/Microsoft.AspNetCore.App.Ref.6.0.0-rc.1.21425.26.symbols.nupkg
aspnetcore/Runtime/6.0.0-rc.1.21425.26/AspNetCoreModuleV2_x86.msi.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/AspNetCoreModuleV2IISExpress_x86.msi.wixpack.zip
assets/symbols/dotnet-sql-cache.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Authorization.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Authentication.WsFederation.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Authentication.Twitter.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Authentication.Negotiate.6.0.0-rc.1.21425.26.symbols.nupkg
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-targeting-pack-6.0.0-rc.1.21425.26-win-arm64.msi.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-6.0.0-rc.1.21425.26-win-x86.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-internal-6.0.0-rc.1.21425.26-win-x86.wixlib.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-6.0.0-rc.1.21425.26-win-x86.msi.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-productVersion.txt
assets/symbols/Microsoft.AspNetCore.SpaProxy.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.SpaServices.Extensions.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.SignalR.Common.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Identity.Stores.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.FileProviders.Embedded.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Features.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.DataProtection.Extensions.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.DataProtection.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Cryptography.KeyDerivation.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.ConcurrencyLimiter.6.0.0-rc.1.21425.26.symbols.nupkg
Microsoft.JSInterop
assets/symbols/Microsoft.AspNetCore.Owin.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.MiddlewareAnalysis.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Metadata.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Http.Connections.Client.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Identity.EntityFrameworkCore.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.App.Runtime.osx-x64.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.App.Runtime.osx-arm64.6.0.0-rc.1.21425.26.symbols.nupkg
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-internal-6.0.0-rc.1.21425.26-win-arm64.wixlib.wixpack.zip
Microsoft.AspNetCore.App.Runtime.linux-arm
Microsoft.AspNetCore.Authentication.Certificate
Microsoft.AspNetCore.SpaServices.Extensions
Microsoft.AspNetCore.SpaProxy
Microsoft.AspNetCore.SignalR.Common
Microsoft.Extensions.ApiDescription.Client
Microsoft.AspNetCore.Components.WebAssembly
Microsoft.AspNetCore.AzureAppServices.HostingStartup
Microsoft.AspNetCore.Authentication.OpenIdConnect
Microsoft.AspNetCore.Authentication.MicrosoftAccount
Microsoft.AspNetCore.ConcurrencyLimiter
Microsoft.AspNetCore.DataProtection.Abstractions
Microsoft.AspNetCore.DataProtection.Extensions
Microsoft.AspNetCore.Cryptography.KeyDerivation
assets/symbols/AspNetCoreRuntime.6.0.x86.6.0.0-rc-1-21425-26.symbols.nupkg
Microsoft.JSInterop.WebAssembly
assets/symbols/Microsoft.AspNetCore.Authentication.OpenIdConnect.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Authentication.Facebook.6.0.0-rc.1.21425.26.symbols.nupkg
aspnetcore/npm/6.0.0-rc.1.21425.26/microsoft-dotnet-js-interop-6.0.0-rc.1.21425.26.tgz
aspnetcore/Runtime/6.0.0-rc.1.21425.26/ancm_iis_express_x86_en_v2_6.0.0-rc.1.21425.26.msi
aspnetcore/jar/6.0.0-rc.1.21425.26/signalr-messagepack-6.0.0-rc.1.21425.26.jar
aspnetcore/jar/6.0.0-rc.1.21425.26/signalr-messagepack-6.0.0-rc.1.21425.26-javadoc.jar
aspnetcore/jar/6.0.0-rc.1.21425.26/signalr-6.0.0-rc.1.21425.26-sources.jar
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-internal-6.0.0-rc.1.21425.26-win-x86.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/ancm_iis_express_x86_en_v2_6.0.0-rc.1.21425.26.msi.wixpack.zip
aspnetcore/Runtime/6.0.0-rc.1.21425.26/aspnetcore-runtime-internal-6.0.0-rc.1.21425.26-win-x64.wixlib.wixpack.zip
assets/symbols/Microsoft.Extensions.Caching.SqlServer.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.DotNet.Web.ProjectTemplates.6.0.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.AzureAppServices.SiteExtension.6.0.0-rc-1-21425-26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Caching.StackExchangeRedis.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.ApiDescription.Client.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.DotNet.Web.Spa.ProjectTemplates.6.0.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.DotNet.Web.ItemTemplates.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.DotNet.Web.Client.ItemTemplates.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.CodeAnalysis.Razor.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.SignalR.Client.Core.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Components.WebAssembly.DevServer.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.Http.Polly.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.Extensions.ObjectPool.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.SignalR.Client.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Cryptography.Internal.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Components.WebView.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Components.WebAssembly.Authentication.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Components.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Hosting.WindowsServices.6.0.0-rc.1.21425.26.symbols.nupkg
assets/symbols/Microsoft.AspNetCore.Mvc.Testing.6.0.0-rc.1.21425.26.symbols.nupkg
Microsoft.Extensions.WebEncoders
AspNetCoreRuntime.6.0.x86
Microsoft.AspNetCore.App.Runtime.osx-arm64
Microsoft.AspNetCore.App.Runtime.linux-arm64
Microsoft.AspNetCore.AzureAppServices.SiteExtension
Microsoft.AspNetCore.DataProtection
Microsoft.AspNetCore.HeaderPropagation
</details>
#### Source Code Validation
- :x: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/1319087/logs/95) - (NETCORE_ENGINEERING_TELEMETRY=Sdl) Last command failed with exit code 1.
### Changes
- [bce12e6b](https://dev.azure.com/dnceng/internal/_git/dotnet-release/commit/bce12e6bfa421376a72349b30686d6776f199545) - Epsitha Ananth - Merged PR 17673: Sign Mariner files with Mariner cert
- [2bd8ba9a](https://dev.azure.com/dnceng/internal/_git/dotnet-release/commit/2bd8ba9a1cf98e18b527a717f1c5ce610d2f875b) - Jon Fortescue - Merged PR 16997: Do real publishing in test runs of Stage-DotNet
- [2e7d6fd5](https://dev.azure.com/dnceng/internal/_git/dotnet-release/commit/2e7d6fd5ffe2a257e09bbb800d6e04ea6faef341) - Michelle McDaniel - Merged PR 17663: Merged PR 17651: Hotfix publishing signed packages
- [c47f9d3d](https://dev.azure.com/dnceng/internal/_git/dotnet-release/commit/c47f9d3d76b7616f5fb9f30a3172e605b8868e08) - Michelle McDaniel - Merged PR 17651: Hotfix publishing signed packages
- [848c4592](https://dev.azure.com/dnceng/internal/_git/dotnet-release/commit/848c459272a5d3da38e7f48f2a805f74a182369a) - DotNet Bot - [main] Update dependencies from dotnet/arcade
| infrastructure | build failed validate dotnet main real signed aspnetcore net rc validation aspnetcore net rc aspnetcore build partiallysucceeded warning internal validate dotnet partiallysucceeded summary finished thu aug gmt duration minutes requested for dotnet bot reason manual details validation ring x netcore engineering telemetry sourcelink package s failed validation x powershell exited with code required validation ring warning number of checksums and assets don t match checksums assets assets with no corresponding checksum are aspnetcore runtime rc dotnet hosting rc win exe wixpack zip aspnetcore runtime rc wixlib wixpack zip aspnetcore runtime rc aspnetcoremodule en rc msi wixpack zip aspnetcore runtime rc msi wixpack zip assets symbols microsoft aspnetcore app runtime win rc symbols nupkg assets symbols microsoft aspnetcore authentication microsoftaccount rc symbols nupkg assets symbols microsoft aspnetcore authentication google rc symbols nupkg assets symbols microsoft aspnetcore authentication azuread ui rc symbols nupkg aspnetcore npm rc microsoft signalr rc tgz aspnetcore jar rc signalr rc jar assets symbols microsoft aspnetcore azureappservices hostingstartup rc symbols nupkg aspnetcore runtime rc aspnetcore runtime rc win zip aspnetcore runtime rc aspnetcore runtime rc win msi aspnetcore runtime rc aspnetcore runtime internal rc win wixlib microsoft aspnetcore app runtime win aspnetcore runtime rc wixlib wixpack zip assets symbols microsoft aspnetcore app runtime win rc symbols nupkg microsoft aspnetcore app runtime linux musl arm assets symbols microsoft aspnetcore signalr specification tests rc symbols nupkg assets symbols microsoft extensions configuration keyperfile rc symbols nupkg assets symbols microsoft jsinterop webassembly rc symbols nupkg assets symbols microsoft jsinterop rc symbols nupkg assets symbols microsoft extensions diagnostics healthchecks rc symbols nupkg assets symbols microsoft extensions localization abstractions rc symbols nupkg assets symbols microsoft extensions identity core rc symbols nupkg assets symbols microsoft aspnetcore dataprotection stackexchangeredis rc symbols nupkg assets symbols microsoft aspnetcore dataprotection abstractions rc symbols nupkg assets symbols microsoft aspnetcore connections abstractions rc symbols nupkg assets symbols microsoft aspnetcore components webassembly rc symbols nupkg assets symbols microsoft aspnetcore components analyzers rc symbols nupkg assets symbols microsoft aspnetcore azureappservicesintegration rc symbols nupkg assets symbols microsoft aspnetcore server kestrel transport libuv rc symbols nupkg assets symbols microsoft aspnetcore identity ui rc symbols nupkg microsoft aspnetcore apiauthorization identityserver microsoft aspnetcore app runtime linux musl assets symbols microsoft aspnetcore app runtime linux musl arm rc symbols nupkg aspnetcore runtime rc aspnetcoremodule version assets symbols microsoft aspnetcore authentication certificate rc symbols nupkg aspnetcore runtime rc aspnetcore targeting pack rc win msi wixpack zip assets symbols microsoft aspnetcore authentication ui rc symbols nupkg aspnetcore jar rc signalr messagepack rc pom aspnetcore jar rc signalr messagepack rc sources jar aspnetcore jar rc signalr rc pom aspnetcore jar rc signalr rc javadoc jar aspnetcore runtime rc aspnetcore targeting pack rc win msi wixpack zip microsoft aspnetcore app runtime linux musl microsoft aspnetcore signalr client core microsoft aspnetcore server kestrel transport libuv microsoft aspnetcore mvc testing microsoft dotnet web projecttemplates microsoft dotnet web client itemtemplates microsoft aspnetcore components webassembly devserver microsoft aspnetcore components web microsoft aspnetcore components microsoft aspnetcore components webassembly server aspnetcore runtime rc aspnetcoresharedframeworkbundle exe wixpack zip aspnetcore runtime rc aspnetcore base runtime version assets symbols microsoft aspnetcore app runtime win rc symbols nupkg assets symbols microsoft aspnetcore authentication jwtbearer rc symbols nupkg aspnetcore runtime rc aspnetcore targeting pack rc zip aspnetcore npm rc microsoft signalr protocol msgpack rc tgz aspnetcore runtime rc aspnetcore runtime internal rc win wixlib aspnetcore runtime rc aspnetcore runtime rc win exe wixpack zip aspnetcore runtime rc aspnetcore runtime rc win exe wixpack zip aspnetcore runtime rc aspnetcore runtime rc win exe microsoft aspnetcore app runtime win arm assets symbols microsoft aspnetcore app runtime win arm rc symbols nupkg microsoft aspnetcore app runtime osx microsoft aspnetcore app runtime win aspnetcoreruntime microsoft aspnetcore authentication azuread ui microsoft aspnetcore app runtime linux microsoft extensions localization abstractions microsoft codeanalysis razor microsoft aspnetcore azureappservicesintegration microsoft aspnetcore authentication negotiate microsoft aspnetcore authentication jwtbearer aspnetcore runtime rc productversion txt aspnetcore runtime rc aspnetcoresharedframeworkbundle exe wixpack zip assets symbols microsoft aspnetcore apiauthorization identityserver rc symbols nupkg aspnetcore runtime rc aspnetcore targeting pack rc tar gz aspnetcore runtime rc ancm iis express en rc msi aspnetcore runtime rc ancm iis express en rc msi wixpack zip aspnetcore runtime rc aspnetcore runtime rc win exe aspnetcore runtime rc aspnetcore targeting pack rc win msi aspnetcore runtime rc aspnetcore targeting pack rc win msi aspnetcore runtime rc aspnetcore targeting pack rc win msi aspnetcore runtime rc aspnetcore runtime internal rc win zip aspnetcore runtime rc aspnetcore runtime rc win msi aspnetcore runtime rc aspnetcore runtime rc win msi wixpack zip assets symbols microsoft dotnet openapi rc symbols nupkg assets symbols microsoft authentication webassembly msal rc symbols nupkg assets symbols microsoft aspnetcore signalr stackexchangeredis rc symbols nupkg assets symbols microsoft aspnetcore testhost rc symbols nupkg assets symbols microsoft aspnetcore signalr protocols json rc symbols nupkg assets symbols microsoft aspnetcore signalr protocols messagepack rc symbols nupkg assets symbols microsoft extensions localization rc symbols nupkg assets symbols microsoft extensions logging azureappservices rc symbols nupkg assets symbols microsoft extensions webencoders rc symbols nupkg assets symbols microsoft aspnetcore components web rc symbols nupkg assets symbols microsoft aspnetcore components forms rc symbols nupkg assets symbols microsoft aspnetcore components authorization rc symbols nupkg assets symbols microsoft aspnetcore components webassembly server rc symbols nupkg assets symbols microsoft aspnetcore razor language rc symbols nupkg assets symbols microsoft aspnetcore headerpropagation rc symbols nupkg assets symbols microsoft aspnetcore mvc razor extensions rc symbols nupkg assets symbols microsoft aspnetcore jsonpatch rc symbols nupkg assets symbols microsoft aspnetcore http connections common rc symbols nupkg assets symbols microsoft aspnetcore mvc newtonsoftjson rc symbols nupkg microsoft aspnetcore app runtime win microsoft extensions objectpool aspnetcore runtime rc aspnetcore runtime rc win msi wixpack zip microsoft aspnetcore app ref dotnet sql cache microsoft aspnetcore authentication ui assets symbols microsoft aspnetcore app runtime linux musl rc symbols nupkg microsoft aspnetcore signalr protocols messagepack microsoft aspnetcore owin microsoft aspnetcore mvc razor runtimecompilation microsoft authentication webassembly msal microsoft extensions logging azureappservices microsoft extensions identity stores microsoft extensions fileproviders embedded microsoft extensions http polly microsoft extensions features microsoft extensions configuration keyperfile microsoft extensions caching stackexchangeredis microsoft extensions apidescription server microsoft extensions diagnostics healthchecks microsoft aspnetcore authentication facebook microsoft aspnetcore components forms microsoft aspnetcore components authorization microsoft aspnetcore components webview microsoft aspnetcore identity ui microsoft aspnetcore metadata microsoft aspnetcore identity entityframeworkcore microsoft aspnetcore http connections common microsoft aspnetcore hosting windowsservices microsoft aspnetcore dataprotection stackexchangeredis aspnetcore runtime rc aspnetcoremodule en rc msi aspnetcore runtime rc aspnetcoremodule en rc msi assets symbols microsoft extensions apidescription server rc symbols nupkg assets symbols microsoft aspnetcore app runtime linux rc symbols nupkg assets symbols microsoft aspnetcore app runtime linux arm rc symbols nupkg assets symbols microsoft aspnetcore app runtime linux musl rc symbols nupkg assets symbols microsoft aspnetcore app runtime linux rc symbols nupkg microsoft aspnetcore authentication google microsoft aspnetcore testhost microsoft aspnetcore signalr stackexchangeredis microsoft aspnetcore signalr specification tests microsoft aspnetcore signalr protocols newtonsoftjson microsoft aspnetcore signalr protocols json microsoft aspnetcore razor language microsoft aspnetcore signalr client microsoft dotnet openapi microsoft extensions localization microsoft extensions identity core microsoft extensions diagnostics healthchecks entityframeworkcore microsoft extensions diagnostics healthchecks abstractions microsoft extensions caching sqlserver microsoft dotnet web spa projecttemplates microsoft dotnet web itemtemplates microsoft aspnetcore mvc newtonsoftjson microsoft aspnetcore components webassembly authentication microsoft aspnetcore components analyzers microsoft aspnetcore authorization microsoft aspnetcore authentication wsfederation microsoft aspnetcore authentication twitter microsoft aspnetcore connections abstractions microsoft aspnetcore mvc razor extensions microsoft aspnetcore middlewareanalysis microsoft aspnetcore jsonpatch microsoft aspnetcore http connections client microsoft aspnetcore diagnostics entityframeworkcore microsoft aspnetcore dataprotection entityframeworkcore microsoft aspnetcore cryptography internal aspnetcore runtime rc windowsserverhostingbundle exe wixpack zip aspnetcore runtime rc dotnet hosting rc win exe assets symbols aspnetcoreruntime rc symbols nupkg aspnetcore runtime rc wixlib wixpack zip aspnetcore runtime rc aspnetcoremodule en rc msi wixpack zip aspnetcore runtime rc msi wixpack zip assets symbols microsoft aspnetcore app ref rc symbols nupkg aspnetcore runtime rc msi wixpack zip aspnetcore runtime rc msi wixpack zip assets symbols dotnet sql cache rc symbols nupkg assets symbols microsoft aspnetcore authorization rc symbols nupkg assets symbols microsoft aspnetcore authentication wsfederation rc symbols nupkg assets symbols microsoft aspnetcore authentication twitter rc symbols nupkg assets symbols microsoft aspnetcore authentication negotiate rc symbols nupkg aspnetcore runtime rc aspnetcore targeting pack rc win msi wixpack zip aspnetcore runtime rc aspnetcore runtime rc win zip aspnetcore runtime rc aspnetcore runtime internal rc win wixlib wixpack zip aspnetcore runtime rc aspnetcore runtime rc win msi wixpack zip aspnetcore runtime rc aspnetcore productversion txt assets symbols microsoft aspnetcore spaproxy rc symbols nupkg assets symbols microsoft aspnetcore spaservices extensions rc symbols nupkg assets symbols microsoft aspnetcore signalr protocols newtonsoftjson rc symbols nupkg assets symbols microsoft aspnetcore signalr common rc symbols nupkg assets symbols microsoft extensions identity stores rc symbols nupkg assets symbols microsoft extensions fileproviders embedded rc symbols nupkg assets symbols microsoft extensions features rc symbols nupkg assets symbols microsoft extensions diagnostics healthchecks entityframeworkcore rc symbols nupkg assets symbols microsoft aspnetcore dataprotection extensions rc symbols nupkg assets symbols microsoft aspnetcore dataprotection entityframeworkcore rc symbols nupkg assets symbols microsoft aspnetcore dataprotection rc symbols nupkg assets symbols microsoft aspnetcore cryptography keyderivation rc symbols nupkg assets symbols microsoft aspnetcore concurrencylimiter rc symbols nupkg microsoft jsinterop assets symbols microsoft aspnetcore owin rc symbols nupkg assets symbols microsoft aspnetcore mvc razor runtimecompilation rc symbols nupkg assets symbols microsoft aspnetcore middlewareanalysis rc symbols nupkg assets symbols microsoft aspnetcore metadata rc symbols nupkg assets symbols microsoft aspnetcore http connections client rc symbols nupkg assets symbols microsoft aspnetcore identity entityframeworkcore rc symbols nupkg assets symbols microsoft aspnetcore app runtime osx rc symbols nupkg assets symbols microsoft aspnetcore app runtime osx rc symbols nupkg aspnetcore runtime rc aspnetcore runtime internal rc win wixlib wixpack zip microsoft aspnetcore app runtime linux arm microsoft aspnetcore authentication certificate microsoft aspnetcore spaservices extensions microsoft aspnetcore spaproxy microsoft aspnetcore signalr common microsoft extensions apidescription client microsoft aspnetcore components webassembly microsoft aspnetcore azureappservices hostingstartup microsoft aspnetcore authentication openidconnect microsoft aspnetcore authentication microsoftaccount microsoft aspnetcore concurrencylimiter microsoft aspnetcore dataprotection abstractions microsoft aspnetcore dataprotection extensions microsoft aspnetcore cryptography keyderivation assets symbols aspnetcoreruntime rc symbols nupkg microsoft jsinterop webassembly assets symbols microsoft aspnetcore authentication openidconnect rc symbols nupkg assets symbols microsoft aspnetcore authentication facebook rc symbols nupkg aspnetcore npm rc microsoft dotnet js interop rc tgz aspnetcore runtime rc ancm iis express en rc msi aspnetcore jar rc signalr messagepack rc jar aspnetcore jar rc signalr messagepack rc javadoc jar aspnetcore jar rc signalr rc sources jar aspnetcore runtime rc aspnetcore runtime internal rc win zip aspnetcore runtime rc ancm iis express en rc msi wixpack zip aspnetcore runtime rc aspnetcore runtime internal rc win wixlib wixpack zip assets symbols microsoft extensions caching sqlserver rc symbols nupkg assets symbols microsoft dotnet web projecttemplates rc symbols nupkg assets symbols microsoft aspnetcore azureappservices siteextension rc symbols nupkg assets symbols microsoft extensions caching stackexchangeredis rc symbols nupkg assets symbols microsoft extensions apidescription client rc symbols nupkg assets symbols microsoft dotnet web spa projecttemplates rc symbols nupkg assets symbols microsoft dotnet web itemtemplates rc symbols nupkg assets symbols microsoft dotnet web client itemtemplates rc symbols nupkg assets symbols microsoft codeanalysis razor rc symbols nupkg assets symbols microsoft aspnetcore signalr client core rc symbols nupkg assets symbols microsoft extensions diagnostics healthchecks abstractions rc symbols nupkg assets symbols microsoft aspnetcore components webassembly devserver rc symbols nupkg assets symbols microsoft extensions http polly rc symbols nupkg assets symbols microsoft extensions objectpool rc symbols nupkg assets symbols microsoft aspnetcore signalr client rc symbols nupkg assets symbols microsoft aspnetcore cryptography internal rc symbols nupkg assets symbols microsoft aspnetcore components webview rc symbols nupkg assets symbols microsoft aspnetcore components webassembly authentication rc symbols nupkg assets symbols microsoft aspnetcore components rc symbols nupkg assets symbols microsoft aspnetcore diagnostics entityframeworkcore rc symbols nupkg assets symbols microsoft aspnetcore hosting windowsservices rc symbols nupkg assets symbols microsoft aspnetcore mvc testing rc symbols nupkg microsoft extensions webencoders aspnetcoreruntime microsoft aspnetcore app runtime osx microsoft aspnetcore app runtime linux microsoft aspnetcore azureappservices siteextension microsoft aspnetcore dataprotection microsoft aspnetcore headerpropagation source code validation x netcore engineering telemetry sdl last command failed with exit code changes epsitha ananth merged pr sign mariner files with mariner cert jon fortescue merged pr do real publishing in test runs of stage dotnet michelle mcdaniel merged pr merged pr hotfix publishing signed packages michelle mcdaniel merged pr hotfix publishing signed packages dotnet bot update dependencies from dotnet arcade | 1 |
252,593 | 19,043,428,740 | IssuesEvent | 2021-11-25 02:48:42 | viveljs/viveljs | https://api.github.com/repos/viveljs/viveljs | closed | Add Documentation Software | documentation | Kita butuh Dokumentasi untuk viveljs. So far Docusaurus itu pilihan pertama, cuma kalau ada yang lebih bagus atau lebih cocok.. silahkan ditaro di forum. | 1.0 | Add Documentation Software - Kita butuh Dokumentasi untuk viveljs. So far Docusaurus itu pilihan pertama, cuma kalau ada yang lebih bagus atau lebih cocok.. silahkan ditaro di forum. | non_infrastructure | add documentation software kita butuh dokumentasi untuk viveljs so far docusaurus itu pilihan pertama cuma kalau ada yang lebih bagus atau lebih cocok silahkan ditaro di forum | 0 |
31,694 | 26,008,655,515 | IssuesEvent | 2022-12-20 22:12:25 | eosnetworkfoundation/engineering | https://api.github.com/repos/eosnetworkfoundation/engineering | closed | Internal Domain Name | Infrastructure | ## Background
Currently, all EOS Network Foundation (ENF) infrastructure exists at `eosnetwork.com` or one of its sub-domains. This is ideal for (external) customer-facing services such as [learn.eosnetwork.com](https://learn.eosnetwork.com).
## Problem
Using the primary, customer-facing web real estate at `eosnetwork.com` for internal services, developer work, and engineering testing creates unnecessary risk to our outward-facing properties and currently involves friction. While we have plans to eliminate the friction, the risk will remain.
There are a number of other domains marketing has picked up to protect our brand and they are more than happy to let engineers use some of them, but they have asked that their department approve changes made to these domains in advance. This is a perfectly reasonable request. Automation is grateful to work with Marketing and we are certain requests will be approved quickly. However, this is still friction.
## Solution
Automation is requesting permission to purchase one or two domain names to be used exclusively for inward-facing services, developer work, and engineers. These domains would be frictionless in the sense that Automation and Engineering would have ownership over them, be able to provision resources for internal projects without risk to external customer-facing resources, and provision resources without approval from other departments. Automation has a shortlist of domain names we have confirmed are available to use for this purpose but we have intentionally excluded them from this ticket to protect their availability. The list is available via IM or email upon request.
The cost of these domains would be $20-$40 per year per domain name.
| 1.0 | Internal Domain Name - ## Background
Currently, all EOS Network Foundation (ENF) infrastructure exists at `eosnetwork.com` or one of its sub-domains. This is ideal for (external) customer-facing services such as [learn.eosnetwork.com](https://learn.eosnetwork.com).
## Problem
Using the primary, customer-facing web real estate at `eosnetwork.com` for internal services, developer work, and engineering testing creates unnecessary risk to our outward-facing properties and currently involves friction. While we have plans to eliminate the friction, the risk will remain.
There are a number of other domains marketing has picked up to protect our brand and they are more than happy to let engineers use some of them, but they have asked that their department approve changes made to these domains in advance. This is a perfectly reasonable request. Automation is grateful to work with Marketing and we are certain requests will be approved quickly. However, this is still friction.
## Solution
Automation is requesting permission to purchase one or two domain names to be used exclusively for inward-facing services, developer work, and engineers. These domains would be frictionless in the sense that Automation and Engineering would have ownership over them, be able to provision resources for internal projects without risk to external customer-facing resources, and provision resources without approval from other departments. Automation has a shortlist of domain names we have confirmed are available to use for this purpose but we have intentionally excluded them from this ticket to protect their availability. The list is available via IM or email upon request.
The cost of these domains would be $20-$40 per year per domain name.
| infrastructure | internal domain name background currently all eos network foundation enf infrastructure exists at eosnetwork com or one of its sub domains this is ideal for external customer facing services such as problem using the primary customer facing web real estate at eosnetwork com for internal services developer work and engineering testing creates unnecessary risk to our outward facing properties and currently involves friction while we have plans to eliminate the friction the risk will remain there are a number of other domains marketing has picked up to protect our brand and they are more than happy to let engineers use some of them but they have asked that their department approve changes made to these domains in advance this is a perfectly reasonable request automation is grateful to work with marketing and we are certain requests will be approved quickly however this is still friction solution automation is requesting permission to purchase one or two domain names to be used exclusively for inward facing services developer work and engineers these domains would be frictionless in the sense that automation and engineering would have ownership over them be able to provision resources for internal projects without risk to external customer facing resources and provision resources without approval from other departments automation has a shortlist of domain names we have confirmed are available to use for this purpose but we have intentionally excluded them from this ticket to protect their availability the list is available via im or email upon request the cost of these domains would be per year per domain name | 1 |
222 | 2,507,106,396 | IssuesEvent | 2015-01-12 16:10:09 | cachethq/Cachet | https://api.github.com/repos/cachethq/Cachet | closed | Update contributing document | documentation enhancement | The contributing document will need rewriting a bit to match StyleCI, this will stop confusion when a contributor writes something, then CI says "no, it's wrong" even though they just followed the guide.
CC @GrahamCampbell can you send me the PHP-Fixer configuration file that we're using please. | 1.0 | Update contributing document - The contributing document will need rewriting a bit to match StyleCI, this will stop confusion when a contributor writes something, then CI says "no, it's wrong" even though they just followed the guide.
CC @GrahamCampbell can you send me the PHP-Fixer configuration file that we're using please. | non_infrastructure | update contributing document the contributing document will need rewriting a bit to match styleci this will stop confusion when a contributor writes something then ci says no it s wrong even though they just followed the guide cc grahamcampbell can you send me the php fixer configuration file that we re using please | 0 |
497 | 2,736,600,058 | IssuesEvent | 2015-04-19 16:04:09 | rezib/cloubed | https://api.github.com/repos/rezib/cloubed | closed | back to a more standard python package layout | enhancement infrastructure | See this blog post generally considered as a reference:
http://as.ynchrono.us/2007/12/filesystem-structure-of-python-project_21.html | 1.0 | back to a more standard python package layout - See this blog post generally considered as a reference:
http://as.ynchrono.us/2007/12/filesystem-structure-of-python-project_21.html | infrastructure | back to a more standard python package layout see this blog post generally considered as a reference | 1 |
4,375 | 5,028,920,182 | IssuesEvent | 2016-12-15 19:38:07 | espressopp/espressopp | https://api.github.com/repos/espressopp/espressopp | closed | v1.9.4 tag is missing | bug infrastructure | Make a tag on the version from which the 1.9.4 tarball was made and push it to github. | 1.0 | v1.9.4 tag is missing - Make a tag on the version from which the 1.9.4 tarball was made and push it to github. | infrastructure | tag is missing make a tag on the version from which the tarball was made and push it to github | 1 |
6,939 | 6,668,696,539 | IssuesEvent | 2017-10-03 16:39:52 | keddelzz/hidden-args | https://api.github.com/repos/keddelzz/hidden-args | opened | Change organization-name | infrastructure | Change it from `com.github.keddelzz.hidden-args` to `com.github.keddelzz`.
This change will also affect future releases of `hidden-args`. (Because we should also change the organization-name of the project on jcenter to be consistent with the changes in repo.) | 1.0 | Change organization-name - Change it from `com.github.keddelzz.hidden-args` to `com.github.keddelzz`.
This change will also affect future releases of `hidden-args`. (Because we should also change the organization-name of the project on jcenter to be consistent with the changes in repo.) | infrastructure | change organization name change it from com github keddelzz hidden args to com github keddelzz this change will also affect future releases of hidden args because we should also change the organization name of the project on jcenter to be consistent with the changes in repo | 1 |
5,998 | 6,101,466,730 | IssuesEvent | 2017-06-20 14:40:42 | redox-os/ion | https://api.github.com/repos/redox-os/ion | closed | Make Homu automatically update the crate version based on changes to the changelog | infrastructure | This depends on https://github.com/redox-os/ion/issues/80.
If Homu could then push the changes to cargo, that would be even better.
| 1.0 | Make Homu automatically update the crate version based on changes to the changelog - This depends on https://github.com/redox-os/ion/issues/80.
If Homu could then push the changes to cargo, that would be even better.
| infrastructure | make homu automatically update the crate version based on changes to the changelog this depends on if homu could then push the changes to cargo that would be even better | 1 |
29,052 | 8,269,534,627 | IssuesEvent | 2018-09-15 07:16:36 | hashicorp/packer | https://api.github.com/repos/hashicorp/packer | closed | Security and Network Queries on Packer | builder/azure | I am using packer and terraform for sometime. Its been a great set of tools for automating a lot of things.
I am having the following queries on using Packer:
1. Packer creates a resource group and VM with public IP within Azure. But the VM is not secured by any NSG/ASG's. Though the builder VM is present only for a few mins, still the security is compromised in this time.
Is it possible to configure Packer to use an existing Resource Group and use the private IP of the builder VM? The assumption is that packer build is executed from another VM within the same Resource Group and access to the files can be guaranteed.
Or can Packer call a terraform template to create the builder resource group and VM? We can then configure terraform to put in the necessary rules to prevent security issues.
2. Can we use our custom image for creating the builder VM? The reason is that some 10-15 GB's of binaries are not changing with each build. Repeatedly transferring them is consuming un necessary time. Also hardening steps are executed repeatedly on each build. | 1.0 | Security and Network Queries on Packer - I am using packer and terraform for sometime. Its been a great set of tools for automating a lot of things.
I am having the following queries on using Packer:
1. Packer creates a resource group and VM with public IP within Azure. But the VM is not secured by any NSG/ASG's. Though the builder VM is present only for a few mins, still the security is compromised in this time.
Is it possible to configure Packer to use an existing Resource Group and use the private IP of the builder VM? The assumption is that packer build is executed from another VM within the same Resource Group and access to the files can be guaranteed.
Or can Packer call a terraform template to create the builder resource group and VM? We can then configure terraform to put in the necessary rules to prevent security issues.
2. Can we use our custom image for creating the builder VM? The reason is that some 10-15 GB's of binaries are not changing with each build. Repeatedly transferring them is consuming un necessary time. Also hardening steps are executed repeatedly on each build. | non_infrastructure | security and network queries on packer i am using packer and terraform for sometime its been a great set of tools for automating a lot of things i am having the following queries on using packer packer creates a resource group and vm with public ip within azure but the vm is not secured by any nsg asg s though the builder vm is present only for a few mins still the security is compromised in this time is it possible to configure packer to use an existing resource group and use the private ip of the builder vm the assumption is that packer build is executed from another vm within the same resource group and access to the files can be guaranteed or can packer call a terraform template to create the builder resource group and vm we can then configure terraform to put in the necessary rules to prevent security issues can we use our custom image for creating the builder vm the reason is that some gb s of binaries are not changing with each build repeatedly transferring them is consuming un necessary time also hardening steps are executed repeatedly on each build | 0 |
654,792 | 21,664,125,331 | IssuesEvent | 2022-05-07 00:24:13 | googleapis/nodejs-logging | https://api.github.com/repos/googleapis/nodejs-logging | opened | Doesn't work as described in README: `log.logSync(logName).write(log.entry(metadata, payload))` | priority: p2 type: bug | The behavior of `log.logSync(logName).write(log.entry(metadata, payload))` doesn't match what's described in the README.
#### Environment details
- OS: Google App Engine Standard Environment for Node.js
- Node.js version: 16
- npm version:
- `@google-cloud/logging` version: 9.8.3
I've created a reproduction at https://github.com/chriscalo/logsync-bug and copied the full details here:
## Steps:
1. Deploy to App Engine Standard environment:
``` sh
gcloud app deploy app.yaml --project=<PROJECT_ID>
```
2. Go to [console.cloud.google.com/logs/](http://console.cloud.google.com/logs/) to view output
## Expected:
Here are the first two calls to `log.write()` in `index.js`:
``` js
const metadata = {
resource: {
type: "gae_app",
labels: {
module_id: process.env.GAE_SERVICE,
version_id: process.env.GAE_VERSION,
},
},
};
log.write(log.entry(metadata, "A text payload"));
log.write(log.entry(metadata, { message: "A JSON payload" }));
```
The expected output is something like: (irrelevant details removed)
``` json
[
{
"textPayload": "A text payload",
"resource": {
"type": "gae_app",
"labels": {
"version_id": "logsync-bug",
"module_id": "default",
}
},
"timestamp": "2022-05-06T23:13:23.002Z",
"logName": "projects/REDACTED_PROJECT_ID/logs/my_log"
},
{
"jsonPayload": {
"message": "A JSON payload"
},
"resource": {
"type": "gae_app",
"labels": {
"module_id": "default",
"version_id": "logsync-bug"
}
},
"timestamp": "2022-05-06T23:13:23.004Z",
"logName": "projects/REDACTED_PROJECT_ID/logs/my_log",
"receiveTimestamp": "2022-05-06T23:13:23.270510336Z"
}
]
```
## Actual:
The actual output looks like the following: (irrelevant details removed)
``` json
[
{
"jsonPayload": {
"message": "A text payload",
"timestamp": "2022-05-06T23:13:23.002Z",
"logName": "projects/REDACTED_PROJECT_ID/logs/my_log",
"resource": {
"type": "gae_app",
"labels": {
"module_id": "default",
"version_id": "logsync-bug"
}
}
},
"resource": {
"type": "gae_app",
"labels": {
"zone": "us3",
"version_id": "logsync-bug",
"module_id": "default",
"project_id": "REDACTED_PROJECT_ID"
}
},
"timestamp": "2022-05-06T23:13:23.004560Z",
"logName": "projects/REDACTED_PROJECT_ID/logs/stdout",
},
{
"jsonPayload": {
"timestamp": "2022-05-06T23:13:23.004Z",
"message": {
"message": "A JSON payload"
},
"resource": {
"labels": {
"module_id": "default",
"version_id": "logsync-bug"
},
"type": "gae_app"
},
"logName": "projects/REDACTED_PROJECT_ID/logs/my_log"
},
"resource": {
"type": "gae_app",
"labels": {
"version_id": "logsync-bug",
"module_id": "default",
"project_id": "REDACTED_PROJECT_ID",
"zone": "us3"
}
},
"timestamp": "2022-05-06T23:13:23.005096Z",
"logName": "projects/REDACTED_PROJECT_ID/logs/stdout",
}
]
```
The full output can be seen in [downloaded-logs-20220506-191603.json](https://github.com/chriscalo/logsync-bug/blob/main/downloaded-logs-20220506-191603.json)
## Fix
I've followed the instructions from the [README][], copied below. Notice that it says to create an entry, passing metadata and a payload and then call `log.write(entry)`:
[README]: https://github.com/googleapis/nodejs-logging/blob/main/README.md
```js
// Optional: Create and configure a client
const logging = new Logging();
await logging.setProjectId()
await logging.setDetectedResource()
// Create a LogSync transport, defaulting to `process.stdout`
const log = logging.logSync(logname);
const meta = { /* optional field overrides here */ };
const entry = log.entry(meta, 'Your log message');
log.write(entry);
// Syntax sugar for logging at a specific severity
log.alert(entry);
log.warning(entry);
```
However, in calls to `log.write(entry)`, it appears the final payload is being populated with the entire `entry` object passed to `log.write()` and therefore the `entry.metadata` isn't being applied at all.
So either the README is wrong or there's a bug here. To fix this it seems would require either:
1. updating the README to show how to correctly create and write to a
`log.logSync()`, or
2. fixing the behavior to match what's in the README.
| 1.0 | Doesn't work as described in README: `log.logSync(logName).write(log.entry(metadata, payload))` - The behavior of `log.logSync(logName).write(log.entry(metadata, payload))` doesn't match what's described in the README.
#### Environment details
- OS: Google App Engine Standard Environment for Node.js
- Node.js version: 16
- npm version:
- `@google-cloud/logging` version: 9.8.3
I've created a reproduction at https://github.com/chriscalo/logsync-bug and copied the full details here:
## Steps:
1. Deploy to App Engine Standard environment:
``` sh
gcloud app deploy app.yaml --project=<PROJECT_ID>
```
2. Go to [console.cloud.google.com/logs/](http://console.cloud.google.com/logs/) to view output
## Expected:
Here are the first two calls to `log.write()` in `index.js`:
``` js
const metadata = {
resource: {
type: "gae_app",
labels: {
module_id: process.env.GAE_SERVICE,
version_id: process.env.GAE_VERSION,
},
},
};
log.write(log.entry(metadata, "A text payload"));
log.write(log.entry(metadata, { message: "A JSON payload" }));
```
The expected output is something like: (irrelevant details removed)
``` json
[
{
"textPayload": "A text payload",
"resource": {
"type": "gae_app",
"labels": {
"version_id": "logsync-bug",
"module_id": "default",
}
},
"timestamp": "2022-05-06T23:13:23.002Z",
"logName": "projects/REDACTED_PROJECT_ID/logs/my_log"
},
{
"jsonPayload": {
"message": "A JSON payload"
},
"resource": {
"type": "gae_app",
"labels": {
"module_id": "default",
"version_id": "logsync-bug"
}
},
"timestamp": "2022-05-06T23:13:23.004Z",
"logName": "projects/REDACTED_PROJECT_ID/logs/my_log",
"receiveTimestamp": "2022-05-06T23:13:23.270510336Z"
}
]
```
## Actual:
The actual output looks like the following: (irrelevant details removed)
``` json
[
{
"jsonPayload": {
"message": "A text payload",
"timestamp": "2022-05-06T23:13:23.002Z",
"logName": "projects/REDACTED_PROJECT_ID/logs/my_log",
"resource": {
"type": "gae_app",
"labels": {
"module_id": "default",
"version_id": "logsync-bug"
}
}
},
"resource": {
"type": "gae_app",
"labels": {
"zone": "us3",
"version_id": "logsync-bug",
"module_id": "default",
"project_id": "REDACTED_PROJECT_ID"
}
},
"timestamp": "2022-05-06T23:13:23.004560Z",
"logName": "projects/REDACTED_PROJECT_ID/logs/stdout",
},
{
"jsonPayload": {
"timestamp": "2022-05-06T23:13:23.004Z",
"message": {
"message": "A JSON payload"
},
"resource": {
"labels": {
"module_id": "default",
"version_id": "logsync-bug"
},
"type": "gae_app"
},
"logName": "projects/REDACTED_PROJECT_ID/logs/my_log"
},
"resource": {
"type": "gae_app",
"labels": {
"version_id": "logsync-bug",
"module_id": "default",
"project_id": "REDACTED_PROJECT_ID",
"zone": "us3"
}
},
"timestamp": "2022-05-06T23:13:23.005096Z",
"logName": "projects/REDACTED_PROJECT_ID/logs/stdout",
}
]
```
The full output can be seen in [downloaded-logs-20220506-191603.json](https://github.com/chriscalo/logsync-bug/blob/main/downloaded-logs-20220506-191603.json)
## Fix
I've followed the instructions from the [README][], copied below. Notice that it says to create an entry, passing metadata and a payload and then call `log.write(entry)`:
[README]: https://github.com/googleapis/nodejs-logging/blob/main/README.md
```js
// Optional: Create and configure a client
const logging = new Logging();
await logging.setProjectId()
await logging.setDetectedResource()
// Create a LogSync transport, defaulting to `process.stdout`
const log = logging.logSync(logname);
const meta = { /* optional field overrides here */ };
const entry = log.entry(meta, 'Your log message');
log.write(entry);
// Syntax sugar for logging at a specific severity
log.alert(entry);
log.warning(entry);
```
However, in calls to `log.write(entry)`, it appears the final payload is being populated with the entire `entry` object passed to `log.write()` and therefore the `entry.metadata` isn't being applied at all.
So either the README is wrong or there's a bug here. To fix this it seems would require either:
1. updating the README to show how to correctly create and write to a
`log.logSync()`, or
2. fixing the behavior to match what's in the README.
| non_infrastructure | doesn t work as described in readme log logsync logname write log entry metadata payload the behavior of log logsync logname write log entry metadata payload doesn t match what s described in the readme environment details os google app engine standard environment for node js node js version npm version google cloud logging version i ve created a reproduction at and copied the full details here steps deploy to app engine standard environment sh gcloud app deploy app yaml project go to to view output expected here are the first two calls to log write in index js js const metadata resource type gae app labels module id process env gae service version id process env gae version log write log entry metadata a text payload log write log entry metadata message a json payload the expected output is something like irrelevant details removed json textpayload a text payload resource type gae app labels version id logsync bug module id default timestamp logname projects redacted project id logs my log jsonpayload message a json payload resource type gae app labels module id default version id logsync bug timestamp logname projects redacted project id logs my log receivetimestamp actual the actual output looks like the following irrelevant details removed json jsonpayload message a text payload timestamp logname projects redacted project id logs my log resource type gae app labels module id default version id logsync bug resource type gae app labels zone version id logsync bug module id default project id redacted project id timestamp logname projects redacted project id logs stdout jsonpayload timestamp message message a json payload resource labels module id default version id logsync bug type gae app logname projects redacted project id logs my log resource type gae app labels version id logsync bug module id default project id redacted project id zone timestamp logname projects redacted project id logs stdout the full output can be seen in fix i ve followed the instructions from the copied below notice that it says to create an entry passing metadata and a payload and then call log write entry js optional create and configure a client const logging new logging await logging setprojectid await logging setdetectedresource create a logsync transport defaulting to process stdout const log logging logsync logname const meta optional field overrides here const entry log entry meta your log message log write entry syntax sugar for logging at a specific severity log alert entry log warning entry however in calls to log write entry it appears the final payload is being populated with the entire entry object passed to log write and therefore the entry metadata isn t being applied at all so either the readme is wrong or there s a bug here to fix this it seems would require either updating the readme to show how to correctly create and write to a log logsync or fixing the behavior to match what s in the readme | 0 |
16,708 | 12,124,355,454 | IssuesEvent | 2020-04-22 14:04:32 | radareorg/radare2 | https://api.github.com/repos/radareorg/radare2 | closed | Rename some repositories | FEEDBACK WANTED infrastructure | No need for the duplication in the name, imho:
- [radare2-r2pipe](https://github.com/radareorg/radare2-r2pipe) to just "radareorg/r2pipe"
- [radare2-testbins](https://github.com/radareorg/radare2-testbins) to just "radareorg/testbins"
- [radare2book](https://github.com/radareorg/radare2book) to just "radareorg/book"
- [radare2-bindings](https://github.com/radareorg/radare2-bindings) to just "radareorg/bindings"
- [radare2-rlang](https://github.com/radareorg/radare2-rlang) to just "radareorg/lang"
Also: maybe remove these:
- [radare2-regressions](https://github.com/radareorg/radare2-regressions) Now, after everything was moved there is no reason to keep it here.
- [unicorn](https://github.com/radareorg/unicorn)
- [void-packages](https://github.com/radareorg/void-packages)
- [udis86](https://github.com/radareorg/udis86)
| 1.0 | Rename some repositories - No need for the duplication in the name, imho:
- [radare2-r2pipe](https://github.com/radareorg/radare2-r2pipe) to just "radareorg/r2pipe"
- [radare2-testbins](https://github.com/radareorg/radare2-testbins) to just "radareorg/testbins"
- [radare2book](https://github.com/radareorg/radare2book) to just "radareorg/book"
- [radare2-bindings](https://github.com/radareorg/radare2-bindings) to just "radareorg/bindings"
- [radare2-rlang](https://github.com/radareorg/radare2-rlang) to just "radareorg/lang"
Also: maybe remove these:
- [radare2-regressions](https://github.com/radareorg/radare2-regressions) Now, after everything was moved there is no reason to keep it here.
- [unicorn](https://github.com/radareorg/unicorn)
- [void-packages](https://github.com/radareorg/void-packages)
- [udis86](https://github.com/radareorg/udis86)
| infrastructure | rename some repositories no need for the duplication in the name imho to just radareorg to just radareorg testbins to just radareorg book to just radareorg bindings to just radareorg lang also maybe remove these now after everything was moved there is no reason to keep it here | 1 |
62,832 | 17,203,570,464 | IssuesEvent | 2021-07-17 19:18:31 | InterNetNews/inn | https://api.github.com/repos/InterNetNews/inn | opened | tradspool and timehash articles not deleted after rmgroup | C: storage P: high T: defect | **Reported by eagle on 14 Dec 2008 08:43 UTC**
When a newsgroup is removed with rmgroup, nothing cleans up the articles in tradspool and timehash (and possibly also timecaf). The old articles continue consuming disk space and, if the group is recreated, serve as land mines for the server when the article numbers get back to the same range.
The easiest way to fix this is probably to provide an interface to delete all the articles from the spool immediately on an rmgroup. We lose our current partial ability to recover from a mistaken rmgroup, but I think that's a good tradeoff. | 1.0 | tradspool and timehash articles not deleted after rmgroup - **Reported by eagle on 14 Dec 2008 08:43 UTC**
When a newsgroup is removed with rmgroup, nothing cleans up the articles in tradspool and timehash (and possibly also timecaf). The old articles continue consuming disk space and, if the group is recreated, serve as land mines for the server when the article numbers get back to the same range.
The easiest way to fix this is probably to provide an interface to delete all the articles from the spool immediately on an rmgroup. We lose our current partial ability to recover from a mistaken rmgroup, but I think that's a good tradeoff. | non_infrastructure | tradspool and timehash articles not deleted after rmgroup reported by eagle on dec utc when a newsgroup is removed with rmgroup nothing cleans up the articles in tradspool and timehash and possibly also timecaf the old articles continue consuming disk space and if the group is recreated serve as land mines for the server when the article numbers get back to the same range the easiest way to fix this is probably to provide an interface to delete all the articles from the spool immediately on an rmgroup we lose our current partial ability to recover from a mistaken rmgroup but i think that s a good tradeoff | 0 |
271,833 | 29,659,417,677 | IssuesEvent | 2023-06-10 01:29:53 | pazhanivel07/linux-4.19.72 | https://api.github.com/repos/pazhanivel07/linux-4.19.72 | closed | WS-2021-0564 (Medium) detected in linuxlinux-4.19.83 - autoclosed | Mend: dependency security vulnerability | ## WS-2021-0564 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.19.83</b></p></summary>
<p>
<p>Apache Software Foundation (ASF)</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/pazhanivel07/linux-4.19.72/commit/ce28e4f7a922d93d9b737061ae46827305c8c30a">ce28e4f7a922d93d9b737061ae46827305c8c30a</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_hw.c</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_hw.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>
net: qlogic: qlcnic: Fix a NULL pointer dereference in qlcnic_83xx_add_rings()
This is an automated ID intended to aid in discovery of potential security vulnerabilities. The actual impact and attack plausibility have not yet been proven.
This ID is fixed in Linux Kernel version v5.15.7 by commit c5ef33c1489b2cd74368057fa00b5d2183bb5853, it was introduced in version v3.9 by commit 7f9664525f9cb507de9198a395a111371413f230. For more details please see the references link.
<p>Publish Date: 2021-12-19
<p>URL: <a href=https://github.com/gregkh/linux/commit/c5ef33c1489b2cd74368057fa00b5d2183bb5853>WS-2021-0564</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: 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://osv.dev/vulnerability/GSD-2021-1002561">https://osv.dev/vulnerability/GSD-2021-1002561</a></p>
<p>Release Date: 2021-12-19</p>
<p>Fix Resolution: v5.15.7</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | WS-2021-0564 (Medium) detected in linuxlinux-4.19.83 - autoclosed - ## WS-2021-0564 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.19.83</b></p></summary>
<p>
<p>Apache Software Foundation (ASF)</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/pazhanivel07/linux-4.19.72/commit/ce28e4f7a922d93d9b737061ae46827305c8c30a">ce28e4f7a922d93d9b737061ae46827305c8c30a</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_hw.c</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_hw.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>
net: qlogic: qlcnic: Fix a NULL pointer dereference in qlcnic_83xx_add_rings()
This is an automated ID intended to aid in discovery of potential security vulnerabilities. The actual impact and attack plausibility have not yet been proven.
This ID is fixed in Linux Kernel version v5.15.7 by commit c5ef33c1489b2cd74368057fa00b5d2183bb5853, it was introduced in version v3.9 by commit 7f9664525f9cb507de9198a395a111371413f230. For more details please see the references link.
<p>Publish Date: 2021-12-19
<p>URL: <a href=https://github.com/gregkh/linux/commit/c5ef33c1489b2cd74368057fa00b5d2183bb5853>WS-2021-0564</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: 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://osv.dev/vulnerability/GSD-2021-1002561">https://osv.dev/vulnerability/GSD-2021-1002561</a></p>
<p>Release Date: 2021-12-19</p>
<p>Fix Resolution: v5.15.7</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_infrastructure | ws medium detected in linuxlinux autoclosed ws medium severity vulnerability vulnerable library linuxlinux apache software foundation asf library home page a href found in head commit a href found in base branch master vulnerable source files drivers net ethernet qlogic qlcnic qlcnic hw c drivers net ethernet qlogic qlcnic qlcnic hw c vulnerability details net qlogic qlcnic fix a null pointer dereference in qlcnic add rings this is an automated id intended to aid in discovery of potential security vulnerabilities the actual impact and attack plausibility have not yet been proven this id is fixed in linux kernel version by commit it was introduced in version by commit for more details please see the references link publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with mend | 0 |
22,711 | 15,393,361,662 | IssuesEvent | 2021-03-03 16:38:04 | apache/lucene-solr-operator | https://api.github.com/repos/apache/lucene-solr-operator | opened | Migrate to apache/solr-operator | infrastructure | As mentioned when the repo moved to apache/lucene-solr-operator, the final resting stop is apache/solr-operator.
Now that [Solr is an official Apache top level project](https://solr.apache.org/news.html#apache-solr-becomes-an-apache-tlp), we can finally make the move.
The big issue lies in the helm chart, which is currently hosted at https://apache.github.io/lucene-solr-operator/charts. We will need to move this to a stable location that allows people to migrate on their own time. Now that Solr has its own site (https://solr.apache.org), we can likely host is at https://solr.apache.org/charts. That way we can keep both the old location and the new location live for a week or so and let people migrate on their own time. Then we can go ahead and migrate the repository (breaking the old helm chart link).
After the migration is done, we can update the documentation and code to use the new repository location.
| 1.0 | Migrate to apache/solr-operator - As mentioned when the repo moved to apache/lucene-solr-operator, the final resting stop is apache/solr-operator.
Now that [Solr is an official Apache top level project](https://solr.apache.org/news.html#apache-solr-becomes-an-apache-tlp), we can finally make the move.
The big issue lies in the helm chart, which is currently hosted at https://apache.github.io/lucene-solr-operator/charts. We will need to move this to a stable location that allows people to migrate on their own time. Now that Solr has its own site (https://solr.apache.org), we can likely host is at https://solr.apache.org/charts. That way we can keep both the old location and the new location live for a week or so and let people migrate on their own time. Then we can go ahead and migrate the repository (breaking the old helm chart link).
After the migration is done, we can update the documentation and code to use the new repository location.
| infrastructure | migrate to apache solr operator as mentioned when the repo moved to apache lucene solr operator the final resting stop is apache solr operator now that we can finally make the move the big issue lies in the helm chart which is currently hosted at we will need to move this to a stable location that allows people to migrate on their own time now that solr has its own site we can likely host is at that way we can keep both the old location and the new location live for a week or so and let people migrate on their own time then we can go ahead and migrate the repository breaking the old helm chart link after the migration is done we can update the documentation and code to use the new repository location | 1 |
272 | 2,603,887,228 | IssuesEvent | 2015-02-24 18:30:56 | dotnet/roslyn | https://api.github.com/repos/dotnet/roslyn | opened | FakeSign issue - InteractiveWindow.csproj | Area-Infrastructure Bug | InteractiveWindow.csproj is probably missing a dependency on FakeSign.
"F:\Enlistments\roslyn\src\Roslyn.sln" (rebuild target) (1) ->
"F:\Enlistments\roslyn\src\InteractiveWindow\Editor\InteractiveWindow.csproj" (Rebuild target) (79:2) ->
(FakeSign target) ->
F:\Enlistments\roslyn\build\VSL.Imports.Closed.targets(73,5): error MSB3073: The command "F:\Enlistments\rosly
n\Binaries\Debug\\FakeSign.exe "obj\Debug\Microsoft.VisualStudio.InteractiveWindow.dll"" exited with code 9009. | 1.0 | FakeSign issue - InteractiveWindow.csproj - InteractiveWindow.csproj is probably missing a dependency on FakeSign.
"F:\Enlistments\roslyn\src\Roslyn.sln" (rebuild target) (1) ->
"F:\Enlistments\roslyn\src\InteractiveWindow\Editor\InteractiveWindow.csproj" (Rebuild target) (79:2) ->
(FakeSign target) ->
F:\Enlistments\roslyn\build\VSL.Imports.Closed.targets(73,5): error MSB3073: The command "F:\Enlistments\rosly
n\Binaries\Debug\\FakeSign.exe "obj\Debug\Microsoft.VisualStudio.InteractiveWindow.dll"" exited with code 9009. | infrastructure | fakesign issue interactivewindow csproj interactivewindow csproj is probably missing a dependency on fakesign f enlistments roslyn src roslyn sln rebuild target f enlistments roslyn src interactivewindow editor interactivewindow csproj rebuild target fakesign target f enlistments roslyn build vsl imports closed targets error the command f enlistments rosly n binaries debug fakesign exe obj debug microsoft visualstudio interactivewindow dll exited with code | 1 |
27,788 | 22,340,381,451 | IssuesEvent | 2022-06-14 23:47:51 | OpenHistoricalMap/issues | https://api.github.com/repos/OpenHistoricalMap/issues | closed | Detailed documentation for local setup and deploys | infrastructure | Depends on #100 - add detailed documentation on running setup locally, as well as deploying to cloud infrastructure. | 1.0 | Detailed documentation for local setup and deploys - Depends on #100 - add detailed documentation on running setup locally, as well as deploying to cloud infrastructure. | infrastructure | detailed documentation for local setup and deploys depends on add detailed documentation on running setup locally as well as deploying to cloud infrastructure | 1 |
27,924 | 22,607,049,813 | IssuesEvent | 2022-06-29 14:03:43 | GoogleForCreators/web-stories-wp | https://api.github.com/repos/GoogleForCreators/web-stories-wp | closed | Templates: Load from external website | Type: Enhancement Group: Templates Type: Infrastructure P3 Pod: WP Website Package: Templates | <!-- NOTE: For help requests, support questions, or general feedback, please use the WordPress.org forums instead: https://wordpress.org/support/plugin/web-stories/ -->
## Feature Description
**tl;dr**: the current way of bundling templates with the plugin doesn't scale. This ticket proposes offloading the templates to the wp.stories.google site.
From the beginning we'e imagined the external templates in the editor to be loaded from an external API, i.e. a template directory. Theoretically, other users could contribute to this directory as well.
However, for simplicity's sake we didn't implement such an API initially since there were only 8 such templates, instead deferring this enhancement until it's needed, and instead bundle the templates directly with the final editor bundle.
A template consists of a JSON file (**~160KB** each) plus some metadata (name, description, tags, etc.), with images being served from the wp.stories.google site. That works well.
But now there are **55** additional templates in the making, which would cause the total file size for all templates to reach **10MB**. That's a lot! That not only makes the bundling **slower**, but also makes the bundle significantly **bigger**. A bigger bundle means users' servers could struggle with unzipping larger files.
I am proposing to move the template files to the wp.stories.google site (our `static-site` branch), in the same way that we already host the template images for the exact same reasons.
### Requirements
* Just like the template images, the template JSON files need to be versioned.
This way, a user on an older plugin version doesn't get templates from a newer, incompatible version.
* Template metadata (name, description, tags, etc.) needs to be translatable, in a format that is easy to share with our localization team.
* Templates need to be constantly migrated to the newest data version.
We currently do this in CI in the plugin, but that's in a different branch than `static-site`
## Alternatives Considered
Max had the interesting suggestion of using a WP instance somewhere for hosting the templates. Where designers could simply create a template in the editor and save it, without any development work needed to get the JSON data.
This poses a few questions though about versioning, internationalization, security, caching, and probably more.
Until we have good answers for those questions I don't think it's a viable path. Hence my suggestion to start with moving the static files to wp.stories.google first.
I also see potential for a simpler version of this: once decoupling of the editor from WP progresses, it might be simpler to have a standalone version of the editor read & write template files from disk, avoiding the need for a WP instance.
## Additional Context
Firebase's built-in support for [i18n rewrites](https://firebase.google.com/docs/hosting/i18n-rewrites) might come in handy here.
---
_Do not alter or remove anything below. The following sections will be managed by moderators only._
## Acceptance Criteria
<!-- One or more bullet points for acceptance criteria. -->
## Implementation Brief
**This section is still WIP**
**Prerequisites**
* [ ] Figure out localization process
**Actual Implementation**
CDN:
1. Move template files to new `public/static/main/templates/raw` directory in the `static-site` branch, with each template in its own directory. Each template has two files: `template.json` and `metadata.json` (format of metadata file TBD)
2. A static `public/static/main/templates/index.json` file is created during the build process, containing data about all the templates.
**Thought:** Including metadata+actual templates here will make this a very long file. Not great for parsing. Perhaps it should only contain metadata information about the templates and URLs to the actual template files the plugin needs to fetch separately.
2. ...
Plugin:
1. Update plugin to fetch templates from `wp.stories.google/static/main/templates`
**After**
* [ ] Update template creation docs
* [ ] Verify localization process works
#### Considerations
* Quality assurance:
In the current code base we have some Jest tests to ensure the correct URL format (using `__WEB_STORIES_TEMPLATE_BASE_URL__`), existence of `pageLayoutType` keys, and that templates don't contain invisible characters. We need to retain similar checks in the new location. Perhaps as a CI step before deployment.
* Pagination needed for the API? Seems unnecessary at the moment.
* This also affects page layouts, which are essentially just templates. | 1.0 | Templates: Load from external website - <!-- NOTE: For help requests, support questions, or general feedback, please use the WordPress.org forums instead: https://wordpress.org/support/plugin/web-stories/ -->
## Feature Description
**tl;dr**: the current way of bundling templates with the plugin doesn't scale. This ticket proposes offloading the templates to the wp.stories.google site.
From the beginning we'e imagined the external templates in the editor to be loaded from an external API, i.e. a template directory. Theoretically, other users could contribute to this directory as well.
However, for simplicity's sake we didn't implement such an API initially since there were only 8 such templates, instead deferring this enhancement until it's needed, and instead bundle the templates directly with the final editor bundle.
A template consists of a JSON file (**~160KB** each) plus some metadata (name, description, tags, etc.), with images being served from the wp.stories.google site. That works well.
But now there are **55** additional templates in the making, which would cause the total file size for all templates to reach **10MB**. That's a lot! That not only makes the bundling **slower**, but also makes the bundle significantly **bigger**. A bigger bundle means users' servers could struggle with unzipping larger files.
I am proposing to move the template files to the wp.stories.google site (our `static-site` branch), in the same way that we already host the template images for the exact same reasons.
### Requirements
* Just like the template images, the template JSON files need to be versioned.
This way, a user on an older plugin version doesn't get templates from a newer, incompatible version.
* Template metadata (name, description, tags, etc.) needs to be translatable, in a format that is easy to share with our localization team.
* Templates need to be constantly migrated to the newest data version.
We currently do this in CI in the plugin, but that's in a different branch than `static-site`
## Alternatives Considered
Max had the interesting suggestion of using a WP instance somewhere for hosting the templates. Where designers could simply create a template in the editor and save it, without any development work needed to get the JSON data.
This poses a few questions though about versioning, internationalization, security, caching, and probably more.
Until we have good answers for those questions I don't think it's a viable path. Hence my suggestion to start with moving the static files to wp.stories.google first.
I also see potential for a simpler version of this: once decoupling of the editor from WP progresses, it might be simpler to have a standalone version of the editor read & write template files from disk, avoiding the need for a WP instance.
## Additional Context
Firebase's built-in support for [i18n rewrites](https://firebase.google.com/docs/hosting/i18n-rewrites) might come in handy here.
---
_Do not alter or remove anything below. The following sections will be managed by moderators only._
## Acceptance Criteria
<!-- One or more bullet points for acceptance criteria. -->
## Implementation Brief
**This section is still WIP**
**Prerequisites**
* [ ] Figure out localization process
**Actual Implementation**
CDN:
1. Move template files to new `public/static/main/templates/raw` directory in the `static-site` branch, with each template in its own directory. Each template has two files: `template.json` and `metadata.json` (format of metadata file TBD)
2. A static `public/static/main/templates/index.json` file is created during the build process, containing data about all the templates.
**Thought:** Including metadata+actual templates here will make this a very long file. Not great for parsing. Perhaps it should only contain metadata information about the templates and URLs to the actual template files the plugin needs to fetch separately.
2. ...
Plugin:
1. Update plugin to fetch templates from `wp.stories.google/static/main/templates`
**After**
* [ ] Update template creation docs
* [ ] Verify localization process works
#### Considerations
* Quality assurance:
In the current code base we have some Jest tests to ensure the correct URL format (using `__WEB_STORIES_TEMPLATE_BASE_URL__`), existence of `pageLayoutType` keys, and that templates don't contain invisible characters. We need to retain similar checks in the new location. Perhaps as a CI step before deployment.
* Pagination needed for the API? Seems unnecessary at the moment.
* This also affects page layouts, which are essentially just templates. | infrastructure | templates load from external website feature description tl dr the current way of bundling templates with the plugin doesn t scale this ticket proposes offloading the templates to the wp stories google site from the beginning we e imagined the external templates in the editor to be loaded from an external api i e a template directory theoretically other users could contribute to this directory as well however for simplicity s sake we didn t implement such an api initially since there were only such templates instead deferring this enhancement until it s needed and instead bundle the templates directly with the final editor bundle a template consists of a json file each plus some metadata name description tags etc with images being served from the wp stories google site that works well but now there are additional templates in the making which would cause the total file size for all templates to reach that s a lot that not only makes the bundling slower but also makes the bundle significantly bigger a bigger bundle means users servers could struggle with unzipping larger files i am proposing to move the template files to the wp stories google site our static site branch in the same way that we already host the template images for the exact same reasons requirements just like the template images the template json files need to be versioned this way a user on an older plugin version doesn t get templates from a newer incompatible version template metadata name description tags etc needs to be translatable in a format that is easy to share with our localization team templates need to be constantly migrated to the newest data version we currently do this in ci in the plugin but that s in a different branch than static site alternatives considered max had the interesting suggestion of using a wp instance somewhere for hosting the templates where designers could simply create a template in the editor and save it without any development work needed to get the json data this poses a few questions though about versioning internationalization security caching and probably more until we have good answers for those questions i don t think it s a viable path hence my suggestion to start with moving the static files to wp stories google first i also see potential for a simpler version of this once decoupling of the editor from wp progresses it might be simpler to have a standalone version of the editor read write template files from disk avoiding the need for a wp instance additional context firebase s built in support for might come in handy here do not alter or remove anything below the following sections will be managed by moderators only acceptance criteria implementation brief this section is still wip prerequisites figure out localization process actual implementation cdn move template files to new public static main templates raw directory in the static site branch with each template in its own directory each template has two files template json and metadata json format of metadata file tbd a static public static main templates index json file is created during the build process containing data about all the templates thought including metadata actual templates here will make this a very long file not great for parsing perhaps it should only contain metadata information about the templates and urls to the actual template files the plugin needs to fetch separately plugin update plugin to fetch templates from wp stories google static main templates after update template creation docs verify localization process works considerations quality assurance in the current code base we have some jest tests to ensure the correct url format using web stories template base url existence of pagelayouttype keys and that templates don t contain invisible characters we need to retain similar checks in the new location perhaps as a ci step before deployment pagination needed for the api seems unnecessary at the moment this also affects page layouts which are essentially just templates | 1 |
19,615 | 3,228,437,928 | IssuesEvent | 2015-10-12 02:06:09 | essandess/etv-comskip | https://api.github.com/repos/essandess/etv-comskip | closed | when TV window not in focus/active there is no sound | auto-migrated Priority-Medium Type-Defect | ```
When the TV window is not active (not in focus) there is no sound (but the
motion pictures are running in background). In "Console" there are no log
entries regarding this issue. I don't have this issue with other
software like iTunes or VLC media player. This issue arrived after installing
etv-comskip.
$ uname -a
Darwin sven 10.5.0 Darwin Kernel Version 10.5.0: Fri Nov 5 23:20:39 PDT 2010;
root:xnu-1504.9.17~1/RELEASE_I386 i386
```
Original issue reported on code.google.com by `aluoor@gmail.com` on 5 Dec 2010 at 8:48 | 1.0 | when TV window not in focus/active there is no sound - ```
When the TV window is not active (not in focus) there is no sound (but the
motion pictures are running in background). In "Console" there are no log
entries regarding this issue. I don't have this issue with other
software like iTunes or VLC media player. This issue arrived after installing
etv-comskip.
$ uname -a
Darwin sven 10.5.0 Darwin Kernel Version 10.5.0: Fri Nov 5 23:20:39 PDT 2010;
root:xnu-1504.9.17~1/RELEASE_I386 i386
```
Original issue reported on code.google.com by `aluoor@gmail.com` on 5 Dec 2010 at 8:48 | non_infrastructure | when tv window not in focus active there is no sound when the tv window is not active not in focus there is no sound but the motion pictures are running in background in console there are no log entries regarding this issue i don t have this issue with other software like itunes or vlc media player this issue arrived after installing etv comskip uname a darwin sven darwin kernel version fri nov pdt root xnu release original issue reported on code google com by aluoor gmail com on dec at | 0 |
12,189 | 9,633,364,091 | IssuesEvent | 2019-05-15 18:27:12 | dotnet/corefx | https://api.github.com/repos/dotnet/corefx | opened | TestPath doesn't take ArchGroup into consideration | area-Infrastructure | I asked @joperezr and @safern about this and they suggested I opened a bug.
I wanted to run a Helix automation job in x86, and I wanted to indicate which zip files from /artifacts/helix/ to include in the job (because I had many test projects compiled but I don't want them all to get tested). I was using this argument to indicate the zip file(s) to include:
`/p:WorkItemArchiveWildCard=$(TestArchiveTestRoot)**/AssemblyName.zip`
I realized /artifacts/helix/ does not divide the compiled zip files by their architecture. Most likely, the zip files get overwritten every time you build:
```
PS D:\corefx\artifacts\helix\tests> dir
Directory: D:\corefx\artifacts\helix\tests
Mode LastWriteTime Length Name
---- ------------- ------ ----
d----- 2019-05-15 11:09 AM Windows_NT.AnyCPU.Debug
PS D:\corefx\artifacts\helix\tests> dir .\Windows_NT.AnyCPU.Debug\
Directory: D:\corefx\artifacts\helix\tests\Windows_NT.AnyCPU.Debug
Mode LastWriteTime Length Name
---- ------------- ------ ----
-a---- 2019-05-15 9:00 AM 55038148 System.IO.Compression.Tests.zip
-a---- 2019-05-15 11:09 AM 663985 System.IO.Pipes.Tests.zip
```
@safern mentioned this is the place where we should be using the build configuration instead of the OSPlatformConfig:
https://github.com/dotnet/corefx/blob/035343743c5a7f67be8a2a2f36913a3c43893b76/Directory.Build.props#L376
| 1.0 | TestPath doesn't take ArchGroup into consideration - I asked @joperezr and @safern about this and they suggested I opened a bug.
I wanted to run a Helix automation job in x86, and I wanted to indicate which zip files from /artifacts/helix/ to include in the job (because I had many test projects compiled but I don't want them all to get tested). I was using this argument to indicate the zip file(s) to include:
`/p:WorkItemArchiveWildCard=$(TestArchiveTestRoot)**/AssemblyName.zip`
I realized /artifacts/helix/ does not divide the compiled zip files by their architecture. Most likely, the zip files get overwritten every time you build:
```
PS D:\corefx\artifacts\helix\tests> dir
Directory: D:\corefx\artifacts\helix\tests
Mode LastWriteTime Length Name
---- ------------- ------ ----
d----- 2019-05-15 11:09 AM Windows_NT.AnyCPU.Debug
PS D:\corefx\artifacts\helix\tests> dir .\Windows_NT.AnyCPU.Debug\
Directory: D:\corefx\artifacts\helix\tests\Windows_NT.AnyCPU.Debug
Mode LastWriteTime Length Name
---- ------------- ------ ----
-a---- 2019-05-15 9:00 AM 55038148 System.IO.Compression.Tests.zip
-a---- 2019-05-15 11:09 AM 663985 System.IO.Pipes.Tests.zip
```
@safern mentioned this is the place where we should be using the build configuration instead of the OSPlatformConfig:
https://github.com/dotnet/corefx/blob/035343743c5a7f67be8a2a2f36913a3c43893b76/Directory.Build.props#L376
| infrastructure | testpath doesn t take archgroup into consideration i asked joperezr and safern about this and they suggested i opened a bug i wanted to run a helix automation job in and i wanted to indicate which zip files from artifacts helix to include in the job because i had many test projects compiled but i don t want them all to get tested i was using this argument to indicate the zip file s to include p workitemarchivewildcard testarchivetestroot assemblyname zip i realized artifacts helix does not divide the compiled zip files by their architecture most likely the zip files get overwritten every time you build ps d corefx artifacts helix tests dir directory d corefx artifacts helix tests mode lastwritetime length name d am windows nt anycpu debug ps d corefx artifacts helix tests dir windows nt anycpu debug directory d corefx artifacts helix tests windows nt anycpu debug mode lastwritetime length name a am system io compression tests zip a am system io pipes tests zip safern mentioned this is the place where we should be using the build configuration instead of the osplatformconfig | 1 |
31,525 | 25,849,927,586 | IssuesEvent | 2022-12-13 09:41:31 | FalseMann/nuilzero | https://api.github.com/repos/FalseMann/nuilzero | closed | Integrate Redis | Type: ✨ Enhancement Priority: Medium Component: ⚙️ App Component: 🏗️ Infrastructure | Redis is used for ephemeral storage. Most likely, it'll be used to store session tokens. It could also be used as a pub/sub messaging system.
Proposed steps include:
- [ ] Library integration in Next.js app
- [ ] Local `docker-compose` setup
- [ ] Connects to managed Redis instance in hosted environments | 1.0 | Integrate Redis - Redis is used for ephemeral storage. Most likely, it'll be used to store session tokens. It could also be used as a pub/sub messaging system.
Proposed steps include:
- [ ] Library integration in Next.js app
- [ ] Local `docker-compose` setup
- [ ] Connects to managed Redis instance in hosted environments | infrastructure | integrate redis redis is used for ephemeral storage most likely it ll be used to store session tokens it could also be used as a pub sub messaging system proposed steps include library integration in next js app local docker compose setup connects to managed redis instance in hosted environments | 1 |
22,116 | 14,989,805,821 | IssuesEvent | 2021-01-29 04:48:01 | APSIMInitiative/ApsimX | https://api.github.com/repos/APSIMInitiative/ApsimX | closed | Where to we go from here with the ApsimX user interface | interface/infrastructure | Three years ago, I ported the Apsim user interface from Windows.Forms to Gtk# to allow for cross-platform usage. That has worked reasonably well, despite it not being a particularly mainstream technology (more precisely, the Gtk side is mainstream on Linux, and .Net is mainstream on Windows, but their intersection isn't that widely encountered).
Now the question arises of how (and if) we can maintain this platform as the associated technologies evolve. On the Gtk side, Linux is gradually moving away from Gtk 2 (which we are currently using as the native base layer), and towards Gtk 3, with Gtk 4 on the horizon. On the Windows side, Microsoft has introduced .NET standard (and the associated .NET Core 3 implementation), and indicated their intent to move things further in that direction. Apparently .NET Framework 5 will be base on .NET Standard.
I've spend some (too much!) time recently looking into these technologies. ApsimX's Models,exe builds and runs readily under the .NET Core 3 implementation, and gives noticeably better performance than Mono on Linux (and presumably OS X) platforms. The problems arise when we turn to the user interface. This seems like a good time to consider transitioning from Gtk 2 to Gtk 3, which is not too radically different, although Gtk 3 uses a very different CSS-based mechanism for controlling the style of user interface elements, and has a bit more support baggage associated with it. Most of the existing ApsimX user interface works under Gtk 3 with only minor modifications, but there are three areas with some difficulties:
1. The Text Editor: we have been using Mono.TextEditor, which is based on Gtk 2 and was taken from version 5.9 of MonoDevelop. MonoDevelop is now at version 8.4 (and still using Gtk 2), but the editor code can no longer be readily abstracted from the rest of that project. I have tried porting the "old" Mono.TextEditor to Gtk 3, but haven't been fully successful, and it's not clear that we want to rely on an old, complex codebase that no-one else is working on. If we migrate to Gtk 3, I suggest that we switch to GtkSourceView as the editor. It continues to be under active development, and provides useful stuff like a code completion interface. The newer versions target Gtk 3, not Gtk 2. I have been able to successfully build a .Net wrapper for it, but have tested only its most basic features.
2. Code completion: this is tied in with the text editor, to some extent, but another aspect is a change in C# compilers. We would likely want to transition from Mono.Cecil and ICSharpCode.NRefactory to Roslyn equivalents for parsing C# code. I haven't looked into this very closely yet. @hol430 would know far better than I what is involved. Getting the Manager to compile scripts using Roslyn turned out to be quite simple, though, so perhaps this won't be too hard.
3. HTML rendering: this is perhaps the biggest problem. Our current use of browsers is platform-dependent. We embed an instance of Internet Explorer on Windows, WebKit on Linux and Safari on OS X. This isn't going to work, at least not easily, with .NET Core. Using IE on Windows involves using a COM interface, and calls in System.Windows.Forms which offers this support. If you do this under .NET Core, you've pulled in a platform dependency in a way that prevents the application from running on other platforms. The solution ought to be using WebKitGtk on all platforms. Unfortunately, the WebKit developers dropped official support for Windows several years ago. I've tried using an older webkitgtk dll from Cygwin, and it almost works, but can't render maps, apparently because the JavaScript interpreter has a bug in it. I've tried re-building this myself in an attempt to track down and remove the bug, but with no success to date (it's a very slow process; compiling webkitgtk can take several hours). WebKit should work readily on Linux and OS X, but Windows has me stumped. The developers of Midori appear to be working on a Windows port (for 64-bit Gtk3; their old one works well but is for 32-bit Gtk2), but there's no guarantee that will ever be released. A possible alternative to WebKitGtk is chromely.cef.gtk (which wraps the Chromium browser), but this appears to still be under development with little documentation, and I haven't been able to get it to work.
Note that for testing both GtkSourceView and WebKitGtk, I've had to build my own C# wrappers around the native binaries. This is an obscure process, but not terribly difficult if you have access to the source code for the native binaries.
So where do we go from here? Do we (1) stick with .Net Framework 4 and Gtk 2 and watch the rest of the world go by, (2) find workarounds (the browser part really has me stuck) for using .NET Core 3 and Gtk 3, (3) abandon the concept of a multi-platform GUI (making it Windows only, using either Windows Forms or WPF), or (4) use some other option like qml.net? @hol353 - can we discuss this when you are next in Canberra? | 1.0 | Where to we go from here with the ApsimX user interface - Three years ago, I ported the Apsim user interface from Windows.Forms to Gtk# to allow for cross-platform usage. That has worked reasonably well, despite it not being a particularly mainstream technology (more precisely, the Gtk side is mainstream on Linux, and .Net is mainstream on Windows, but their intersection isn't that widely encountered).
Now the question arises of how (and if) we can maintain this platform as the associated technologies evolve. On the Gtk side, Linux is gradually moving away from Gtk 2 (which we are currently using as the native base layer), and towards Gtk 3, with Gtk 4 on the horizon. On the Windows side, Microsoft has introduced .NET standard (and the associated .NET Core 3 implementation), and indicated their intent to move things further in that direction. Apparently .NET Framework 5 will be base on .NET Standard.
I've spend some (too much!) time recently looking into these technologies. ApsimX's Models,exe builds and runs readily under the .NET Core 3 implementation, and gives noticeably better performance than Mono on Linux (and presumably OS X) platforms. The problems arise when we turn to the user interface. This seems like a good time to consider transitioning from Gtk 2 to Gtk 3, which is not too radically different, although Gtk 3 uses a very different CSS-based mechanism for controlling the style of user interface elements, and has a bit more support baggage associated with it. Most of the existing ApsimX user interface works under Gtk 3 with only minor modifications, but there are three areas with some difficulties:
1. The Text Editor: we have been using Mono.TextEditor, which is based on Gtk 2 and was taken from version 5.9 of MonoDevelop. MonoDevelop is now at version 8.4 (and still using Gtk 2), but the editor code can no longer be readily abstracted from the rest of that project. I have tried porting the "old" Mono.TextEditor to Gtk 3, but haven't been fully successful, and it's not clear that we want to rely on an old, complex codebase that no-one else is working on. If we migrate to Gtk 3, I suggest that we switch to GtkSourceView as the editor. It continues to be under active development, and provides useful stuff like a code completion interface. The newer versions target Gtk 3, not Gtk 2. I have been able to successfully build a .Net wrapper for it, but have tested only its most basic features.
2. Code completion: this is tied in with the text editor, to some extent, but another aspect is a change in C# compilers. We would likely want to transition from Mono.Cecil and ICSharpCode.NRefactory to Roslyn equivalents for parsing C# code. I haven't looked into this very closely yet. @hol430 would know far better than I what is involved. Getting the Manager to compile scripts using Roslyn turned out to be quite simple, though, so perhaps this won't be too hard.
3. HTML rendering: this is perhaps the biggest problem. Our current use of browsers is platform-dependent. We embed an instance of Internet Explorer on Windows, WebKit on Linux and Safari on OS X. This isn't going to work, at least not easily, with .NET Core. Using IE on Windows involves using a COM interface, and calls in System.Windows.Forms which offers this support. If you do this under .NET Core, you've pulled in a platform dependency in a way that prevents the application from running on other platforms. The solution ought to be using WebKitGtk on all platforms. Unfortunately, the WebKit developers dropped official support for Windows several years ago. I've tried using an older webkitgtk dll from Cygwin, and it almost works, but can't render maps, apparently because the JavaScript interpreter has a bug in it. I've tried re-building this myself in an attempt to track down and remove the bug, but with no success to date (it's a very slow process; compiling webkitgtk can take several hours). WebKit should work readily on Linux and OS X, but Windows has me stumped. The developers of Midori appear to be working on a Windows port (for 64-bit Gtk3; their old one works well but is for 32-bit Gtk2), but there's no guarantee that will ever be released. A possible alternative to WebKitGtk is chromely.cef.gtk (which wraps the Chromium browser), but this appears to still be under development with little documentation, and I haven't been able to get it to work.
Note that for testing both GtkSourceView and WebKitGtk, I've had to build my own C# wrappers around the native binaries. This is an obscure process, but not terribly difficult if you have access to the source code for the native binaries.
So where do we go from here? Do we (1) stick with .Net Framework 4 and Gtk 2 and watch the rest of the world go by, (2) find workarounds (the browser part really has me stuck) for using .NET Core 3 and Gtk 3, (3) abandon the concept of a multi-platform GUI (making it Windows only, using either Windows Forms or WPF), or (4) use some other option like qml.net? @hol353 - can we discuss this when you are next in Canberra? | infrastructure | where to we go from here with the apsimx user interface three years ago i ported the apsim user interface from windows forms to gtk to allow for cross platform usage that has worked reasonably well despite it not being a particularly mainstream technology more precisely the gtk side is mainstream on linux and net is mainstream on windows but their intersection isn t that widely encountered now the question arises of how and if we can maintain this platform as the associated technologies evolve on the gtk side linux is gradually moving away from gtk which we are currently using as the native base layer and towards gtk with gtk on the horizon on the windows side microsoft has introduced net standard and the associated net core implementation and indicated their intent to move things further in that direction apparently net framework will be base on net standard i ve spend some too much time recently looking into these technologies apsimx s models exe builds and runs readily under the net core implementation and gives noticeably better performance than mono on linux and presumably os x platforms the problems arise when we turn to the user interface this seems like a good time to consider transitioning from gtk to gtk which is not too radically different although gtk uses a very different css based mechanism for controlling the style of user interface elements and has a bit more support baggage associated with it most of the existing apsimx user interface works under gtk with only minor modifications but there are three areas with some difficulties the text editor we have been using mono texteditor which is based on gtk and was taken from version of monodevelop monodevelop is now at version and still using gtk but the editor code can no longer be readily abstracted from the rest of that project i have tried porting the old mono texteditor to gtk but haven t been fully successful and it s not clear that we want to rely on an old complex codebase that no one else is working on if we migrate to gtk i suggest that we switch to gtksourceview as the editor it continues to be under active development and provides useful stuff like a code completion interface the newer versions target gtk not gtk i have been able to successfully build a net wrapper for it but have tested only its most basic features code completion this is tied in with the text editor to some extent but another aspect is a change in c compilers we would likely want to transition from mono cecil and icsharpcode nrefactory to roslyn equivalents for parsing c code i haven t looked into this very closely yet would know far better than i what is involved getting the manager to compile scripts using roslyn turned out to be quite simple though so perhaps this won t be too hard html rendering this is perhaps the biggest problem our current use of browsers is platform dependent we embed an instance of internet explorer on windows webkit on linux and safari on os x this isn t going to work at least not easily with net core using ie on windows involves using a com interface and calls in system windows forms which offers this support if you do this under net core you ve pulled in a platform dependency in a way that prevents the application from running on other platforms the solution ought to be using webkitgtk on all platforms unfortunately the webkit developers dropped official support for windows several years ago i ve tried using an older webkitgtk dll from cygwin and it almost works but can t render maps apparently because the javascript interpreter has a bug in it i ve tried re building this myself in an attempt to track down and remove the bug but with no success to date it s a very slow process compiling webkitgtk can take several hours webkit should work readily on linux and os x but windows has me stumped the developers of midori appear to be working on a windows port for bit their old one works well but is for bit but there s no guarantee that will ever be released a possible alternative to webkitgtk is chromely cef gtk which wraps the chromium browser but this appears to still be under development with little documentation and i haven t been able to get it to work note that for testing both gtksourceview and webkitgtk i ve had to build my own c wrappers around the native binaries this is an obscure process but not terribly difficult if you have access to the source code for the native binaries so where do we go from here do we stick with net framework and gtk and watch the rest of the world go by find workarounds the browser part really has me stuck for using net core and gtk abandon the concept of a multi platform gui making it windows only using either windows forms or wpf or use some other option like qml net can we discuss this when you are next in canberra | 1 |
336 | 2,650,753,622 | IssuesEvent | 2015-03-16 04:04:55 | AppScale/appscale | https://api.github.com/repos/AppScale/appscale | closed | If there are not enough resources, tell the user | bug enhancement Eucalyptus infrastructuremanager | This shows up in the iaas log but does not reach the user via the tools.
EC2 response error while starting VMs: Not enough resources (5 in cluster1 < 7): vm instances.
/root/appscale/InfrastructureManager/infrastructure_manager.py:306: DeprecationWarning: BaseException.message has been deprecated as of Python 2.6
status_info['reason'] = exception.message
| 1.0 | If there are not enough resources, tell the user - This shows up in the iaas log but does not reach the user via the tools.
EC2 response error while starting VMs: Not enough resources (5 in cluster1 < 7): vm instances.
/root/appscale/InfrastructureManager/infrastructure_manager.py:306: DeprecationWarning: BaseException.message has been deprecated as of Python 2.6
status_info['reason'] = exception.message
| infrastructure | if there are not enough resources tell the user this shows up in the iaas log but does not reach the user via the tools response error while starting vms not enough resources in vm instances root appscale infrastructuremanager infrastructure manager py deprecationwarning baseexception message has been deprecated as of python status info exception message | 1 |
658,312 | 21,884,536,363 | IssuesEvent | 2022-05-19 17:13:59 | bounswe/bounswe2022group1 | https://api.github.com/repos/bounswe/bounswe2022group1 | closed | PracticeApp: Preparing Requirements for the Practice App | Priority: Critical Type: Task Status: In Progress | We should prepare the requirements for the Practice App - Learning Platform project. We haven't prepared it yet.
- Prepare the list of requirements for the Practice App - Online Learning Platform project.
- Deadline: 19.05.2022
| 1.0 | PracticeApp: Preparing Requirements for the Practice App - We should prepare the requirements for the Practice App - Learning Platform project. We haven't prepared it yet.
- Prepare the list of requirements for the Practice App - Online Learning Platform project.
- Deadline: 19.05.2022
| non_infrastructure | practiceapp preparing requirements for the practice app we should prepare the requirements for the practice app learning platform project we haven t prepared it yet prepare the list of requirements for the practice app online learning platform project deadline | 0 |
12,001 | 9,546,418,881 | IssuesEvent | 2019-05-01 19:53:36 | mRemoteNG/mRemoteNG | https://api.github.com/repos/mRemoteNG/mRemoteNG | closed | Update Docs to show pull requests are only accepted against the develop branch | High Priority Project Infrastructure | Update [CONTRIBUTING.md](https://github.com/mRemoteNG/mRemoteNG/blob/develop/.github/CONTRIBUTING.md), [PULL_REQUEST_TEMPLATE.md](https://github.com/mRemoteNG/mRemoteNG/blob/develop/.github/PULL_REQUEST_TEMPLATE.md) and the [wiki](https://github.com/mRemoteNG/mRemoteNG/wiki/Pull-Requests) to note that pull requests are only accepted against the develop branch. | 1.0 | Update Docs to show pull requests are only accepted against the develop branch - Update [CONTRIBUTING.md](https://github.com/mRemoteNG/mRemoteNG/blob/develop/.github/CONTRIBUTING.md), [PULL_REQUEST_TEMPLATE.md](https://github.com/mRemoteNG/mRemoteNG/blob/develop/.github/PULL_REQUEST_TEMPLATE.md) and the [wiki](https://github.com/mRemoteNG/mRemoteNG/wiki/Pull-Requests) to note that pull requests are only accepted against the develop branch. | infrastructure | update docs to show pull requests are only accepted against the develop branch update and the to note that pull requests are only accepted against the develop branch | 1 |
47,732 | 5,909,827,335 | IssuesEvent | 2017-05-20 03:51:42 | FireFly-WoW/FireFly-IssueTracker | https://api.github.com/repos/FireFly-WoW/FireFly-IssueTracker | reopened | Bugged quest respawn: "Torek's Assault" in Ashenvale | Status: Needs Testing | **Description:**
I can't confirm this completely but both me and my friend have suspicions that the quest "Torek's Assault" doesn't resets to the original position after completion until a server restart. This seemed logical as we have passed by three times on separate occasions and it hasn't been available until just now at the second of May at 19:30 Server Time. As far as we've noticed it hasn't spawned in yet after about ten minutes.
This may require more testing before it can be confirmed as a bug, just figured it would be worth tossing in here to be sure.
**Current behaviour:**
The quest is very doable and there is nothing wrong with executing the quest itself. However, after completing the quest the friendly escorted NPCs don't spawn back at their original position, making it impossible for the next player to do the quest.
**Expected behaviour:**
The friendly NPCs are supposed to spawn back so more than one person / party can do the quest per restart.
**Steps to reproduce the problem:**
1. Slither your body over to Ashenvale.
2. Slither your body over to where the quest is supposed to be.
3. That's basically it as there is no quest giver there.
| 1.0 | Bugged quest respawn: "Torek's Assault" in Ashenvale - **Description:**
I can't confirm this completely but both me and my friend have suspicions that the quest "Torek's Assault" doesn't resets to the original position after completion until a server restart. This seemed logical as we have passed by three times on separate occasions and it hasn't been available until just now at the second of May at 19:30 Server Time. As far as we've noticed it hasn't spawned in yet after about ten minutes.
This may require more testing before it can be confirmed as a bug, just figured it would be worth tossing in here to be sure.
**Current behaviour:**
The quest is very doable and there is nothing wrong with executing the quest itself. However, after completing the quest the friendly escorted NPCs don't spawn back at their original position, making it impossible for the next player to do the quest.
**Expected behaviour:**
The friendly NPCs are supposed to spawn back so more than one person / party can do the quest per restart.
**Steps to reproduce the problem:**
1. Slither your body over to Ashenvale.
2. Slither your body over to where the quest is supposed to be.
3. That's basically it as there is no quest giver there.
| non_infrastructure | bugged quest respawn torek s assault in ashenvale description i can t confirm this completely but both me and my friend have suspicions that the quest torek s assault doesn t resets to the original position after completion until a server restart this seemed logical as we have passed by three times on separate occasions and it hasn t been available until just now at the second of may at server time as far as we ve noticed it hasn t spawned in yet after about ten minutes this may require more testing before it can be confirmed as a bug just figured it would be worth tossing in here to be sure current behaviour the quest is very doable and there is nothing wrong with executing the quest itself however after completing the quest the friendly escorted npcs don t spawn back at their original position making it impossible for the next player to do the quest expected behaviour the friendly npcs are supposed to spawn back so more than one person party can do the quest per restart steps to reproduce the problem slither your body over to ashenvale slither your body over to where the quest is supposed to be that s basically it as there is no quest giver there | 0 |
21,647 | 3,911,293,390 | IssuesEvent | 2016-04-20 04:41:07 | kubernetes/kubernetes | https://api.github.com/repos/kubernetes/kubernetes | closed | Integrate Red Hat stack + e2es into jenkins run | 0 - Backlog priority/P2 team/test-infra | For some time now we have maintained a bare-metal RHEL-Atomic cluster on our end which served two primary purposes.
1. Evaluate performance & HA, and feedback issues upstream.
2. Verify stack sanity by running e2e gauntlet on our stack.
\#2 has proven to be untenable, as we seem to eat a large number of changes that break for various reasons, and we're left hunting to feedback what has broken the system.
Going forwards, we would like to add the automated startup and provisioning of our stack to run the e2e-tests and to red-flag commits before it reaches us downstream.
The goal of this issue is to rationalize how we intend to solve this and integrate with upstream.
/cc @eparis @jayunit100 @rrati @pmorie
/cc @quinton-hoole @roberthbailey @ixdy | 1.0 | Integrate Red Hat stack + e2es into jenkins run - For some time now we have maintained a bare-metal RHEL-Atomic cluster on our end which served two primary purposes.
1. Evaluate performance & HA, and feedback issues upstream.
2. Verify stack sanity by running e2e gauntlet on our stack.
\#2 has proven to be untenable, as we seem to eat a large number of changes that break for various reasons, and we're left hunting to feedback what has broken the system.
Going forwards, we would like to add the automated startup and provisioning of our stack to run the e2e-tests and to red-flag commits before it reaches us downstream.
The goal of this issue is to rationalize how we intend to solve this and integrate with upstream.
/cc @eparis @jayunit100 @rrati @pmorie
/cc @quinton-hoole @roberthbailey @ixdy | non_infrastructure | integrate red hat stack into jenkins run for some time now we have maintained a bare metal rhel atomic cluster on our end which served two primary purposes evaluate performance ha and feedback issues upstream verify stack sanity by running gauntlet on our stack has proven to be untenable as we seem to eat a large number of changes that break for various reasons and we re left hunting to feedback what has broken the system going forwards we would like to add the automated startup and provisioning of our stack to run the tests and to red flag commits before it reaches us downstream the goal of this issue is to rationalize how we intend to solve this and integrate with upstream cc eparis rrati pmorie cc quinton hoole roberthbailey ixdy | 0 |
20,328 | 13,837,610,952 | IssuesEvent | 2020-10-14 04:08:03 | ampproject/amp.dev | https://api.github.com/repos/ampproject/amp.dev | closed | Migrate from travis-ci.org to travis-ci.com | Category: Infrastructure P2: Medium Type: Update | Travis will close down the travis-ci.org domain by 31st of December. Fore more context see [this support article](https://docs.travis-ci.com/user/migrate/open-source-repository-migration). | 1.0 | Migrate from travis-ci.org to travis-ci.com - Travis will close down the travis-ci.org domain by 31st of December. Fore more context see [this support article](https://docs.travis-ci.com/user/migrate/open-source-repository-migration). | infrastructure | migrate from travis ci org to travis ci com travis will close down the travis ci org domain by of december fore more context see | 1 |
19,677 | 13,387,748,056 | IssuesEvent | 2020-09-02 16:24:40 | SCALE-MS/scale-ms | https://api.github.com/repos/SCALE-MS/scale-ms | opened | version.py | User interface infrastructure | Soon, we will want quick ways to check the version of the package in use. We may need a more elaborate version API in the future, but for now we should pick some simple canned solution that plays nicely with `git`, `PyPI`, and modern `setuptools`. Versioneer? | 1.0 | version.py - Soon, we will want quick ways to check the version of the package in use. We may need a more elaborate version API in the future, but for now we should pick some simple canned solution that plays nicely with `git`, `PyPI`, and modern `setuptools`. Versioneer? | infrastructure | version py soon we will want quick ways to check the version of the package in use we may need a more elaborate version api in the future but for now we should pick some simple canned solution that plays nicely with git pypi and modern setuptools versioneer | 1 |
236,736 | 7,752,347,836 | IssuesEvent | 2018-05-30 19:59:56 | douira/resolution-editor | https://api.github.com/repos/douira/resolution-editor | opened | export function for text editors | enhancement low priority | As a backup function if something in the renderer doesn't work it would be nice to have an export of
* the TeX code or
* a preformatted doc, docx, odt, etc. file
| 1.0 | export function for text editors - As a backup function if something in the renderer doesn't work it would be nice to have an export of
* the TeX code or
* a preformatted doc, docx, odt, etc. file
| non_infrastructure | export function for text editors as a backup function if something in the renderer doesn t work it would be nice to have an export of the tex code or a preformatted doc docx odt etc file | 0 |
14,244 | 10,723,355,890 | IssuesEvent | 2019-10-27 18:13:53 | PyLadiesBerlin/website | https://api.github.com/repos/PyLadiesBerlin/website | closed | Set up server/ empty flask project in repo on development branch. | Infrastructure | This will be where we will develop the project. Other branches can be used to develop individual features | 1.0 | Set up server/ empty flask project in repo on development branch. - This will be where we will develop the project. Other branches can be used to develop individual features | infrastructure | set up server empty flask project in repo on development branch this will be where we will develop the project other branches can be used to develop individual features | 1 |
301,734 | 22,771,945,559 | IssuesEvent | 2022-07-08 10:51:25 | codenotary/immudb-py | https://api.github.com/repos/codenotary/immudb-py | closed | python SDK update | documentation enhancement | - [x] Some functions are named reverse than in Go SDK.
- [ ] We should get rid of binary input parameters (i.e. b’test’)
- [ ] Publish to conda as well
- [ ] Example on list users not working
- [ ] Example on how to execute sql queries, list tables, list databases
- [ ] Default port in examples should be the same default port for immudb
- [ ] Improve output messages: okay statuses after connection, or better output when inserting rows.
| 1.0 | python SDK update - - [x] Some functions are named reverse than in Go SDK.
- [ ] We should get rid of binary input parameters (i.e. b’test’)
- [ ] Publish to conda as well
- [ ] Example on list users not working
- [ ] Example on how to execute sql queries, list tables, list databases
- [ ] Default port in examples should be the same default port for immudb
- [ ] Improve output messages: okay statuses after connection, or better output when inserting rows.
| non_infrastructure | python sdk update some functions are named reverse than in go sdk we should get rid of binary input parameters i e b’test’ publish to conda as well example on list users not working example on how to execute sql queries list tables list databases default port in examples should be the same default port for immudb improve output messages okay statuses after connection or better output when inserting rows | 0 |
547,252 | 16,040,704,146 | IssuesEvent | 2021-04-22 07:30:04 | googleapis/java-aiplatform | https://api.github.com/repos/googleapis/java-aiplatform | reopened | aiplatform.CreateBatchPredictionJobTextSentimentAnalysisSampleTest: testCreateBatchPredictionJobTextSentimentAnalysisSample failed | api: aiplatform flakybot: flaky flakybot: issue priority: p1 type: bug | This test failed!
To configure my behavior, see [the Flaky Bot documentation](https://github.com/googleapis/repo-automation-bots/tree/master/packages/flakybot).
If I'm commenting on this issue too often, add the `flakybot: quiet` label and
I will stop commenting.
---
commit: 8cfdab67f373cbd7aa3f139a82c1d63502a360fa
buildURL: [Build Status](https://source.cloud.google.com/results/invocations/109b6dd4-4ffe-453b-8e53-5e15c4a70504), [Sponge](http://sponge2/109b6dd4-4ffe-453b-8e53-5e15c4a70504)
status: failed
<details><summary>Test output</summary><br><pre>java.lang.ArrayIndexOutOfBoundsException: 1
at aiplatform.CreateBatchPredictionJobTextSentimentAnalysisSampleTest.tearDown(CreateBatchPredictionJobTextSentimentAnalysisSampleTest.java:71)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56)
at org.junit.internal.runners.statements.RunAfters.invokeMethod(RunAfters.java:46)
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:33)
at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63)
at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329)
at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
at org.junit.runners.ParentRunner.run(ParentRunner.java:413)
at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:364)
at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:272)
at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:237)
at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:158)
at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:428)
at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:162)
at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:562)
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:548)
</pre></details> | 1.0 | aiplatform.CreateBatchPredictionJobTextSentimentAnalysisSampleTest: testCreateBatchPredictionJobTextSentimentAnalysisSample failed - This test failed!
To configure my behavior, see [the Flaky Bot documentation](https://github.com/googleapis/repo-automation-bots/tree/master/packages/flakybot).
If I'm commenting on this issue too often, add the `flakybot: quiet` label and
I will stop commenting.
---
commit: 8cfdab67f373cbd7aa3f139a82c1d63502a360fa
buildURL: [Build Status](https://source.cloud.google.com/results/invocations/109b6dd4-4ffe-453b-8e53-5e15c4a70504), [Sponge](http://sponge2/109b6dd4-4ffe-453b-8e53-5e15c4a70504)
status: failed
<details><summary>Test output</summary><br><pre>java.lang.ArrayIndexOutOfBoundsException: 1
at aiplatform.CreateBatchPredictionJobTextSentimentAnalysisSampleTest.tearDown(CreateBatchPredictionJobTextSentimentAnalysisSampleTest.java:71)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56)
at org.junit.internal.runners.statements.RunAfters.invokeMethod(RunAfters.java:46)
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:33)
at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63)
at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329)
at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
at org.junit.runners.ParentRunner.run(ParentRunner.java:413)
at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:364)
at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:272)
at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:237)
at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:158)
at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:428)
at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:162)
at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:562)
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:548)
</pre></details> | non_infrastructure | aiplatform createbatchpredictionjobtextsentimentanalysissampletest testcreatebatchpredictionjobtextsentimentanalysissample failed this test failed to configure my behavior see if i m commenting on this issue too often add the flakybot quiet label and i will stop commenting commit buildurl status failed test output java lang arrayindexoutofboundsexception at aiplatform createbatchpredictionjobtextsentimentanalysissampletest teardown createbatchpredictionjobtextsentimentanalysissampletest java at sun reflect nativemethodaccessorimpl native method at sun reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at sun reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java lang reflect method invoke method java at org junit runners model frameworkmethod runreflectivecall frameworkmethod java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners model frameworkmethod invokeexplosively frameworkmethod java at org junit internal runners statements runafters invokemethod runafters java at org junit internal runners statements runafters evaluate runafters java at org junit runners parentrunner evaluate parentrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at org junit runners runchild java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit internal runners statements runbefores evaluate runbefores java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org apache maven surefire execute java at org apache maven surefire executewithrerun java at org apache maven surefire executetestset java at org apache maven surefire invoke java at org apache maven surefire booter forkedbooter runsuitesinprocess forkedbooter java at org apache maven surefire booter forkedbooter execute forkedbooter java at org apache maven surefire booter forkedbooter run forkedbooter java at org apache maven surefire booter forkedbooter main forkedbooter java | 0 |
21,919 | 14,934,738,052 | IssuesEvent | 2021-01-25 10:56:23 | sanger/print_my_barcode | https://api.github.com/repos/sanger/print_my_barcode | closed | GPL-622 Move pmb into psd-deployment on TRAINING FCE | Infrastructure | Description
PMB is currently running in the old machines and the config changes need to be added manually. We would like to move the application into TRAINING FCE and configure it to use the printers.
Who the primary contacts are for this work
Harriet
Eduardo | 1.0 | GPL-622 Move pmb into psd-deployment on TRAINING FCE - Description
PMB is currently running in the old machines and the config changes need to be added manually. We would like to move the application into TRAINING FCE and configure it to use the printers.
Who the primary contacts are for this work
Harriet
Eduardo | infrastructure | gpl move pmb into psd deployment on training fce description pmb is currently running in the old machines and the config changes need to be added manually we would like to move the application into training fce and configure it to use the printers who the primary contacts are for this work harriet eduardo | 1 |
250,031 | 27,020,514,285 | IssuesEvent | 2023-02-11 01:02:47 | labsai/EDDI | https://api.github.com/repos/labsai/EDDI | opened | quarkus-resteasy-2.16.1.Final.jar: 1 vulnerabilities (highest severity is: 4.8) | security vulnerability | <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>quarkus-resteasy-2.16.1.Final.jar</b></p></summary>
<p></p>
<p>Path to dependency file: /pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/io/vertx/vertx-web/4.3.7/vertx-web-4.3.7.jar</p>
<p>
<p>Found in HEAD commit: <a href="https://github.com/labsai/EDDI/commit/861364c29824ca4285935af2752170ac34f4883b">861364c29824ca4285935af2752170ac34f4883b</a></p></details>
## Vulnerabilities
| CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in (quarkus-resteasy version) | Remediation Available |
| ------------- | ------------- | ----- | ----- | ----- | ------------- | --- |
| [CVE-2023-24815](https://www.mend.io/vulnerability-database/CVE-2023-24815) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 4.8 | vertx-web-4.3.7.jar | Transitive | N/A* | ❌ |
<p>*For some transitive vulnerabilities, there is no version of direct dependency with a fix. Check the section "Details" below to see if there is a version of transitive dependency where vulnerability is fixed.</p>
## Details
<details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2023-24815</summary>
### Vulnerable Library - <b>vertx-web-4.3.7.jar</b></p>
<p></p>
<p>Path to dependency file: /pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/io/vertx/vertx-web/4.3.7/vertx-web-4.3.7.jar</p>
<p>
Dependency Hierarchy:
- quarkus-resteasy-2.16.1.Final.jar (Root Library)
- quarkus-vertx-http-2.16.1.Final.jar
- :x: **vertx-web-4.3.7.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/labsai/EDDI/commit/861364c29824ca4285935af2752170ac34f4883b">861364c29824ca4285935af2752170ac34f4883b</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
Vert.x-Web is a set of building blocks for building web applications in the java programming language. When running vertx web applications that serve files using `StaticHandler` on Windows Operating Systems and Windows File Systems, if the mount point is a wildcard (`*`) then an attacker can exfiltrate any class path resource. When computing the relative path to locate the resource, in case of wildcards, the code: `return "/" + rest;` from `Utils.java` returns the user input (without validation) as the segment to lookup. Even though checks are performed to avoid escaping the sandbox, given that the input was not sanitized `\` are not properly handled and an attacker can build a path that is valid within the classpath. This issue only affects users deploying in windows environments and upgrading is the advised remediation path. There are no known workarounds for this vulnerability.
<p>Publish Date: 2023-02-09
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-24815>CVE-2023-24815</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>4.8</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/vert-x3/vertx-web/security/advisories/GHSA-53jx-vvf9-4x38">https://github.com/vert-x3/vertx-web/security/advisories/GHSA-53jx-vvf9-4x38</a></p>
<p>Release Date: 2023-02-09</p>
<p>Fix Resolution: io.vertx:vertx-web:4.3.8</p>
</p>
<p></p>
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
</details> | True | quarkus-resteasy-2.16.1.Final.jar: 1 vulnerabilities (highest severity is: 4.8) - <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>quarkus-resteasy-2.16.1.Final.jar</b></p></summary>
<p></p>
<p>Path to dependency file: /pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/io/vertx/vertx-web/4.3.7/vertx-web-4.3.7.jar</p>
<p>
<p>Found in HEAD commit: <a href="https://github.com/labsai/EDDI/commit/861364c29824ca4285935af2752170ac34f4883b">861364c29824ca4285935af2752170ac34f4883b</a></p></details>
## Vulnerabilities
| CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in (quarkus-resteasy version) | Remediation Available |
| ------------- | ------------- | ----- | ----- | ----- | ------------- | --- |
| [CVE-2023-24815](https://www.mend.io/vulnerability-database/CVE-2023-24815) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 4.8 | vertx-web-4.3.7.jar | Transitive | N/A* | ❌ |
<p>*For some transitive vulnerabilities, there is no version of direct dependency with a fix. Check the section "Details" below to see if there is a version of transitive dependency where vulnerability is fixed.</p>
## Details
<details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2023-24815</summary>
### Vulnerable Library - <b>vertx-web-4.3.7.jar</b></p>
<p></p>
<p>Path to dependency file: /pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/io/vertx/vertx-web/4.3.7/vertx-web-4.3.7.jar</p>
<p>
Dependency Hierarchy:
- quarkus-resteasy-2.16.1.Final.jar (Root Library)
- quarkus-vertx-http-2.16.1.Final.jar
- :x: **vertx-web-4.3.7.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/labsai/EDDI/commit/861364c29824ca4285935af2752170ac34f4883b">861364c29824ca4285935af2752170ac34f4883b</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
<p></p>
### Vulnerability Details
<p>
Vert.x-Web is a set of building blocks for building web applications in the java programming language. When running vertx web applications that serve files using `StaticHandler` on Windows Operating Systems and Windows File Systems, if the mount point is a wildcard (`*`) then an attacker can exfiltrate any class path resource. When computing the relative path to locate the resource, in case of wildcards, the code: `return "/" + rest;` from `Utils.java` returns the user input (without validation) as the segment to lookup. Even though checks are performed to avoid escaping the sandbox, given that the input was not sanitized `\` are not properly handled and an attacker can build a path that is valid within the classpath. This issue only affects users deploying in windows environments and upgrading is the advised remediation path. There are no known workarounds for this vulnerability.
<p>Publish Date: 2023-02-09
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-24815>CVE-2023-24815</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>4.8</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/vert-x3/vertx-web/security/advisories/GHSA-53jx-vvf9-4x38">https://github.com/vert-x3/vertx-web/security/advisories/GHSA-53jx-vvf9-4x38</a></p>
<p>Release Date: 2023-02-09</p>
<p>Fix Resolution: io.vertx:vertx-web:4.3.8</p>
</p>
<p></p>
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
</details> | non_infrastructure | quarkus resteasy final jar vulnerabilities highest severity is vulnerable library quarkus resteasy final jar path to dependency file pom xml path to vulnerable library home wss scanner repository io vertx vertx web vertx web jar found in head commit a href vulnerabilities cve severity cvss dependency type fixed in quarkus resteasy version remediation available medium vertx web jar transitive n a for some transitive vulnerabilities there is no version of direct dependency with a fix check the section details below to see if there is a version of transitive dependency where vulnerability is fixed details cve vulnerable library vertx web jar path to dependency file pom xml path to vulnerable library home wss scanner repository io vertx vertx web vertx web jar dependency hierarchy quarkus resteasy final jar root library quarkus vertx http final jar x vertx web jar vulnerable library found in head commit a href found in base branch main vulnerability details vert x web is a set of building blocks for building web applications in the java programming language when running vertx web applications that serve files using statichandler on windows operating systems and windows file systems if the mount point is a wildcard then an attacker can exfiltrate any class path resource when computing the relative path to locate the resource in case of wildcards the code return rest from utils java returns the user input without validation as the segment to lookup even though checks are performed to avoid escaping the sandbox given that the input was not sanitized are not properly handled and an attacker can build a path that is valid within the classpath this issue only affects users deploying in windows environments and upgrading is the advised remediation path there are no known workarounds for this vulnerability 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 none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution io vertx vertx web step up your open source security game with mend | 0 |
991 | 3,023,042,941 | IssuesEvent | 2015-08-01 02:28:29 | catapult-project/catapult | https://api.github.com/repos/catapult-project/catapult | closed | Firefox compat | Infrastructure P2 | <a href="https://github.com/natduca"><img src="https://avatars.githubusercontent.com/u/412396?v=3" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [natduca](https://github.com/natduca)**
_Monday Sep 22, 2014 at 19:59 GMT_
_Originally opened as https://github.com/google/trace-viewer/issues/100_
----
_From [nd...@chromium.org](https://code.google.com/u/102435256078839283966/) on August 09, 2012 01:35:21_
Lets get the UI working in ff. We're a bit overreliant on webkit-prefixes stil. :)
_Original issue: http://code.google.com/p/trace-viewer/issues/detail?id=94_
| 1.0 | Firefox compat - <a href="https://github.com/natduca"><img src="https://avatars.githubusercontent.com/u/412396?v=3" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [natduca](https://github.com/natduca)**
_Monday Sep 22, 2014 at 19:59 GMT_
_Originally opened as https://github.com/google/trace-viewer/issues/100_
----
_From [nd...@chromium.org](https://code.google.com/u/102435256078839283966/) on August 09, 2012 01:35:21_
Lets get the UI working in ff. We're a bit overreliant on webkit-prefixes stil. :)
_Original issue: http://code.google.com/p/trace-viewer/issues/detail?id=94_
| infrastructure | firefox compat issue by monday sep at gmt originally opened as from on august lets get the ui working in ff we re a bit overreliant on webkit prefixes stil original issue | 1 |
5,873 | 8,318,250,177 | IssuesEvent | 2018-09-25 14:15:04 | Zrips/CMI | https://api.github.com/repos/Zrips/CMI | closed | CMI IC Villager does not save | Compatibility | **Description of issue or feature request:**
When you add an entity to a IC then reboot your server, the entity is no longer set, but the command is still paired to the IC name except right-clicking the enitity does nothing since it resets.
Using the latest 24 dev build of Citizens2
#### DELETE IF YOU ARE SUBMITTING A FEATURE REQUEST ####
**ERROR (DELETE IF YOU HAVE NO ERROR):**
```
####################
## PASTE ERROR HERE ##
####################
```
**CONFIG SECTION (DELETE IF NOT RELEVANT):**
```
#####################################
## PASTE RELEVANT CONFIG SECTION HERE ##
#####################################
```
**Cmi Version (using`/cmi version`):** 8.0.9.0
**Server Type (Spigot/Paperspigot/etc):** Paper
**Server Version (using `/ver`):** 1.13.1
| True | CMI IC Villager does not save - **Description of issue or feature request:**
When you add an entity to a IC then reboot your server, the entity is no longer set, but the command is still paired to the IC name except right-clicking the enitity does nothing since it resets.
Using the latest 24 dev build of Citizens2
#### DELETE IF YOU ARE SUBMITTING A FEATURE REQUEST ####
**ERROR (DELETE IF YOU HAVE NO ERROR):**
```
####################
## PASTE ERROR HERE ##
####################
```
**CONFIG SECTION (DELETE IF NOT RELEVANT):**
```
#####################################
## PASTE RELEVANT CONFIG SECTION HERE ##
#####################################
```
**Cmi Version (using`/cmi version`):** 8.0.9.0
**Server Type (Spigot/Paperspigot/etc):** Paper
**Server Version (using `/ver`):** 1.13.1
| non_infrastructure | cmi ic villager does not save description of issue or feature request when you add an entity to a ic then reboot your server the entity is no longer set but the command is still paired to the ic name except right clicking the enitity does nothing since it resets using the latest dev build of delete if you are submitting a feature request error delete if you have no error paste error here config section delete if not relevant paste relevant config section here cmi version using cmi version server type spigot paperspigot etc paper server version using ver | 0 |
344,085 | 30,713,568,273 | IssuesEvent | 2023-07-27 11:31:53 | zephyrproject-rtos/zephyr | https://api.github.com/repos/zephyrproject-rtos/zephyr | opened | scripts: pylib: twister: twisterlib: Testsuite load sanity check is not sane | bug area: Testsuite | Let us look at the `load` method in the `TestSuite` class:
https://github.com/zephyrproject-rtos/zephyr/blob/e473dd5333b90b536037c3f560c10cf2725fc9e8/scripts/pylib/twister/twisterlib/testsuite.py#L383-L389
As we can see, at the end we have a sanity check that raises an `Exception` if we have specified a `'console'` harness without specifying a config.
However, there are two problems in this approach:
- If `data` does not contain a harness at all, it will crash with an `AttributeError`
- If `data` does contain a harness, but not a config, it will crash with an `AttributeError`
Thus, we would like to change that check to something that will satisfy the intended need for that check. | 1.0 | scripts: pylib: twister: twisterlib: Testsuite load sanity check is not sane - Let us look at the `load` method in the `TestSuite` class:
https://github.com/zephyrproject-rtos/zephyr/blob/e473dd5333b90b536037c3f560c10cf2725fc9e8/scripts/pylib/twister/twisterlib/testsuite.py#L383-L389
As we can see, at the end we have a sanity check that raises an `Exception` if we have specified a `'console'` harness without specifying a config.
However, there are two problems in this approach:
- If `data` does not contain a harness at all, it will crash with an `AttributeError`
- If `data` does contain a harness, but not a config, it will crash with an `AttributeError`
Thus, we would like to change that check to something that will satisfy the intended need for that check. | non_infrastructure | scripts pylib twister twisterlib testsuite load sanity check is not sane let us look at the load method in the testsuite class as we can see at the end we have a sanity check that raises an exception if we have specified a console harness without specifying a config however there are two problems in this approach if data does not contain a harness at all it will crash with an attributeerror if data does contain a harness but not a config it will crash with an attributeerror thus we would like to change that check to something that will satisfy the intended need for that check | 0 |
76,044 | 26,210,958,965 | IssuesEvent | 2023-01-04 06:22:31 | hazelcast/hazelcast | https://api.github.com/repos/hazelcast/hazelcast | closed | Utility for Named tasks works for Runnable, but not for Callable | Type: Defect | <!--
Thanks for reporting your issue. Please share with us the following information, to help us resolve your issue quickly and efficiently.
-->
**Describe the bug**
`TaskUtils.named(String, Callable)` is broken. It doesn't produce something submittable (per `.submit()`), in the same way that `TaskUtils.named(String, Runnable)` produces something executable (per `.execute()`).
**Expected behavior**
I would expect to be able to pass my Callable through `TaskUtils.named` and still be submittable.
**To Reproduce**
Steps to reproduce the behavior:
1. Create the simplest possible Callable - let's call it `FooTask implements Callable, Serializable, HazelcastInstanceAware`
2. Submit it to some IExecutorService - make sure it runs
3. Now wrap it with `TaskUtils.named` and submit it again - see it fail
```
java.lang.ClassCastException: class FooTask cannot be cast to class java.lang.Runnable (FooTask is in unnamed module of loader 'app'; java.lang.Runnable is in module java.base of loader 'bootstrap')
at com.hazelcast.scheduledexecutor.impl.AbstractTaskDecorator.run(AbstractTaskDecorator.java:46)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at com.hazelcast.executor.impl.DistributedExecutorService$Processor.run(DistributedExecutorService.java:276)
at com.hazelcast.internal.util.executor.CachedExecutorServiceDelegate$Worker.run(CachedExecutorServiceDelegate.java:217)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
at java.base/java.lang.Thread.run(Thread.java:830)
at com.hazelcast.internal.util.executor.HazelcastManagedThread.executeRun(HazelcastManagedThread.java:76)
at com.hazelcast.internal.util.executor.HazelcastManagedThread.run(HazelcastManagedThread.java:102)
```
**Additional context**
Exacty the same steps, but with a Runnable task, work as expected - no problems at all...
Latest Hazelcast (v5.1.2)
<!--
Add any other context about the problem here.
Common details that we're often interested in:
- Detailed description of the steps to reproduce your issue
- Logs and stack traces, if available
- Hazelcast version that you use (e.g. 3.4, also specify whether it is a minor release or the latest snapshot)
- If available, integration module versions (e.g. Tomcat, Jetty, Spring, Hibernate). Also, include their detailed configuration information such as web.xml, Hibernate configuration and `context.xml` for Spring
- Cluster size, i.e. the number of Hazelcast cluster members
- Number of the clients
- Version of Java. It is also helpful to mention the JVM parameters
- Operating system. If it is Linux, kernel version is helpful
- Unit test with the `hazelcast.xml` file. If you could include a unit test which reproduces your issue, we would be grateful
-->
| 1.0 | Utility for Named tasks works for Runnable, but not for Callable - <!--
Thanks for reporting your issue. Please share with us the following information, to help us resolve your issue quickly and efficiently.
-->
**Describe the bug**
`TaskUtils.named(String, Callable)` is broken. It doesn't produce something submittable (per `.submit()`), in the same way that `TaskUtils.named(String, Runnable)` produces something executable (per `.execute()`).
**Expected behavior**
I would expect to be able to pass my Callable through `TaskUtils.named` and still be submittable.
**To Reproduce**
Steps to reproduce the behavior:
1. Create the simplest possible Callable - let's call it `FooTask implements Callable, Serializable, HazelcastInstanceAware`
2. Submit it to some IExecutorService - make sure it runs
3. Now wrap it with `TaskUtils.named` and submit it again - see it fail
```
java.lang.ClassCastException: class FooTask cannot be cast to class java.lang.Runnable (FooTask is in unnamed module of loader 'app'; java.lang.Runnable is in module java.base of loader 'bootstrap')
at com.hazelcast.scheduledexecutor.impl.AbstractTaskDecorator.run(AbstractTaskDecorator.java:46)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at com.hazelcast.executor.impl.DistributedExecutorService$Processor.run(DistributedExecutorService.java:276)
at com.hazelcast.internal.util.executor.CachedExecutorServiceDelegate$Worker.run(CachedExecutorServiceDelegate.java:217)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
at java.base/java.lang.Thread.run(Thread.java:830)
at com.hazelcast.internal.util.executor.HazelcastManagedThread.executeRun(HazelcastManagedThread.java:76)
at com.hazelcast.internal.util.executor.HazelcastManagedThread.run(HazelcastManagedThread.java:102)
```
**Additional context**
Exacty the same steps, but with a Runnable task, work as expected - no problems at all...
Latest Hazelcast (v5.1.2)
<!--
Add any other context about the problem here.
Common details that we're often interested in:
- Detailed description of the steps to reproduce your issue
- Logs and stack traces, if available
- Hazelcast version that you use (e.g. 3.4, also specify whether it is a minor release or the latest snapshot)
- If available, integration module versions (e.g. Tomcat, Jetty, Spring, Hibernate). Also, include their detailed configuration information such as web.xml, Hibernate configuration and `context.xml` for Spring
- Cluster size, i.e. the number of Hazelcast cluster members
- Number of the clients
- Version of Java. It is also helpful to mention the JVM parameters
- Operating system. If it is Linux, kernel version is helpful
- Unit test with the `hazelcast.xml` file. If you could include a unit test which reproduces your issue, we would be grateful
-->
| non_infrastructure | utility for named tasks works for runnable but not for callable thanks for reporting your issue please share with us the following information to help us resolve your issue quickly and efficiently describe the bug taskutils named string callable is broken it doesn t produce something submittable per submit in the same way that taskutils named string runnable produces something executable per execute expected behavior i would expect to be able to pass my callable through taskutils named and still be submittable to reproduce steps to reproduce the behavior create the simplest possible callable let s call it footask implements callable serializable hazelcastinstanceaware submit it to some iexecutorservice make sure it runs now wrap it with taskutils named and submit it again see it fail java lang classcastexception class footask cannot be cast to class java lang runnable footask is in unnamed module of loader app java lang runnable is in module java base of loader bootstrap at com hazelcast scheduledexecutor impl abstracttaskdecorator run abstracttaskdecorator java at java base java util concurrent executors runnableadapter call executors java at java base java util concurrent futuretask run futuretask java at com hazelcast executor impl distributedexecutorservice processor run distributedexecutorservice java at com hazelcast internal util executor cachedexecutorservicedelegate worker run cachedexecutorservicedelegate java at java base java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java base java util concurrent threadpoolexecutor worker run threadpoolexecutor java at java base java lang thread run thread java at com hazelcast internal util executor hazelcastmanagedthread executerun hazelcastmanagedthread java at com hazelcast internal util executor hazelcastmanagedthread run hazelcastmanagedthread java additional context exacty the same steps but with a runnable task work as expected no problems at all latest hazelcast add any other context about the problem here common details that we re often interested in detailed description of the steps to reproduce your issue logs and stack traces if available hazelcast version that you use e g also specify whether it is a minor release or the latest snapshot if available integration module versions e g tomcat jetty spring hibernate also include their detailed configuration information such as web xml hibernate configuration and context xml for spring cluster size i e the number of hazelcast cluster members number of the clients version of java it is also helpful to mention the jvm parameters operating system if it is linux kernel version is helpful unit test with the hazelcast xml file if you could include a unit test which reproduces your issue we would be grateful | 0 |
718,477 | 24,718,415,208 | IssuesEvent | 2022-10-20 08:50:20 | Together-Java/TJ-Bot | https://api.github.com/repos/Together-Java/TJ-Bot | closed | Create /modmail command | new command priority: normal valid | The `/modmail` command is used to write a message to _a moderator_. The advantages over a simple DM are:
* the user does not need to know which users of a server are moderators
* the user does not need to befriend a moderator in case they have disabled non-friend DMs
The requirements for this are:
* the message must not be visible to other members
* the message is either visible to a single or all moderators
Optionally:
* the command should also be usable if not part of the guild anymore, for example after getting banned (needs careful design though to not be abused - rate limiting etc)
---
One cheap and low hanging possibility could be to write the message into the `#mod_audit_log` channel by using `ModAuditLogWriter` introduced in #296 . To make the message invisible, just use `ephemeral`. | 1.0 | Create /modmail command - The `/modmail` command is used to write a message to _a moderator_. The advantages over a simple DM are:
* the user does not need to know which users of a server are moderators
* the user does not need to befriend a moderator in case they have disabled non-friend DMs
The requirements for this are:
* the message must not be visible to other members
* the message is either visible to a single or all moderators
Optionally:
* the command should also be usable if not part of the guild anymore, for example after getting banned (needs careful design though to not be abused - rate limiting etc)
---
One cheap and low hanging possibility could be to write the message into the `#mod_audit_log` channel by using `ModAuditLogWriter` introduced in #296 . To make the message invisible, just use `ephemeral`. | non_infrastructure | create modmail command the modmail command is used to write a message to a moderator the advantages over a simple dm are the user does not need to know which users of a server are moderators the user does not need to befriend a moderator in case they have disabled non friend dms the requirements for this are the message must not be visible to other members the message is either visible to a single or all moderators optionally the command should also be usable if not part of the guild anymore for example after getting banned needs careful design though to not be abused rate limiting etc one cheap and low hanging possibility could be to write the message into the mod audit log channel by using modauditlogwriter introduced in to make the message invisible just use ephemeral | 0 |
394,350 | 27,027,392,909 | IssuesEvent | 2023-02-11 19:30:41 | hackforla/tdm-calculator | https://api.github.com/repos/hackforla/tdm-calculator | closed | Update links on govcalc.org | help wanted level: easy priority: SHOULD HAVE role: Product Management Feature - Project Documentation Feature - MarComm Materials ready for product | ### Overview
It was observed during the meeting held on 2023-01-10 that some of the links on the govcalc.org website are outdated and need to be reviewed
### Action Items
- [x] provide an up-to-date review of the website to ascertain which links should be removed or replaced.
- [ ] update the website with currents links
### Resources/Instructions
https://govcalc.org/ | 1.0 | Update links on govcalc.org - ### Overview
It was observed during the meeting held on 2023-01-10 that some of the links on the govcalc.org website are outdated and need to be reviewed
### Action Items
- [x] provide an up-to-date review of the website to ascertain which links should be removed or replaced.
- [ ] update the website with currents links
### Resources/Instructions
https://govcalc.org/ | non_infrastructure | update links on govcalc org overview it was observed during the meeting held on that some of the links on the govcalc org website are outdated and need to be reviewed action items provide an up to date review of the website to ascertain which links should be removed or replaced update the website with currents links resources instructions | 0 |
28,156 | 23,059,909,100 | IssuesEvent | 2022-07-25 08:59:58 | nilearn/nilearn | https://api.github.com/repos/nilearn/nilearn | closed | Speeding up docs building | Infrastructure | Currently CircleCI takes at least 1.5hrs to fully build the docs.
With addition of Nistats documentation this will become >2hrs.
To speed this up within PRs, currently the docs are built once a day or when a new PR is opened, the built docs are cached and for the rest of the day subsequent pushes to the PR branch do not rebuild the full docs. This cuts down the build time to ~5minutes.
The resulting build from existing cache to relies on sphinx-gallery autodetecting the changed files and rebuilding the differences. However, for whatever reason, this is not very reliable. I have seen examples where the changes in text for example are not reflected in the build.
If anyone has any ideas about this please share them. If this is a case of misunderstanding or misconfiguration, I would like to know and fix it.
Meanwhile, based on what MNE-Python does and what Scikit-Learn does, I intend to implement the processes they use.
Once a cache has been restored,
- When a non-example .py file changes, make HTML is built with the no-plot option.
- When an example file changes, that specific example is rerun and rebuilt from scratch.
For restoring the built-docs cache, I am thinking I will create a mechanism to use the docs built in master branch, but that is secondary goal. | 1.0 | Speeding up docs building - Currently CircleCI takes at least 1.5hrs to fully build the docs.
With addition of Nistats documentation this will become >2hrs.
To speed this up within PRs, currently the docs are built once a day or when a new PR is opened, the built docs are cached and for the rest of the day subsequent pushes to the PR branch do not rebuild the full docs. This cuts down the build time to ~5minutes.
The resulting build from existing cache to relies on sphinx-gallery autodetecting the changed files and rebuilding the differences. However, for whatever reason, this is not very reliable. I have seen examples where the changes in text for example are not reflected in the build.
If anyone has any ideas about this please share them. If this is a case of misunderstanding or misconfiguration, I would like to know and fix it.
Meanwhile, based on what MNE-Python does and what Scikit-Learn does, I intend to implement the processes they use.
Once a cache has been restored,
- When a non-example .py file changes, make HTML is built with the no-plot option.
- When an example file changes, that specific example is rerun and rebuilt from scratch.
For restoring the built-docs cache, I am thinking I will create a mechanism to use the docs built in master branch, but that is secondary goal. | infrastructure | speeding up docs building currently circleci takes at least to fully build the docs with addition of nistats documentation this will become to speed this up within prs currently the docs are built once a day or when a new pr is opened the built docs are cached and for the rest of the day subsequent pushes to the pr branch do not rebuild the full docs this cuts down the build time to the resulting build from existing cache to relies on sphinx gallery autodetecting the changed files and rebuilding the differences however for whatever reason this is not very reliable i have seen examples where the changes in text for example are not reflected in the build if anyone has any ideas about this please share them if this is a case of misunderstanding or misconfiguration i would like to know and fix it meanwhile based on what mne python does and what scikit learn does i intend to implement the processes they use once a cache has been restored when a non example py file changes make html is built with the no plot option when an example file changes that specific example is rerun and rebuilt from scratch for restoring the built docs cache i am thinking i will create a mechanism to use the docs built in master branch but that is secondary goal | 1 |
30,720 | 25,014,454,814 | IssuesEvent | 2022-11-03 17:35:34 | SonarSource/sonarlint-visualstudio | https://api.github.com/repos/SonarSource/sonarlint-visualstudio | opened | [Infra] Move the .NET obfuscation tool to the new ExternalTools feed | Infrastructure | ### Description
The build pipeline is still using the `slvs_obfusc_proto` package feed that was created during prototyping.
We should switch to using the `ExternalTools` feed.
TODO
- [ ] upload the tool binaries to the new `ExternalTools` feed
- [ ] update the pipeline to use the new feed / package
- [ ] delete the old feed | 1.0 | [Infra] Move the .NET obfuscation tool to the new ExternalTools feed - ### Description
The build pipeline is still using the `slvs_obfusc_proto` package feed that was created during prototyping.
We should switch to using the `ExternalTools` feed.
TODO
- [ ] upload the tool binaries to the new `ExternalTools` feed
- [ ] update the pipeline to use the new feed / package
- [ ] delete the old feed | infrastructure | move the net obfuscation tool to the new externaltools feed description the build pipeline is still using the slvs obfusc proto package feed that was created during prototyping we should switch to using the externaltools feed todo upload the tool binaries to the new externaltools feed update the pipeline to use the new feed package delete the old feed | 1 |
226,389 | 24,947,060,745 | IssuesEvent | 2022-11-01 01:48:15 | maddyCode23/linux-4.1.15 | https://api.github.com/repos/maddyCode23/linux-4.1.15 | closed | WS-2021-0265 (High) detected in linux-stable-rtv4.1.33 - autoclosed | security vulnerability | ## WS-2021-0265 - 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/maddyCode23/linux-4.1.15/commit/f1f3d2b150be669390b32dfea28e773471bdd6e7">f1f3d2b150be669390b32dfea28e773471bdd6e7</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/media/usb/zr364xx/zr364xx.c</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/media/usb/zr364xx/zr364xx.c</b>
</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>
Linux/Kernel in versions v5.11-rc1 to v5.13.2 is vulnerable to memory leak in zr364xx_start_readpipe
<p>Publish Date: 2021-05-31
<p>URL: <a href=https://github.com/gregkh/linux/commit/d69b39d89f362cfeeb54a68690768d0d257b2c8f>WS-2021-0265</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://osv.dev/vulnerability/UVI-2021-1001218">https://osv.dev/vulnerability/UVI-2021-1001218</a></p>
<p>Release Date: 2021-05-31</p>
<p>Fix Resolution: v5.13.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 | WS-2021-0265 (High) detected in linux-stable-rtv4.1.33 - autoclosed - ## WS-2021-0265 - 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/maddyCode23/linux-4.1.15/commit/f1f3d2b150be669390b32dfea28e773471bdd6e7">f1f3d2b150be669390b32dfea28e773471bdd6e7</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/media/usb/zr364xx/zr364xx.c</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/media/usb/zr364xx/zr364xx.c</b>
</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>
Linux/Kernel in versions v5.11-rc1 to v5.13.2 is vulnerable to memory leak in zr364xx_start_readpipe
<p>Publish Date: 2021-05-31
<p>URL: <a href=https://github.com/gregkh/linux/commit/d69b39d89f362cfeeb54a68690768d0d257b2c8f>WS-2021-0265</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://osv.dev/vulnerability/UVI-2021-1001218">https://osv.dev/vulnerability/UVI-2021-1001218</a></p>
<p>Release Date: 2021-05-31</p>
<p>Fix Resolution: v5.13.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_infrastructure | ws high detected in linux stable autoclosed ws 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 drivers media usb c drivers media usb c vulnerability details linux kernel in versions to is vulnerable to memory leak in start readpipe 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 step up your open source security game with mend | 0 |
231,898 | 7,644,552,038 | IssuesEvent | 2018-05-08 15:47:09 | sul-dlss/preservation_catalog | https://api.github.com/repos/sul-dlss/preservation_catalog | closed | (R) where should we store zipped versions? (blocking #707) | blocking! high priority question ready replication | When we create zips, we probably want to keep a copy of each version of each druid locally? (remember local POSIX impl. of endpoint?) So where should these files be stored?
- in moab???
- near moab???
- somewhere else??
amount of storage need is significant; Julian seemed to talk of a big storage place for these earlier??
so do we do druid tree to zips on "other" storage? Room to grow? Etc. (Is this our POSIX archival location?) | 1.0 | (R) where should we store zipped versions? (blocking #707) - When we create zips, we probably want to keep a copy of each version of each druid locally? (remember local POSIX impl. of endpoint?) So where should these files be stored?
- in moab???
- near moab???
- somewhere else??
amount of storage need is significant; Julian seemed to talk of a big storage place for these earlier??
so do we do druid tree to zips on "other" storage? Room to grow? Etc. (Is this our POSIX archival location?) | non_infrastructure | r where should we store zipped versions blocking when we create zips we probably want to keep a copy of each version of each druid locally remember local posix impl of endpoint so where should these files be stored in moab near moab somewhere else amount of storage need is significant julian seemed to talk of a big storage place for these earlier so do we do druid tree to zips on other storage room to grow etc is this our posix archival location | 0 |
30,108 | 24,545,848,843 | IssuesEvent | 2022-10-12 08:44:12 | avicity7/chrysanthemum | https://api.github.com/repos/avicity7/chrysanthemum | closed | #102 Format example articles for Safe Publish | infrastructure | Format the content written in #3 to be put on the blockchain system. | 1.0 | #102 Format example articles for Safe Publish - Format the content written in #3 to be put on the blockchain system. | infrastructure | format example articles for safe publish format the content written in to be put on the blockchain system | 1 |
9,267 | 7,887,887,807 | IssuesEvent | 2018-06-27 20:04:15 | Microsoft/TypeScript | https://api.github.com/repos/Microsoft/TypeScript | closed | `jake runtests` doesn't rebuild files | Bug Infrastructure | **Steps**
* jake clean
* `jake runtests lint=false t=getEdits`: passes
* Add `Debug.assert(2 + 2 === 5)` at the top of `getEditsForFileRename`.
* `jake runtests lint=false t=getEdits`
**Expected behavior:**
Tests fail.
**Actual behavior:**
Tests pass. Running `jake clean` then `jake runtests lint=false t=getEdits` again causes them to fail.
@RyanCavanaugh Is this fixed by #24938? | 1.0 | `jake runtests` doesn't rebuild files - **Steps**
* jake clean
* `jake runtests lint=false t=getEdits`: passes
* Add `Debug.assert(2 + 2 === 5)` at the top of `getEditsForFileRename`.
* `jake runtests lint=false t=getEdits`
**Expected behavior:**
Tests fail.
**Actual behavior:**
Tests pass. Running `jake clean` then `jake runtests lint=false t=getEdits` again causes them to fail.
@RyanCavanaugh Is this fixed by #24938? | infrastructure | jake runtests doesn t rebuild files steps jake clean jake runtests lint false t getedits passes add debug assert at the top of geteditsforfilerename jake runtests lint false t getedits expected behavior tests fail actual behavior tests pass running jake clean then jake runtests lint false t getedits again causes them to fail ryancavanaugh is this fixed by | 1 |
3,622 | 4,445,568,855 | IssuesEvent | 2016-08-20 04:34:29 | dmitrinesterenko/blog | https://api.github.com/repos/dmitrinesterenko/blog | closed | Create a base docker image | in progress infrastructure | Dockerfile-base should have all of the apt-get and node packages installed.
Dockerfile-app should only add the app and run elixir compilation. | 1.0 | Create a base docker image - Dockerfile-base should have all of the apt-get and node packages installed.
Dockerfile-app should only add the app and run elixir compilation. | infrastructure | create a base docker image dockerfile base should have all of the apt get and node packages installed dockerfile app should only add the app and run elixir compilation | 1 |
702,821 | 24,137,397,623 | IssuesEvent | 2022-09-21 12:28:10 | aseprite/aseprite | https://api.github.com/repos/aseprite/aseprite | closed | Crash when Aseprite attempts to navigate to the most recent folder after it has been deleted | bug high priority windows wip | After exporting a sprite to a folder with a subfolder (i.e: `Project/TestFolder/SubFolder/MySprite.png`), if `TestFolder` is deleted, re-opening the Export dialog can cause Aseprite to crash.
This one seems to me to be an edge case, but I did run into it naturally.
Steps to reproduce
1. Open Aseprite
2. Create a sprite
3. In some folder, e.g, `Project`, create a new folder (call it, say, `TestFolder`)
4. Inside `TestFolder`, create a subfolder (call it, say, `Subfolder`).
5. Export your new sprite to `Subfolder`
6. In Explorer, navigate to `Project` and deleted `TestFolder`
7. Open the dialog to export the sprite again, and you will be shown a blank file explorer dialog which appears to be on "Desktop", but nothing exists in this explorer window
8. Pressing "Back" will cause an error dialog to appear, and then navigate you to the now-non-existent `Subfolder` directory
9. Pressing the "Directory Up" button will cause the same error to appear
10. Pressing Ok on this error causes Aseprite to crash
In case this is hard to follow, I recorded an example which I will include a link to here
### Aseprite and System version
* Aseprite v1.2.5-x64, Steam Version
* System: Windows Build 1803
https://i.imgur.com/VbjBqVk.mp4
| 1.0 | Crash when Aseprite attempts to navigate to the most recent folder after it has been deleted - After exporting a sprite to a folder with a subfolder (i.e: `Project/TestFolder/SubFolder/MySprite.png`), if `TestFolder` is deleted, re-opening the Export dialog can cause Aseprite to crash.
This one seems to me to be an edge case, but I did run into it naturally.
Steps to reproduce
1. Open Aseprite
2. Create a sprite
3. In some folder, e.g, `Project`, create a new folder (call it, say, `TestFolder`)
4. Inside `TestFolder`, create a subfolder (call it, say, `Subfolder`).
5. Export your new sprite to `Subfolder`
6. In Explorer, navigate to `Project` and deleted `TestFolder`
7. Open the dialog to export the sprite again, and you will be shown a blank file explorer dialog which appears to be on "Desktop", but nothing exists in this explorer window
8. Pressing "Back" will cause an error dialog to appear, and then navigate you to the now-non-existent `Subfolder` directory
9. Pressing the "Directory Up" button will cause the same error to appear
10. Pressing Ok on this error causes Aseprite to crash
In case this is hard to follow, I recorded an example which I will include a link to here
### Aseprite and System version
* Aseprite v1.2.5-x64, Steam Version
* System: Windows Build 1803
https://i.imgur.com/VbjBqVk.mp4
| non_infrastructure | crash when aseprite attempts to navigate to the most recent folder after it has been deleted after exporting a sprite to a folder with a subfolder i e project testfolder subfolder mysprite png if testfolder is deleted re opening the export dialog can cause aseprite to crash this one seems to me to be an edge case but i did run into it naturally steps to reproduce open aseprite create a sprite in some folder e g project create a new folder call it say testfolder inside testfolder create a subfolder call it say subfolder export your new sprite to subfolder in explorer navigate to project and deleted testfolder open the dialog to export the sprite again and you will be shown a blank file explorer dialog which appears to be on desktop but nothing exists in this explorer window pressing back will cause an error dialog to appear and then navigate you to the now non existent subfolder directory pressing the directory up button will cause the same error to appear pressing ok on this error causes aseprite to crash in case this is hard to follow i recorded an example which i will include a link to here aseprite and system version aseprite steam version system windows build | 0 |
254,384 | 27,375,411,923 | IssuesEvent | 2023-02-28 05:16:49 | Satheesh575555/system_bt_AOSP10_r33 | https://api.github.com/repos/Satheesh575555/system_bt_AOSP10_r33 | opened | CVE-2020-0147 (Medium) detected in https://source.codeaurora.org/quic/la/platform/system/bt/LA.AU.0.1.1.r1-04800-gen3meta.0 | security vulnerability | ## CVE-2020-0147 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>https://source.codeaurora.org/quic/la/platform/system/bt/LA.AU.0.1.1.r1-04800-gen3meta.0</b></p></summary>
<p>
<p>Library home page: <a href=https://source.codeaurora.org/quic/la/platform/system/bt/>https://source.codeaurora.org/quic/la/platform/system/bt/</a></p>
<p>Found in HEAD commit: <a href="https://github.com/Satheesh575555/system_bt_AOSP10_r33/commit/716b8dedc7d77be24177e9974daa5d5a0630de52">716b8dedc7d77be24177e9974daa5d5a0630de52</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>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/stack/btu/btu_hcif.cc</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>
In btu_hcif_esco_connection_chg_evt of btu_hcif.cc, there is a possible out of bounds read due to a missing bounds check. This could lead to local information disclosure via compromised device firmware with System execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android-10Android ID: A-142638392
<p>Publish Date: 2020-06-11
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-0147>CVE-2020-0147</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>4.4</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: High
- 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://android.googlesource.com/platform/system/bt/+/refs/tags/android-10.0.0_r37">https://android.googlesource.com/platform/system/bt/+/refs/tags/android-10.0.0_r37</a></p>
<p>Release Date: 2020-06-11</p>
<p>Fix Resolution: android-10.0.0_r37</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-0147 (Medium) detected in https://source.codeaurora.org/quic/la/platform/system/bt/LA.AU.0.1.1.r1-04800-gen3meta.0 - ## CVE-2020-0147 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>https://source.codeaurora.org/quic/la/platform/system/bt/LA.AU.0.1.1.r1-04800-gen3meta.0</b></p></summary>
<p>
<p>Library home page: <a href=https://source.codeaurora.org/quic/la/platform/system/bt/>https://source.codeaurora.org/quic/la/platform/system/bt/</a></p>
<p>Found in HEAD commit: <a href="https://github.com/Satheesh575555/system_bt_AOSP10_r33/commit/716b8dedc7d77be24177e9974daa5d5a0630de52">716b8dedc7d77be24177e9974daa5d5a0630de52</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>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/stack/btu/btu_hcif.cc</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>
In btu_hcif_esco_connection_chg_evt of btu_hcif.cc, there is a possible out of bounds read due to a missing bounds check. This could lead to local information disclosure via compromised device firmware with System execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android-10Android ID: A-142638392
<p>Publish Date: 2020-06-11
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-0147>CVE-2020-0147</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>4.4</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: High
- 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://android.googlesource.com/platform/system/bt/+/refs/tags/android-10.0.0_r37">https://android.googlesource.com/platform/system/bt/+/refs/tags/android-10.0.0_r37</a></p>
<p>Release Date: 2020-06-11</p>
<p>Fix Resolution: android-10.0.0_r37</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_infrastructure | cve medium detected in cve medium severity vulnerability vulnerable library library home page a href found in head commit a href found in base branch master vulnerable source files stack btu btu hcif cc vulnerability details in btu hcif esco connection chg evt of btu hcif cc there is a possible out of bounds read due to a missing bounds check this could lead to local information disclosure via compromised device firmware with system execution privileges needed user interaction is not needed for exploitation product androidversions android id a publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required high 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 android step up your open source security game with mend | 0 |
13,908 | 8,722,027,597 | IssuesEvent | 2018-12-09 07:35:22 | gama-platform/gama | https://api.github.com/repos/gama-platform/gama | closed | FileUtils constructAbsoluteFilePath make exception in Headless mode | Affects Usability | **Describe the bug**
FileUtils constructAbsoluteFilePath have exception in Headless mode
**To Reproduce**
Steps to reproduce the behavior:
1. Using a release (if you dont know how to run gama headless from eclipse), edit the sample model in headless folder predatorPrey.gaml
2. Add this line
save "something" to: "somewhere.txt" type: text rewrite: true;
3. Launch headless for the predatorPrey.xml
4. See error
java.lang.ArrayIndexOutOfBoundsException: 0
at msi.gama.common.util.FileUtils.lambda$1(FileUtils.java:131)
at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:193)
at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1382)
at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:471)
at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708)
at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:499)
at msi.gama.common.util.FileUtils.constructAbsoluteFilePath(FileUtils.java:131)
at msi.gaml.statements.SaveStatement.privateExecuteIn(SaveStatement.java:308)
at msi.gaml.statements.AbstractStatement.executeOn(AbstractStatement.java:42)
at msi.gaml.statements.AbstractStatementSequence.executeOn(AbstractStatementSequence.java:44)
at msi.gama.runtime.ExecutionScope.execute(ExecutionScope.java:384)
at msi.gama.runtime.IScope.execute(IScope.java:505)
at msi.gaml.statements.AbstractStatementSequence.privateExecuteIn(AbstractStatementSequence.java:55)
at msi.gaml.architecture.reflex.ReflexStatement.privateExecuteIn(ReflexStatement.java:81)
at msi.gaml.statements.AbstractStatement.executeOn(AbstractStatement.java:42)
at msi.gaml.statements.AbstractStatementSequence.executeOn(AbstractStatementSequence.java:44)
at msi.gama.runtime.ExecutionScope.execute(ExecutionScope.java:384)
at msi.gama.runtime.IScope.execute(IScope.java:505)
at msi.gaml.architecture.reflex.ReflexArchitecture.init(ReflexArchitecture.java:117)
at msi.gama.metamodel.agent.AbstractAgent.init(AbstractAgent.java:242)
at msi.gama.metamodel.agent.MinimalAgent._init_(MinimalAgent.java:245)
at msi.gama.kernel.simulation.SimulationAgent._init_(SimulationAgent.java:297)
at msi.gama.metamodel.agent.MinimalAgent.init(MinimalAgent.java:209)
at msi.gama.runtime.ExecutionScope.lambda$3(ExecutionScope.java:438)
at msi.gama.runtime.ExecutionScope.runAndCatch(ExecutionScope.java:462)
at msi.gama.runtime.ExecutionScope.pushRunAndCatch(ExecutionScope.java:452)
at msi.gama.runtime.ExecutionScope.init(ExecutionScope.java:438)
at msi.gama.metamodel.agent.AbstractAgent.schedule(AbstractAgent.java:361)
at msi.gama.kernel.simulation.SimulationAgent.schedule(SimulationAgent.java:274)
at msi.gama.kernel.simulation.SimulationPopulation.initSimulation(SimulationPopulation.java:126)
at msi.gama.kernel.simulation.SimulationPopulation.createAgents(SimulationPopulation.java:95)
at msi.gama.kernel.experiment.ExperimentAgent.createSimulation(ExperimentAgent.java:286)
at msi.gama.runtime.GAMA.addHeadlessExperiment(GAMA.java:157)
at msi.gama.headless.core.Experiment.loadCurrentExperiment(Experiment.java:81)
at msi.gama.headless.core.Experiment.setup(Experiment.java:75)
at msi.gama.headless.job.ExperimentJob.loadAndBuild(ExperimentJob.java:223)
at msi.gama.headless.runtime.LocalSimulationRuntime$FakeApplication.run(LocalSimulationRuntime.java:201)
Exception in thread "Thread-3" Java error: index out of bounds
at msi.gama.runtime.exceptions.GamaRuntimeException.create(GamaRuntimeException.java:64)
at msi.gama.runtime.ExecutionScope.runAndCatch(ExecutionScope.java:468)
at msi.gama.runtime.ExecutionScope.pushRunAndCatch(ExecutionScope.java:452)
at msi.gama.runtime.ExecutionScope.init(ExecutionScope.java:438)
at msi.gama.metamodel.agent.AbstractAgent.schedule(AbstractAgent.java:361)
at msi.gama.kernel.simulation.SimulationAgent.schedule(SimulationAgent.java:274)
at msi.gama.kernel.simulation.SimulationPopulation.initSimulation(SimulationPopulation.java:126)
at msi.gama.kernel.simulation.SimulationPopulation.createAgents(SimulationPopulation.java:95)
at msi.gama.kernel.experiment.ExperimentAgent.createSimulation(ExperimentAgent.java:286)
at msi.gama.runtime.GAMA.addHeadlessExperiment(GAMA.java:157)
at msi.gama.headless.core.Experiment.loadCurrentExperiment(Experiment.java:81)
at msi.gama.headless.core.Experiment.setup(Experiment.java:75)
at msi.gama.headless.job.ExperimentJob.loadAndBuild(ExperimentJob.java:223)
at msi.gama.headless.runtime.LocalSimulationRuntime$FakeApplication.run(LocalSimulationRuntime.java:201)
Caused by: java.lang.ArrayIndexOutOfBoundsException: 0
at msi.gama.common.util.FileUtils.lambda$1(FileUtils.java:131)
at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:193)
at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1382)
at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:471)
at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708)
at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:499)
at msi.gama.common.util.FileUtils.constructAbsoluteFilePath(FileUtils.java:131)
at msi.gaml.statements.SaveStatement.privateExecuteIn(SaveStatement.java:308)
at msi.gaml.statements.AbstractStatement.executeOn(AbstractStatement.java:42)
at msi.gaml.statements.AbstractStatementSequence.executeOn(AbstractStatementSequence.java:44)
at msi.gama.runtime.ExecutionScope.execute(ExecutionScope.java:384)
at msi.gama.runtime.IScope.execute(IScope.java:505)
at msi.gaml.statements.AbstractStatementSequence.privateExecuteIn(AbstractStatementSequence.java:55)
at msi.gaml.architecture.reflex.ReflexStatement.privateExecuteIn(ReflexStatement.java:81)
at msi.gaml.statements.AbstractStatement.executeOn(AbstractStatement.java:42)
at msi.gaml.statements.AbstractStatementSequence.executeOn(AbstractStatementSequence.java:44)
at msi.gama.runtime.ExecutionScope.execute(ExecutionScope.java:384)
at msi.gama.runtime.IScope.execute(IScope.java:505)
at msi.gaml.architecture.reflex.ReflexArchitecture.init(ReflexArchitecture.java:117)
at msi.gama.metamodel.agent.AbstractAgent.init(AbstractAgent.java:242)
at msi.gama.metamodel.agent.MinimalAgent._init_(MinimalAgent.java:245)
at msi.gama.kernel.simulation.SimulationAgent._init_(SimulationAgent.java:297)
at msi.gama.metamodel.agent.MinimalAgent.init(MinimalAgent.java:209)
at msi.gama.runtime.ExecutionScope.lambda$3(ExecutionScope.java:438)
at msi.gama.runtime.ExecutionScope.runAndCatch(ExecutionScope.java:462)
... 12 more
**Expected behavior**
No exception
**Desktop (please complete the following information):**
- OS: Win 10
- GAMA version: git, release
- Java version: 1.8
**Additional context**
note that if i specify an absolute path in save , it works.
save "something" to: "D:/somewhere.txt" type: text rewrite: true;
Seem an error from
ROOT.findContainersForLocation(new Path(s))[0]
in that case the modern fileutil have found nothing.
| True | FileUtils constructAbsoluteFilePath make exception in Headless mode - **Describe the bug**
FileUtils constructAbsoluteFilePath have exception in Headless mode
**To Reproduce**
Steps to reproduce the behavior:
1. Using a release (if you dont know how to run gama headless from eclipse), edit the sample model in headless folder predatorPrey.gaml
2. Add this line
save "something" to: "somewhere.txt" type: text rewrite: true;
3. Launch headless for the predatorPrey.xml
4. See error
java.lang.ArrayIndexOutOfBoundsException: 0
at msi.gama.common.util.FileUtils.lambda$1(FileUtils.java:131)
at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:193)
at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1382)
at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:471)
at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708)
at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:499)
at msi.gama.common.util.FileUtils.constructAbsoluteFilePath(FileUtils.java:131)
at msi.gaml.statements.SaveStatement.privateExecuteIn(SaveStatement.java:308)
at msi.gaml.statements.AbstractStatement.executeOn(AbstractStatement.java:42)
at msi.gaml.statements.AbstractStatementSequence.executeOn(AbstractStatementSequence.java:44)
at msi.gama.runtime.ExecutionScope.execute(ExecutionScope.java:384)
at msi.gama.runtime.IScope.execute(IScope.java:505)
at msi.gaml.statements.AbstractStatementSequence.privateExecuteIn(AbstractStatementSequence.java:55)
at msi.gaml.architecture.reflex.ReflexStatement.privateExecuteIn(ReflexStatement.java:81)
at msi.gaml.statements.AbstractStatement.executeOn(AbstractStatement.java:42)
at msi.gaml.statements.AbstractStatementSequence.executeOn(AbstractStatementSequence.java:44)
at msi.gama.runtime.ExecutionScope.execute(ExecutionScope.java:384)
at msi.gama.runtime.IScope.execute(IScope.java:505)
at msi.gaml.architecture.reflex.ReflexArchitecture.init(ReflexArchitecture.java:117)
at msi.gama.metamodel.agent.AbstractAgent.init(AbstractAgent.java:242)
at msi.gama.metamodel.agent.MinimalAgent._init_(MinimalAgent.java:245)
at msi.gama.kernel.simulation.SimulationAgent._init_(SimulationAgent.java:297)
at msi.gama.metamodel.agent.MinimalAgent.init(MinimalAgent.java:209)
at msi.gama.runtime.ExecutionScope.lambda$3(ExecutionScope.java:438)
at msi.gama.runtime.ExecutionScope.runAndCatch(ExecutionScope.java:462)
at msi.gama.runtime.ExecutionScope.pushRunAndCatch(ExecutionScope.java:452)
at msi.gama.runtime.ExecutionScope.init(ExecutionScope.java:438)
at msi.gama.metamodel.agent.AbstractAgent.schedule(AbstractAgent.java:361)
at msi.gama.kernel.simulation.SimulationAgent.schedule(SimulationAgent.java:274)
at msi.gama.kernel.simulation.SimulationPopulation.initSimulation(SimulationPopulation.java:126)
at msi.gama.kernel.simulation.SimulationPopulation.createAgents(SimulationPopulation.java:95)
at msi.gama.kernel.experiment.ExperimentAgent.createSimulation(ExperimentAgent.java:286)
at msi.gama.runtime.GAMA.addHeadlessExperiment(GAMA.java:157)
at msi.gama.headless.core.Experiment.loadCurrentExperiment(Experiment.java:81)
at msi.gama.headless.core.Experiment.setup(Experiment.java:75)
at msi.gama.headless.job.ExperimentJob.loadAndBuild(ExperimentJob.java:223)
at msi.gama.headless.runtime.LocalSimulationRuntime$FakeApplication.run(LocalSimulationRuntime.java:201)
Exception in thread "Thread-3" Java error: index out of bounds
at msi.gama.runtime.exceptions.GamaRuntimeException.create(GamaRuntimeException.java:64)
at msi.gama.runtime.ExecutionScope.runAndCatch(ExecutionScope.java:468)
at msi.gama.runtime.ExecutionScope.pushRunAndCatch(ExecutionScope.java:452)
at msi.gama.runtime.ExecutionScope.init(ExecutionScope.java:438)
at msi.gama.metamodel.agent.AbstractAgent.schedule(AbstractAgent.java:361)
at msi.gama.kernel.simulation.SimulationAgent.schedule(SimulationAgent.java:274)
at msi.gama.kernel.simulation.SimulationPopulation.initSimulation(SimulationPopulation.java:126)
at msi.gama.kernel.simulation.SimulationPopulation.createAgents(SimulationPopulation.java:95)
at msi.gama.kernel.experiment.ExperimentAgent.createSimulation(ExperimentAgent.java:286)
at msi.gama.runtime.GAMA.addHeadlessExperiment(GAMA.java:157)
at msi.gama.headless.core.Experiment.loadCurrentExperiment(Experiment.java:81)
at msi.gama.headless.core.Experiment.setup(Experiment.java:75)
at msi.gama.headless.job.ExperimentJob.loadAndBuild(ExperimentJob.java:223)
at msi.gama.headless.runtime.LocalSimulationRuntime$FakeApplication.run(LocalSimulationRuntime.java:201)
Caused by: java.lang.ArrayIndexOutOfBoundsException: 0
at msi.gama.common.util.FileUtils.lambda$1(FileUtils.java:131)
at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:193)
at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1382)
at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:471)
at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708)
at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:499)
at msi.gama.common.util.FileUtils.constructAbsoluteFilePath(FileUtils.java:131)
at msi.gaml.statements.SaveStatement.privateExecuteIn(SaveStatement.java:308)
at msi.gaml.statements.AbstractStatement.executeOn(AbstractStatement.java:42)
at msi.gaml.statements.AbstractStatementSequence.executeOn(AbstractStatementSequence.java:44)
at msi.gama.runtime.ExecutionScope.execute(ExecutionScope.java:384)
at msi.gama.runtime.IScope.execute(IScope.java:505)
at msi.gaml.statements.AbstractStatementSequence.privateExecuteIn(AbstractStatementSequence.java:55)
at msi.gaml.architecture.reflex.ReflexStatement.privateExecuteIn(ReflexStatement.java:81)
at msi.gaml.statements.AbstractStatement.executeOn(AbstractStatement.java:42)
at msi.gaml.statements.AbstractStatementSequence.executeOn(AbstractStatementSequence.java:44)
at msi.gama.runtime.ExecutionScope.execute(ExecutionScope.java:384)
at msi.gama.runtime.IScope.execute(IScope.java:505)
at msi.gaml.architecture.reflex.ReflexArchitecture.init(ReflexArchitecture.java:117)
at msi.gama.metamodel.agent.AbstractAgent.init(AbstractAgent.java:242)
at msi.gama.metamodel.agent.MinimalAgent._init_(MinimalAgent.java:245)
at msi.gama.kernel.simulation.SimulationAgent._init_(SimulationAgent.java:297)
at msi.gama.metamodel.agent.MinimalAgent.init(MinimalAgent.java:209)
at msi.gama.runtime.ExecutionScope.lambda$3(ExecutionScope.java:438)
at msi.gama.runtime.ExecutionScope.runAndCatch(ExecutionScope.java:462)
... 12 more
**Expected behavior**
No exception
**Desktop (please complete the following information):**
- OS: Win 10
- GAMA version: git, release
- Java version: 1.8
**Additional context**
note that if i specify an absolute path in save , it works.
save "something" to: "D:/somewhere.txt" type: text rewrite: true;
Seem an error from
ROOT.findContainersForLocation(new Path(s))[0]
in that case the modern fileutil have found nothing.
| non_infrastructure | fileutils constructabsolutefilepath make exception in headless mode describe the bug fileutils constructabsolutefilepath have exception in headless mode to reproduce steps to reproduce the behavior using a release if you dont know how to run gama headless from eclipse edit the sample model in headless folder predatorprey gaml add this line save something to somewhere txt type text rewrite true launch headless for the predatorprey xml see error java lang arrayindexoutofboundsexception at msi gama common util fileutils lambda fileutils java at java util stream referencepipeline accept referencepipeline java at java util arraylist arraylistspliterator foreachremaining arraylist java at java util stream abstractpipeline copyinto abstractpipeline java at java util stream abstractpipeline wrapandcopyinto abstractpipeline java at java util stream reduceops reduceop evaluatesequential reduceops java at java util stream abstractpipeline evaluate abstractpipeline java at java util stream referencepipeline collect referencepipeline java at msi gama common util fileutils constructabsolutefilepath fileutils java at msi gaml statements savestatement privateexecutein savestatement java at msi gaml statements abstractstatement executeon abstractstatement java at msi gaml statements abstractstatementsequence executeon abstractstatementsequence java at msi gama runtime executionscope execute executionscope java at msi gama runtime iscope execute iscope java at msi gaml statements abstractstatementsequence privateexecutein abstractstatementsequence java at msi gaml architecture reflex reflexstatement privateexecutein reflexstatement java at msi gaml statements abstractstatement executeon abstractstatement java at msi gaml statements abstractstatementsequence executeon abstractstatementsequence java at msi gama runtime executionscope execute executionscope java at msi gama runtime iscope execute iscope java at msi gaml architecture reflex reflexarchitecture init reflexarchitecture java at msi gama metamodel agent abstractagent init abstractagent java at msi gama metamodel agent minimalagent init minimalagent java at msi gama kernel simulation simulationagent init simulationagent java at msi gama metamodel agent minimalagent init minimalagent java at msi gama runtime executionscope lambda executionscope java at msi gama runtime executionscope runandcatch executionscope java at msi gama runtime executionscope pushrunandcatch executionscope java at msi gama runtime executionscope init executionscope java at msi gama metamodel agent abstractagent schedule abstractagent java at msi gama kernel simulation simulationagent schedule simulationagent java at msi gama kernel simulation simulationpopulation initsimulation simulationpopulation java at msi gama kernel simulation simulationpopulation createagents simulationpopulation java at msi gama kernel experiment experimentagent createsimulation experimentagent java at msi gama runtime gama addheadlessexperiment gama java at msi gama headless core experiment loadcurrentexperiment experiment java at msi gama headless core experiment setup experiment java at msi gama headless job experimentjob loadandbuild experimentjob java at msi gama headless runtime localsimulationruntime fakeapplication run localsimulationruntime java exception in thread thread java error index out of bounds at msi gama runtime exceptions gamaruntimeexception create gamaruntimeexception java at msi gama runtime executionscope runandcatch executionscope java at msi gama runtime executionscope pushrunandcatch executionscope java at msi gama runtime executionscope init executionscope java at msi gama metamodel agent abstractagent schedule abstractagent java at msi gama kernel simulation simulationagent schedule simulationagent java at msi gama kernel simulation simulationpopulation initsimulation simulationpopulation java at msi gama kernel simulation simulationpopulation createagents simulationpopulation java at msi gama kernel experiment experimentagent createsimulation experimentagent java at msi gama runtime gama addheadlessexperiment gama java at msi gama headless core experiment loadcurrentexperiment experiment java at msi gama headless core experiment setup experiment java at msi gama headless job experimentjob loadandbuild experimentjob java at msi gama headless runtime localsimulationruntime fakeapplication run localsimulationruntime java caused by java lang arrayindexoutofboundsexception at msi gama common util fileutils lambda fileutils java at java util stream referencepipeline accept referencepipeline java at java util arraylist arraylistspliterator foreachremaining arraylist java at java util stream abstractpipeline copyinto abstractpipeline java at java util stream abstractpipeline wrapandcopyinto abstractpipeline java at java util stream reduceops reduceop evaluatesequential reduceops java at java util stream abstractpipeline evaluate abstractpipeline java at java util stream referencepipeline collect referencepipeline java at msi gama common util fileutils constructabsolutefilepath fileutils java at msi gaml statements savestatement privateexecutein savestatement java at msi gaml statements abstractstatement executeon abstractstatement java at msi gaml statements abstractstatementsequence executeon abstractstatementsequence java at msi gama runtime executionscope execute executionscope java at msi gama runtime iscope execute iscope java at msi gaml statements abstractstatementsequence privateexecutein abstractstatementsequence java at msi gaml architecture reflex reflexstatement privateexecutein reflexstatement java at msi gaml statements abstractstatement executeon abstractstatement java at msi gaml statements abstractstatementsequence executeon abstractstatementsequence java at msi gama runtime executionscope execute executionscope java at msi gama runtime iscope execute iscope java at msi gaml architecture reflex reflexarchitecture init reflexarchitecture java at msi gama metamodel agent abstractagent init abstractagent java at msi gama metamodel agent minimalagent init minimalagent java at msi gama kernel simulation simulationagent init simulationagent java at msi gama metamodel agent minimalagent init minimalagent java at msi gama runtime executionscope lambda executionscope java at msi gama runtime executionscope runandcatch executionscope java more expected behavior no exception desktop please complete the following information os win gama version git release java version additional context note that if i specify an absolute path in save it works save something to d somewhere txt type text rewrite true seem an error from root findcontainersforlocation new path s in that case the modern fileutil have found nothing | 0 |
21,102 | 14,362,428,612 | IssuesEvent | 2020-11-30 19:48:55 | dotnet/runtime | https://api.github.com/repos/dotnet/runtime | opened | runtime xunit wrapper build failed | area-Infrastructure-coreclr | ```
/__w/1/s/dotnet.sh: line 27: 10092 Segmentation fault (core dumped) ${dotnetPath} "$@"
##[error]Error: XUnit wrapper build failed. Refer to the build log files for details (above)
##[error]Bash exited with code '139'.
```
https://dev.azure.com/dnceng/public/_build/results?buildId=903083&view=logs&j=2296eecc-f5ab-523f-c15d-f45eef1bfdea&t=e1baf605-103b-50ce-aa5c-c257b320b3ad
cc @trylek @jkotas | 1.0 | runtime xunit wrapper build failed - ```
/__w/1/s/dotnet.sh: line 27: 10092 Segmentation fault (core dumped) ${dotnetPath} "$@"
##[error]Error: XUnit wrapper build failed. Refer to the build log files for details (above)
##[error]Bash exited with code '139'.
```
https://dev.azure.com/dnceng/public/_build/results?buildId=903083&view=logs&j=2296eecc-f5ab-523f-c15d-f45eef1bfdea&t=e1baf605-103b-50ce-aa5c-c257b320b3ad
cc @trylek @jkotas | infrastructure | runtime xunit wrapper build failed w s dotnet sh line segmentation fault core dumped dotnetpath error xunit wrapper build failed refer to the build log files for details above bash exited with code cc trylek jkotas | 1 |
29,985 | 24,450,906,083 | IssuesEvent | 2022-10-06 22:51:53 | ifmeorg/ifme | https://api.github.com/repos/ifmeorg/ifme | opened | Update to Webpack 5 | hacktoberfest react infrastructure javascript | <!--[
Thank you for contributing! Please use this issue template.
Issue creation is a contribution!
Need help? Post in the #dev channel on Slack.
Please use the appropriate labels to tag this issue.
You don't have to work on the issue to file an issue!
Please assign yourself (via the Assignees dropdown), if you do want to work on it.
Can't find yourself? You need to join our organization: https://github.com/ifmeorg/ifme/wiki/Join-Our-Slack
We encourage everyone to add themselves to our Contribute page: https://github.com/ifmeorg/ifme/wiki/Contributor-Blurb
]-->
# Description
<!--[Description of issue, this includes a feature suggestion, bug report, code cleanup, and refactoring idea]-->
We're currently on Webpack 4 — let's update to Webpack 5 🎉
Here's a [official helpful guide](https://webpack.js.org/migrate/5/) on it.
---
Please assign yourself (via the Assignees dropdown), if you do want to work on this issue. Can't find yourself? You need to [join our organization](https://github.com/ifmeorg/ifme/wiki/Join-Our-Slack).
Check out our [Picking Up Issues](https://github.com/ifmeorg/ifme/wiki/Picking-Up-Issues) guide if you haven't already!
| 1.0 | Update to Webpack 5 - <!--[
Thank you for contributing! Please use this issue template.
Issue creation is a contribution!
Need help? Post in the #dev channel on Slack.
Please use the appropriate labels to tag this issue.
You don't have to work on the issue to file an issue!
Please assign yourself (via the Assignees dropdown), if you do want to work on it.
Can't find yourself? You need to join our organization: https://github.com/ifmeorg/ifme/wiki/Join-Our-Slack
We encourage everyone to add themselves to our Contribute page: https://github.com/ifmeorg/ifme/wiki/Contributor-Blurb
]-->
# Description
<!--[Description of issue, this includes a feature suggestion, bug report, code cleanup, and refactoring idea]-->
We're currently on Webpack 4 — let's update to Webpack 5 🎉
Here's a [official helpful guide](https://webpack.js.org/migrate/5/) on it.
---
Please assign yourself (via the Assignees dropdown), if you do want to work on this issue. Can't find yourself? You need to [join our organization](https://github.com/ifmeorg/ifme/wiki/Join-Our-Slack).
Check out our [Picking Up Issues](https://github.com/ifmeorg/ifme/wiki/Picking-Up-Issues) guide if you haven't already!
| infrastructure | update to webpack thank you for contributing please use this issue template issue creation is a contribution need help post in the dev channel on slack please use the appropriate labels to tag this issue you don t have to work on the issue to file an issue please assign yourself via the assignees dropdown if you do want to work on it can t find yourself you need to join our organization we encourage everyone to add themselves to our contribute page description we re currently on webpack — let s update to webpack 🎉 here s a on it please assign yourself via the assignees dropdown if you do want to work on this issue can t find yourself you need to check out our guide if you haven t already | 1 |
19,333 | 13,216,431,256 | IssuesEvent | 2020-08-17 03:40:16 | ansible/ansible | https://api.github.com/repos/ansible/ansible | closed | jira module no longer able to edit labels against jira 7.1 | affects_2.3 bot_closed bug collection collection:community.general module needs_collection_redirect support:community web_infrastructure | <!---
Verify first that your issue/request is not already reported on GitHub.
Also test if the latest release, and master branch are affected too.
-->
##### ISSUE TYPE
<!--- Pick one below and delete the rest: -->
- Bug Report
##### COMPONENT NAME
<!--- Name of the module/plugin/task/feature -->
jira
##### ANSIBLE VERSION
<!--- Paste verbatim output from “ansible --version” between quotes below -->
```
```
##### CONFIGURATION
<!---
Mention any settings you have changed/added/removed in ansible.cfg
(or using the ANSIBLE_* environment variables).
-->
##### OS / ENVIRONMENT
<!---
Mention the OS you are running Ansible from, and the OS you are
managing, or say “N/A” for anything that is not platform-specific.
-->
##### SUMMARY
<!--- Explain the problem briefly -->
##### STEPS TO REPRODUCE
<!---
For bugs, show exactly how to reproduce the problem, using a minimal test-case.
For new features, show how the feature would be used.
-->
<!--- Paste example playbooks or commands between quotes below -->
Created a list of jiras and labels that looked like this:
```
TASK [notify-jira-change : debug jiras_and_labels] ******************************
Monday 06 March 2017 14:04:50 +0000 (0:00:01.309) 0:00:25.676 **********
ok: [localhost] => {
"jiras_and_labels": [
{
"jira": "PRJ-5663",
"labels": [
"On_BLEEDING"
]
},
{
"jira": "PRJ-5393",
"labels": [
"VInput",
"CustomerZ",
"On_BLEEDING"
]
},
{
"jira": "PRJ-4792",
"labels": [
"On_BLEEDING"
]
},
{
"jira": "PRJ-5695",
"labels": [
"JobSearch",
"CustomerX",
"On_BLEEDING"
]
},
{
"jira": "PRJ-4802",
"labels": [
"On_BLEEDING"
]
},
{
"jira": "PRJ-4831",
"labels": [
"On_BLEEDING"
]
},
{
"jira": "PRJ-4814",
"labels": [
"ServerSide",
"On_BLEEDING"
]
},
{
"jira": "PRJ-4406",
"labels": [
"On_BLEEDING"
]
},
{
"jira": "PRJ-5599",
"labels": [
"Queueing",
"Permissions",
"On_BLEEDING"
]
},
{
"jira": "PRJ-4751",
"labels": [
"On_BLEEDING"
]
},
{
"jira": "PRJ-5665",
"labels": [
"Searching",
"CustomerX",
"On_BLEEDING"
]
}
]
}
```
```yaml
- name: label existing jira. DOES NOT SEEM TO WORK WITH JIRA 7.1
jira: uri="https://redacted/" username=redacted password=redacted operation=edit project=PRJ issue="{{item.jira}}"
args:
fields:
labels: "{{item.labels|list|default([])}}"
with_items: "{{updated_jiras_and_labels}}"
register: jira_updates
ignore_errors: yes
```
<!--- You can also paste gist.github.com links for larger files -->
##### EXPECTED RESULTS
<!--- What did you expect to happen when running the steps above? -->
Jiras successfully updated
##### ACTUAL RESULTS
<!--- What actually happened? If possible run with extra verbosity (-vvvv) -->
400: Bad Request response
<!--- Paste verbatim command output between quotes below -->
```
```
| 1.0 | jira module no longer able to edit labels against jira 7.1 - <!---
Verify first that your issue/request is not already reported on GitHub.
Also test if the latest release, and master branch are affected too.
-->
##### ISSUE TYPE
<!--- Pick one below and delete the rest: -->
- Bug Report
##### COMPONENT NAME
<!--- Name of the module/plugin/task/feature -->
jira
##### ANSIBLE VERSION
<!--- Paste verbatim output from “ansible --version” between quotes below -->
```
```
##### CONFIGURATION
<!---
Mention any settings you have changed/added/removed in ansible.cfg
(or using the ANSIBLE_* environment variables).
-->
##### OS / ENVIRONMENT
<!---
Mention the OS you are running Ansible from, and the OS you are
managing, or say “N/A” for anything that is not platform-specific.
-->
##### SUMMARY
<!--- Explain the problem briefly -->
##### STEPS TO REPRODUCE
<!---
For bugs, show exactly how to reproduce the problem, using a minimal test-case.
For new features, show how the feature would be used.
-->
<!--- Paste example playbooks or commands between quotes below -->
Created a list of jiras and labels that looked like this:
```
TASK [notify-jira-change : debug jiras_and_labels] ******************************
Monday 06 March 2017 14:04:50 +0000 (0:00:01.309) 0:00:25.676 **********
ok: [localhost] => {
"jiras_and_labels": [
{
"jira": "PRJ-5663",
"labels": [
"On_BLEEDING"
]
},
{
"jira": "PRJ-5393",
"labels": [
"VInput",
"CustomerZ",
"On_BLEEDING"
]
},
{
"jira": "PRJ-4792",
"labels": [
"On_BLEEDING"
]
},
{
"jira": "PRJ-5695",
"labels": [
"JobSearch",
"CustomerX",
"On_BLEEDING"
]
},
{
"jira": "PRJ-4802",
"labels": [
"On_BLEEDING"
]
},
{
"jira": "PRJ-4831",
"labels": [
"On_BLEEDING"
]
},
{
"jira": "PRJ-4814",
"labels": [
"ServerSide",
"On_BLEEDING"
]
},
{
"jira": "PRJ-4406",
"labels": [
"On_BLEEDING"
]
},
{
"jira": "PRJ-5599",
"labels": [
"Queueing",
"Permissions",
"On_BLEEDING"
]
},
{
"jira": "PRJ-4751",
"labels": [
"On_BLEEDING"
]
},
{
"jira": "PRJ-5665",
"labels": [
"Searching",
"CustomerX",
"On_BLEEDING"
]
}
]
}
```
```yaml
- name: label existing jira. DOES NOT SEEM TO WORK WITH JIRA 7.1
jira: uri="https://redacted/" username=redacted password=redacted operation=edit project=PRJ issue="{{item.jira}}"
args:
fields:
labels: "{{item.labels|list|default([])}}"
with_items: "{{updated_jiras_and_labels}}"
register: jira_updates
ignore_errors: yes
```
<!--- You can also paste gist.github.com links for larger files -->
##### EXPECTED RESULTS
<!--- What did you expect to happen when running the steps above? -->
Jiras successfully updated
##### ACTUAL RESULTS
<!--- What actually happened? If possible run with extra verbosity (-vvvv) -->
400: Bad Request response
<!--- Paste verbatim command output between quotes below -->
```
```
| infrastructure | jira module no longer able to edit labels against jira verify first that your issue request is not already reported on github also test if the latest release and master branch are affected too issue type bug report component name jira ansible version configuration mention any settings you have changed added removed in ansible cfg or using the ansible environment variables os environment mention the os you are running ansible from and the os you are managing or say “n a” for anything that is not platform specific summary steps to reproduce for bugs show exactly how to reproduce the problem using a minimal test case for new features show how the feature would be used created a list of jiras and labels that looked like this task monday march ok jiras and labels jira prj labels on bleeding jira prj labels vinput customerz on bleeding jira prj labels on bleeding jira prj labels jobsearch customerx on bleeding jira prj labels on bleeding jira prj labels on bleeding jira prj labels serverside on bleeding jira prj labels on bleeding jira prj labels queueing permissions on bleeding jira prj labels on bleeding jira prj labels searching customerx on bleeding yaml name label existing jira does not seem to work with jira jira uri username redacted password redacted operation edit project prj issue item jira args fields labels item labels list default with items updated jiras and labels register jira updates ignore errors yes expected results jiras successfully updated actual results bad request response | 1 |
230,150 | 25,442,920,658 | IssuesEvent | 2022-11-24 01:23:47 | ostest33/test1 | https://api.github.com/repos/ostest33/test1 | opened | CVE-2022-41940 (High) detected in engine.io-4.1.1.tgz | security vulnerability | ## CVE-2022-41940 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>engine.io-4.1.1.tgz</b></p></summary>
<p>The realtime engine behind Socket.IO. Provides the foundation of a bidirectional connection between client and server</p>
<p>Library home page: <a href="https://registry.npmjs.org/engine.io/-/engine.io-4.1.1.tgz">https://registry.npmjs.org/engine.io/-/engine.io-4.1.1.tgz</a></p>
<p>Path to dependency file: /ClientApp/package.json</p>
<p>Path to vulnerable library: /ClientApp/node_modules/engine.io/package.json</p>
<p>
Dependency Hierarchy:
- karma-6.1.2.tgz (Root Library)
- socket.io-3.1.2.tgz
- :x: **engine.io-4.1.1.tgz** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Engine.IO is the implementation of transport-based cross-browser/cross-device bi-directional communication layer for Socket.IO. A specially crafted HTTP request can trigger an uncaught exception on the Engine.IO server, thus killing the Node.js process. This impacts all the users of the engine.io package, including those who uses depending packages like socket.io. There is no known workaround except upgrading to a safe version. There are patches for this issue released in versions 3.6.1 and 6.2.1.
<p>Publish Date: 2022-11-22
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-41940>CVE-2022-41940</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.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: Low
- 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/socketio/engine.io/security/advisories/GHSA-r7qp-cfhv-p84w">https://github.com/socketio/engine.io/security/advisories/GHSA-r7qp-cfhv-p84w</a></p>
<p>Release Date: 2022-11-22</p>
<p>Fix Resolution: engine.io - 3.6.1,6.2.1</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-2022-41940 (High) detected in engine.io-4.1.1.tgz - ## CVE-2022-41940 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>engine.io-4.1.1.tgz</b></p></summary>
<p>The realtime engine behind Socket.IO. Provides the foundation of a bidirectional connection between client and server</p>
<p>Library home page: <a href="https://registry.npmjs.org/engine.io/-/engine.io-4.1.1.tgz">https://registry.npmjs.org/engine.io/-/engine.io-4.1.1.tgz</a></p>
<p>Path to dependency file: /ClientApp/package.json</p>
<p>Path to vulnerable library: /ClientApp/node_modules/engine.io/package.json</p>
<p>
Dependency Hierarchy:
- karma-6.1.2.tgz (Root Library)
- socket.io-3.1.2.tgz
- :x: **engine.io-4.1.1.tgz** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Engine.IO is the implementation of transport-based cross-browser/cross-device bi-directional communication layer for Socket.IO. A specially crafted HTTP request can trigger an uncaught exception on the Engine.IO server, thus killing the Node.js process. This impacts all the users of the engine.io package, including those who uses depending packages like socket.io. There is no known workaround except upgrading to a safe version. There are patches for this issue released in versions 3.6.1 and 6.2.1.
<p>Publish Date: 2022-11-22
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-41940>CVE-2022-41940</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.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: Low
- 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/socketio/engine.io/security/advisories/GHSA-r7qp-cfhv-p84w">https://github.com/socketio/engine.io/security/advisories/GHSA-r7qp-cfhv-p84w</a></p>
<p>Release Date: 2022-11-22</p>
<p>Fix Resolution: engine.io - 3.6.1,6.2.1</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_infrastructure | cve high detected in engine io tgz cve high severity vulnerability vulnerable library engine io tgz the realtime engine behind socket io provides the foundation of a bidirectional connection between client and server library home page a href path to dependency file clientapp package json path to vulnerable library clientapp node modules engine io package json dependency hierarchy karma tgz root library socket io tgz x engine io tgz vulnerable library found in base branch master vulnerability details engine io is the implementation of transport based cross browser cross device bi directional communication layer for socket io a specially crafted http request can trigger an uncaught exception on the engine io server thus killing the node js process this impacts all the users of the engine io package including those who uses depending packages like socket io there is no known workaround except upgrading to a safe version there are patches for this issue released in versions and publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required low user interaction none scope unchanged impact metrics confidentiality impact high integrity impact low availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution engine io step up your open source security game with mend | 0 |
3,603 | 4,428,549,817 | IssuesEvent | 2016-08-17 03:03:47 | catapult-project/catapult | https://api.github.com/repos/catapult-project/catapult | closed | Reenable testCloseReferencedTab on Mac and Linux | Infrastructure P2 Telemetry | The Catapult roll has been failing since 4 hours ago due to a failing Telemetry unit test that looks to be due to a Chrome crash.
https://catapult-roll.skia.org/
First failing roll: https://codereview.chromium.org/2129583002
Chromium changelog beginning with `got_revision` for the above: https://chromium.googlesource.com/chromium/src/+log/HEAD/?s=51c4765d8e7934359e8f5793ad444c02e45a4d28
Last known good roll: https://chromium.googlesource.com/chromium/src/+/ea9687a5a1c2a04660b4857162b24216c78c698b
So ea9687a5..51c4765d is a good bisect range.
I'll start by disabling the failing unit test. | 1.0 | Reenable testCloseReferencedTab on Mac and Linux - The Catapult roll has been failing since 4 hours ago due to a failing Telemetry unit test that looks to be due to a Chrome crash.
https://catapult-roll.skia.org/
First failing roll: https://codereview.chromium.org/2129583002
Chromium changelog beginning with `got_revision` for the above: https://chromium.googlesource.com/chromium/src/+log/HEAD/?s=51c4765d8e7934359e8f5793ad444c02e45a4d28
Last known good roll: https://chromium.googlesource.com/chromium/src/+/ea9687a5a1c2a04660b4857162b24216c78c698b
So ea9687a5..51c4765d is a good bisect range.
I'll start by disabling the failing unit test. | infrastructure | reenable testclosereferencedtab on mac and linux the catapult roll has been failing since hours ago due to a failing telemetry unit test that looks to be due to a chrome crash first failing roll chromium changelog beginning with got revision for the above last known good roll so is a good bisect range i ll start by disabling the failing unit test | 1 |
6,761 | 6,587,430,805 | IssuesEvent | 2017-09-13 21:03:03 | dotnet/corefx | https://api.github.com/repos/dotnet/corefx | closed | Update package versions to service release/1.1 and 1.0 branches. | area-Infrastructure bug | I went through the history of the release/1.1 branch, this [commit](https://github.com/dotnet/corefx/commit/9e98f24f508d2cda97f10474a86052f51bc9c7e3), which is an update after the servicing release. From then these are the concrete product commits,
1. [Interop.MountPoints.cs](https://github.com/dotnet/corefx/commit/3d2debcf3f4fb7ce06f58c0b617348835e9036c8) by @wfurt
2. [WinHttpHandler](https://github.com/dotnet/corefx/commit/454bdeb2ef477344b8626307892f442bff2a3106) by @davidsh
We need to update the package and assembly versions of the libs where these changes need to serviced for 1.1 release.
refer pr #23113 | 1.0 | Update package versions to service release/1.1 and 1.0 branches. - I went through the history of the release/1.1 branch, this [commit](https://github.com/dotnet/corefx/commit/9e98f24f508d2cda97f10474a86052f51bc9c7e3), which is an update after the servicing release. From then these are the concrete product commits,
1. [Interop.MountPoints.cs](https://github.com/dotnet/corefx/commit/3d2debcf3f4fb7ce06f58c0b617348835e9036c8) by @wfurt
2. [WinHttpHandler](https://github.com/dotnet/corefx/commit/454bdeb2ef477344b8626307892f442bff2a3106) by @davidsh
We need to update the package and assembly versions of the libs where these changes need to serviced for 1.1 release.
refer pr #23113 | infrastructure | update package versions to service release and branches i went through the history of the release branch this which is an update after the servicing release from then these are the concrete product commits by wfurt by davidsh we need to update the package and assembly versions of the libs where these changes need to serviced for release refer pr | 1 |
10,377 | 8,527,521,594 | IssuesEvent | 2018-11-02 19:47:50 | quipucords/quipucords | https://api.github.com/repos/quipucords/quipucords | closed | Split QPC CLI into it's own repository so django server can drop python 3.4 support | component - infrastructure | Currently QPC CLI and Server are in the same repository. Travis must run tests on python 3.4 and 3.6. Only the CLI is required to support python 3.4 due to RHEL 6. Django 2.1.x doesn't support python 3.4.
It seems the CLI and server have diverged in which python versions should be supported. This issue is to create a CLI report.
- [ ] CORP build must be updated
- [ ] Man page will need to be shared between repos
- [ ] Jenkins/Travis builds must be updated | 1.0 | Split QPC CLI into it's own repository so django server can drop python 3.4 support - Currently QPC CLI and Server are in the same repository. Travis must run tests on python 3.4 and 3.6. Only the CLI is required to support python 3.4 due to RHEL 6. Django 2.1.x doesn't support python 3.4.
It seems the CLI and server have diverged in which python versions should be supported. This issue is to create a CLI report.
- [ ] CORP build must be updated
- [ ] Man page will need to be shared between repos
- [ ] Jenkins/Travis builds must be updated | infrastructure | split qpc cli into it s own repository so django server can drop python support currently qpc cli and server are in the same repository travis must run tests on python and only the cli is required to support python due to rhel django x doesn t support python it seems the cli and server have diverged in which python versions should be supported this issue is to create a cli report corp build must be updated man page will need to be shared between repos jenkins travis builds must be updated | 1 |
106,731 | 13,358,822,090 | IssuesEvent | 2020-08-31 12:23:05 | department-of-veterans-affairs/va.gov-team | https://api.github.com/repos/department-of-veterans-affairs/va.gov-team | closed | [Design] - MVP learning center - iterate on search pattern | design vsa-public-websites | Our usability study revealed some ambiguity about the search radio options in our design. Explore a solution where users get the suggestion to search VA.gov only after LC search has returned no results.
Acceptance Criteria
- [ ] create mock-up matching ^ for mobile + desktop
- [ ] review with @jenniferlee-dsva and @rtwell | 1.0 | [Design] - MVP learning center - iterate on search pattern - Our usability study revealed some ambiguity about the search radio options in our design. Explore a solution where users get the suggestion to search VA.gov only after LC search has returned no results.
Acceptance Criteria
- [ ] create mock-up matching ^ for mobile + desktop
- [ ] review with @jenniferlee-dsva and @rtwell | non_infrastructure | mvp learning center iterate on search pattern our usability study revealed some ambiguity about the search radio options in our design explore a solution where users get the suggestion to search va gov only after lc search has returned no results acceptance criteria create mock up matching for mobile desktop review with jenniferlee dsva and rtwell | 0 |
31,465 | 25,776,096,529 | IssuesEvent | 2022-12-09 12:07:15 | KaiserKarel/substrace | https://api.github.com/repos/KaiserKarel/substrace | closed | Publish substrace as a cargo package. | difficulty-easy infrastructure | Needs #3 and #5.
Once substrace can be installed through cargo and is fixed up and stable, we want to publish it as a package on crates.io. Preferably we use CI for this, meaning we want a workflow that is run on a push to the `release-vx.y.z` branch; and publishes to crates.io after running checks etc. We'll store the crates.io credentials in the github secrets.
| 1.0 | Publish substrace as a cargo package. - Needs #3 and #5.
Once substrace can be installed through cargo and is fixed up and stable, we want to publish it as a package on crates.io. Preferably we use CI for this, meaning we want a workflow that is run on a push to the `release-vx.y.z` branch; and publishes to crates.io after running checks etc. We'll store the crates.io credentials in the github secrets.
| infrastructure | publish substrace as a cargo package needs and once substrace can be installed through cargo and is fixed up and stable we want to publish it as a package on crates io preferably we use ci for this meaning we want a workflow that is run on a push to the release vx y z branch and publishes to crates io after running checks etc we ll store the crates io credentials in the github secrets | 1 |
211,596 | 16,328,775,038 | IssuesEvent | 2021-05-12 06:23:25 | finos/waltz | https://api.github.com/repos/finos/waltz | closed | Provenance / ExtIds should be made clearer across entities in waltz | QoL fixed (test & close) | e.g. on a physical flow view the provenance of the external ids is clear, however, we cannot see the provenance of the flow itself.
Often confusion around why there are duplicates in flows, or when there are multiple involvements (sometimes they are manually added but can also have read-only version making them uneditable/unremovable - provenance should make this clear)
Prov:
- [x] Actor
- [x] Application
- [x] Physical Flow
- [ ] Involvement (not sure where this would go)
- [x] Logical Flow
- [x] Measurable
ExtId:
- [ ] Actor
- [x] Application (already there)
- [x] Physical Flow (already there)
- [x] Logical Flow
- [x] Measurable
| 1.0 | Provenance / ExtIds should be made clearer across entities in waltz - e.g. on a physical flow view the provenance of the external ids is clear, however, we cannot see the provenance of the flow itself.
Often confusion around why there are duplicates in flows, or when there are multiple involvements (sometimes they are manually added but can also have read-only version making them uneditable/unremovable - provenance should make this clear)
Prov:
- [x] Actor
- [x] Application
- [x] Physical Flow
- [ ] Involvement (not sure where this would go)
- [x] Logical Flow
- [x] Measurable
ExtId:
- [ ] Actor
- [x] Application (already there)
- [x] Physical Flow (already there)
- [x] Logical Flow
- [x] Measurable
| non_infrastructure | provenance extids should be made clearer across entities in waltz e g on a physical flow view the provenance of the external ids is clear however we cannot see the provenance of the flow itself often confusion around why there are duplicates in flows or when there are multiple involvements sometimes they are manually added but can also have read only version making them uneditable unremovable provenance should make this clear prov actor application physical flow involvement not sure where this would go logical flow measurable extid actor application already there physical flow already there logical flow measurable | 0 |
33,737 | 27,762,720,447 | IssuesEvent | 2023-03-16 09:26:25 | MaibornWolff/retro | https://api.github.com/repos/MaibornWolff/retro | closed | Update dependencies to latest versions and re-test app | infrastructure test | We need to update the dependencies for `frontend` and `backend` and test if there are breaking changes. | 1.0 | Update dependencies to latest versions and re-test app - We need to update the dependencies for `frontend` and `backend` and test if there are breaking changes. | infrastructure | update dependencies to latest versions and re test app we need to update the dependencies for frontend and backend and test if there are breaking changes | 1 |
28,323 | 13,638,673,556 | IssuesEvent | 2020-09-25 09:44:09 | BjerknesClimateDataCentre/QuinCe | https://api.github.com/repos/BjerknesClimateDataCentre/QuinCe | closed | Cache ValueCalculators during job | data reduction performance | Every time a `ValueCalculator` is used, it's created from scratch. Additionally, Calculators that look up external data (e.g. for calibration information) have to do it for every use.
Within a single job, it's likely that the Calculator objects can be re-used for each `SensorType` at the very least. | True | Cache ValueCalculators during job - Every time a `ValueCalculator` is used, it's created from scratch. Additionally, Calculators that look up external data (e.g. for calibration information) have to do it for every use.
Within a single job, it's likely that the Calculator objects can be re-used for each `SensorType` at the very least. | non_infrastructure | cache valuecalculators during job every time a valuecalculator is used it s created from scratch additionally calculators that look up external data e g for calibration information have to do it for every use within a single job it s likely that the calculator objects can be re used for each sensortype at the very least | 0 |
125,379 | 17,836,139,124 | IssuesEvent | 2021-09-03 01:32:08 | kapseliboi/sectors-without-number | https://api.github.com/repos/kapseliboi/sectors-without-number | opened | CVE-2021-37701 (High) detected in tar-4.4.13.tgz | security vulnerability | ## CVE-2021-37701 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>tar-4.4.13.tgz</b></p></summary>
<p>tar for node</p>
<p>Library home page: <a href="https://registry.npmjs.org/tar/-/tar-4.4.13.tgz">https://registry.npmjs.org/tar/-/tar-4.4.13.tgz</a></p>
<p>Path to dependency file: sectors-without-number/package.json</p>
<p>Path to vulnerable library: sectors-without-number/node_modules/tar/package.json,sectors-without-number/node_modules/grpc/node_modules/tar/package.json</p>
<p>
Dependency Hierarchy:
- react-scripts-3.4.0.tgz (Root Library)
- babel-jest-24.9.0.tgz
- transform-24.9.0.tgz
- jest-haste-map-24.9.0.tgz
- fsevents-1.2.11.tgz
- node-pre-gyp-0.14.0.tgz
- :x: **tar-4.4.13.tgz** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
The npm package "tar" (aka node-tar) before versions 4.4.16, 5.0.8, and 6.1.7 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with the same name as the directory, where the symlink and directory names in the archive entry used backslashes as a path separator on posix systems. The cache checking logic used both `\` and `/` characters as path separators, however `\` is a valid filename character on posix systems. By first creating a directory, and then replacing that directory with a symlink, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. Additionally, a similar confusion could arise on case-insensitive filesystems. If a tar archive contained a directory at `FOO`, followed by a symbolic link named `foo`, then on case-insensitive file systems, the creation of the symbolic link would remove the directory from the filesystem, but _not_ from the internal directory cache, as it would not be treated as a cache hit. A subsequent file entry within the `FOO` directory would then be placed in the target of the symbolic link, thinking that the directory had already been created. These issues were addressed in releases 4.4.16, 5.0.8 and 6.1.7. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-9r2w-394v-53qc.
<p>Publish Date: 2021-08-31
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-37701>CVE-2021-37701</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.2</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- 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://github.com/npm/node-tar/security/advisories/GHSA-9r2w-394v-53qc">https://github.com/npm/node-tar/security/advisories/GHSA-9r2w-394v-53qc</a></p>
<p>Release Date: 2021-08-31</p>
<p>Fix Resolution: tar - 4.4.16, 5.0.8, 6.1.7</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2021-37701 (High) detected in tar-4.4.13.tgz - ## CVE-2021-37701 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>tar-4.4.13.tgz</b></p></summary>
<p>tar for node</p>
<p>Library home page: <a href="https://registry.npmjs.org/tar/-/tar-4.4.13.tgz">https://registry.npmjs.org/tar/-/tar-4.4.13.tgz</a></p>
<p>Path to dependency file: sectors-without-number/package.json</p>
<p>Path to vulnerable library: sectors-without-number/node_modules/tar/package.json,sectors-without-number/node_modules/grpc/node_modules/tar/package.json</p>
<p>
Dependency Hierarchy:
- react-scripts-3.4.0.tgz (Root Library)
- babel-jest-24.9.0.tgz
- transform-24.9.0.tgz
- jest-haste-map-24.9.0.tgz
- fsevents-1.2.11.tgz
- node-pre-gyp-0.14.0.tgz
- :x: **tar-4.4.13.tgz** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
The npm package "tar" (aka node-tar) before versions 4.4.16, 5.0.8, and 6.1.7 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with the same name as the directory, where the symlink and directory names in the archive entry used backslashes as a path separator on posix systems. The cache checking logic used both `\` and `/` characters as path separators, however `\` is a valid filename character on posix systems. By first creating a directory, and then replacing that directory with a symlink, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. Additionally, a similar confusion could arise on case-insensitive filesystems. If a tar archive contained a directory at `FOO`, followed by a symbolic link named `foo`, then on case-insensitive file systems, the creation of the symbolic link would remove the directory from the filesystem, but _not_ from the internal directory cache, as it would not be treated as a cache hit. A subsequent file entry within the `FOO` directory would then be placed in the target of the symbolic link, thinking that the directory had already been created. These issues were addressed in releases 4.4.16, 5.0.8 and 6.1.7. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-9r2w-394v-53qc.
<p>Publish Date: 2021-08-31
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-37701>CVE-2021-37701</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.2</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- 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://github.com/npm/node-tar/security/advisories/GHSA-9r2w-394v-53qc">https://github.com/npm/node-tar/security/advisories/GHSA-9r2w-394v-53qc</a></p>
<p>Release Date: 2021-08-31</p>
<p>Fix Resolution: tar - 4.4.16, 5.0.8, 6.1.7</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_infrastructure | cve high detected in tar tgz cve high severity vulnerability vulnerable library tar tgz tar for node library home page a href path to dependency file sectors without number package json path to vulnerable library sectors without number node modules tar package json sectors without number node modules grpc node modules tar package json dependency hierarchy react scripts tgz root library babel jest tgz transform tgz jest haste map tgz fsevents tgz node pre gyp tgz x tar tgz vulnerable library found in base branch master vulnerability details the npm package tar aka node tar before versions and has an arbitrary file creation overwrite and arbitrary code execution vulnerability node tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted this is in part achieved by ensuring that extracted directories are not symlinks additionally in order to prevent unnecessary stat calls to determine whether a given path is a directory paths are cached when directories are created this logic was insufficient when extracting tar files that contained both a directory and a symlink with the same name as the directory where the symlink and directory names in the archive entry used backslashes as a path separator on posix systems the cache checking logic used both and characters as path separators however is a valid filename character on posix systems by first creating a directory and then replacing that directory with a symlink it was thus possible to bypass node tar symlink checks on directories essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location thus allowing arbitrary file creation and overwrite additionally a similar confusion could arise on case insensitive filesystems if a tar archive contained a directory at foo followed by a symbolic link named foo then on case insensitive file systems the creation of the symbolic link would remove the directory from the filesystem but not from the internal directory cache as it would not be treated as a cache hit a subsequent file entry within the foo directory would then be placed in the target of the symbolic link thinking that the directory had already been created these issues were addressed in releases and the branch of node tar has been deprecated and did not receive patches for these issues if you are still using a release we recommend you update to a more recent version of node tar if this is not possible a workaround is available in the referenced ghsa publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required none user interaction required scope changed 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 tar step up your open source security game with whitesource | 0 |
18,215 | 12,836,612,875 | IssuesEvent | 2020-07-07 14:36:14 | wellcomecollection/platform | https://api.github.com/repos/wellcomecollection/platform | closed | Update use of the old DNS role throughout our Terraform | 🚧 Infrastructure | We have a bunch of Terraform stacks that refer to DNS records in the old account, with role `arn:aws:iam::250790015188:role/wellcomecollection-assume_role_hosted_zone_update`
We should update them to use the new role ID `arn:aws:iam::267269328833:role/wellcomecollection-assume_role_hosted_zone_update`
Follows https://github.com/wellcomecollection/platform/issues/4561 | 1.0 | Update use of the old DNS role throughout our Terraform - We have a bunch of Terraform stacks that refer to DNS records in the old account, with role `arn:aws:iam::250790015188:role/wellcomecollection-assume_role_hosted_zone_update`
We should update them to use the new role ID `arn:aws:iam::267269328833:role/wellcomecollection-assume_role_hosted_zone_update`
Follows https://github.com/wellcomecollection/platform/issues/4561 | infrastructure | update use of the old dns role throughout our terraform we have a bunch of terraform stacks that refer to dns records in the old account with role arn aws iam role wellcomecollection assume role hosted zone update we should update them to use the new role id arn aws iam role wellcomecollection assume role hosted zone update follows | 1 |
20,333 | 13,839,724,981 | IssuesEvent | 2020-10-14 08:23:34 | RasaHQ/rasa-x-helm | https://api.github.com/repos/RasaHQ/rasa-x-helm | closed | Disable automounting of credentials for a service account | area:rasa-x/infrastructure :steam_locomotive: priority:normal type:enhancement :sparkles: | For all services that not need to use a service account token, we should disable automounting of credentials.
https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/#use-the-default-service-account-to-access-the-api-server | 1.0 | Disable automounting of credentials for a service account - For all services that not need to use a service account token, we should disable automounting of credentials.
https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/#use-the-default-service-account-to-access-the-api-server | infrastructure | disable automounting of credentials for a service account for all services that not need to use a service account token we should disable automounting of credentials | 1 |
5,433 | 5,653,641,448 | IssuesEvent | 2017-04-09 00:03:44 | vistadataproject/VDM | https://api.github.com/repos/vistadataproject/VDM | closed | Beyond pro-forma DDs for OP Meds (Order/52/52.41) to allow UPDATE^DIE to work | Bug Clinical RPC Track CPOE Infrastructure Track | __Background__: find workarounds where the current ^OR(100 DD doesn't support UPDATE^DIE. Most problems are because __FileMan__ executes the XREFs of fields one by one as the field is populated but some Order DD XREFs assume later fields are already populated.
Ed Quote
> code sets globals directly, and then the programmers created a __"pro forma" data dictionary__ to describe what their intention was
__We need to move all in scope DDs beyond being pro-forma__
__TODO__: need to add to nodeVISTA setup
__Note__: evolve - may need to update to ensure UPDATE^DIE works in a backward compatible way.
### For Order Create
__1. Removed XREF in .01__
.01 is the IEN and this XREF ("AZ") isn't set by the direct-global-writing Order MUMPS code either (looking at XREFs after using RPCs). But it is directly set in routine _ORD28_ whose use needs to be looked at.
Removed this from ^DD(100
```text
^DD(100,.01,1,1,0)="100^AZ^MUMPS"
^DD(100,.01,1,1,1)="S ^OR(100,""AZ"",DA,$P(^OR(100,DA,0),U,2))="""""
^DD(100,.01,1,1,2)="Q"
^DD(100,.01,1,1,"DT")=2990107
```
to avoid
```text
{ ok: 0,
errorCode: 150373498,
errorMessage: 'FIRE+8^DIEF,%GTM-E-NULSUBSC, Null subscripts are not allowed for region: DEFAULT,%GTM-I-GVIS, \t\tGlobal variable: ^OR(100,"AZ",1,"")' }
```
__2. in SET1^ORDD100, check current action is set to avoid__
```text
; VDP - added $G(ORCACT) check so don't fall into ^OR(100,ORIFN,8,"",0)
I $G(ORCACT),ORACT'=ORCACT D Q ; not Current action
```
called from ...
```text
^DD(100.008,.01,1,2,0)="100^AC1^MUMPS"
^DD(100.008,.01,1,2,1)="N X1,X2 S X1=DA(1),X2=DA D SET^ORDD100(X1,X2)"
^DD(100.008,.01,1,2,2)="N X1,X2 S X1=DA(1),X2=DA D KIL^ORDD100(X1,X2)"
^DD(100.008,.01,1,2,"%D",0)="^^4^4^2971028^"
^DD(100.008,.01,1,2,"%D",1,0)="^OR(100,""AC"",ORVP,9999999-ORLOG,ORIFN,DA)"
^DD(100.008,.01,1,2,"%D",2,0)="Allows retrieval of ""active"" orders; includes orders with any kind of"
^DD(100.008,.01,1,2,"%D",3,0)="active status, as well as those that have ended w/in the Active Orders"
^DD(100.008,.01,1,2,"%D",4,0)="Context Hours."
^DD(100.008,.01,1,2,"DT")=2960830
```
Current action ORCACT is set in _SETALL^ORDD100 which is called from
```text
^DD(100,.02,1,2,1)="D SETALL^ORDD100(DA)"
^DD(100,.02,1,2,2)="D KILALL^ORDD100(DA)"
```
and ORCACT won't be set as current action (3;7) isn't set by the time .02 is set.
In the MUMPS, SETALL is called from STATUS^ORCSAVE2 which updates an order's status. ie/ ^OR(100 global is managed explicitly and not through the DD. Note that _ORCSAVE2_ has many calls to ORDD100 routines to reflect different sorts of changes (_RELEASE_, _STARTDT_ etc) and keep indexes up to date.
_SET_ is called from ...
```text
ORCSEND.m: S STS=$P($G(^OR(100,ORIFN,3)),U,3) I STS=3 S $P(^(3),U,7)=ORDA D SET^ORDD100(ORIFN,ORDA)
ORCSEND.m: I STS'=3 S $P(^OR(100,ORIFN,3),U,7)=ORDA,$P(^(8,ORHD,2),U,1,2)=ORNOW_U_DUZ D SET^ORDD100(ORIFN,ORDA)
ORD211.m: I X'="" N X1,X2 S X1=DA(1),X2=DA D SET^ORDD100(X1,X2)
ORELR5.m: ...... D S1^ORDD100(ORIFN,1,"",LRENT),SET^ORDD100(ORIFN,1),ACT1^ORDD100A(ORIFN,1)
OREVNTX.m: I 'NEWEVT,$P(OR3,U,3)=10 S $P(^OR(100,+IFN,3),U,3)=11,$P(^(8,1,0),U,15)=11 D SET^ORDD100(+IFN,1)
```
... _ORCSEND_ is a key file for DC'ing, Holding, ... an Order. In effect, the XREF routines are called explicitly in MUMPS and the DD calls may or may not be as effective.
__VALIDATION PERFORMED__:
RPC has more than UPDATE^DIE ...
```text
// ^OR(100
// - Have: 8,"C"/ ACT / AF / AS / AW / C / D
// - Missing: AC / AW
``` | 1.0 | Beyond pro-forma DDs for OP Meds (Order/52/52.41) to allow UPDATE^DIE to work - __Background__: find workarounds where the current ^OR(100 DD doesn't support UPDATE^DIE. Most problems are because __FileMan__ executes the XREFs of fields one by one as the field is populated but some Order DD XREFs assume later fields are already populated.
Ed Quote
> code sets globals directly, and then the programmers created a __"pro forma" data dictionary__ to describe what their intention was
__We need to move all in scope DDs beyond being pro-forma__
__TODO__: need to add to nodeVISTA setup
__Note__: evolve - may need to update to ensure UPDATE^DIE works in a backward compatible way.
### For Order Create
__1. Removed XREF in .01__
.01 is the IEN and this XREF ("AZ") isn't set by the direct-global-writing Order MUMPS code either (looking at XREFs after using RPCs). But it is directly set in routine _ORD28_ whose use needs to be looked at.
Removed this from ^DD(100
```text
^DD(100,.01,1,1,0)="100^AZ^MUMPS"
^DD(100,.01,1,1,1)="S ^OR(100,""AZ"",DA,$P(^OR(100,DA,0),U,2))="""""
^DD(100,.01,1,1,2)="Q"
^DD(100,.01,1,1,"DT")=2990107
```
to avoid
```text
{ ok: 0,
errorCode: 150373498,
errorMessage: 'FIRE+8^DIEF,%GTM-E-NULSUBSC, Null subscripts are not allowed for region: DEFAULT,%GTM-I-GVIS, \t\tGlobal variable: ^OR(100,"AZ",1,"")' }
```
__2. in SET1^ORDD100, check current action is set to avoid__
```text
; VDP - added $G(ORCACT) check so don't fall into ^OR(100,ORIFN,8,"",0)
I $G(ORCACT),ORACT'=ORCACT D Q ; not Current action
```
called from ...
```text
^DD(100.008,.01,1,2,0)="100^AC1^MUMPS"
^DD(100.008,.01,1,2,1)="N X1,X2 S X1=DA(1),X2=DA D SET^ORDD100(X1,X2)"
^DD(100.008,.01,1,2,2)="N X1,X2 S X1=DA(1),X2=DA D KIL^ORDD100(X1,X2)"
^DD(100.008,.01,1,2,"%D",0)="^^4^4^2971028^"
^DD(100.008,.01,1,2,"%D",1,0)="^OR(100,""AC"",ORVP,9999999-ORLOG,ORIFN,DA)"
^DD(100.008,.01,1,2,"%D",2,0)="Allows retrieval of ""active"" orders; includes orders with any kind of"
^DD(100.008,.01,1,2,"%D",3,0)="active status, as well as those that have ended w/in the Active Orders"
^DD(100.008,.01,1,2,"%D",4,0)="Context Hours."
^DD(100.008,.01,1,2,"DT")=2960830
```
Current action ORCACT is set in _SETALL^ORDD100 which is called from
```text
^DD(100,.02,1,2,1)="D SETALL^ORDD100(DA)"
^DD(100,.02,1,2,2)="D KILALL^ORDD100(DA)"
```
and ORCACT won't be set as current action (3;7) isn't set by the time .02 is set.
In the MUMPS, SETALL is called from STATUS^ORCSAVE2 which updates an order's status. ie/ ^OR(100 global is managed explicitly and not through the DD. Note that _ORCSAVE2_ has many calls to ORDD100 routines to reflect different sorts of changes (_RELEASE_, _STARTDT_ etc) and keep indexes up to date.
_SET_ is called from ...
```text
ORCSEND.m: S STS=$P($G(^OR(100,ORIFN,3)),U,3) I STS=3 S $P(^(3),U,7)=ORDA D SET^ORDD100(ORIFN,ORDA)
ORCSEND.m: I STS'=3 S $P(^OR(100,ORIFN,3),U,7)=ORDA,$P(^(8,ORHD,2),U,1,2)=ORNOW_U_DUZ D SET^ORDD100(ORIFN,ORDA)
ORD211.m: I X'="" N X1,X2 S X1=DA(1),X2=DA D SET^ORDD100(X1,X2)
ORELR5.m: ...... D S1^ORDD100(ORIFN,1,"",LRENT),SET^ORDD100(ORIFN,1),ACT1^ORDD100A(ORIFN,1)
OREVNTX.m: I 'NEWEVT,$P(OR3,U,3)=10 S $P(^OR(100,+IFN,3),U,3)=11,$P(^(8,1,0),U,15)=11 D SET^ORDD100(+IFN,1)
```
... _ORCSEND_ is a key file for DC'ing, Holding, ... an Order. In effect, the XREF routines are called explicitly in MUMPS and the DD calls may or may not be as effective.
__VALIDATION PERFORMED__:
RPC has more than UPDATE^DIE ...
```text
// ^OR(100
// - Have: 8,"C"/ ACT / AF / AS / AW / C / D
// - Missing: AC / AW
``` | infrastructure | beyond pro forma dds for op meds order to allow update die to work background find workarounds where the current or dd doesn t support update die most problems are because fileman executes the xrefs of fields one by one as the field is populated but some order dd xrefs assume later fields are already populated ed quote code sets globals directly and then the programmers created a pro forma data dictionary to describe what their intention was we need to move all in scope dds beyond being pro forma todo need to add to nodevista setup note evolve may need to update to ensure update die works in a backward compatible way for order create removed xref in is the ien and this xref az isn t set by the direct global writing order mumps code either looking at xrefs after using rpcs but it is directly set in routine whose use needs to be looked at removed this from dd text dd az mumps dd s or az da p or da u dd q dd dt to avoid text ok errorcode errormessage fire dief gtm e nulsubsc null subscripts are not allowed for region default gtm i gvis t tglobal variable or az in check current action is set to avoid text vdp added g orcact check so don t fall into or orifn i g orcact oract orcact d q not current action called from text dd mumps dd n s da da d set dd n s da da d kil dd d dd d or ac orvp orlog orifn da dd d allows retrieval of active orders includes orders with any kind of dd d active status as well as those that have ended w in the active orders dd d context hours dd dt current action orcact is set in setall which is called from text dd d setall da dd d kilall da and orcact won t be set as current action isn t set by the time is set in the mumps setall is called from status which updates an order s status ie or global is managed explicitly and not through the dd note that has many calls to routines to reflect different sorts of changes release startdt etc and keep indexes up to date set is called from text orcsend m s sts p g or orifn u i sts s p u orda d set orifn orda orcsend m i sts s p or orifn u orda p orhd u ornow u duz d set orifn orda m i x n s da da d set m d orifn lrent set orifn orifn orevntx m i newevt p u s p or ifn u p u d set ifn orcsend is a key file for dc ing holding an order in effect the xref routines are called explicitly in mumps and the dd calls may or may not be as effective validation performed rpc has more than update die text or have c act af as aw c d missing ac aw | 1 |
9,347 | 7,929,280,953 | IssuesEvent | 2018-07-06 14:35:26 | sapcc/kubernikus | https://api.github.com/repos/sapcc/kubernikus | closed | Alert on Prometheus Outage | infrastructure | Create an alert for outages of the regional Prometheus servers. Identical to the bare-metal control-plane setup. | 1.0 | Alert on Prometheus Outage - Create an alert for outages of the regional Prometheus servers. Identical to the bare-metal control-plane setup. | infrastructure | alert on prometheus outage create an alert for outages of the regional prometheus servers identical to the bare metal control plane setup | 1 |
2,428 | 3,675,557,297 | IssuesEvent | 2016-02-23 00:08:05 | dotnet/roslyn | https://api.github.com/repos/dotnet/roslyn | closed | Script creation of NuGet zips for CI builds | Area-Infrastructure | It's kind of a pain that the process of creating the NuGet zip files for use in CI is so extremely manual. (It's also kinda crazy how many bytes go into it, but that's a topic for another bug.)
Now I'm not saying that it would necessarily be wise to make it "push-button" easy to make and upload a new zip(making a new one unthinkingly is probably not the best move), but it would be nice if it at least didn't involve having to nuke `~/.nuget/packages` or temporarily rename `~/.nuget` and remember to rename it back, and if we're going to automate that much already we might as well also automate the archive creation too.
We could do a study to figure out what combination of archiver and settings seems to give a decent ban for the buck without being overly complicated to install or (if it was decided to switch away from bog-standard zip files) extract from. (I have a suspicion that the winning archiver would end up being some form of 7-zip, whether we stuck with zip files or not.)
But the script should probably not automatically name the archive <code>nuget.*i*.zip</code>, and should **certainly* not automatically upload to Azure.
It would also be nice to have some tooling for comparing the freshly-minted archive with the current archive, to see if there are any unexpected changes. | 1.0 | Script creation of NuGet zips for CI builds - It's kind of a pain that the process of creating the NuGet zip files for use in CI is so extremely manual. (It's also kinda crazy how many bytes go into it, but that's a topic for another bug.)
Now I'm not saying that it would necessarily be wise to make it "push-button" easy to make and upload a new zip(making a new one unthinkingly is probably not the best move), but it would be nice if it at least didn't involve having to nuke `~/.nuget/packages` or temporarily rename `~/.nuget` and remember to rename it back, and if we're going to automate that much already we might as well also automate the archive creation too.
We could do a study to figure out what combination of archiver and settings seems to give a decent ban for the buck without being overly complicated to install or (if it was decided to switch away from bog-standard zip files) extract from. (I have a suspicion that the winning archiver would end up being some form of 7-zip, whether we stuck with zip files or not.)
But the script should probably not automatically name the archive <code>nuget.*i*.zip</code>, and should **certainly* not automatically upload to Azure.
It would also be nice to have some tooling for comparing the freshly-minted archive with the current archive, to see if there are any unexpected changes. | infrastructure | script creation of nuget zips for ci builds it s kind of a pain that the process of creating the nuget zip files for use in ci is so extremely manual it s also kinda crazy how many bytes go into it but that s a topic for another bug now i m not saying that it would necessarily be wise to make it push button easy to make and upload a new zip making a new one unthinkingly is probably not the best move but it would be nice if it at least didn t involve having to nuke nuget packages or temporarily rename nuget and remember to rename it back and if we re going to automate that much already we might as well also automate the archive creation too we could do a study to figure out what combination of archiver and settings seems to give a decent ban for the buck without being overly complicated to install or if it was decided to switch away from bog standard zip files extract from i have a suspicion that the winning archiver would end up being some form of zip whether we stuck with zip files or not but the script should probably not automatically name the archive nuget i zip and should certainly not automatically upload to azure it would also be nice to have some tooling for comparing the freshly minted archive with the current archive to see if there are any unexpected changes | 1 |
118,642 | 15,344,467,427 | IssuesEvent | 2021-02-28 01:20:27 | psf/black | https://api.github.com/repos/psf/black | closed | Should Black remove optional parentheses that wrap assignment expressions? | design parentheses | **Describe the style change**
Black would now remove optional parentheses that surround assignment expressions. Also Black will now have to take into account of situations where such removal would be unsafe (e.g. top level unparenthesized assignment expressions are illegal).
**Examples in the current style**
```python
while (temp := True):
pass
if (temp := True):
pass
```
**Examples in the new style**:
```python
while temp := True:
pass
if temp := True:
pass
```
**Things to discuss**:
* What are the conditions where Black would remove/keep the wrapping parentheses? Perhaps we can use this [specification](https://github.com/psf/black/blob/master/docs/the_black_code_style.md#parentheses) as a starting point?
* Do we want this in the first place?
**Additional context**:
This was originally filed in #1522 by @xrisk. I closed it as a duplicate of another issue and broke out the other topic in it as this new issue.
Related comments in original issue:
1. JelleZijlstra
> I'm not as sure we should remove the parentheses, maybe it's better for clarity to have them? Black is opinionated, but we should make sure we're opinionated in the right way.
2. xrisk (author of original issue)
> [snipped mention] black does convert if (expr): to if expr: so…
>
> And there are multiple examples in the PEP that omit the parentheses when there is no RHS.
| 1.0 | Should Black remove optional parentheses that wrap assignment expressions? - **Describe the style change**
Black would now remove optional parentheses that surround assignment expressions. Also Black will now have to take into account of situations where such removal would be unsafe (e.g. top level unparenthesized assignment expressions are illegal).
**Examples in the current style**
```python
while (temp := True):
pass
if (temp := True):
pass
```
**Examples in the new style**:
```python
while temp := True:
pass
if temp := True:
pass
```
**Things to discuss**:
* What are the conditions where Black would remove/keep the wrapping parentheses? Perhaps we can use this [specification](https://github.com/psf/black/blob/master/docs/the_black_code_style.md#parentheses) as a starting point?
* Do we want this in the first place?
**Additional context**:
This was originally filed in #1522 by @xrisk. I closed it as a duplicate of another issue and broke out the other topic in it as this new issue.
Related comments in original issue:
1. JelleZijlstra
> I'm not as sure we should remove the parentheses, maybe it's better for clarity to have them? Black is opinionated, but we should make sure we're opinionated in the right way.
2. xrisk (author of original issue)
> [snipped mention] black does convert if (expr): to if expr: so…
>
> And there are multiple examples in the PEP that omit the parentheses when there is no RHS.
| non_infrastructure | should black remove optional parentheses that wrap assignment expressions describe the style change black would now remove optional parentheses that surround assignment expressions also black will now have to take into account of situations where such removal would be unsafe e g top level unparenthesized assignment expressions are illegal examples in the current style python while temp true pass if temp true pass examples in the new style python while temp true pass if temp true pass things to discuss what are the conditions where black would remove keep the wrapping parentheses perhaps we can use this as a starting point do we want this in the first place additional context this was originally filed in by xrisk i closed it as a duplicate of another issue and broke out the other topic in it as this new issue related comments in original issue jellezijlstra i m not as sure we should remove the parentheses maybe it s better for clarity to have them black is opinionated but we should make sure we re opinionated in the right way xrisk author of original issue black does convert if expr to if expr so… and there are multiple examples in the pep that omit the parentheses when there is no rhs | 0 |
4,679 | 5,226,851,642 | IssuesEvent | 2017-01-27 22:47:09 | dotnet/corefx | https://api.github.com/repos/dotnet/corefx | closed | [dev/eng] ref projects are not really building in parallel on Unix | area-Infrastructure dev-eng | I'm not sure what's causing this, but it looks like the ref projects are effectively being built sequentially outside of Windows. This is causing the build to take a very long time compared to Windows. My 8-core Ubuntu machine has only one core being utilized during the ref build, even though there are tons of MSBuild processes active. It looks like the src build is handling this a bit better (faster and more CPU utilization), but I'm not sure it's as good as Windows there either. It still seems slower to me.
Is this a problem with MSBuild?
@weshaggard @ericstj @chcosta @joperezr @karajas | 1.0 | [dev/eng] ref projects are not really building in parallel on Unix - I'm not sure what's causing this, but it looks like the ref projects are effectively being built sequentially outside of Windows. This is causing the build to take a very long time compared to Windows. My 8-core Ubuntu machine has only one core being utilized during the ref build, even though there are tons of MSBuild processes active. It looks like the src build is handling this a bit better (faster and more CPU utilization), but I'm not sure it's as good as Windows there either. It still seems slower to me.
Is this a problem with MSBuild?
@weshaggard @ericstj @chcosta @joperezr @karajas | infrastructure | ref projects are not really building in parallel on unix i m not sure what s causing this but it looks like the ref projects are effectively being built sequentially outside of windows this is causing the build to take a very long time compared to windows my core ubuntu machine has only one core being utilized during the ref build even though there are tons of msbuild processes active it looks like the src build is handling this a bit better faster and more cpu utilization but i m not sure it s as good as windows there either it still seems slower to me is this a problem with msbuild weshaggard ericstj chcosta joperezr karajas | 1 |
5,031 | 5,395,792,399 | IssuesEvent | 2017-02-27 09:45:24 | hzi-braunschweig/SORMAS-Open | https://api.github.com/repos/hzi-braunschweig/SORMAS-Open | closed | List field for vaadin UI (epi and hospitalization data) [1] | accepted Infrastructure sormas-ui | - [x] list component in a vaadin field
- [x] create, edit and remove entries
- [x] buffered: discard, commit, validate
- [x] test in a form | 1.0 | List field for vaadin UI (epi and hospitalization data) [1] - - [x] list component in a vaadin field
- [x] create, edit and remove entries
- [x] buffered: discard, commit, validate
- [x] test in a form | infrastructure | list field for vaadin ui epi and hospitalization data list component in a vaadin field create edit and remove entries buffered discard commit validate test in a form | 1 |
132,977 | 10,775,787,504 | IssuesEvent | 2019-11-03 16:29:46 | aragakerubo/teamwork-backend | https://api.github.com/repos/aragakerubo/teamwork-backend | closed | Setup unit testing. Ensure all implemented functionality is tested henceforth. | backend chore unit test | #### Why is this important?
To ensure the backend has all functionality working as intended. You may use Mocha as the test runner and `chai` and `chai-http` for the unit tests. | 1.0 | Setup unit testing. Ensure all implemented functionality is tested henceforth. - #### Why is this important?
To ensure the backend has all functionality working as intended. You may use Mocha as the test runner and `chai` and `chai-http` for the unit tests. | non_infrastructure | setup unit testing ensure all implemented functionality is tested henceforth why is this important to ensure the backend has all functionality working as intended you may use mocha as the test runner and chai and chai http for the unit tests | 0 |
24,689 | 17,612,257,756 | IssuesEvent | 2021-08-18 04:07:08 | APSIMInitiative/ApsimX | https://api.github.com/repos/APSIMInitiative/ApsimX | opened | "Upgrade resource files" feature in the gui is clunky | interface/infrastructure refactor | Need to improve path resolution when locating the resources directory. This can be achieved by using the %root% macro. | 1.0 | "Upgrade resource files" feature in the gui is clunky - Need to improve path resolution when locating the resources directory. This can be achieved by using the %root% macro. | infrastructure | upgrade resource files feature in the gui is clunky need to improve path resolution when locating the resources directory this can be achieved by using the root macro | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.