Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1
value | created_at stringlengths 19 19 | repo stringlengths 5 112 | repo_url stringlengths 34 141 | action stringclasses 3
values | title stringlengths 1 1k | labels stringlengths 4 1.38k | body stringlengths 1 262k | index stringclasses 16
values | text_combine stringlengths 96 262k | label stringclasses 2
values | text stringlengths 96 252k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
734,555 | 25,352,839,723 | IssuesEvent | 2022-11-20 00:53:06 | streamlit/streamlit | https://api.github.com/repos/streamlit/streamlit | closed | Emojis are not valid if they have a variant selector character attached | type:bug good first issue status:confirmed priority:P2 feature:st.info | ### Summary
Emojis are not valid if they are prefixed with a variant selector character. This is a hidden character that is used as prefix for the emoji (more information [here](https://stackoverflow.com/questions/38100329/what-does-u-ufe0f-in-an-emoji-mean-is-it-the-same-if-i-delete-it)).
### Steps to reproduce
[](https://issues.streamlitapp.com/?issue=gh-5564)
Code snippet:
```python
st.error("This is an error", icon="🚨") # Works fine
st.error("This is an error", icon="️🚨") # Throws an error
```
The reason is that the second example is prefix with this hidden unicode character: `%uFE0F`:
```python
st.write(len("🚨")) # 1
st.write(len("️🚨")) # 2
```
**Expected behavior:**
Should not raise an exception.
**Actual behavior:**
Raises a `StreamlitAPIException` if used for `st.error`, `st.info`, ...
### Is this a regression?
no | 1.0 | Emojis are not valid if they have a variant selector character attached - ### Summary
Emojis are not valid if they are prefixed with a variant selector character. This is a hidden character that is used as prefix for the emoji (more information [here](https://stackoverflow.com/questions/38100329/what-does-u-ufe0f-in-an-emoji-mean-is-it-the-same-if-i-delete-it)).
### Steps to reproduce
[](https://issues.streamlitapp.com/?issue=gh-5564)
Code snippet:
```python
st.error("This is an error", icon="🚨") # Works fine
st.error("This is an error", icon="️🚨") # Throws an error
```
The reason is that the second example is prefix with this hidden unicode character: `%uFE0F`:
```python
st.write(len("🚨")) # 1
st.write(len("️🚨")) # 2
```
**Expected behavior:**
Should not raise an exception.
**Actual behavior:**
Raises a `StreamlitAPIException` if used for `st.error`, `st.info`, ...
### Is this a regression?
no | priority | emojis are not valid if they have a variant selector character attached summary emojis are not valid if they are prefixed with a variant selector character this is a hidden character that is used as prefix for the emoji more information steps to reproduce code snippet python st error this is an error icon 🚨 works fine st error this is an error icon ️🚨 throws an error the reason is that the second example is prefix with this hidden unicode character python st write len 🚨 st write len ️🚨 expected behavior should not raise an exception actual behavior raises a streamlitapiexception if used for st error st info is this a regression no | 1 |
9,089 | 11,140,397,426 | IssuesEvent | 2019-12-21 14:05:13 | KongMD-Steam/QuestionableEthicsEnhanced | https://api.github.com/repos/KongMD-Steam/QuestionableEthicsEnhanced | opened | Better Workbench Management Compatibility | compatibility | **What mod would you like to see compatibility with?**
Better Workbench Management
**Is there a bug in the mod when it's enabled with this other mod?**
Reported by Madman666 on Steam Workshop:
> when present, makes it so that when organs finish growing and are taken out of vats, the bill count doesn't go down, so even if you wanted to grow it once - it ll keep growing same limb over and over again.
**Are there errors in the debug log? If so, when do they occur?**
Unknown
| True | Better Workbench Management Compatibility - **What mod would you like to see compatibility with?**
Better Workbench Management
**Is there a bug in the mod when it's enabled with this other mod?**
Reported by Madman666 on Steam Workshop:
> when present, makes it so that when organs finish growing and are taken out of vats, the bill count doesn't go down, so even if you wanted to grow it once - it ll keep growing same limb over and over again.
**Are there errors in the debug log? If so, when do they occur?**
Unknown
| non_priority | better workbench management compatibility what mod would you like to see compatibility with better workbench management is there a bug in the mod when it s enabled with this other mod reported by on steam workshop when present makes it so that when organs finish growing and are taken out of vats the bill count doesn t go down so even if you wanted to grow it once it ll keep growing same limb over and over again are there errors in the debug log if so when do they occur unknown | 0 |
104,597 | 4,215,243,878 | IssuesEvent | 2016-06-30 02:44:09 | nexusformat/definitions | https://api.github.com/repos/nexusformat/definitions | closed | NXtransformations and "anonymous" field in NXDL specification | high priority | **Original reporter**: *[prjemian](https://github.com/prjemian)*
In the NXtransformations NXDL specification, there appears an unnamed field (field element with no name attribute). The present NXDL rules do not allow this.
Should the rules (nxdl.xsd) be extended to provide for anonymous fields or can this idea be redesigned to avoid this situation?
The nxdl.xsd could define an "anonymous attribute, such as:
```
<xs:attribute name="anonymous"
type="nx:NX_BOOLEAN"
use="optional"
default="false">
<xs:annotation>
<xs:documentation>
Name of this field is not known or defined
by the NXDL specification.
</xs:documentation>
</xs:annotation>
</xs:attribute>
```
The nxdl.xsd would also need to assert this rule:
name is defined and anonymous is false
-- *or* --
name is not defined and anonymous is true
| 1.0 | NXtransformations and "anonymous" field in NXDL specification - **Original reporter**: *[prjemian](https://github.com/prjemian)*
In the NXtransformations NXDL specification, there appears an unnamed field (field element with no name attribute). The present NXDL rules do not allow this.
Should the rules (nxdl.xsd) be extended to provide for anonymous fields or can this idea be redesigned to avoid this situation?
The nxdl.xsd could define an "anonymous attribute, such as:
```
<xs:attribute name="anonymous"
type="nx:NX_BOOLEAN"
use="optional"
default="false">
<xs:annotation>
<xs:documentation>
Name of this field is not known or defined
by the NXDL specification.
</xs:documentation>
</xs:annotation>
</xs:attribute>
```
The nxdl.xsd would also need to assert this rule:
name is defined and anonymous is false
-- *or* --
name is not defined and anonymous is true
| priority | nxtransformations and anonymous field in nxdl specification original reporter in the nxtransformations nxdl specification there appears an unnamed field field element with no name attribute the present nxdl rules do not allow this should the rules nxdl xsd be extended to provide for anonymous fields or can this idea be redesigned to avoid this situation the nxdl xsd could define an anonymous attribute such as xs attribute name anonymous type nx nx boolean use optional default false name of this field is not known or defined by the nxdl specification the nxdl xsd would also need to assert this rule name is defined and anonymous is false or name is not defined and anonymous is true | 1 |
5,642 | 2,957,907,749 | IssuesEvent | 2015-07-08 18:41:05 | ContinuumIO/blaze | https://api.github.com/repos/ContinuumIO/blaze | closed | Start accumulating release notes, what's new, and bug fixes | dev experience documentation user experience | I think it's time we start documenting changes outside of GitHub. | 1.0 | Start accumulating release notes, what's new, and bug fixes - I think it's time we start documenting changes outside of GitHub. | non_priority | start accumulating release notes what s new and bug fixes i think it s time we start documenting changes outside of github | 0 |
41,536 | 6,916,958,248 | IssuesEvent | 2017-11-29 06:00:50 | bodsch/ruby-icinga2 | https://api.github.com/repos/bodsch/ruby-icinga2 | closed | Documentation create instance | documentation | add require, replace :pass and Icinga::Client.new
```
require 'icinga2'
config = {
:icinga => {
:host => 'fornax.icinga-book.local',
:api => {
:port => api_port,
:user => api_user,
:password => api_password
}
}
}
@icinga = Icinga2::Client.new( config )
``` | 1.0 | Documentation create instance - add require, replace :pass and Icinga::Client.new
```
require 'icinga2'
config = {
:icinga => {
:host => 'fornax.icinga-book.local',
:api => {
:port => api_port,
:user => api_user,
:password => api_password
}
}
}
@icinga = Icinga2::Client.new( config )
``` | non_priority | documentation create instance add require replace pass and icinga client new require config icinga host fornax icinga book local api port api port user api user password api password icinga client new config | 0 |
11,132 | 2,637,516,360 | IssuesEvent | 2015-03-10 13:49:08 | STEllAR-GROUP/hpx | https://api.github.com/repos/STEllAR-GROUP/hpx | reopened | Parallel algorithms inclusive_scan and exclusive_scan break under different initial values | category: algorithms type: defect | Example: Parallel inclusive_scan under the array {1,2,3,4,5,6} should yield {1,3,6,10,15,21} when init is 0 and {101,103,106,110,115,121} when init is 100. With each chunk_size equal to two, the current parallel implmentation yields {1,3,6,10,15,21} when init is 0 (correct) and {101,103,206,210,315,321} when init is 100 (incorrect). | 1.0 | Parallel algorithms inclusive_scan and exclusive_scan break under different initial values - Example: Parallel inclusive_scan under the array {1,2,3,4,5,6} should yield {1,3,6,10,15,21} when init is 0 and {101,103,106,110,115,121} when init is 100. With each chunk_size equal to two, the current parallel implmentation yields {1,3,6,10,15,21} when init is 0 (correct) and {101,103,206,210,315,321} when init is 100 (incorrect). | non_priority | parallel algorithms inclusive scan and exclusive scan break under different initial values example parallel inclusive scan under the array should yield when init is and when init is with each chunk size equal to two the current parallel implmentation yields when init is correct and when init is incorrect | 0 |
183,293 | 14,221,552,669 | IssuesEvent | 2020-11-17 15:50:14 | cBioPortal/cbioportal | https://api.github.com/repos/cBioPortal/cbioportal | opened | Add multi study query test for treatments API | test | I think the current tests for treatment API maybe only covers single studies? We deployed a change that worked for single studies but not for multi studies | 1.0 | Add multi study query test for treatments API - I think the current tests for treatment API maybe only covers single studies? We deployed a change that worked for single studies but not for multi studies | non_priority | add multi study query test for treatments api i think the current tests for treatment api maybe only covers single studies we deployed a change that worked for single studies but not for multi studies | 0 |
78,642 | 10,076,672,855 | IssuesEvent | 2019-07-24 16:48:16 | department-of-veterans-affairs/va.gov-team | https://api.github.com/repos/department-of-veterans-affairs/va.gov-team | closed | Identify existing comm channels for external services | backend discovery documentation triage | ## User Story
As a VSP Triage team member, I need to know the communication channels we have access to for updates from external services that VA.gov and VSP depend on so I can be proactive about managing user impacts from changes to these services.
## Goal
- VSP team is aware of changes to external services we rely on _before_ they occur and thus can identify potential user impacts early
- Identify incoming outage schedules.
## Acceptance Criteria
- [x] All external services we depend on for VA.gov and VFS are documented
- [x] Existing channels of communication for each of those services are identified and documented
- [x] Gaps in communications are identified
- [x] Documentation exists in GH
## Definition of Done
- [ ] **Attached to a Milestone** (when will this be completed?)
- [ ] **Attached to an Epic** (what body of work is this a part of?)
- [ ] **Labeled with Team** (`product support`, `analytics-insights`, `operations`, `triage`, `tools-improvements`)
- [ ] **Labeled with Practice Area** (`backend`, `frontend`, `devops`, `design`, `research`, `product`, `ia`, `qa`, `analytics`, `call center`, `research`, `accessibility`, `content`)
- [ ] **Labeled with Type** (`bug`, `request`, `discovery`, `documentation`, etc.)
| 1.0 | Identify existing comm channels for external services - ## User Story
As a VSP Triage team member, I need to know the communication channels we have access to for updates from external services that VA.gov and VSP depend on so I can be proactive about managing user impacts from changes to these services.
## Goal
- VSP team is aware of changes to external services we rely on _before_ they occur and thus can identify potential user impacts early
- Identify incoming outage schedules.
## Acceptance Criteria
- [x] All external services we depend on for VA.gov and VFS are documented
- [x] Existing channels of communication for each of those services are identified and documented
- [x] Gaps in communications are identified
- [x] Documentation exists in GH
## Definition of Done
- [ ] **Attached to a Milestone** (when will this be completed?)
- [ ] **Attached to an Epic** (what body of work is this a part of?)
- [ ] **Labeled with Team** (`product support`, `analytics-insights`, `operations`, `triage`, `tools-improvements`)
- [ ] **Labeled with Practice Area** (`backend`, `frontend`, `devops`, `design`, `research`, `product`, `ia`, `qa`, `analytics`, `call center`, `research`, `accessibility`, `content`)
- [ ] **Labeled with Type** (`bug`, `request`, `discovery`, `documentation`, etc.)
| non_priority | identify existing comm channels for external services user story as a vsp triage team member i need to know the communication channels we have access to for updates from external services that va gov and vsp depend on so i can be proactive about managing user impacts from changes to these services goal vsp team is aware of changes to external services we rely on before they occur and thus can identify potential user impacts early identify incoming outage schedules acceptance criteria all external services we depend on for va gov and vfs are documented existing channels of communication for each of those services are identified and documented gaps in communications are identified documentation exists in gh definition of done attached to a milestone when will this be completed attached to an epic what body of work is this a part of labeled with team product support analytics insights operations triage tools improvements labeled with practice area backend frontend devops design research product ia qa analytics call center research accessibility content labeled with type bug request discovery documentation etc | 0 |
178,405 | 14,668,662,600 | IssuesEvent | 2020-12-29 21:54:59 | WindhoverLabs/auto-yamcs | https://api.github.com/repos/WindhoverLabs/auto-yamcs | opened | Write Schema For Configuration | documentation | We need a schema for the configuration of auto-yamcs. The schema should be saved under the `schemas` folder. | 1.0 | Write Schema For Configuration - We need a schema for the configuration of auto-yamcs. The schema should be saved under the `schemas` folder. | non_priority | write schema for configuration we need a schema for the configuration of auto yamcs the schema should be saved under the schemas folder | 0 |
147,159 | 11,776,168,480 | IssuesEvent | 2020-03-16 12:46:45 | hashicorp/nomad | https://api.github.com/repos/hashicorp/nomad | closed | CSI: create test utils/mocks for plugin/volumes | storage testing | As I'm wrapping up #6903 I'm finding I'm writing a lot of error-prone code just to set up simple unit tests for CSI. We could use some test utils for this. | 1.0 | CSI: create test utils/mocks for plugin/volumes - As I'm wrapping up #6903 I'm finding I'm writing a lot of error-prone code just to set up simple unit tests for CSI. We could use some test utils for this. | non_priority | csi create test utils mocks for plugin volumes as i m wrapping up i m finding i m writing a lot of error prone code just to set up simple unit tests for csi we could use some test utils for this | 0 |
567,711 | 16,890,430,974 | IssuesEvent | 2021-06-23 08:36:04 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | [0.9.3 release-190] Another Player arrow direction in minimap is still moving jerky. | Category: UI Priority: Medium Squad: Wild Turkey Status: Fixed Type: Bug | original issue here #20561
The point itself moves well, but the direction indicator still jerks.
https://drive.google.com/file/d/1VlTKwtcy8-bhh1JmTZVyklWhZwHSv4Ar/view?usp=sharing
| 1.0 | [0.9.3 release-190] Another Player arrow direction in minimap is still moving jerky. - original issue here #20561
The point itself moves well, but the direction indicator still jerks.
https://drive.google.com/file/d/1VlTKwtcy8-bhh1JmTZVyklWhZwHSv4Ar/view?usp=sharing
| priority | another player arrow direction in minimap is still moving jerky original issue here the point itself moves well but the direction indicator still jerks | 1 |
119,150 | 4,762,172,823 | IssuesEvent | 2016-10-25 10:35:23 | kulish-alina/HR_Project | https://api.github.com/repos/kulish-alina/HR_Project | opened | Invite modal design | enhancement medium priority | Please, add required fields - firstName and lastName on invite new member modal for creating new user with setted ones. | 1.0 | Invite modal design - Please, add required fields - firstName and lastName on invite new member modal for creating new user with setted ones. | priority | invite modal design please add required fields firstname and lastname on invite new member modal for creating new user with setted ones | 1 |
285,700 | 31,155,126,693 | IssuesEvent | 2023-08-16 12:41:02 | Trinadh465/linux-4.1.15_CVE-2018-5873 | https://api.github.com/repos/Trinadh465/linux-4.1.15_CVE-2018-5873 | opened | CVE-2020-27786 (High) detected in linux-stable-rtv4.1.33, linuxlinux-4.1.52 | Mend: dependency security vulnerability | ## CVE-2020-27786 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>linux-stable-rtv4.1.33</b>, <b>linuxlinux-4.1.52</b></p></summary>
<p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> Vulnerability Details</summary>
<p>
A flaw was found in the Linux kernel’s implementation of MIDI, where an attacker with a local account and the permissions to issue ioctl commands to midi devices could trigger a use-after-free issue. A write to this specific memory while freed and before use causes the flow of execution to change and possibly allow for memory corruption or privilege escalation. The highest threat from this vulnerability is to confidentiality, integrity, as well as system availability.
Mend Note: After conducting further research, Mend has determined that versions v2.6.12-rc2 through v4.4.223, ;v4.5-rc1 through v4.9.223, v4.10-rc1 through v4.14.180, v4.15-rc1 through v4.19.123, v5.0-rc1 through v5.4.41, v5.5-rc1 through v5.6.13 and v5.7-rc1 through v5.7-rc5 of Linux Kernel are vulnerable to CVE-2020-27786.
<p>Publish Date: 2020-12-11
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-27786>CVE-2020-27786</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://www.linuxkernelcves.com/cves/CVE-2020-27786">https://www.linuxkernelcves.com/cves/CVE-2020-27786</a></p>
<p>Release Date: 2020-12-11</p>
<p>Fix Resolution: v4.4.224, v4.9.224, v4.14.181, v4.19.124, v5.4.42, v5.6.14, v5.7-rc6</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-27786 (High) detected in linux-stable-rtv4.1.33, linuxlinux-4.1.52 - ## CVE-2020-27786 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>linux-stable-rtv4.1.33</b>, <b>linuxlinux-4.1.52</b></p></summary>
<p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> Vulnerability Details</summary>
<p>
A flaw was found in the Linux kernel’s implementation of MIDI, where an attacker with a local account and the permissions to issue ioctl commands to midi devices could trigger a use-after-free issue. A write to this specific memory while freed and before use causes the flow of execution to change and possibly allow for memory corruption or privilege escalation. The highest threat from this vulnerability is to confidentiality, integrity, as well as system availability.
Mend Note: After conducting further research, Mend has determined that versions v2.6.12-rc2 through v4.4.223, ;v4.5-rc1 through v4.9.223, v4.10-rc1 through v4.14.180, v4.15-rc1 through v4.19.123, v5.0-rc1 through v5.4.41, v5.5-rc1 through v5.6.13 and v5.7-rc1 through v5.7-rc5 of Linux Kernel are vulnerable to CVE-2020-27786.
<p>Publish Date: 2020-12-11
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-27786>CVE-2020-27786</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://www.linuxkernelcves.com/cves/CVE-2020-27786">https://www.linuxkernelcves.com/cves/CVE-2020-27786</a></p>
<p>Release Date: 2020-12-11</p>
<p>Fix Resolution: v4.4.224, v4.9.224, v4.14.181, v4.19.124, v5.4.42, v5.6.14, v5.7-rc6</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_priority | cve high detected in linux stable linuxlinux cve high severity vulnerability vulnerable libraries linux stable linuxlinux vulnerability details a flaw was found in the linux kernel’s implementation of midi where an attacker with a local account and the permissions to issue ioctl commands to midi devices could trigger a use after free issue a write to this specific memory while freed and before use causes the flow of execution to change and possibly allow for memory corruption or privilege escalation the highest threat from this vulnerability is to confidentiality integrity as well as system availability mend note after conducting further research mend has determined that versions through through through through through through and through of linux kernel are vulnerable to cve publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with mend | 0 |
249,844 | 7,964,726,841 | IssuesEvent | 2018-07-13 23:03:58 | samsung-cnct/k2-crash-application | https://api.github.com/repos/samsung-cnct/k2-crash-application | closed | Integrate binary push and releases into CI | CI blocked k2-crash-application priority-p2 | Currently binary + releases are push manually via git-releases tool and Makefile.
Wait for K2Cli releases to be finished and use that style. | 1.0 | Integrate binary push and releases into CI - Currently binary + releases are push manually via git-releases tool and Makefile.
Wait for K2Cli releases to be finished and use that style. | priority | integrate binary push and releases into ci currently binary releases are push manually via git releases tool and makefile wait for releases to be finished and use that style | 1 |
13,107 | 3,314,105,999 | IssuesEvent | 2015-11-06 02:16:44 | kumulsoft/Fixed-Assets | https://api.github.com/repos/kumulsoft/Fixed-Assets | closed | Building Management >>Occupation Application >> Details page issues | bug Fixed NORMAL Ready for testing | Refer attached image and rectify.

| 1.0 | Building Management >>Occupation Application >> Details page issues - Refer attached image and rectify.

| non_priority | building management occupation application details page issues refer attached image and rectify | 0 |
81,315 | 3,588,483,674 | IssuesEvent | 2016-01-31 01:51:16 | PowerPointLabs/PowerPointLabs | https://api.github.com/repos/PowerPointLabs/PowerPointLabs | closed | Remove Audio button causes an exception | Feature.AutoNarrate forFirstTimers Priority.Medium type-bug | Sometimes the add audio button sometimes does not work. I have to resort to using right-click on the comment text to add audio.
After using right-click to add audio, the remove audio button causes an exception. | 1.0 | Remove Audio button causes an exception - Sometimes the add audio button sometimes does not work. I have to resort to using right-click on the comment text to add audio.
After using right-click to add audio, the remove audio button causes an exception. | priority | remove audio button causes an exception sometimes the add audio button sometimes does not work i have to resort to using right click on the comment text to add audio after using right click to add audio the remove audio button causes an exception | 1 |
444,965 | 12,824,263,762 | IssuesEvent | 2020-07-06 13:12:59 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | tvtropes.org - see bug description | browser-firefox-mobile engine-gecko priority-normal | <!-- @browser: Firefox Mobile 78.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 10; Mobile; rv:78.0) Gecko/78.0 Firefox/78.0 -->
<!-- @reported_with: desktop-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/55020 -->
**URL**: https://tvtropes.org/
**Browser / Version**: Firefox Mobile 78.0
**Operating System**: Android
**Tested Another Browser**: Yes Chrome
**Problem type**: Something else
**Description**: The site features a dark mode. Enabling dark mode of the website creates a white bar when the navigation bar collapses
**Steps to Reproduce**:
Open the menu of the site by pressing the hamburger button.
Toggle dark mode switch.
Scroll so the navigation bar disappears.
A white bar briefly appears where the navigation bar was.
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2020/7/861907fb-9dc3-41d2-89b3-9a3b29482691.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20200612174529</li><li>channel: beta</li><li>hasTouchScreen: true</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | tvtropes.org - see bug description - <!-- @browser: Firefox Mobile 78.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 10; Mobile; rv:78.0) Gecko/78.0 Firefox/78.0 -->
<!-- @reported_with: desktop-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/55020 -->
**URL**: https://tvtropes.org/
**Browser / Version**: Firefox Mobile 78.0
**Operating System**: Android
**Tested Another Browser**: Yes Chrome
**Problem type**: Something else
**Description**: The site features a dark mode. Enabling dark mode of the website creates a white bar when the navigation bar collapses
**Steps to Reproduce**:
Open the menu of the site by pressing the hamburger button.
Toggle dark mode switch.
Scroll so the navigation bar disappears.
A white bar briefly appears where the navigation bar was.
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2020/7/861907fb-9dc3-41d2-89b3-9a3b29482691.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20200612174529</li><li>channel: beta</li><li>hasTouchScreen: true</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_ | priority | tvtropes org see bug description url browser version firefox mobile operating system android tested another browser yes chrome problem type something else description the site features a dark mode enabling dark mode of the website creates a white bar when the navigation bar collapses steps to reproduce open the menu of the site by pressing the hamburger button toggle dark mode switch scroll so the navigation bar disappears a white bar briefly appears where the navigation bar was view the screenshot img alt screenshot src browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel beta hastouchscreen true from with ❤️ | 1 |
5,854 | 2,981,510,427 | IssuesEvent | 2015-07-17 01:55:21 | pgRouting/pgrouting | https://api.github.com/repos/pgRouting/pgrouting | closed | CMakeLists.txt needs an option to select PG version | Bug Report Documentation Feature Request Fixed on Develop | Currently if you have multiple versions of Postgresql installed on your system, which is common for a server supporting a cluster, cmake will only compile pgRouting against the latest version of postgresql. For example if you have versions 9.2, 9.3, 9.4 installed, you can only build pgRouting against 9.4.
We need to add a cmake option -DWITH_PG_VER=9.2 that will allow you to build against a specific version. On Ubuntu 14.04 there is ``/usr/share/cmake-2.8/Modules/FindPostgreSQL.cmake`` that has the option to set PostgreSQL_ADDITIONAL_VERSIONS before calling find_package(PostgreSQL) that will make the defined version the preference if found. Unfortunately it is not compatible with our existing code and some changes will need to be made. | 1.0 | CMakeLists.txt needs an option to select PG version - Currently if you have multiple versions of Postgresql installed on your system, which is common for a server supporting a cluster, cmake will only compile pgRouting against the latest version of postgresql. For example if you have versions 9.2, 9.3, 9.4 installed, you can only build pgRouting against 9.4.
We need to add a cmake option -DWITH_PG_VER=9.2 that will allow you to build against a specific version. On Ubuntu 14.04 there is ``/usr/share/cmake-2.8/Modules/FindPostgreSQL.cmake`` that has the option to set PostgreSQL_ADDITIONAL_VERSIONS before calling find_package(PostgreSQL) that will make the defined version the preference if found. Unfortunately it is not compatible with our existing code and some changes will need to be made. | non_priority | cmakelists txt needs an option to select pg version currently if you have multiple versions of postgresql installed on your system which is common for a server supporting a cluster cmake will only compile pgrouting against the latest version of postgresql for example if you have versions installed you can only build pgrouting against we need to add a cmake option dwith pg ver that will allow you to build against a specific version on ubuntu there is usr share cmake modules findpostgresql cmake that has the option to set postgresql additional versions before calling find package postgresql that will make the defined version the preference if found unfortunately it is not compatible with our existing code and some changes will need to be made | 0 |
196,259 | 15,587,082,341 | IssuesEvent | 2021-03-18 03:28:27 | Adlik/Adlik | https://api.github.com/repos/Adlik/Adlik | closed | Rewrite TUTORIALS.md | documentation | For a beginner and newer to this project, I can not **learn anything** from TUTORIALS.md. Suggestion:
- Reorganize tutorials to these parts: Basic usage(hello world example), an end to end example(compile, serving, infer), components usage introduction(model compiler, infer engine building, infer engine deployment, benchmark);
- Remove model optimizer introduction, since it is not in this repo; | 1.0 | Rewrite TUTORIALS.md - For a beginner and newer to this project, I can not **learn anything** from TUTORIALS.md. Suggestion:
- Reorganize tutorials to these parts: Basic usage(hello world example), an end to end example(compile, serving, infer), components usage introduction(model compiler, infer engine building, infer engine deployment, benchmark);
- Remove model optimizer introduction, since it is not in this repo; | non_priority | rewrite tutorials md for a beginner and newer to this project i can not learn anything from tutorials md suggestion reorganize tutorials to these parts basic usage hello world example an end to end example compile serving infer components usage introduction model compiler infer engine building infer engine deployment benchmark remove model optimizer introduction since it is not in this repo | 0 |
91,020 | 8,288,376,939 | IssuesEvent | 2018-09-19 11:49:16 | kartoza/django-bims | https://api.github.com/repos/kartoza/django-bims | closed | legend div does not fit large legends | bug testing | # problem
wide legends are cut off.
# solution
add a side scroll if the legend is wider than the div | 1.0 | legend div does not fit large legends - # problem
wide legends are cut off.
# solution
add a side scroll if the legend is wider than the div | non_priority | legend div does not fit large legends problem wide legends are cut off solution add a side scroll if the legend is wider than the div | 0 |
100,814 | 21,523,177,621 | IssuesEvent | 2022-04-28 15:50:50 | stan-dev/stanc3 | https://api.github.com/repos/stan-dev/stanc3 | closed | error message - instead of actual index for container variable element, index is: `sym1__` | bug cpp-codegen | running CmdStan example model `bernoulli.stan` with imput data:
```
bernoulli_data = { "N": 10, "y": [1, 0, 1, 1, 1, 0, 0, 0, 1, 2]}
```
Model cannot be instantiated, fails with error message:
```
Exception: bernoulli_model_namespace::bernoulli_model: y[sym1__] is 2, but must be less than or equal to 1 (in '/Users/mitzi/github/stan-dev/cmdstanpy/test/data/bernoulli.stan', line 3, column 2 to column 28)
```
should be **y[9]** instead of **y[sim1__]**
| 1.0 | error message - instead of actual index for container variable element, index is: `sym1__` - running CmdStan example model `bernoulli.stan` with imput data:
```
bernoulli_data = { "N": 10, "y": [1, 0, 1, 1, 1, 0, 0, 0, 1, 2]}
```
Model cannot be instantiated, fails with error message:
```
Exception: bernoulli_model_namespace::bernoulli_model: y[sym1__] is 2, but must be less than or equal to 1 (in '/Users/mitzi/github/stan-dev/cmdstanpy/test/data/bernoulli.stan', line 3, column 2 to column 28)
```
should be **y[9]** instead of **y[sim1__]**
| non_priority | error message instead of actual index for container variable element index is running cmdstan example model bernoulli stan with imput data bernoulli data n y model cannot be instantiated fails with error message exception bernoulli model namespace bernoulli model y is but must be less than or equal to in users mitzi github stan dev cmdstanpy test data bernoulli stan line column to column should be y instead of y | 0 |
408,651 | 11,950,318,011 | IssuesEvent | 2020-04-03 15:01:02 | project-koku/koku | https://api.github.com/repos/project-koku/koku | closed | ProviderAuthentication.DoesNotExist: ProviderAuthentication matching query does not exist. | bug priority - medium | Sentry Issue: [KOKU-CELERY-1M](https://sentry.io/organizations/project-koku/issues/1390580051/?referrer=github_integration)
```
KeyError: 'authentication'
File "django/db/models/fields/related_descriptors.py", line 164, in __get__
rel_obj = self.field.get_cached_value(instance)
File "django/db/models/fields/mixins.py", line 13, in get_cached_value
return instance._state.fields_cache[cache_name]
ProviderAuthentication.DoesNotExist: ProviderAuthentication matching query does not exist.
(5 additional frame(s) were not displayed)
...
File "masu/external/accounts/db/cur_accounts_db.py", line 52, in get_account_information
"authentication": self.get_authentication(provider),
File "masu/external/accounts/db/cur_accounts_db.py", line 33, in get_authentication
if provider.authentication.provider_resource_name:
File "django/db/models/fields/related_descriptors.py", line 178, in __get__
rel_obj = self.get_object(instance)
File "django/db/models/fields/related_descriptors.py", line 145, in get_object
return qs.get(self.field.get_reverse_related_filter(instance))
File "django/db/models/query.py", line 408, in get
self.model._meta.object_name
``` | 1.0 | ProviderAuthentication.DoesNotExist: ProviderAuthentication matching query does not exist. - Sentry Issue: [KOKU-CELERY-1M](https://sentry.io/organizations/project-koku/issues/1390580051/?referrer=github_integration)
```
KeyError: 'authentication'
File "django/db/models/fields/related_descriptors.py", line 164, in __get__
rel_obj = self.field.get_cached_value(instance)
File "django/db/models/fields/mixins.py", line 13, in get_cached_value
return instance._state.fields_cache[cache_name]
ProviderAuthentication.DoesNotExist: ProviderAuthentication matching query does not exist.
(5 additional frame(s) were not displayed)
...
File "masu/external/accounts/db/cur_accounts_db.py", line 52, in get_account_information
"authentication": self.get_authentication(provider),
File "masu/external/accounts/db/cur_accounts_db.py", line 33, in get_authentication
if provider.authentication.provider_resource_name:
File "django/db/models/fields/related_descriptors.py", line 178, in __get__
rel_obj = self.get_object(instance)
File "django/db/models/fields/related_descriptors.py", line 145, in get_object
return qs.get(self.field.get_reverse_related_filter(instance))
File "django/db/models/query.py", line 408, in get
self.model._meta.object_name
``` | priority | providerauthentication doesnotexist providerauthentication matching query does not exist sentry issue keyerror authentication file django db models fields related descriptors py line in get rel obj self field get cached value instance file django db models fields mixins py line in get cached value return instance state fields cache providerauthentication doesnotexist providerauthentication matching query does not exist additional frame s were not displayed file masu external accounts db cur accounts db py line in get account information authentication self get authentication provider file masu external accounts db cur accounts db py line in get authentication if provider authentication provider resource name file django db models fields related descriptors py line in get rel obj self get object instance file django db models fields related descriptors py line in get object return qs get self field get reverse related filter instance file django db models query py line in get self model meta object name | 1 |
350,512 | 10,491,637,390 | IssuesEvent | 2019-09-25 11:36:43 | tj/go-news | https://api.github.com/repos/tj/go-news | closed | Testing more stuff | Priority: Low Priority: Medium bug enhancement | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum sapien sem, euismod quis diam ut, auctor commodo libero. Donec ultrices erat nisi, ac consectetur ipsum euismod eget. Donec varius sodales justo et suscipit. Curabitur non metus in nulla vehicula pulvinar. Mauris eget turpis placerat, gravida ipsum sit amet, viverra massa. Praesent ligula arcu, egestas at semper non, laoreet sed metus. Suspendisse potenti. Quisque scelerisque volutpat nisi, id lacinia eros euismod faucibus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer ut dolor non mauris auctor finibus in in sem. Pellentesque cursus est at eros dapibus condimentum. Aliquam interdum massa viverra ultricies posuere. Nunc dapibus laoreet justo, finibus aliquam justo placerat eget.
Curabitur vulputate, dolor a vulputate congue, lectus est elementum nulla, a congue sem metus vitae risus. Curabitur congue sem eu risus molestie accumsan. Donec egestas malesuada semper. Vivamus sem leo, commodo sit amet dignissim sit amet, dignissim a diam. Donec odio dolor, pharetra vitae ullamcorper eu, fermentum eget ligula. Nunc rhoncus augue odio, et pretium lorem tincidunt eget. Nam a dui cursus.
```go
// Parse returns the rgb parsed from a color hex string.
func Parse(s string) (r, g, b uint8) {
m := re.FindStringSubmatch(s)
rv, _ := strconv.ParseInt(m[1], 16, 0)
gv, _ := strconv.ParseInt(m[2], 16, 0)
bv, _ := strconv.ParseInt(m[3], 16, 0)
r = uint8(rv)
g = uint8(gv)
b = uint8(bv)
return
}
```
Vestibulum libero id, ultricies mi. Ut non vestibulum tellus, vel sagittis magna. Donec molestie lacinia orci vitae ullamcorper. Proin vitae tortor tristique, iaculis purus et, semper arcu. Fusce eleifend, metus vel rutrum gravida, dolor arcu faucibus sapien, ac lobortis libero urna at lectus. Vivamus quam arcu, pellentesque ut nulla non, dictum feugiat est. Aliquam neque ipsum, hendrerit eget diam ut, hendrerit tempus velit. Aliquam cursus interdum massa vel efficitur.
```
strconv.ParseInt(m[3], 16, 0)
``` | 2.0 | Testing more stuff - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum sapien sem, euismod quis diam ut, auctor commodo libero. Donec ultrices erat nisi, ac consectetur ipsum euismod eget. Donec varius sodales justo et suscipit. Curabitur non metus in nulla vehicula pulvinar. Mauris eget turpis placerat, gravida ipsum sit amet, viverra massa. Praesent ligula arcu, egestas at semper non, laoreet sed metus. Suspendisse potenti. Quisque scelerisque volutpat nisi, id lacinia eros euismod faucibus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer ut dolor non mauris auctor finibus in in sem. Pellentesque cursus est at eros dapibus condimentum. Aliquam interdum massa viverra ultricies posuere. Nunc dapibus laoreet justo, finibus aliquam justo placerat eget.
Curabitur vulputate, dolor a vulputate congue, lectus est elementum nulla, a congue sem metus vitae risus. Curabitur congue sem eu risus molestie accumsan. Donec egestas malesuada semper. Vivamus sem leo, commodo sit amet dignissim sit amet, dignissim a diam. Donec odio dolor, pharetra vitae ullamcorper eu, fermentum eget ligula. Nunc rhoncus augue odio, et pretium lorem tincidunt eget. Nam a dui cursus.
```go
// Parse returns the rgb parsed from a color hex string.
func Parse(s string) (r, g, b uint8) {
m := re.FindStringSubmatch(s)
rv, _ := strconv.ParseInt(m[1], 16, 0)
gv, _ := strconv.ParseInt(m[2], 16, 0)
bv, _ := strconv.ParseInt(m[3], 16, 0)
r = uint8(rv)
g = uint8(gv)
b = uint8(bv)
return
}
```
Vestibulum libero id, ultricies mi. Ut non vestibulum tellus, vel sagittis magna. Donec molestie lacinia orci vitae ullamcorper. Proin vitae tortor tristique, iaculis purus et, semper arcu. Fusce eleifend, metus vel rutrum gravida, dolor arcu faucibus sapien, ac lobortis libero urna at lectus. Vivamus quam arcu, pellentesque ut nulla non, dictum feugiat est. Aliquam neque ipsum, hendrerit eget diam ut, hendrerit tempus velit. Aliquam cursus interdum massa vel efficitur.
```
strconv.ParseInt(m[3], 16, 0)
``` | priority | testing more stuff lorem ipsum dolor sit amet consectetur adipiscing elit vestibulum sapien sem euismod quis diam ut auctor commodo libero donec ultrices erat nisi ac consectetur ipsum euismod eget donec varius sodales justo et suscipit curabitur non metus in nulla vehicula pulvinar mauris eget turpis placerat gravida ipsum sit amet viverra massa praesent ligula arcu egestas at semper non laoreet sed metus suspendisse potenti quisque scelerisque volutpat nisi id lacinia eros euismod faucibus pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas integer ut dolor non mauris auctor finibus in in sem pellentesque cursus est at eros dapibus condimentum aliquam interdum massa viverra ultricies posuere nunc dapibus laoreet justo finibus aliquam justo placerat eget curabitur vulputate dolor a vulputate congue lectus est elementum nulla a congue sem metus vitae risus curabitur congue sem eu risus molestie accumsan donec egestas malesuada semper vivamus sem leo commodo sit amet dignissim sit amet dignissim a diam donec odio dolor pharetra vitae ullamcorper eu fermentum eget ligula nunc rhoncus augue odio et pretium lorem tincidunt eget nam a dui cursus go parse returns the rgb parsed from a color hex string func parse s string r g b m re findstringsubmatch s rv strconv parseint m gv strconv parseint m bv strconv parseint m r rv g gv b bv return vestibulum libero id ultricies mi ut non vestibulum tellus vel sagittis magna donec molestie lacinia orci vitae ullamcorper proin vitae tortor tristique iaculis purus et semper arcu fusce eleifend metus vel rutrum gravida dolor arcu faucibus sapien ac lobortis libero urna at lectus vivamus quam arcu pellentesque ut nulla non dictum feugiat est aliquam neque ipsum hendrerit eget diam ut hendrerit tempus velit aliquam cursus interdum massa vel efficitur strconv parseint m | 1 |
499,044 | 14,438,557,733 | IssuesEvent | 2020-12-07 13:13:15 | grpc/grpc | https://api.github.com/repos/grpc/grpc | closed | iOS build : 'absl/base/options.h' file not found | kind/bug lang/core platform/iOS priority/P2 | <!--
PLEASE DO NOT POST A QUESTION HERE.
This form is for bug reports and feature requests ONLY!
For general questions and troubleshooting, please ask/look for answers at StackOverflow, with "grpc" tag: https://stackoverflow.com/questions/tagged/grpc
For questions that specifically need to be answered by gRPC team members, please ask/look for answers at grpc.io mailing list: https://groups.google.com/forum/#!forum/grpc-io
Issues specific to *grpc-java*, *grpc-go*, *grpc-node*, *grpc-dart*, *grpc-web* should be created in the repository they belong to (e.g. https://github.com/grpc/grpc-LANGUAGE/issues/new)
-->
### What version of gRPC and what language are you using?
1.32.2
### What operating system (Linux, Windows,...) and version?
MacOS (for iOS development)
### What runtime / compiler are you using (e.g. python version or version of gcc)
--
### What did you do?
build for release
### What did you expect to see?
success build
### What did you see instead?
Pods/abseil/absl/base/config.h:66:10: 'absl/base/options.h' file not found
Apparently abseil dependency causes issues, as reverting to a previous version without it (1.19.0) fixes the issue
Make sure you include information that can help us debug (full error message, exception listing, stack trace, logs).
See [TROUBLESHOOTING.md](https://github.com/grpc/grpc/blob/master/TROUBLESHOOTING.md) for how to diagnose problems better.
### Anything else we should know about your project / environment?
| 1.0 | iOS build : 'absl/base/options.h' file not found - <!--
PLEASE DO NOT POST A QUESTION HERE.
This form is for bug reports and feature requests ONLY!
For general questions and troubleshooting, please ask/look for answers at StackOverflow, with "grpc" tag: https://stackoverflow.com/questions/tagged/grpc
For questions that specifically need to be answered by gRPC team members, please ask/look for answers at grpc.io mailing list: https://groups.google.com/forum/#!forum/grpc-io
Issues specific to *grpc-java*, *grpc-go*, *grpc-node*, *grpc-dart*, *grpc-web* should be created in the repository they belong to (e.g. https://github.com/grpc/grpc-LANGUAGE/issues/new)
-->
### What version of gRPC and what language are you using?
1.32.2
### What operating system (Linux, Windows,...) and version?
MacOS (for iOS development)
### What runtime / compiler are you using (e.g. python version or version of gcc)
--
### What did you do?
build for release
### What did you expect to see?
success build
### What did you see instead?
Pods/abseil/absl/base/config.h:66:10: 'absl/base/options.h' file not found
Apparently abseil dependency causes issues, as reverting to a previous version without it (1.19.0) fixes the issue
Make sure you include information that can help us debug (full error message, exception listing, stack trace, logs).
See [TROUBLESHOOTING.md](https://github.com/grpc/grpc/blob/master/TROUBLESHOOTING.md) for how to diagnose problems better.
### Anything else we should know about your project / environment?
| priority | ios build absl base options h file not found please do not post a question here this form is for bug reports and feature requests only for general questions and troubleshooting please ask look for answers at stackoverflow with grpc tag for questions that specifically need to be answered by grpc team members please ask look for answers at grpc io mailing list issues specific to grpc java grpc go grpc node grpc dart grpc web should be created in the repository they belong to e g what version of grpc and what language are you using what operating system linux windows and version macos for ios development what runtime compiler are you using e g python version or version of gcc what did you do build for release what did you expect to see success build what did you see instead pods abseil absl base config h absl base options h file not found apparently abseil dependency causes issues as reverting to a previous version without it fixes the issue make sure you include information that can help us debug full error message exception listing stack trace logs see for how to diagnose problems better anything else we should know about your project environment | 1 |
72,549 | 8,751,322,461 | IssuesEvent | 2018-12-13 21:57:35 | eBay/skin | https://api.github.com/repos/eBay/skin | opened | Website: check icon missing in custom checkbox menu items (DS6) | aspect: website design system: DS6 module: icon module: menu type: bug | DS4:

DS6:

After a quick look it's probably because DS6 example is using `icon-confirmation` which doesn't exist in DS6:
```html
<svg aria-hidden="true" class="menu__status" focusable="false" height="8" width="8">
<use xlink:href="#icon-confirmation"></use>
</svg>
```
Related issue #475 | 1.0 | Website: check icon missing in custom checkbox menu items (DS6) - DS4:

DS6:

After a quick look it's probably because DS6 example is using `icon-confirmation` which doesn't exist in DS6:
```html
<svg aria-hidden="true" class="menu__status" focusable="false" height="8" width="8">
<use xlink:href="#icon-confirmation"></use>
</svg>
```
Related issue #475 | non_priority | website check icon missing in custom checkbox menu items after a quick look it s probably because example is using icon confirmation which doesn t exist in html related issue | 0 |
665,434 | 22,318,935,917 | IssuesEvent | 2022-06-14 03:06:23 | brave/brave-browser | https://api.github.com/repos/brave/brave-browser | opened | Fix Bad Set State Call in Buy Tab | priority/P3 dev-concern QA/Yes release-notes/exclude feature/wallet OS/Desktop front-end-change | <!-- Have you searched for similar issues? Before submitting this issue, please check the open issues and add a note before logging a new issue.
PLEASE USE THE TEMPLATE BELOW TO PROVIDE INFORMATION ABOUT THE ISSUE.
INSUFFICIENT INFO WILL GET THE ISSUE CLOSED. IT WILL ONLY BE REOPENED AFTER SUFFICIENT INFO IS PROVIDED-->
## Description
Seeing a `Bad Set State` warning in the `Buy Tab` that needs to be addressed.
https://user-images.githubusercontent.com/40611140/173484878-3a79c9dd-f22b-44d4-915d-d378e3cd9793.mov
| 1.0 | Fix Bad Set State Call in Buy Tab - <!-- Have you searched for similar issues? Before submitting this issue, please check the open issues and add a note before logging a new issue.
PLEASE USE THE TEMPLATE BELOW TO PROVIDE INFORMATION ABOUT THE ISSUE.
INSUFFICIENT INFO WILL GET THE ISSUE CLOSED. IT WILL ONLY BE REOPENED AFTER SUFFICIENT INFO IS PROVIDED-->
## Description
Seeing a `Bad Set State` warning in the `Buy Tab` that needs to be addressed.
https://user-images.githubusercontent.com/40611140/173484878-3a79c9dd-f22b-44d4-915d-d378e3cd9793.mov
| priority | fix bad set state call in buy tab have you searched for similar issues before submitting this issue please check the open issues and add a note before logging a new issue please use the template below to provide information about the issue insufficient info will get the issue closed it will only be reopened after sufficient info is provided description seeing a bad set state warning in the buy tab that needs to be addressed | 1 |
151,560 | 5,824,428,278 | IssuesEvent | 2017-05-07 12:58:25 | raspibo/eventman | https://api.github.com/repos/raspibo/eventman | closed | adding more than one ticket, fields may be merged | bug priority: medium | Adding a second ticket after another, if one or more of the fields of the second are left empty and were present on the first, the data will be merged. | 1.0 | adding more than one ticket, fields may be merged - Adding a second ticket after another, if one or more of the fields of the second are left empty and were present on the first, the data will be merged. | priority | adding more than one ticket fields may be merged adding a second ticket after another if one or more of the fields of the second are left empty and were present on the first the data will be merged | 1 |
78,834 | 22,465,227,263 | IssuesEvent | 2022-06-22 00:34:06 | foundry-rs/foundry | https://api.github.com/repos/foundry-rs/foundry | closed | ewasm in extraoutput config throw a InternalCompilerError error | T-bug C-forge Cmd-forge-build | ### Component
Forge
### Have you ensured that all of these are up to date?
- [X] Foundry
- [X] Foundryup
### What version of Foundry are you on?
forge 0.2.0 (9010e8b 2022-06-21T00:10:16.127085Z)
### What command(s) is the bug in?
forge test
### Operating System
macOS (Apple Silicon)
### Describe the bug
When I try to build/test with the `foundry.toml` config
```
[default]
optimizer_runs = 200
extra_output_files = [ "ewasm"]
```
I get this console error
```bash
[⠑] Compiling...
[⠘] Compiling 4 files with 0.5.17
[⠃] Compiling 87 files with 0.6.4
[⠰] Solc 0.5.17 finished in 52.21ms
[⠒] Solc 0.6.4 finished in 1.50s
Error:
0: Compiler run failed
InternalCompilerError:
UnimplementedFeatureError:
0:
Location:
cli/src/compile.rs:151
Backtrace omitted. Run with RUST_BACKTRACE=1 environment variable to display it.
Run with RUST_BACKTRACE=full to include source snippets.
``` | 1.0 | ewasm in extraoutput config throw a InternalCompilerError error - ### Component
Forge
### Have you ensured that all of these are up to date?
- [X] Foundry
- [X] Foundryup
### What version of Foundry are you on?
forge 0.2.0 (9010e8b 2022-06-21T00:10:16.127085Z)
### What command(s) is the bug in?
forge test
### Operating System
macOS (Apple Silicon)
### Describe the bug
When I try to build/test with the `foundry.toml` config
```
[default]
optimizer_runs = 200
extra_output_files = [ "ewasm"]
```
I get this console error
```bash
[⠑] Compiling...
[⠘] Compiling 4 files with 0.5.17
[⠃] Compiling 87 files with 0.6.4
[⠰] Solc 0.5.17 finished in 52.21ms
[⠒] Solc 0.6.4 finished in 1.50s
Error:
0: Compiler run failed
InternalCompilerError:
UnimplementedFeatureError:
0:
Location:
cli/src/compile.rs:151
Backtrace omitted. Run with RUST_BACKTRACE=1 environment variable to display it.
Run with RUST_BACKTRACE=full to include source snippets.
``` | non_priority | ewasm in extraoutput config throw a internalcompilererror error component forge have you ensured that all of these are up to date foundry foundryup what version of foundry are you on forge what command s is the bug in forge test operating system macos apple silicon describe the bug when i try to build test with the foundry toml config optimizer runs extra output files i get this console error bash compiling compiling files with compiling files with solc finished in solc finished in error compiler run failed internalcompilererror unimplementedfeatureerror location cli src compile rs backtrace omitted run with rust backtrace environment variable to display it run with rust backtrace full to include source snippets | 0 |
95,555 | 3,953,673,368 | IssuesEvent | 2016-04-29 14:20:08 | dhis2/d2-ui | https://api.github.com/repos/dhis2/d2-ui | closed | [FormBuilder] Don't update value from props if field is dirty | bug priority:high question wontfix | If a form field has been changed by the user (eg. `state.fields[name].pristine = false`) when new props arrive, the current field value should be retained. | 1.0 | [FormBuilder] Don't update value from props if field is dirty - If a form field has been changed by the user (eg. `state.fields[name].pristine = false`) when new props arrive, the current field value should be retained. | priority | don t update value from props if field is dirty if a form field has been changed by the user eg state fields pristine false when new props arrive the current field value should be retained | 1 |
24,804 | 4,104,665,495 | IssuesEvent | 2016-06-05 14:42:58 | bwu-dart/bwu_datagrid | https://api.github.com/repos/bwu-dart/bwu_datagrid | closed | example e04_model several things are not working | status:accepted type:defect | - Paging
- "Select first 10 rows" button
- console logs several exeptions | 1.0 | example e04_model several things are not working - - Paging
- "Select first 10 rows" button
- console logs several exeptions | non_priority | example model several things are not working paging select first rows button console logs several exeptions | 0 |
189,646 | 15,192,351,334 | IssuesEvent | 2021-02-15 21:51:15 | hackforla/product-management | https://api.github.com/repos/hackforla/product-management | closed | Create a Template for Making Guides/Templates | documentation | ### Overview
### Action Items
- [x] Make a template issue
- [x] Add labels
- [x] TG: Gather examples
- [x] TG: Draft Template
- [x] TG: Create Guide
- [x] TG: Place Guide
```
### Action Items
- [ ] Gather examples of how other projects have done X
- [ ] Create a draft template, either in markdown or a google doc (in the product management google drive)
- [ ] Create a guide (usually google doc)
- [ ] Possibly create an issue template on .github
- [ ] _Add link to the template here_ (under resources)
### Resources
```
### Describe purpose or uses of Guide | 1.0 | Create a Template for Making Guides/Templates - ### Overview
### Action Items
- [x] Make a template issue
- [x] Add labels
- [x] TG: Gather examples
- [x] TG: Draft Template
- [x] TG: Create Guide
- [x] TG: Place Guide
```
### Action Items
- [ ] Gather examples of how other projects have done X
- [ ] Create a draft template, either in markdown or a google doc (in the product management google drive)
- [ ] Create a guide (usually google doc)
- [ ] Possibly create an issue template on .github
- [ ] _Add link to the template here_ (under resources)
### Resources
```
### Describe purpose or uses of Guide | non_priority | create a template for making guides templates overview action items make a template issue add labels tg gather examples tg draft template tg create guide tg place guide action items gather examples of how other projects have done x create a draft template either in markdown or a google doc in the product management google drive create a guide usually google doc possibly create an issue template on github add link to the template here under resources resources describe purpose or uses of guide | 0 |
31,427 | 7,361,039,549 | IssuesEvent | 2018-03-11 01:30:33 | GTNewHorizons/NewHorizons | https://api.github.com/repos/GTNewHorizons/NewHorizons | opened | GT++/Berries++ code issures | Need Code changes waiting for fix | #### Which modpack version are you using?
2.0.3.0
#### What do you suggest instead/what changes do you propose?
Mixer recipe for Alcopos, gives GT++ cell instead of empty one. Talking with alkalus to see at which side the issure will be fixed.

| 1.0 | GT++/Berries++ code issures - #### Which modpack version are you using?
2.0.3.0
#### What do you suggest instead/what changes do you propose?
Mixer recipe for Alcopos, gives GT++ cell instead of empty one. Talking with alkalus to see at which side the issure will be fixed.

| non_priority | gt berries code issures which modpack version are you using what do you suggest instead what changes do you propose mixer recipe for alcopos gives gt cell instead of empty one talking with alkalus to see at which side the issure will be fixed | 0 |
241,788 | 26,256,925,610 | IssuesEvent | 2023-01-06 02:08:47 | lpuv/cool-rails-app | https://api.github.com/repos/lpuv/cool-rails-app | reopened | CVE-2020-11076 (High) detected in puma-4.3.1.gem | security vulnerability | ## CVE-2020-11076 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>puma-4.3.1.gem</b></p></summary>
<p>Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications. Puma is intended for use in both development and production environments. It's great for highly concurrent Ruby implementations such as Rubinius and JRuby as well as as providing process worker support to support CRuby well.</p>
<p>Library home page: <a href="https://rubygems.org/gems/puma-4.3.1.gem">https://rubygems.org/gems/puma-4.3.1.gem</a></p>
<p>Path to dependency file: /Gemfile.lock</p>
<p>Path to vulnerable library: /ms/2.5.0/cache/puma-4.3.1.gem</p>
<p>
Dependency Hierarchy:
- :x: **puma-4.3.1.gem** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/gamer4life1/cool-rails-app/commit/1abfa011220bc5a7ef65ecb6b5ea8ad4588de89b">1abfa011220bc5a7ef65ecb6b5ea8ad4588de89b</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In Puma (RubyGem) before 4.3.4 and 3.12.5, an attacker could smuggle an HTTP response, by using an invalid transfer-encoding header. The problem has been fixed in Puma 3.12.5 and Puma 4.3.4.
<p>Publish Date: 2020-05-22
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-11076>CVE-2020-11076</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: High
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/puma/puma/security/advisories/GHSA-x7jg-6pwg-fx5h">https://github.com/puma/puma/security/advisories/GHSA-x7jg-6pwg-fx5h</a></p>
<p>Release Date: 2020-10-07</p>
<p>Fix Resolution: puma - 3.12.5;4.3.4</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-11076 (High) detected in puma-4.3.1.gem - ## CVE-2020-11076 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>puma-4.3.1.gem</b></p></summary>
<p>Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications. Puma is intended for use in both development and production environments. It's great for highly concurrent Ruby implementations such as Rubinius and JRuby as well as as providing process worker support to support CRuby well.</p>
<p>Library home page: <a href="https://rubygems.org/gems/puma-4.3.1.gem">https://rubygems.org/gems/puma-4.3.1.gem</a></p>
<p>Path to dependency file: /Gemfile.lock</p>
<p>Path to vulnerable library: /ms/2.5.0/cache/puma-4.3.1.gem</p>
<p>
Dependency Hierarchy:
- :x: **puma-4.3.1.gem** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/gamer4life1/cool-rails-app/commit/1abfa011220bc5a7ef65ecb6b5ea8ad4588de89b">1abfa011220bc5a7ef65ecb6b5ea8ad4588de89b</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In Puma (RubyGem) before 4.3.4 and 3.12.5, an attacker could smuggle an HTTP response, by using an invalid transfer-encoding header. The problem has been fixed in Puma 3.12.5 and Puma 4.3.4.
<p>Publish Date: 2020-05-22
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-11076>CVE-2020-11076</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: High
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/puma/puma/security/advisories/GHSA-x7jg-6pwg-fx5h">https://github.com/puma/puma/security/advisories/GHSA-x7jg-6pwg-fx5h</a></p>
<p>Release Date: 2020-10-07</p>
<p>Fix Resolution: puma - 3.12.5;4.3.4</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_priority | cve high detected in puma gem cve high severity vulnerability vulnerable library puma gem puma is a simple fast threaded and highly concurrent http server for ruby rack applications puma is intended for use in both development and production environments it s great for highly concurrent ruby implementations such as rubinius and jruby as well as as providing process worker support to support cruby well library home page a href path to dependency file gemfile lock path to vulnerable library ms cache puma gem dependency hierarchy x puma gem vulnerable library found in head commit a href found in base branch master vulnerability details in puma rubygem before and an attacker could smuggle an http response by using an invalid transfer encoding header the problem has been fixed in puma and puma publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact high availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution puma step up your open source security game with mend | 0 |
258,815 | 22,349,861,628 | IssuesEvent | 2022-06-15 11:03:23 | ubtue/DatenProbleme | https://api.github.com/repos/ubtue/DatenProbleme | closed | ISSN 2699-3414 | Berliner Theologische Zeitschrift (DeGruyter) | OA, Zusatztitel, Abstract | ready for testing Zotero_SEMI-AUTO | #### URL
https://www.degruyter.com/document/doi/10.1515/bthz-2021-0004/html
#### Import-Translator
ubtue_DeGruyter.js
(Einzel- und Mehrfach-Import)
### Problembeschreibung
- [x] Der OA-Aufsatz wird nicht als solcher mit Notiz in Zotero gekennzeichnet.
- [x] Der Zusatztitel wird nicht nach Zotero importiert.
- [x] Es wird nur das deutsche Abstract importiert.

| 1.0 | ISSN 2699-3414 | Berliner Theologische Zeitschrift (DeGruyter) | OA, Zusatztitel, Abstract - #### URL
https://www.degruyter.com/document/doi/10.1515/bthz-2021-0004/html
#### Import-Translator
ubtue_DeGruyter.js
(Einzel- und Mehrfach-Import)
### Problembeschreibung
- [x] Der OA-Aufsatz wird nicht als solcher mit Notiz in Zotero gekennzeichnet.
- [x] Der Zusatztitel wird nicht nach Zotero importiert.
- [x] Es wird nur das deutsche Abstract importiert.

| non_priority | issn berliner theologische zeitschrift degruyter oa zusatztitel abstract url import translator ubtue degruyter js einzel und mehrfach import problembeschreibung der oa aufsatz wird nicht als solcher mit notiz in zotero gekennzeichnet der zusatztitel wird nicht nach zotero importiert es wird nur das deutsche abstract importiert | 0 |
342,155 | 10,312,718,472 | IssuesEvent | 2019-08-29 20:35:00 | SIGBlockchain/project_aurum | https://api.github.com/repos/SIGBlockchain/project_aurum | closed | Client update with pending pool | Priority: Critical Type: Enhancement Type: Invalid | Handle case where client sends update request when they have pending contracts. It should check the pending pool for the wallet metadata first and update based on that or proceed normally.
- [x] Add pending pool map to `HandleAccountInfoRequest`
- [x] In `HandleAccountInfoRequest`, first check if `var walletAddress` is a key in the pending pool map. If it is, the `accInfo` struct should be populated with the `walletAddress`, pending balance, and pending state nonce. Otherwise, it should proceed as it is already implemented.
- [x] Add the `pendingLock` as a parameter, just like in `HandleContractRequest`
- [x] Surround the section that uses the pending pool map with `Lock` and `Unlock` calls.
- [x] Add a test case that supports a scenario with an account info request to an account that is present in the passed in pending pool map
- [x] Refactor any usages in the repository of `HandleAccountInfoRequest` | 1.0 | Client update with pending pool - Handle case where client sends update request when they have pending contracts. It should check the pending pool for the wallet metadata first and update based on that or proceed normally.
- [x] Add pending pool map to `HandleAccountInfoRequest`
- [x] In `HandleAccountInfoRequest`, first check if `var walletAddress` is a key in the pending pool map. If it is, the `accInfo` struct should be populated with the `walletAddress`, pending balance, and pending state nonce. Otherwise, it should proceed as it is already implemented.
- [x] Add the `pendingLock` as a parameter, just like in `HandleContractRequest`
- [x] Surround the section that uses the pending pool map with `Lock` and `Unlock` calls.
- [x] Add a test case that supports a scenario with an account info request to an account that is present in the passed in pending pool map
- [x] Refactor any usages in the repository of `HandleAccountInfoRequest` | priority | client update with pending pool handle case where client sends update request when they have pending contracts it should check the pending pool for the wallet metadata first and update based on that or proceed normally add pending pool map to handleaccountinforequest in handleaccountinforequest first check if var walletaddress is a key in the pending pool map if it is the accinfo struct should be populated with the walletaddress pending balance and pending state nonce otherwise it should proceed as it is already implemented add the pendinglock as a parameter just like in handlecontractrequest surround the section that uses the pending pool map with lock and unlock calls add a test case that supports a scenario with an account info request to an account that is present in the passed in pending pool map refactor any usages in the repository of handleaccountinforequest | 1 |
421,048 | 28,307,802,100 | IssuesEvent | 2023-04-10 12:48:20 | bounswe/bounswe2023group6 | https://api.github.com/repos/bounswe/bounswe2023group6 | opened | Forming an individual report for milestone 1 | type: documentation priority: high status: inprogress area: milestone | ### Problem
As a part of the milestone report 1, each team member is required to create an Individual Contribution Report.
### Solution
I will create my individual contribution report . The contribution report will include:
- Member: Info about myself (name, group)
- Responsibilities: Overall description of the responsibilities that are assigned to me
- Main contributions: Overall description of my contributions to the project until
- Milestone. Provide the links to your work and related issues in your project repository,
- Management related significant issues: My issues that contribute to the
management of our software project (Please only lists the most-significant ones, we DO track all your issues separately.)
- Additional information (optional): Further relevant information related to my contributions
### Documentation
_No response_
### Additional notes
_No response_
### Reviewers
_No response_
### Deadline
10.04.2023 - Monday - 23.59 | 1.0 | Forming an individual report for milestone 1 - ### Problem
As a part of the milestone report 1, each team member is required to create an Individual Contribution Report.
### Solution
I will create my individual contribution report . The contribution report will include:
- Member: Info about myself (name, group)
- Responsibilities: Overall description of the responsibilities that are assigned to me
- Main contributions: Overall description of my contributions to the project until
- Milestone. Provide the links to your work and related issues in your project repository,
- Management related significant issues: My issues that contribute to the
management of our software project (Please only lists the most-significant ones, we DO track all your issues separately.)
- Additional information (optional): Further relevant information related to my contributions
### Documentation
_No response_
### Additional notes
_No response_
### Reviewers
_No response_
### Deadline
10.04.2023 - Monday - 23.59 | non_priority | forming an individual report for milestone problem as a part of the milestone report each team member is required to create an individual contribution report solution i will create my individual contribution report the contribution report will include member info about myself name group responsibilities overall description of the responsibilities that are assigned to me main contributions overall description of my contributions to the project until milestone provide the links to your work and related issues in your project repository management related significant issues my issues that contribute to the management of our software project please only lists the most significant ones we do track all your issues separately additional information optional further relevant information related to my contributions documentation no response additional notes no response reviewers no response deadline monday | 0 |
239,808 | 19,916,343,998 | IssuesEvent | 2022-01-25 23:17:00 | microsoft/vscode | https://api.github.com/repos/microsoft/vscode | closed | Test Unicode Highlighting - Allowed Locales | testplan-item | Refs: #138767
- [x] anyOS @deepak1556
- [x] anyOS @joaomoreno (windows)
Complexity: 4
[Create Issue](https://github.com/microsoft/vscode/issues/new?body=Testing+%23141338%0A%0A&assignees=hediet)
---
## Locale Override
* Ensure neither your OS locale nor VS Code locale is Russian
* Paste the cyrillic `А` into a JS document (not in a comment)
* Observe that it gets highlighted
* Hover on it, click on adjust settings and allow common characters from the locale "ru"
* Observe that no cyrillic characters (e.g. `Х`) are highlighted anymore
## Automatic OS Locale Detection
* Remove the property `"editor.unicodeHighlight.allowedLocales"` from your settings.
* Set your OS language to Russian
* Observe that no cyrillic characters in JS documents are highlighted
## Automatic VS Code Locale Detection
* Remove the property `"editor.unicodeHighlight.allowedLocales"` from your settings.
* Ensure your OS locale is not Russian (e.g. English)
* Install the russian language pack in VS Code
* Observe that no cyrillic characters in JS documents are highlighted
| 1.0 | Test Unicode Highlighting - Allowed Locales - Refs: #138767
- [x] anyOS @deepak1556
- [x] anyOS @joaomoreno (windows)
Complexity: 4
[Create Issue](https://github.com/microsoft/vscode/issues/new?body=Testing+%23141338%0A%0A&assignees=hediet)
---
## Locale Override
* Ensure neither your OS locale nor VS Code locale is Russian
* Paste the cyrillic `А` into a JS document (not in a comment)
* Observe that it gets highlighted
* Hover on it, click on adjust settings and allow common characters from the locale "ru"
* Observe that no cyrillic characters (e.g. `Х`) are highlighted anymore
## Automatic OS Locale Detection
* Remove the property `"editor.unicodeHighlight.allowedLocales"` from your settings.
* Set your OS language to Russian
* Observe that no cyrillic characters in JS documents are highlighted
## Automatic VS Code Locale Detection
* Remove the property `"editor.unicodeHighlight.allowedLocales"` from your settings.
* Ensure your OS locale is not Russian (e.g. English)
* Install the russian language pack in VS Code
* Observe that no cyrillic characters in JS documents are highlighted
| non_priority | test unicode highlighting allowed locales refs anyos anyos joaomoreno windows complexity locale override ensure neither your os locale nor vs code locale is russian paste the cyrillic а into a js document not in a comment observe that it gets highlighted hover on it click on adjust settings and allow common characters from the locale ru observe that no cyrillic characters e g х are highlighted anymore automatic os locale detection remove the property editor unicodehighlight allowedlocales from your settings set your os language to russian observe that no cyrillic characters in js documents are highlighted automatic vs code locale detection remove the property editor unicodehighlight allowedlocales from your settings ensure your os locale is not russian e g english install the russian language pack in vs code observe that no cyrillic characters in js documents are highlighted | 0 |
77,169 | 21,689,900,419 | IssuesEvent | 2022-05-09 14:31:36 | damccorm/test-migration-target | https://api.github.com/repos/damccorm/test-migration-target | opened | Improve docker-pull-licenses trigger rule | P3 improvement build-system | Now license pulling is triggered at Jenkins test whenever a Java or Python SDK docker image is created. We can improve this to trigger the job only when there are dependency changes.
Imported from Jira [BEAM-9866](https://issues.apache.org/jira/browse/BEAM-9866). Original Jira may contain additional context.
Reported by: hannahjiang. | 1.0 | Improve docker-pull-licenses trigger rule - Now license pulling is triggered at Jenkins test whenever a Java or Python SDK docker image is created. We can improve this to trigger the job only when there are dependency changes.
Imported from Jira [BEAM-9866](https://issues.apache.org/jira/browse/BEAM-9866). Original Jira may contain additional context.
Reported by: hannahjiang. | non_priority | improve docker pull licenses trigger rule now license pulling is triggered at jenkins test whenever a java or python sdk docker image is created we can improve this to trigger the job only when there are dependency changes imported from jira original jira may contain additional context reported by hannahjiang | 0 |
170,572 | 6,447,841,435 | IssuesEvent | 2017-08-14 09:20:09 | intel-analytics/BigDL | https://api.github.com/repos/intel-analytics/BigDL | closed | rename docs src folder to sync with the side bar titles | document low priority | This makes it easier for people to find the corresponding docs, e.g
- rename `UserGuide` to `ScalaUserGuide`
- rename `PythonSupport` to `PythonUserGuide`
- rename `APIdocs` to `APIGuide` | 1.0 | rename docs src folder to sync with the side bar titles - This makes it easier for people to find the corresponding docs, e.g
- rename `UserGuide` to `ScalaUserGuide`
- rename `PythonSupport` to `PythonUserGuide`
- rename `APIdocs` to `APIGuide` | priority | rename docs src folder to sync with the side bar titles this makes it easier for people to find the corresponding docs e g rename userguide to scalauserguide rename pythonsupport to pythonuserguide rename apidocs to apiguide | 1 |
238,848 | 7,783,490,922 | IssuesEvent | 2018-06-06 10:02:48 | DarkPacks/SevTech-Ages | https://api.github.com/repos/DarkPacks/SevTech-Ages | closed | Twilight Forest Ur-Ghast Tower/random Structures Issue | Investigate Further Priority: Medium Type: Bug |
## Issue / Bug
Random structures/dungeons spawning within twilight forest dungeons. This one completely broke this Ur-ghast tower. We were able to dig around the locks, Ghast slaughtered the tower. etc.
https://clips.twitch.tv/DrabSmoothWhaleDuDudu
https://clips.twitch.tv/ResoluteZealousJayDoritosChip
## Expected Behavior
The tower should not be destructible/buildable inside.
## Possible Solution
Not sure if it's possible to push random structures further from twilight forest essential structures?
## Steps to Reproduce (for bugs)
Not Slaughter for the RNG Gods
Get Rekt by RNG Gods
Apologize to RNG Gods :P
## Context
Trying to complete the twilight forest quest, and trying to hit age 3 (Blood tears for fiery ingots) (the first hydra we killed also had 0 drops)
## Client Information
<!--- Include as many relevant details about the environment you experienced the bug in -->
* Modpack Version: 3.0.5 (world was created in 3.0.3, Twilight created in 3.0.5)
* Java Version: 8
* Launcher Used: Twitch App
| 1.0 | Twilight Forest Ur-Ghast Tower/random Structures Issue -
## Issue / Bug
Random structures/dungeons spawning within twilight forest dungeons. This one completely broke this Ur-ghast tower. We were able to dig around the locks, Ghast slaughtered the tower. etc.
https://clips.twitch.tv/DrabSmoothWhaleDuDudu
https://clips.twitch.tv/ResoluteZealousJayDoritosChip
## Expected Behavior
The tower should not be destructible/buildable inside.
## Possible Solution
Not sure if it's possible to push random structures further from twilight forest essential structures?
## Steps to Reproduce (for bugs)
Not Slaughter for the RNG Gods
Get Rekt by RNG Gods
Apologize to RNG Gods :P
## Context
Trying to complete the twilight forest quest, and trying to hit age 3 (Blood tears for fiery ingots) (the first hydra we killed also had 0 drops)
## Client Information
<!--- Include as many relevant details about the environment you experienced the bug in -->
* Modpack Version: 3.0.5 (world was created in 3.0.3, Twilight created in 3.0.5)
* Java Version: 8
* Launcher Used: Twitch App
| priority | twilight forest ur ghast tower random structures issue issue bug random structures dungeons spawning within twilight forest dungeons this one completely broke this ur ghast tower we were able to dig around the locks ghast slaughtered the tower etc expected behavior the tower should not be destructible buildable inside possible solution not sure if it s possible to push random structures further from twilight forest essential structures steps to reproduce for bugs not slaughter for the rng gods get rekt by rng gods apologize to rng gods p context trying to complete the twilight forest quest and trying to hit age blood tears for fiery ingots the first hydra we killed also had drops client information modpack version world was created in twilight created in java version launcher used twitch app | 1 |
205,954 | 15,701,413,666 | IssuesEvent | 2021-03-26 11:09:37 | enonic/app-contentstudio | https://api.github.com/repos/enonic/app-contentstudio | opened | Unsaved new added x-data should affect validity of the content | Bug Not in Changelog Test is Failing | 1. Specify the required text area in `x-data`
```
<?xml version="1.0" encoding="UTF-8"?>
<x-data xmlns="urn:enonic:xp:model:1.0">
<display-name>Text Area x-data</display-name>
<form>
<input name="textarea" type="TextArea">
<label>Text Area</label>
<occurrences minimum="1" maximum="1"/>
</input>
</form>
</x-data>
```
2. Specify this x-data in `site.xml` for double content, for example
3. Open new wizard with this x-data
4. Fill in the display name input - this content gets valid - OK
5. Click on `enable x-data`

BUG: This content should be not valid after enabled x-data with required input | 1.0 | Unsaved new added x-data should affect validity of the content - 1. Specify the required text area in `x-data`
```
<?xml version="1.0" encoding="UTF-8"?>
<x-data xmlns="urn:enonic:xp:model:1.0">
<display-name>Text Area x-data</display-name>
<form>
<input name="textarea" type="TextArea">
<label>Text Area</label>
<occurrences minimum="1" maximum="1"/>
</input>
</form>
</x-data>
```
2. Specify this x-data in `site.xml` for double content, for example
3. Open new wizard with this x-data
4. Fill in the display name input - this content gets valid - OK
5. Click on `enable x-data`

BUG: This content should be not valid after enabled x-data with required input | non_priority | unsaved new added x data should affect validity of the content specify the required text area in x data text area x data text area specify this x data in site xml for double content for example open new wizard with this x data fill in the display name input this content gets valid ok click on enable x data bug this content should be not valid after enabled x data with required input | 0 |
26,540 | 4,231,500,846 | IssuesEvent | 2016-07-04 16:18:47 | lo-co/exscalabar_server | https://api.github.com/repos/lo-co/exscalabar_server | closed | Init Power turns on wrong breakers | bug READY FOR TESTING | The order of the digital outputs in Init Power.vi different to MAX. | 1.0 | Init Power turns on wrong breakers - The order of the digital outputs in Init Power.vi different to MAX. | non_priority | init power turns on wrong breakers the order of the digital outputs in init power vi different to max | 0 |
370,865 | 25,927,260,191 | IssuesEvent | 2022-12-16 06:17:11 | iltae/Todo-FE-Framework | https://api.github.com/repos/iltae/Todo-FE-Framework | closed | Todo App 요구사항 명세서 작성 | documentation | ### 만들고자 하는 기능이 무엇인가요?
Todo 생성 기능
### 해당 기능을 구현하기 위해 할 일이 무엇인가요?
1. [X] CRUD 기능 구현한 컴퍼넌트 구성
2. [X] CSS로 깔끔하게 꾸미기
3. [ ] 서버에 연결하기
### 예상 작업 시간
100h
| 1.0 | Todo App 요구사항 명세서 작성 - ### 만들고자 하는 기능이 무엇인가요?
Todo 생성 기능
### 해당 기능을 구현하기 위해 할 일이 무엇인가요?
1. [X] CRUD 기능 구현한 컴퍼넌트 구성
2. [X] CSS로 깔끔하게 꾸미기
3. [ ] 서버에 연결하기
### 예상 작업 시간
100h
| non_priority | todo app 요구사항 명세서 작성 만들고자 하는 기능이 무엇인가요 todo 생성 기능 해당 기능을 구현하기 위해 할 일이 무엇인가요 crud 기능 구현한 컴퍼넌트 구성 css로 깔끔하게 꾸미기 서버에 연결하기 예상 작업 시간 | 0 |
298,962 | 9,203,816,318 | IssuesEvent | 2019-03-08 04:20:59 | LouisBenjamin/UC3-Team-Project | https://api.github.com/repos/LouisBenjamin/UC3-Team-Project | closed | #11 Store information | 1-point High Priority User Story | User Story:
As a blog user, I want the website to store my information to let other users see. #23 #24
- [X] Tasks in #24
- [ ] Acceptance Test #67 | 1.0 | #11 Store information - User Story:
As a blog user, I want the website to store my information to let other users see. #23 #24
- [X] Tasks in #24
- [ ] Acceptance Test #67 | priority | store information user story as a blog user i want the website to store my information to let other users see tasks in acceptance test | 1 |
438,729 | 12,643,828,754 | IssuesEvent | 2020-06-16 10:28:50 | way-of-elendil/3.3.5 | https://api.github.com/repos/way-of-elendil/3.3.5 | opened | Quete: Reprendre Achérus - Problème phasage | bug priority-medium type-quest | **Description**
Cas où le joueur se retrouve en phase 1 après avoir rendu la lumière de l'aube
**Étapes de reproduction**
- .q a https://woehead.way-of-elendil.fr/?quest=12801 et lancer l'event
- attendre la fin de l'event et rendre la quête
_Pendant la lecture de https://woehead.way-of-elendil.fr/?quest=13165 (ne pas prendre la quête), Darion despawn_
- Porte de la mort et le joueur se retrouve en phase 1
(peut-etre qu'il y a une histoire de déco reco à un moment aussi)
**Comportement attendu**
Le spell fait pas changer pas de phase ?
| 1.0 | Quete: Reprendre Achérus - Problème phasage - **Description**
Cas où le joueur se retrouve en phase 1 après avoir rendu la lumière de l'aube
**Étapes de reproduction**
- .q a https://woehead.way-of-elendil.fr/?quest=12801 et lancer l'event
- attendre la fin de l'event et rendre la quête
_Pendant la lecture de https://woehead.way-of-elendil.fr/?quest=13165 (ne pas prendre la quête), Darion despawn_
- Porte de la mort et le joueur se retrouve en phase 1
(peut-etre qu'il y a une histoire de déco reco à un moment aussi)
**Comportement attendu**
Le spell fait pas changer pas de phase ?
| priority | quete reprendre achérus problème phasage description cas où le joueur se retrouve en phase après avoir rendu la lumière de l aube étapes de reproduction q a et lancer l event attendre la fin de l event et rendre la quête pendant la lecture de ne pas prendre la quête darion despawn porte de la mort et le joueur se retrouve en phase peut etre qu il y a une histoire de déco reco à un moment aussi comportement attendu le spell fait pas changer pas de phase | 1 |
136,830 | 19,985,283,640 | IssuesEvent | 2022-01-30 15:12:16 | kodadot/nft-gallery | https://api.github.com/repos/kodadot/nft-gallery | closed | Use only border-top on control buttons/actions | $ redesign-seeds item v2.2 | Time to lightweight our UI for easier adoption.
- Let's remove the border and keep only border-top like on pic1
- Use border-top on emojis as well
- remove the white shadow from accordion/cards at price chart and history
- rename "Price Chart" -> "Chart"
- at history button, language and profile button as well, pic4
Test case https://kodadot.xyz/rmrk/gallery/11079135-00da54310732f6437d-QBCVI-ONI_10125-0000000000000016




| 1.0 | Use only border-top on control buttons/actions - Time to lightweight our UI for easier adoption.
- Let's remove the border and keep only border-top like on pic1
- Use border-top on emojis as well
- remove the white shadow from accordion/cards at price chart and history
- rename "Price Chart" -> "Chart"
- at history button, language and profile button as well, pic4
Test case https://kodadot.xyz/rmrk/gallery/11079135-00da54310732f6437d-QBCVI-ONI_10125-0000000000000016




| non_priority | use only border top on control buttons actions time to lightweight our ui for easier adoption let s remove the border and keep only border top like on use border top on emojis as well remove the white shadow from accordion cards at price chart and history rename price chart chart at history button language and profile button as well test case | 0 |
71,300 | 9,488,724,627 | IssuesEvent | 2019-04-22 20:21:52 | dotnet/machinelearning | https://api.github.com/repos/dotnet/machinelearning | opened | AveragedPerceptronTrainer's output schema is not correct | bug documentation | It should be
```
private protected override SchemaShape.Column[] GetOutputColumnsCore(SchemaShape inputSchema)
{
return new[]
{
// REVIEW AP is currently not calibrating. Add the probability column after fixing the behavior.
new SchemaShape.Column(DefaultColumnNames.Score, SchemaShape.Column.VectorKind.Scalar, NumberDataViewType.Single, false, new SchemaShape(AnnotationUtils.GetTrainerOutputAnnotation())),
new SchemaShape.Column(DefaultColumnNames.PredictedLabel, SchemaShape.Column.VectorKind.Scalar, BooleanDataViewType.Instance, false, new SchemaShape(AnnotationUtils.GetTrainerOutputAnnotation()))
};
}
```
but we accidentally added `Probability`. | 1.0 | AveragedPerceptronTrainer's output schema is not correct - It should be
```
private protected override SchemaShape.Column[] GetOutputColumnsCore(SchemaShape inputSchema)
{
return new[]
{
// REVIEW AP is currently not calibrating. Add the probability column after fixing the behavior.
new SchemaShape.Column(DefaultColumnNames.Score, SchemaShape.Column.VectorKind.Scalar, NumberDataViewType.Single, false, new SchemaShape(AnnotationUtils.GetTrainerOutputAnnotation())),
new SchemaShape.Column(DefaultColumnNames.PredictedLabel, SchemaShape.Column.VectorKind.Scalar, BooleanDataViewType.Instance, false, new SchemaShape(AnnotationUtils.GetTrainerOutputAnnotation()))
};
}
```
but we accidentally added `Probability`. | non_priority | averagedperceptrontrainer s output schema is not correct it should be private protected override schemashape column getoutputcolumnscore schemashape inputschema return new review ap is currently not calibrating add the probability column after fixing the behavior new schemashape column defaultcolumnnames score schemashape column vectorkind scalar numberdataviewtype single false new schemashape annotationutils gettraineroutputannotation new schemashape column defaultcolumnnames predictedlabel schemashape column vectorkind scalar booleandataviewtype instance false new schemashape annotationutils gettraineroutputannotation but we accidentally added probability | 0 |
272,210 | 8,500,262,032 | IssuesEvent | 2018-10-29 19:22:10 | nprapps/elections18-graphics | https://api.github.com/repos/nprapps/elections18-graphics | reopened | State pages: Only show the board key on the "key results" tab | effort:light priority:normal | It's irrelevant to all the other views. | 1.0 | State pages: Only show the board key on the "key results" tab - It's irrelevant to all the other views. | priority | state pages only show the board key on the key results tab it s irrelevant to all the other views | 1 |
338,315 | 10,227,398,576 | IssuesEvent | 2019-08-16 20:39:42 | bcgov/entity | https://api.github.com/repos/bcgov/entity | closed | UI - Add actions list and previous name data (directors, mailing address) | Coops Priority2 | ### UI - Add actions list and previous name data (directors, mailing address)
## Description:
Per #1004.
Ready to Build (DoR):
- [ ] Stakeholders have approved
- [ ] User story completed
- [ ] What are the dependencies
- [ ] Acceptance criteria has been defined (happy path, known sad paths)
- [ ] Validation rules defined (UI, Data, Role-Action)
- [ ] Is a formal UAT required
Acceptance / DoD:
- [ ] Design / Solution accepted by Product Owner
- [ ] Test coverage acceptable
- [ ] Peer Reviewed
- [ ] Accessibility reviewed and acceptable [checklist](https://github.com/bcgov/entity/docs/coding-standards/accessibility.md)
- [ ] UX Approved
- [ ] PR Accepted
- [ ] Production burn in completed
| 1.0 | UI - Add actions list and previous name data (directors, mailing address) - ### UI - Add actions list and previous name data (directors, mailing address)
## Description:
Per #1004.
Ready to Build (DoR):
- [ ] Stakeholders have approved
- [ ] User story completed
- [ ] What are the dependencies
- [ ] Acceptance criteria has been defined (happy path, known sad paths)
- [ ] Validation rules defined (UI, Data, Role-Action)
- [ ] Is a formal UAT required
Acceptance / DoD:
- [ ] Design / Solution accepted by Product Owner
- [ ] Test coverage acceptable
- [ ] Peer Reviewed
- [ ] Accessibility reviewed and acceptable [checklist](https://github.com/bcgov/entity/docs/coding-standards/accessibility.md)
- [ ] UX Approved
- [ ] PR Accepted
- [ ] Production burn in completed
| priority | ui add actions list and previous name data directors mailing address ui add actions list and previous name data directors mailing address description per ready to build dor stakeholders have approved user story completed what are the dependencies acceptance criteria has been defined happy path known sad paths validation rules defined ui data role action is a formal uat required acceptance dod design solution accepted by product owner test coverage acceptable peer reviewed accessibility reviewed and acceptable ux approved pr accepted production burn in completed | 1 |
210,202 | 7,186,808,978 | IssuesEvent | 2018-02-02 01:12:26 | sul-dlss/preservation_catalog | https://api.github.com/repos/sul-dlss/preservation_catalog | closed | (PC) ensure workflows message always includes storage disk (and version?) (see also #539) | blocking! catalog to moab checksum validation high priority moab to catalog needs review | These things are in the message prefix, but they should be included in the workflows error:
- storage disk
- ? version we're checking for ?
related to #539 | 1.0 | (PC) ensure workflows message always includes storage disk (and version?) (see also #539) - These things are in the message prefix, but they should be included in the workflows error:
- storage disk
- ? version we're checking for ?
related to #539 | priority | pc ensure workflows message always includes storage disk and version see also these things are in the message prefix but they should be included in the workflows error storage disk version we re checking for related to | 1 |
418,694 | 12,202,170,825 | IssuesEvent | 2020-04-30 08:31:26 | code4romania/stam-acasa | https://api.github.com/repos/code4romania/stam-acasa | closed | Add more padding in my profile layout | front-end help wanted high-priority | In `https://dev.stamacasa.ro/account/me`
Add padding between:
- paragraph text `.....Poți completa formularul aici.` and title `Istoric Simptome`
- `Istoric Simptome` data and footer | 1.0 | Add more padding in my profile layout - In `https://dev.stamacasa.ro/account/me`
Add padding between:
- paragraph text `.....Poți completa formularul aici.` and title `Istoric Simptome`
- `Istoric Simptome` data and footer | priority | add more padding in my profile layout in add padding between paragraph text poți completa formularul aici and title istoric simptome istoric simptome data and footer | 1 |
301,975 | 26,114,000,509 | IssuesEvent | 2022-12-28 02:00:28 | unifyai/ivy | https://api.github.com/repos/unifyai/ivy | closed | Fix jax_devicearray.test_jax_devicearray__neg_ | JAX Frontend Sub Task Failing Test | | | |
|---|---|
|tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/3715988985/jobs/6301794542" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-failure-red></a>
| 1.0 | Fix jax_devicearray.test_jax_devicearray__neg_ - | | |
|---|---|
|tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/3715988985/jobs/6301794542" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-failure-red></a>
| non_priority | fix jax devicearray test jax devicearray neg tensorflow img src | 0 |
153,744 | 19,708,581,041 | IssuesEvent | 2022-01-13 01:42:42 | artsking/linux-4.19.72_CVE-2020-14386 | https://api.github.com/repos/artsking/linux-4.19.72_CVE-2020-14386 | opened | CVE-2020-27152 (Medium) detected in linux-yoctov5.4.51 | security vulnerability | ## CVE-2020-27152 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-yoctov5.4.51</b></p></summary>
<p>
<p>Yocto Linux Embedded kernel</p>
<p>Library home page: <a href=https://git.yoctoproject.org/git/linux-yocto>https://git.yoctoproject.org/git/linux-yocto</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>/arch/x86/kvm/ioapic.c</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/arch/x86/kvm/ioapic.c</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
An issue was discovered in ioapic_lazy_update_eoi in arch/x86/kvm/ioapic.c in the Linux kernel before 5.9.2. It has an infinite loop related to improper interaction between a resampler and edge triggering, aka CID-77377064c3a9.
<p>Publish Date: 2020-11-06
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-27152>CVE-2020-27152</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://github.com/gregkh/linux/releases/tag/v5.9.2">https://github.com/gregkh/linux/releases/tag/v5.9.2</a></p>
<p>Release Date: 2020-10-15</p>
<p>Fix Resolution: v5.9.2</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2020-27152 (Medium) detected in linux-yoctov5.4.51 - ## CVE-2020-27152 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-yoctov5.4.51</b></p></summary>
<p>
<p>Yocto Linux Embedded kernel</p>
<p>Library home page: <a href=https://git.yoctoproject.org/git/linux-yocto>https://git.yoctoproject.org/git/linux-yocto</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>/arch/x86/kvm/ioapic.c</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/arch/x86/kvm/ioapic.c</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
An issue was discovered in ioapic_lazy_update_eoi in arch/x86/kvm/ioapic.c in the Linux kernel before 5.9.2. It has an infinite loop related to improper interaction between a resampler and edge triggering, aka CID-77377064c3a9.
<p>Publish Date: 2020-11-06
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-27152>CVE-2020-27152</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://github.com/gregkh/linux/releases/tag/v5.9.2">https://github.com/gregkh/linux/releases/tag/v5.9.2</a></p>
<p>Release Date: 2020-10-15</p>
<p>Fix Resolution: v5.9.2</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_priority | cve medium detected in linux cve medium severity vulnerability vulnerable library linux yocto linux embedded kernel library home page a href found in base branch master vulnerable source files arch kvm ioapic c arch kvm ioapic c vulnerability details an issue was discovered in ioapic lazy update eoi in arch kvm ioapic c in the linux kernel before it has an infinite loop related to improper interaction between a resampler and edge triggering aka cid 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 whitesource | 0 |
3,591 | 2,538,774,771 | IssuesEvent | 2015-01-27 10:11:12 | newca12/gapt | https://api.github.com/repos/newca12/gapt | closed | pruning cut-configurations | 2–5 stars Component-CERes imported Milestone-Release4.0 Priority-High Type-Feature | _From [cdunc...@gmail.com](https://code.google.com/u/102976883554608245195/) on October 03, 2011 15:06:53_
It should prune the clause set in a way that only relevant cut-configurations appear in the computation of the clause set.
_Original issue: http://code.google.com/p/gapt/issues/detail?id=183_ | 1.0 | pruning cut-configurations - _From [cdunc...@gmail.com](https://code.google.com/u/102976883554608245195/) on October 03, 2011 15:06:53_
It should prune the clause set in a way that only relevant cut-configurations appear in the computation of the clause set.
_Original issue: http://code.google.com/p/gapt/issues/detail?id=183_ | priority | pruning cut configurations from on october it should prune the clause set in a way that only relevant cut configurations appear in the computation of the clause set original issue | 1 |
63,885 | 6,887,137,117 | IssuesEvent | 2017-11-21 22:07:00 | cfpb/capital-framework | https://api.github.com/repos/cfpb/capital-framework | closed | Set up linting | enhancement priority: medium Testing | We need both CSS and JS linting. There is an open question on when to run them. The options we are considering are:
1. Running during each `grunt compile`
2. Running only on pre-commit.
**Research**
- Grunt linting tips
[Eliminating Code Smell with Grunt](http://flippinawesome.org/2013/12/02/eliminating-code-smell-with-grunt/)
- Pre-commit tests
[Setting up pre-commit tests with Git](http://dduvnjak.pw/adding-pre-commit-tests-with-git)
| 1.0 | Set up linting - We need both CSS and JS linting. There is an open question on when to run them. The options we are considering are:
1. Running during each `grunt compile`
2. Running only on pre-commit.
**Research**
- Grunt linting tips
[Eliminating Code Smell with Grunt](http://flippinawesome.org/2013/12/02/eliminating-code-smell-with-grunt/)
- Pre-commit tests
[Setting up pre-commit tests with Git](http://dduvnjak.pw/adding-pre-commit-tests-with-git)
| non_priority | set up linting we need both css and js linting there is an open question on when to run them the options we are considering are running during each grunt compile running only on pre commit research grunt linting tips pre commit tests | 0 |
33,050 | 2,761,787,840 | IssuesEvent | 2015-04-28 19:04:09 | DDMAL/Rodan | https://api.github.com/repos/DDMAL/Rodan | closed | resource_type and project not being saved in Resource | Location: Server Priority: Blocker Type: Bug | When saving a new resource, the resource_type and project fields are not being saved. A quick look at rodan/views/resource.py shows that the resource_type is checked, but never associated with the resource. As for the project, there doesn't seem to be any check.
https://github.com/DDMAL/Rodan/blob/develop/rodan/views/resource.py#L79-L93 | 1.0 | resource_type and project not being saved in Resource - When saving a new resource, the resource_type and project fields are not being saved. A quick look at rodan/views/resource.py shows that the resource_type is checked, but never associated with the resource. As for the project, there doesn't seem to be any check.
https://github.com/DDMAL/Rodan/blob/develop/rodan/views/resource.py#L79-L93 | priority | resource type and project not being saved in resource when saving a new resource the resource type and project fields are not being saved a quick look at rodan views resource py shows that the resource type is checked but never associated with the resource as for the project there doesn t seem to be any check | 1 |
426,065 | 12,366,958,229 | IssuesEvent | 2020-05-18 11:25:32 | threefoldtech/jumpscaleX_threebot | https://api.github.com/repos/threefoldtech/jumpscaleX_threebot | closed | admin panel: when reserving capacity with chatflow, opening calendar shows date in the past | priority_minor type_bug | When creating a workload, expiry date is now shown as a calendar day, but flist chatflow shows timestamp in the past as proposed date. | 1.0 | admin panel: when reserving capacity with chatflow, opening calendar shows date in the past - When creating a workload, expiry date is now shown as a calendar day, but flist chatflow shows timestamp in the past as proposed date. | priority | admin panel when reserving capacity with chatflow opening calendar shows date in the past when creating a workload expiry date is now shown as a calendar day but flist chatflow shows timestamp in the past as proposed date | 1 |
55,783 | 13,683,655,828 | IssuesEvent | 2020-09-30 02:31:08 | mapbox/mapbox-navigation-ios | https://api.github.com/repos/mapbox/mapbox-navigation-ios | opened | Minimum deployment target warnings when linting CocoaPods podspec with Xcode 12 | - build CocoaPods | Xcode 12 raises build warnings about invalid minimum deployment targets in the project that CocoaPods generates. These warnings also cause CocoaPods to reject any attempt to push the MapboxCoreNavigation or MapboxNavigation pod to CocoaPods trunk.
These warnings are in addition to the linker error reported in #2665.
## Problem details
To validate the fix in #2662 for the CocoaPods linter error in https://github.com/mapbox/mapbox-navigation-ios/pull/2646#issuecomment-699028278, I tried pushing to a throwaway pod on CocoaPods trunk and ran into errors doing so with the combination of CocoaPods 1.10.0.rc.1 and Xcode 12:
```
$ pod trunk push test-1ec5-MapboxCoreNavigation.podspec
Updating spec repo `trunk`
Validating podspec
-> test-1ec5-MapboxCoreNavigation (1.0.0)
- ERROR | [iOS] xcodebuild: Returned an unsuccessful exit code. You can use `--verbose` for more information.
- NOTE | xcodebuild: note: Using new build system
- NOTE | xcodebuild: note: Building targets in parallel
- NOTE | xcodebuild: note: Using codesigning identity override: -
- NOTE | [iOS] xcodebuild: note: Planning build
- NOTE | [iOS] xcodebuild: note: Constructing build description
- NOTE | [iOS] xcodebuild: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.0.99. (in target 'Polyline' from project 'Pods')
- NOTE | xcodebuild: clang: error: linker command failed with exit code 1 (use -v to see invocation)
- NOTE | [iOS] xcodebuild: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.0.99. (in target 'MapboxMobileEvents' from project 'Pods')
- NOTE | [iOS] xcodebuild: warning: Skipping code signing because the target does not have an Info.plist file and one is not being generated automatically. (in target 'App' from project 'App')
[!] The spec did not pass validation, due to 1 error.
```
## Workaround
As a temporary workaround, I `xcode-select`ed Xcode 11.7 and tried again, this time successfully: CocoaPods/Specs@23ef62369f96659bc1c80a64ca3615509eabb329.
```
$ pod trunk push test-1ec5-MapboxCoreNavigation.podspec --allow-warnings
Updating spec repo `trunk`
Validating podspec
-> test-1ec5-MapboxCoreNavigation (1.0.0)
- NOTE | xcodebuild: note: Using new build system
- NOTE | xcodebuild: note: Building targets in parallel
- NOTE | [iOS] xcodebuild: note: Planning build
- NOTE | [iOS] xcodebuild: note: Constructing build description
- NOTE | [iOS] xcodebuild: note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted" (in target 'Polyline' from project 'Pods')
- NOTE | [iOS] xcodebuild: note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted" (in target 'MapboxMobileEvents' from project 'Pods')
- NOTE | [iOS] xcodebuild: note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted" (in target 'Turf' from project 'Pods')
- NOTE | [iOS] xcodebuild: note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted" (in target 'MapboxDirections' from project 'Pods')
- NOTE | [iOS] xcodebuild: note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted" (in target 'test-1ec5-MapboxCoreNavigation' from project 'Pods')
- NOTE | [iOS] xcodebuild: note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted" (in target 'Pods-App' from project 'Pods')
- NOTE | [iOS] xcodebuild: note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted" (in target 'App' from project 'App')
- NOTE | [iOS] xcodebuild: warning: Skipping code signing because the target does not have an Info.plist file and one is not being generated automatically. (in target 'App' from project 'App')
Updating spec repo `trunk`
--------------------------------------------------------------------------------
🎉 Congrats
🚀 test-1ec5-MapboxCoreNavigation (1.0.0) successfully published
📅 September 29th, 18:13
🌎 https://cocoapods.org/pods/test-1ec5-MapboxCoreNavigation
👍 Tell your friends!
--------------------------------------------------------------------------------
```
## Solution
The recommendation in https://github.com/CocoaPods/CocoaPods/issues/9884#issuecomment-695083729 is for each pod author to increase the minimum deployment target from iOS 8.0 to iOS 9.0 or above. Of the navigation SDK’s dependencies and transitive dependencies, two currently have a minimum deployment target of iOS 8.0:
* [ ] [Polyline](https://github.com/raphaelmor/Polyline/blob/8f7facc6a6fba33bc5ba7715667c18eb98b31001/Polyline.podspec#L62-L65)
* [ ] MapboxMobileEvents: fixed in mapbox/mapbox-events-ios#250 for [v0.11.0-beta.1](https://github.com/mapbox/mapbox-events-ios/releases/tag/v0.11.0-beta.1)
The MapboxMobileEvents fix is awkward: currently the navigation SDK depends on v0.10.2–v0.10._x_, but the fix is scheduled to land in v0.11.0. We can easily make the SDK compatible with v0.10.2–v0._x_ for CocoaPods users, but [due to a Carthage design decision](https://github.com/Carthage/Carthage/blob/master/Documentation/Artifacts.md#version-requirement), it isn’t possible to be compatible with that range of releases for Carthage users. We’d like to keep the MapboxMobileEvents dependency consistent between package managers if possible.
/cc @mapbox/navigation-ios @mapbox/mobile-telemetry-ios @frederoni @nagineni | 1.0 | Minimum deployment target warnings when linting CocoaPods podspec with Xcode 12 - Xcode 12 raises build warnings about invalid minimum deployment targets in the project that CocoaPods generates. These warnings also cause CocoaPods to reject any attempt to push the MapboxCoreNavigation or MapboxNavigation pod to CocoaPods trunk.
These warnings are in addition to the linker error reported in #2665.
## Problem details
To validate the fix in #2662 for the CocoaPods linter error in https://github.com/mapbox/mapbox-navigation-ios/pull/2646#issuecomment-699028278, I tried pushing to a throwaway pod on CocoaPods trunk and ran into errors doing so with the combination of CocoaPods 1.10.0.rc.1 and Xcode 12:
```
$ pod trunk push test-1ec5-MapboxCoreNavigation.podspec
Updating spec repo `trunk`
Validating podspec
-> test-1ec5-MapboxCoreNavigation (1.0.0)
- ERROR | [iOS] xcodebuild: Returned an unsuccessful exit code. You can use `--verbose` for more information.
- NOTE | xcodebuild: note: Using new build system
- NOTE | xcodebuild: note: Building targets in parallel
- NOTE | xcodebuild: note: Using codesigning identity override: -
- NOTE | [iOS] xcodebuild: note: Planning build
- NOTE | [iOS] xcodebuild: note: Constructing build description
- NOTE | [iOS] xcodebuild: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.0.99. (in target 'Polyline' from project 'Pods')
- NOTE | xcodebuild: clang: error: linker command failed with exit code 1 (use -v to see invocation)
- NOTE | [iOS] xcodebuild: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.0.99. (in target 'MapboxMobileEvents' from project 'Pods')
- NOTE | [iOS] xcodebuild: warning: Skipping code signing because the target does not have an Info.plist file and one is not being generated automatically. (in target 'App' from project 'App')
[!] The spec did not pass validation, due to 1 error.
```
## Workaround
As a temporary workaround, I `xcode-select`ed Xcode 11.7 and tried again, this time successfully: CocoaPods/Specs@23ef62369f96659bc1c80a64ca3615509eabb329.
```
$ pod trunk push test-1ec5-MapboxCoreNavigation.podspec --allow-warnings
Updating spec repo `trunk`
Validating podspec
-> test-1ec5-MapboxCoreNavigation (1.0.0)
- NOTE | xcodebuild: note: Using new build system
- NOTE | xcodebuild: note: Building targets in parallel
- NOTE | [iOS] xcodebuild: note: Planning build
- NOTE | [iOS] xcodebuild: note: Constructing build description
- NOTE | [iOS] xcodebuild: note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted" (in target 'Polyline' from project 'Pods')
- NOTE | [iOS] xcodebuild: note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted" (in target 'MapboxMobileEvents' from project 'Pods')
- NOTE | [iOS] xcodebuild: note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted" (in target 'Turf' from project 'Pods')
- NOTE | [iOS] xcodebuild: note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted" (in target 'MapboxDirections' from project 'Pods')
- NOTE | [iOS] xcodebuild: note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted" (in target 'test-1ec5-MapboxCoreNavigation' from project 'Pods')
- NOTE | [iOS] xcodebuild: note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted" (in target 'Pods-App' from project 'Pods')
- NOTE | [iOS] xcodebuild: note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted" (in target 'App' from project 'App')
- NOTE | [iOS] xcodebuild: warning: Skipping code signing because the target does not have an Info.plist file and one is not being generated automatically. (in target 'App' from project 'App')
Updating spec repo `trunk`
--------------------------------------------------------------------------------
🎉 Congrats
🚀 test-1ec5-MapboxCoreNavigation (1.0.0) successfully published
📅 September 29th, 18:13
🌎 https://cocoapods.org/pods/test-1ec5-MapboxCoreNavigation
👍 Tell your friends!
--------------------------------------------------------------------------------
```
## Solution
The recommendation in https://github.com/CocoaPods/CocoaPods/issues/9884#issuecomment-695083729 is for each pod author to increase the minimum deployment target from iOS 8.0 to iOS 9.0 or above. Of the navigation SDK’s dependencies and transitive dependencies, two currently have a minimum deployment target of iOS 8.0:
* [ ] [Polyline](https://github.com/raphaelmor/Polyline/blob/8f7facc6a6fba33bc5ba7715667c18eb98b31001/Polyline.podspec#L62-L65)
* [ ] MapboxMobileEvents: fixed in mapbox/mapbox-events-ios#250 for [v0.11.0-beta.1](https://github.com/mapbox/mapbox-events-ios/releases/tag/v0.11.0-beta.1)
The MapboxMobileEvents fix is awkward: currently the navigation SDK depends on v0.10.2–v0.10._x_, but the fix is scheduled to land in v0.11.0. We can easily make the SDK compatible with v0.10.2–v0._x_ for CocoaPods users, but [due to a Carthage design decision](https://github.com/Carthage/Carthage/blob/master/Documentation/Artifacts.md#version-requirement), it isn’t possible to be compatible with that range of releases for Carthage users. We’d like to keep the MapboxMobileEvents dependency consistent between package managers if possible.
/cc @mapbox/navigation-ios @mapbox/mobile-telemetry-ios @frederoni @nagineni | non_priority | minimum deployment target warnings when linting cocoapods podspec with xcode xcode raises build warnings about invalid minimum deployment targets in the project that cocoapods generates these warnings also cause cocoapods to reject any attempt to push the mapboxcorenavigation or mapboxnavigation pod to cocoapods trunk these warnings are in addition to the linker error reported in problem details to validate the fix in for the cocoapods linter error in i tried pushing to a throwaway pod on cocoapods trunk and ran into errors doing so with the combination of cocoapods rc and xcode pod trunk push test mapboxcorenavigation podspec updating spec repo trunk validating podspec test mapboxcorenavigation error xcodebuild returned an unsuccessful exit code you can use verbose for more information note xcodebuild note using new build system note xcodebuild note building targets in parallel note xcodebuild note using codesigning identity override note xcodebuild note planning build note xcodebuild note constructing build description note xcodebuild warning the ios simulator deployment target iphoneos deployment target is set to but the range of supported deployment target versions is to in target polyline from project pods note xcodebuild clang error linker command failed with exit code use v to see invocation note xcodebuild warning the ios simulator deployment target iphoneos deployment target is set to but the range of supported deployment target versions is to in target mapboxmobileevents from project pods note xcodebuild warning skipping code signing because the target does not have an info plist file and one is not being generated automatically in target app from project app the spec did not pass validation due to error workaround as a temporary workaround i xcode select ed xcode and tried again this time successfully cocoapods specs pod trunk push test mapboxcorenavigation podspec allow warnings updating spec repo trunk validating podspec test mapboxcorenavigation note xcodebuild note using new build system note xcodebuild note building targets in parallel note xcodebuild note planning build note xcodebuild note constructing build description note xcodebuild note execution policy exception registration failed and was skipped error domain nsposixerrordomain code operation not permitted in target polyline from project pods note xcodebuild note execution policy exception registration failed and was skipped error domain nsposixerrordomain code operation not permitted in target mapboxmobileevents from project pods note xcodebuild note execution policy exception registration failed and was skipped error domain nsposixerrordomain code operation not permitted in target turf from project pods note xcodebuild note execution policy exception registration failed and was skipped error domain nsposixerrordomain code operation not permitted in target mapboxdirections from project pods note xcodebuild note execution policy exception registration failed and was skipped error domain nsposixerrordomain code operation not permitted in target test mapboxcorenavigation from project pods note xcodebuild note execution policy exception registration failed and was skipped error domain nsposixerrordomain code operation not permitted in target pods app from project pods note xcodebuild note execution policy exception registration failed and was skipped error domain nsposixerrordomain code operation not permitted in target app from project app note xcodebuild warning skipping code signing because the target does not have an info plist file and one is not being generated automatically in target app from project app updating spec repo trunk 🎉 congrats 🚀 test mapboxcorenavigation successfully published 📅 september 🌎 👍 tell your friends solution the recommendation in is for each pod author to increase the minimum deployment target from ios to ios or above of the navigation sdk’s dependencies and transitive dependencies two currently have a minimum deployment target of ios mapboxmobileevents fixed in mapbox mapbox events ios for the mapboxmobileevents fix is awkward currently the navigation sdk depends on – x but the fix is scheduled to land in we can easily make the sdk compatible with – x for cocoapods users but it isn’t possible to be compatible with that range of releases for carthage users we’d like to keep the mapboxmobileevents dependency consistent between package managers if possible cc mapbox navigation ios mapbox mobile telemetry ios frederoni nagineni | 0 |
16,542 | 2,615,118,490 | IssuesEvent | 2015-03-01 05:44:09 | chrsmith/google-api-java-client | https://api.github.com/repos/chrsmith/google-api-java-client | opened | News-Search-json-sample | auto-migrated Priority-Low Type-Sample | ```
Which API and version (e.g. Google Calendar Data API version 2)?
Google News Search API
What format (e.g. JSON, Atom)?
JSON
What Authentation (e.g. OAuth, OAuth 2, Android, ClientLogin)?
Java environment (e.g. Java 6, Android 2.2, App Engine 1.3.7)?
Java 6
External references, such as API reference guide?
Please provide any additional information below.
```
Original issue reported on code.google.com by `willi...@gmail.com` on 30 Jan 2011 at 4:09 | 1.0 | News-Search-json-sample - ```
Which API and version (e.g. Google Calendar Data API version 2)?
Google News Search API
What format (e.g. JSON, Atom)?
JSON
What Authentation (e.g. OAuth, OAuth 2, Android, ClientLogin)?
Java environment (e.g. Java 6, Android 2.2, App Engine 1.3.7)?
Java 6
External references, such as API reference guide?
Please provide any additional information below.
```
Original issue reported on code.google.com by `willi...@gmail.com` on 30 Jan 2011 at 4:09 | priority | news search json sample which api and version e g google calendar data api version google news search api what format e g json atom json what authentation e g oauth oauth android clientlogin java environment e g java android app engine java external references such as api reference guide please provide any additional information below original issue reported on code google com by willi gmail com on jan at | 1 |
96,627 | 20,047,843,156 | IssuesEvent | 2022-02-03 00:16:41 | sympy/sympy | https://api.github.com/repos/sympy/sympy | opened | Internal import ordering in `concrete` | Code quality | The SymPy import ordering is a mess. To try to make it slightly better, I am aiming at defining a hierarchy among the submodules and within each submodule.
Starting with concrete, this is the current ordering:
digraph concrete {
gosper;
products -> delta;
summations -> delta;
expr_with_limits -> expr_with_intlimits;
products -> expr_with_limits [style=dashed];
summations -> expr_with_limits [style=dashed];
products -> guess;
summations -> products;
delta -> products [style=dashed];
expr_with_intlimits -> products;
expr_with_intlimits -> summations;
expr_with_limits -> summations;
gosper -> summations;
delta -> summations [style=dashed];
products -> summations [style=dashed];
}
A solid line means that file is imported at top level from the other file (e.g summations imports from gosper). A dashed line means the same, but on function/method level.
I think this one makes sense, but any suggestions for changes (summations and products are not obvious)? | 1.0 | Internal import ordering in `concrete` - The SymPy import ordering is a mess. To try to make it slightly better, I am aiming at defining a hierarchy among the submodules and within each submodule.
Starting with concrete, this is the current ordering:
digraph concrete {
gosper;
products -> delta;
summations -> delta;
expr_with_limits -> expr_with_intlimits;
products -> expr_with_limits [style=dashed];
summations -> expr_with_limits [style=dashed];
products -> guess;
summations -> products;
delta -> products [style=dashed];
expr_with_intlimits -> products;
expr_with_intlimits -> summations;
expr_with_limits -> summations;
gosper -> summations;
delta -> summations [style=dashed];
products -> summations [style=dashed];
}
A solid line means that file is imported at top level from the other file (e.g summations imports from gosper). A dashed line means the same, but on function/method level.
I think this one makes sense, but any suggestions for changes (summations and products are not obvious)? | non_priority | internal import ordering in concrete the sympy import ordering is a mess to try to make it slightly better i am aiming at defining a hierarchy among the submodules and within each submodule starting with concrete this is the current ordering digraph concrete gosper products delta summations delta expr with limits expr with intlimits products expr with limits summations expr with limits products guess summations products delta products expr with intlimits products expr with intlimits summations expr with limits summations gosper summations delta summations products summations a solid line means that file is imported at top level from the other file e g summations imports from gosper a dashed line means the same but on function method level i think this one makes sense but any suggestions for changes summations and products are not obvious | 0 |
272,915 | 20,763,343,690 | IssuesEvent | 2022-03-15 18:10:44 | ioos/bio_data_guide | https://api.github.com/repos/ioos/bio_data_guide | opened | `Location.FootprintWKT` length limitation? | documentation question | @TaikiSan21 had a good question regarding the `Location.FootprintWKT` term.
The [drifting bouy dataset](https://github.com/ioos/bio_data_guide/tree/main/datasets/drifting_bouy) has a large number of GPS coordinates and we are concerned about length limitations on how many characters of WKT OBIS will accept.
Any ideas? | 1.0 | `Location.FootprintWKT` length limitation? - @TaikiSan21 had a good question regarding the `Location.FootprintWKT` term.
The [drifting bouy dataset](https://github.com/ioos/bio_data_guide/tree/main/datasets/drifting_bouy) has a large number of GPS coordinates and we are concerned about length limitations on how many characters of WKT OBIS will accept.
Any ideas? | non_priority | location footprintwkt length limitation had a good question regarding the location footprintwkt term the has a large number of gps coordinates and we are concerned about length limitations on how many characters of wkt obis will accept any ideas | 0 |
121,691 | 4,820,330,160 | IssuesEvent | 2016-11-04 22:24:04 | dealii/dealii | https://api.github.com/repos/dealii/dealii | closed | Static analysis: dealii-git/source/fe/fe_nedelec.cc | Low priority Starter project | ```
dealii-git/source/fe/fe_nedelec.cc 325 warn V688 The 'degree' function argument possesses the same name as one of the class members, which can result in a confusion.
```
We should address these warnings and errors from the static analysis tool PVS. In response to #3342. | 1.0 | Static analysis: dealii-git/source/fe/fe_nedelec.cc - ```
dealii-git/source/fe/fe_nedelec.cc 325 warn V688 The 'degree' function argument possesses the same name as one of the class members, which can result in a confusion.
```
We should address these warnings and errors from the static analysis tool PVS. In response to #3342. | priority | static analysis dealii git source fe fe nedelec cc dealii git source fe fe nedelec cc warn the degree function argument possesses the same name as one of the class members which can result in a confusion we should address these warnings and errors from the static analysis tool pvs in response to | 1 |
302,086 | 22,786,778,976 | IssuesEvent | 2022-07-09 11:22:21 | haessae0/based-board | https://api.github.com/repos/haessae0/based-board | closed | Organize a project and issues | documentation | set a project and make a card
- [x] make a project beta
- [x] make a card list
- [x] change to issue | 1.0 | Organize a project and issues - set a project and make a card
- [x] make a project beta
- [x] make a card list
- [x] change to issue | non_priority | organize a project and issues set a project and make a card make a project beta make a card list change to issue | 0 |
311,558 | 26,797,715,214 | IssuesEvent | 2023-02-01 13:06:37 | kernitus/BukkitOldCombatMechanics | https://api.github.com/repos/kernitus/BukkitOldCombatMechanics | closed | Old Armour Strength netherite damage too small | bug user vanished awaiting testing | <!-- Before reporting, please try the latest test version from https://ci.rayzr.dev/job/OldCombatMechanics/ as often bugs have already been fixed there. ->
<!-- Please fill out all fields as applicable, providing as many details as possible -->
## Information
<!-- Version of the Server, e.g. Spigot 1.14.1 -->
* Server Version: Purpur 1.18.2 - 1599
<!-- Version of OldCombatMechanics, e.g. 1.7.2 or dev build #46 -->
<!-- Please don't say 'latest', that is meaningless when a new version is released -->
* OldCombatMechanics version: b#86
<!-- Console log from the server, please upload this to e.g. pastebin and link the file here -->
<!-- Please do NOT use hastebin, they seem to disappeared way too fast! -->
* Server Log File: https://pastebin.com/EpZEipb0
<!-- OldCombatMechanics config.yml, please upload this to e.g. pastebin and link the file here or use code tags-->
* OldCombatMechanics config file: https://pastebin.com/0TFLzdku
<!-- If the issue is damage related, please enable debug mode in the config and provide screenshots of the output-->
## Problem Description
<!-- A clear and concise description of what the bug is. -->
1_ Anything wearing a full netherite set is literally invincible if old-armour-strength is enable
2_ There are some mobs (i found a slime) hitting players 10 times in a second, bit more or bit less.
<!-- Please enter what you would do in order for the problem to occur -->
### To Reproduce
Steps to reproduce the behavior:
1. enchant a full netherite set and go pvp
2. let a slime hit ya
### Expected Behaviour
1. not being invincible
2. not being hit more than 1 time per hit
### Actual Behaviour
<!-- What instead happens when you perform the above steps? -->
1. being invincible
2. being hit 102391204981 times/sec by a monster
<!-- You can add in more details here, e.g. screenshots or videos -->
| 1.0 | Old Armour Strength netherite damage too small - <!-- Before reporting, please try the latest test version from https://ci.rayzr.dev/job/OldCombatMechanics/ as often bugs have already been fixed there. ->
<!-- Please fill out all fields as applicable, providing as many details as possible -->
## Information
<!-- Version of the Server, e.g. Spigot 1.14.1 -->
* Server Version: Purpur 1.18.2 - 1599
<!-- Version of OldCombatMechanics, e.g. 1.7.2 or dev build #46 -->
<!-- Please don't say 'latest', that is meaningless when a new version is released -->
* OldCombatMechanics version: b#86
<!-- Console log from the server, please upload this to e.g. pastebin and link the file here -->
<!-- Please do NOT use hastebin, they seem to disappeared way too fast! -->
* Server Log File: https://pastebin.com/EpZEipb0
<!-- OldCombatMechanics config.yml, please upload this to e.g. pastebin and link the file here or use code tags-->
* OldCombatMechanics config file: https://pastebin.com/0TFLzdku
<!-- If the issue is damage related, please enable debug mode in the config and provide screenshots of the output-->
## Problem Description
<!-- A clear and concise description of what the bug is. -->
1_ Anything wearing a full netherite set is literally invincible if old-armour-strength is enable
2_ There are some mobs (i found a slime) hitting players 10 times in a second, bit more or bit less.
<!-- Please enter what you would do in order for the problem to occur -->
### To Reproduce
Steps to reproduce the behavior:
1. enchant a full netherite set and go pvp
2. let a slime hit ya
### Expected Behaviour
1. not being invincible
2. not being hit more than 1 time per hit
### Actual Behaviour
<!-- What instead happens when you perform the above steps? -->
1. being invincible
2. being hit 102391204981 times/sec by a monster
<!-- You can add in more details here, e.g. screenshots or videos -->
| non_priority | old armour strength netherite damage too small information server version purpur oldcombatmechanics version b server log file oldcombatmechanics config file problem description anything wearing a full netherite set is literally invincible if old armour strength is enable there are some mobs i found a slime hitting players times in a second bit more or bit less to reproduce steps to reproduce the behavior enchant a full netherite set and go pvp let a slime hit ya expected behaviour not being invincible not being hit more than time per hit actual behaviour being invincible being hit times sec by a monster | 0 |
620,006 | 19,542,721,752 | IssuesEvent | 2022-01-01 07:55:22 | TradersTeam/grand-node-java-client | https://api.github.com/repos/TradersTeam/grand-node-java-client | closed | IEdmExpression | schema/model low priority | <html><body>
<!--StartFragment--><span class="model-box"><div class="model-box"><span class="model"><span class=""><button aria-expanded="true" class="model-box-control"><span class="pointer"><span class="model-title"><span class="model-title__text">IEdmExpression</span></span></span><span class="model-toggle"></span></button><span class="brace-open object">{</span><span class="inner-object">
expressionKind | EdmExpressionKindinteger($int32)0 - None; 1 - BinaryConstant; 2 - BooleanConstant; 3 - DateTimeOffsetConstant; 4 - DecimalConstant; 5 - FloatingConstant; 6 - GuidConstant; 7 - IntegerConstant; 8 - StringConstant; 9 - DurationConstant; 10 - Null; 11 - Record; 12 - Collection; 13 - Path; 14 - If; 15 - Cast; 16 - IsType; 17 - FunctionApplication; 18 - LabeledExpressionReference; 19 - Labeled; 20 - PropertyPath; 21 - NavigationPropertyPath; 22 - DateConstant; 23 - TimeOfDayConstant; 24 - EnumMember; 25 - AnnotationPath;Enum:Array [ 26 ]
-- | --
</span><span class="brace-close">}</span></span></span></div></span><!--EndFragment-->
</body>
</html>

| 1.0 | IEdmExpression - <html><body>
<!--StartFragment--><span class="model-box"><div class="model-box"><span class="model"><span class=""><button aria-expanded="true" class="model-box-control"><span class="pointer"><span class="model-title"><span class="model-title__text">IEdmExpression</span></span></span><span class="model-toggle"></span></button><span class="brace-open object">{</span><span class="inner-object">
expressionKind | EdmExpressionKindinteger($int32)0 - None; 1 - BinaryConstant; 2 - BooleanConstant; 3 - DateTimeOffsetConstant; 4 - DecimalConstant; 5 - FloatingConstant; 6 - GuidConstant; 7 - IntegerConstant; 8 - StringConstant; 9 - DurationConstant; 10 - Null; 11 - Record; 12 - Collection; 13 - Path; 14 - If; 15 - Cast; 16 - IsType; 17 - FunctionApplication; 18 - LabeledExpressionReference; 19 - Labeled; 20 - PropertyPath; 21 - NavigationPropertyPath; 22 - DateConstant; 23 - TimeOfDayConstant; 24 - EnumMember; 25 - AnnotationPath;Enum:Array [ 26 ]
-- | --
</span><span class="brace-close">}</span></span></span></div></span><!--EndFragment-->
</body>
</html>

| priority | iedmexpression iedmexpression expressionkind edmexpressionkindinteger none binaryconstant booleanconstant datetimeoffsetconstant decimalconstant floatingconstant guidconstant integerconstant stringconstant durationconstant null record collection path if cast istype functionapplication labeledexpressionreference labeled propertypath navigationpropertypath dateconstant timeofdayconstant enummember annotationpath enum array | 1 |
251,268 | 18,944,284,579 | IssuesEvent | 2021-11-18 08:27:19 | haskell/cabal | https://api.github.com/repos/haskell/cabal | closed | overwrite-policy is not documented | documentation attention: pr-welcome | While I did find a mention of `install-method` in the docs, I did not find a mention of `overwrite-policy`, unless the search at
https://cabal.readthedocs.io/en/3.4/search.html?q=%22overwrite-policy%22&check_keywords=yes&area=default
is failing me.
Given that every user who wants to re-install an executable with `cabal install` will have to think about this policy, this is probably worth documenting. | 1.0 | overwrite-policy is not documented - While I did find a mention of `install-method` in the docs, I did not find a mention of `overwrite-policy`, unless the search at
https://cabal.readthedocs.io/en/3.4/search.html?q=%22overwrite-policy%22&check_keywords=yes&area=default
is failing me.
Given that every user who wants to re-install an executable with `cabal install` will have to think about this policy, this is probably worth documenting. | non_priority | overwrite policy is not documented while i did find a mention of install method in the docs i did not find a mention of overwrite policy unless the search at is failing me given that every user who wants to re install an executable with cabal install will have to think about this policy this is probably worth documenting | 0 |
514,693 | 14,942,789,584 | IssuesEvent | 2021-01-25 21:52:21 | bounswe/bounswe2020group3 | https://api.github.com/repos/bounswe/bounswe2020group3 | closed | [Frontend] Implementing Notifications | Frontend Priority: High Type: Enhancement | * **Project: FRONTEND **
* **This is a: FEATURE REQUEST **
* **Description of the issue**
Notifications will be implemented.
* **For feature requests: Expected functionality of the requested feature**
Notifications should be seen from frontend.
* **Deadline for resolution:**
20.01.2021
| 1.0 | [Frontend] Implementing Notifications - * **Project: FRONTEND **
* **This is a: FEATURE REQUEST **
* **Description of the issue**
Notifications will be implemented.
* **For feature requests: Expected functionality of the requested feature**
Notifications should be seen from frontend.
* **Deadline for resolution:**
20.01.2021
| priority | implementing notifications project frontend this is a feature request description of the issue notifications will be implemented for feature requests expected functionality of the requested feature notifications should be seen from frontend deadline for resolution | 1 |
10,744 | 12,716,520,968 | IssuesEvent | 2020-06-24 02:11:19 | opendistro-for-elasticsearch/sql | https://api.github.com/repos/opendistro-for-elasticsearch/sql | closed | Elasticsearch 7.8.0 compatibility | version compatibility | ## Requirement
OD Version: 1.9
Elasticsearch Version: 7.8.0 | True | Elasticsearch 7.8.0 compatibility - ## Requirement
OD Version: 1.9
Elasticsearch Version: 7.8.0 | non_priority | elasticsearch compatibility requirement od version elasticsearch version | 0 |
4,001 | 6,565,500,035 | IssuesEvent | 2017-09-08 08:36:12 | singapore/renovate | https://api.github.com/repos/singapore/renovate | opened | Handle package.json files with varying `node` engines | feat needs-requirements pri3-normal | Currently the Renovate app runs on node LTS (6.11.3). If a repo has engines>node=6.9.x in its `package.json` then it fails to run `yarn install`.
Option 1: delete any node version from package.json>engines
Option 2: switch node version? e.g. using `nvm` or `n` | 1.0 | Handle package.json files with varying `node` engines - Currently the Renovate app runs on node LTS (6.11.3). If a repo has engines>node=6.9.x in its `package.json` then it fails to run `yarn install`.
Option 1: delete any node version from package.json>engines
Option 2: switch node version? e.g. using `nvm` or `n` | non_priority | handle package json files with varying node engines currently the renovate app runs on node lts if a repo has engines node x in its package json then it fails to run yarn install option delete any node version from package json engines option switch node version e g using nvm or n | 0 |
226,077 | 7,498,476,403 | IssuesEvent | 2018-04-09 04:54:50 | openshift/origin | https://api.github.com/repos/openshift/origin | closed | [Proposal] Include beta types in `oc types` (ReplicaSets, PetSets, etc) | component/cli lifecycle/rotten priority/P3 | `oc types` does not include new resource types, such as ReplicaSets and PetSets
##### Version
oc v1.3.0-alpha.0+d0df369-dirty
kubernetes v1.3.0+507d3a7
features: Basic-Auth
##### Steps To Reproduce
1. `oc types | grep replicasets`
2. `oc types | grep petsets`
3. `oc types | grep deployments`
##### Current Result
1. No description for ReplicaSets
2. No description for PetSets
3. No description for Deployments
##### Expected Result
Descriptions for new resource types
cc @jwforres @fabianofranz
| 1.0 | [Proposal] Include beta types in `oc types` (ReplicaSets, PetSets, etc) - `oc types` does not include new resource types, such as ReplicaSets and PetSets
##### Version
oc v1.3.0-alpha.0+d0df369-dirty
kubernetes v1.3.0+507d3a7
features: Basic-Auth
##### Steps To Reproduce
1. `oc types | grep replicasets`
2. `oc types | grep petsets`
3. `oc types | grep deployments`
##### Current Result
1. No description for ReplicaSets
2. No description for PetSets
3. No description for Deployments
##### Expected Result
Descriptions for new resource types
cc @jwforres @fabianofranz
| priority | include beta types in oc types replicasets petsets etc oc types does not include new resource types such as replicasets and petsets version oc alpha dirty kubernetes features basic auth steps to reproduce oc types grep replicasets oc types grep petsets oc types grep deployments current result no description for replicasets no description for petsets no description for deployments expected result descriptions for new resource types cc jwforres fabianofranz | 1 |
256,606 | 22,067,131,428 | IssuesEvent | 2022-05-31 05:24:13 | wso2/product-is | https://api.github.com/repos/wso2/product-is | opened | Attribute Consuming Service Index in SAML2 supported federated IDP does not get validated | IS-6.0.0-Test-Hackathon | **Describe the issue:**
<!-- A clear and concise description of what the bug is. If applicable, add screenshots to help explain your problem. -->
Attribute Consuming Service Index in SAML2 supported federated IDP does not get validated.
**How to reproduce:**
<!-- Steps to reproduce the behavior. -->
- Configure a SAML2 supported federated IDP
- Add a number (any random number other than the correct index) as the Attribute Consuming Service Index
<img width="938" alt="Screenshot 2022-05-31 at 10 46 06" src="https://user-images.githubusercontent.com/47789154/171097975-4f8b2483-a8e8-4bb3-b456-ac2ec4691403.png">
- SSO with identity federation will work without an error
**Expected behavior:**
<!-- A clear and concise description of what you expected to happen. -->
Incorrect attribute consuming service indexes should throw an error.
**Environment information:**
- Product Version: IS 6.0.0
- OS: Mac
- Database: H2
--- | 1.0 | Attribute Consuming Service Index in SAML2 supported federated IDP does not get validated - **Describe the issue:**
<!-- A clear and concise description of what the bug is. If applicable, add screenshots to help explain your problem. -->
Attribute Consuming Service Index in SAML2 supported federated IDP does not get validated.
**How to reproduce:**
<!-- Steps to reproduce the behavior. -->
- Configure a SAML2 supported federated IDP
- Add a number (any random number other than the correct index) as the Attribute Consuming Service Index
<img width="938" alt="Screenshot 2022-05-31 at 10 46 06" src="https://user-images.githubusercontent.com/47789154/171097975-4f8b2483-a8e8-4bb3-b456-ac2ec4691403.png">
- SSO with identity federation will work without an error
**Expected behavior:**
<!-- A clear and concise description of what you expected to happen. -->
Incorrect attribute consuming service indexes should throw an error.
**Environment information:**
- Product Version: IS 6.0.0
- OS: Mac
- Database: H2
--- | non_priority | attribute consuming service index in supported federated idp does not get validated describe the issue attribute consuming service index in supported federated idp does not get validated how to reproduce configure a supported federated idp add a number any random number other than the correct index as the attribute consuming service index img width alt screenshot at src sso with identity federation will work without an error expected behavior incorrect attribute consuming service indexes should throw an error environment information product version is os mac database | 0 |
154,088 | 5,908,869,236 | IssuesEvent | 2017-05-19 21:41:05 | angular/angular-cli | https://api.github.com/repos/angular/angular-cli | closed | Jenkins Integration | priority: 3 (nice to have) severity1: confusing type: question/support | <!--
IF YOU DON'T FILL OUT THE FOLLOWING INFORMATION YOUR ISSUE MIGHT BE CLOSED WITHOUT INVESTIGATING
-->
### Bug Report or Feature Request (mark with an `x`)
```
- [ ] bug report -> please search issues before submitting
- [ ] feature request
- [x] question
```
### Versions.
<!--
Output from: `ng --version`.
If nothing, output from: `node --version` and `npm --version`.
Windows (7/8/10). Linux (incl. distribution). macOS (El Capitan? Sierra?)
-->
```
@angular/cli: 1.0.4
node: 7.9.0
os: darwin x64
@angular/animations: 4.1.3
@angular/common: 4.1.3
@angular/compiler: 4.1.3
@angular/core: 4.1.3
@angular/flex-layout: 2.0.0-rc.1
@angular/forms: 4.1.3
@angular/http: 4.1.3
@angular/material: 2.0.0-beta.5
@angular/platform-browser: 4.1.3
@angular/platform-browser-dynamic: 4.1.3
@angular/router: 4.1.3
@angular/cli: 1.0.4
@angular/compiler-cli: 4.1.3
```
### Repro steps.
<!--
Simple steps to reproduce this bug.
Please include: commands run, packages added, related code changes.
A link to a sample repo would help too.
-->
Created a project with angular CLI. Created a project on Jenkins using following shell execution steps:
```
npm install --silent
./ng test --code-coverage --single-run
# I created a symlink for ng to the version installed by npm, see below
```
### The log given by the failure.
<!-- Normally this include a stack trace and some more information. -->
n/a
### Desired functionality.
<!--
What would like to see implemented?
What is the usecase?
-->
I would like to integrate a project using Angular CLI onto our Jenkins server.
### Mention any other details that might be useful.
<!-- Please include a link to the repo if this is related to an OSS project. -->
I don't have a lot of Jenkins configuration experience, but from how it looks like it is not that simple out of the box. We are running compass on our Jenkins server, we have NPM version `4.6.1` on our Jenkins server. However, it looks like I need to adjust the configuration quite a bit more. Like changing Chrome to PhantomJS, [convert the istanbul reports to cobertura reports](https://wiki.servoy.com/display/public/DOCS/Using+Istanbul+to+integrate+code+coverage+report+in+Jenkins) etc.
I even created a symlink for angular cli in the project, so we don't have to install it globally on the server using: `ln -s node_modules/@angular/cli/bin/ng ng`.
I feel like I am missing something obvious and all these steps shouldn't be necessary. Unfortunately I am not finding any documentation about CI integration here or somewhere else (google...).
Could you give me some pointers/hints please? | 1.0 | Jenkins Integration - <!--
IF YOU DON'T FILL OUT THE FOLLOWING INFORMATION YOUR ISSUE MIGHT BE CLOSED WITHOUT INVESTIGATING
-->
### Bug Report or Feature Request (mark with an `x`)
```
- [ ] bug report -> please search issues before submitting
- [ ] feature request
- [x] question
```
### Versions.
<!--
Output from: `ng --version`.
If nothing, output from: `node --version` and `npm --version`.
Windows (7/8/10). Linux (incl. distribution). macOS (El Capitan? Sierra?)
-->
```
@angular/cli: 1.0.4
node: 7.9.0
os: darwin x64
@angular/animations: 4.1.3
@angular/common: 4.1.3
@angular/compiler: 4.1.3
@angular/core: 4.1.3
@angular/flex-layout: 2.0.0-rc.1
@angular/forms: 4.1.3
@angular/http: 4.1.3
@angular/material: 2.0.0-beta.5
@angular/platform-browser: 4.1.3
@angular/platform-browser-dynamic: 4.1.3
@angular/router: 4.1.3
@angular/cli: 1.0.4
@angular/compiler-cli: 4.1.3
```
### Repro steps.
<!--
Simple steps to reproduce this bug.
Please include: commands run, packages added, related code changes.
A link to a sample repo would help too.
-->
Created a project with angular CLI. Created a project on Jenkins using following shell execution steps:
```
npm install --silent
./ng test --code-coverage --single-run
# I created a symlink for ng to the version installed by npm, see below
```
### The log given by the failure.
<!-- Normally this include a stack trace and some more information. -->
n/a
### Desired functionality.
<!--
What would like to see implemented?
What is the usecase?
-->
I would like to integrate a project using Angular CLI onto our Jenkins server.
### Mention any other details that might be useful.
<!-- Please include a link to the repo if this is related to an OSS project. -->
I don't have a lot of Jenkins configuration experience, but from how it looks like it is not that simple out of the box. We are running compass on our Jenkins server, we have NPM version `4.6.1` on our Jenkins server. However, it looks like I need to adjust the configuration quite a bit more. Like changing Chrome to PhantomJS, [convert the istanbul reports to cobertura reports](https://wiki.servoy.com/display/public/DOCS/Using+Istanbul+to+integrate+code+coverage+report+in+Jenkins) etc.
I even created a symlink for angular cli in the project, so we don't have to install it globally on the server using: `ln -s node_modules/@angular/cli/bin/ng ng`.
I feel like I am missing something obvious and all these steps shouldn't be necessary. Unfortunately I am not finding any documentation about CI integration here or somewhere else (google...).
Could you give me some pointers/hints please? | priority | jenkins integration if you don t fill out the following information your issue might be closed without investigating bug report or feature request mark with an x bug report please search issues before submitting feature request question versions output from ng version if nothing output from node version and npm version windows linux incl distribution macos el capitan sierra angular cli node os darwin angular animations angular common angular compiler angular core angular flex layout rc angular forms angular http angular material beta angular platform browser angular platform browser dynamic angular router angular cli angular compiler cli repro steps simple steps to reproduce this bug please include commands run packages added related code changes a link to a sample repo would help too created a project with angular cli created a project on jenkins using following shell execution steps npm install silent ng test code coverage single run i created a symlink for ng to the version installed by npm see below the log given by the failure n a desired functionality what would like to see implemented what is the usecase i would like to integrate a project using angular cli onto our jenkins server mention any other details that might be useful i don t have a lot of jenkins configuration experience but from how it looks like it is not that simple out of the box we are running compass on our jenkins server we have npm version on our jenkins server however it looks like i need to adjust the configuration quite a bit more like changing chrome to phantomjs etc i even created a symlink for angular cli in the project so we don t have to install it globally on the server using ln s node modules angular cli bin ng ng i feel like i am missing something obvious and all these steps shouldn t be necessary unfortunately i am not finding any documentation about ci integration here or somewhere else google could you give me some pointers hints please | 1 |
27,584 | 11,516,144,581 | IssuesEvent | 2020-02-14 03:51:33 | MadeByEmil/wdhan-basic | https://api.github.com/repos/MadeByEmil/wdhan-basic | closed | WS-2016-0090 (Medium) detected in jquery-1.10.2.min.js | security vulnerability | ## WS-2016-0090 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jquery-1.10.2.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.10.2/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.10.2/jquery.min.js</a></p>
<p>Path to dependency file: /tmp/ws-scm/wdhan-basic/_includes/head.html</p>
<p>Path to vulnerable library: /wdhan-basic/_includes/head.html</p>
<p>
Dependency Hierarchy:
- :x: **jquery-1.10.2.min.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/MadeByEmil/wdhan-basic/commit/20319c55082efc29a29a8cb4e602f2bb13bcd75f">20319c55082efc29a29a8cb4e602f2bb13bcd75f</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, before 2.2.0, is vulnerable to Cross-site Scripting (XSS) attacks via text/javascript response with arbitrary code execution.
<p>Publish Date: 2016-11-27
<p>URL: <a href=https://github.com/jquery/jquery/commit/b078a62013782c7424a4a61a240c23c4c0b42614>WS-2016-0090</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>4.3</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://github.com/jquery/jquery/commit/b078a62013782c7424a4a61a240c23c4c0b42614">https://github.com/jquery/jquery/commit/b078a62013782c7424a4a61a240c23c4c0b42614</a></p>
<p>Release Date: 2019-04-08</p>
<p>Fix Resolution: 2.2.0</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | WS-2016-0090 (Medium) detected in jquery-1.10.2.min.js - ## WS-2016-0090 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jquery-1.10.2.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.10.2/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.10.2/jquery.min.js</a></p>
<p>Path to dependency file: /tmp/ws-scm/wdhan-basic/_includes/head.html</p>
<p>Path to vulnerable library: /wdhan-basic/_includes/head.html</p>
<p>
Dependency Hierarchy:
- :x: **jquery-1.10.2.min.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/MadeByEmil/wdhan-basic/commit/20319c55082efc29a29a8cb4e602f2bb13bcd75f">20319c55082efc29a29a8cb4e602f2bb13bcd75f</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, before 2.2.0, is vulnerable to Cross-site Scripting (XSS) attacks via text/javascript response with arbitrary code execution.
<p>Publish Date: 2016-11-27
<p>URL: <a href=https://github.com/jquery/jquery/commit/b078a62013782c7424a4a61a240c23c4c0b42614>WS-2016-0090</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>4.3</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://github.com/jquery/jquery/commit/b078a62013782c7424a4a61a240c23c4c0b42614">https://github.com/jquery/jquery/commit/b078a62013782c7424a4a61a240c23c4c0b42614</a></p>
<p>Release Date: 2019-04-08</p>
<p>Fix Resolution: 2.2.0</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_priority | ws medium detected in jquery min js ws 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 wdhan basic includes head html path to vulnerable library wdhan basic includes head html dependency hierarchy x jquery min js vulnerable library found in head commit a href vulnerability details jquery before is vulnerable to cross site scripting xss attacks via text javascript response with arbitrary code execution 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 step up your open source security game with whitesource | 0 |
62,063 | 6,775,007,673 | IssuesEvent | 2017-10-27 12:47:50 | EnMasseProject/enmasse | https://api.github.com/repos/EnMasseProject/enmasse | closed | System-tests: brokered: test JMS client | test development | 1. create brokered address space A
2. create topic C
3. use JMS client(s) to send/receive messages from topic
| 1.0 | System-tests: brokered: test JMS client - 1. create brokered address space A
2. create topic C
3. use JMS client(s) to send/receive messages from topic
| non_priority | system tests brokered test jms client create brokered address space a create topic c use jms client s to send receive messages from topic | 0 |
153,068 | 5,874,208,971 | IssuesEvent | 2017-05-15 15:34:32 | k0shk0sh/FastHub | https://api.github.com/repos/k0shk0sh/FastHub | closed | Show repo name when viewing issue | Priority: High Status: Accepted Type: Enhancement | - FastHub Version: 2.1.0
- Android Version: 6/CM 13
Currently when I go to my notifications and tap on an issue to view it, I directly get to the issue/comment and then I wonder: "Uhh, which project is this issue actually about?"
There is just an repo/author indicator missing when viewing an issue. Otherwise I often tap these issues and then have to figure out what this is actually about.
In the notifications view this information is small, I almost never read it and I don't want to get back when I already tapped on an issue there as it is then read and going back is cumbersome as I need to swipe to the "all notifications" tab there and click on the issue again…
Actually not even when tapping on the (i) in the issue "header" I can see the repo name. | 1.0 | Show repo name when viewing issue - - FastHub Version: 2.1.0
- Android Version: 6/CM 13
Currently when I go to my notifications and tap on an issue to view it, I directly get to the issue/comment and then I wonder: "Uhh, which project is this issue actually about?"
There is just an repo/author indicator missing when viewing an issue. Otherwise I often tap these issues and then have to figure out what this is actually about.
In the notifications view this information is small, I almost never read it and I don't want to get back when I already tapped on an issue there as it is then read and going back is cumbersome as I need to swipe to the "all notifications" tab there and click on the issue again…
Actually not even when tapping on the (i) in the issue "header" I can see the repo name. | priority | show repo name when viewing issue fasthub version android version cm currently when i go to my notifications and tap on an issue to view it i directly get to the issue comment and then i wonder uhh which project is this issue actually about there is just an repo author indicator missing when viewing an issue otherwise i often tap these issues and then have to figure out what this is actually about in the notifications view this information is small i almost never read it and i don t want to get back when i already tapped on an issue there as it is then read and going back is cumbersome as i need to swipe to the all notifications tab there and click on the issue again… actually not even when tapping on the i in the issue header i can see the repo name | 1 |
118,958 | 25,414,953,227 | IssuesEvent | 2022-11-22 22:46:23 | sizespectrum/mizer | https://api.github.com/repos/sizespectrum/mizer | opened | Set and document default for exponents in `set...()` functions | setting parameters documentation minor effort code improvement low priority | `setSearchVolume()` assumes that the search volume exponent `q` is given in the `species_params` data frame. This usually creates no problems because a value is set in the `new....Params()` functions. But that is not enough. `validSpeciesParams()` neither sets a default nor complains if `q` is missing. If one then calls `setSearchVolume()` with a supposedly valid species params data frame one gets a cryptic error. The straightforward solution is to let `setSearchVolume()` use a default value if `q` is missing. This default should be `lambda - 2 + n`
The exact same comment applies to `setMaxIntakeRate()` and the exponent `n` and also to `setMetabolicRate()` and the exponent `p` except that in the latter case surprisingly `p` can be supplied as an argument. | 1.0 | Set and document default for exponents in `set...()` functions - `setSearchVolume()` assumes that the search volume exponent `q` is given in the `species_params` data frame. This usually creates no problems because a value is set in the `new....Params()` functions. But that is not enough. `validSpeciesParams()` neither sets a default nor complains if `q` is missing. If one then calls `setSearchVolume()` with a supposedly valid species params data frame one gets a cryptic error. The straightforward solution is to let `setSearchVolume()` use a default value if `q` is missing. This default should be `lambda - 2 + n`
The exact same comment applies to `setMaxIntakeRate()` and the exponent `n` and also to `setMetabolicRate()` and the exponent `p` except that in the latter case surprisingly `p` can be supplied as an argument. | non_priority | set and document default for exponents in set functions setsearchvolume assumes that the search volume exponent q is given in the species params data frame this usually creates no problems because a value is set in the new params functions but that is not enough validspeciesparams neither sets a default nor complains if q is missing if one then calls setsearchvolume with a supposedly valid species params data frame one gets a cryptic error the straightforward solution is to let setsearchvolume use a default value if q is missing this default should be lambda n the exact same comment applies to setmaxintakerate and the exponent n and also to setmetabolicrate and the exponent p except that in the latter case surprisingly p can be supplied as an argument | 0 |
815,614 | 30,564,446,457 | IssuesEvent | 2023-07-20 16:40:40 | WSB-2023-Informatyka/ML-Chess | https://api.github.com/repos/WSB-2023-Informatyka/ML-Chess | closed | Research chess notations | priority: 1 type: research | ### Description
Issue releted to issure nr.: #2
We need to decide what chess notation we will use.
The more difficult to visualise it will be, the harder it will be to implement changes/features into it.
Example notations:
https://www.chess.com/terms/fen-chess
https://en.wikipedia.org/wiki/Algebraic_notation_(chess)
My suggestion:
PGN notation
### Area
User Interface | 1.0 | Research chess notations - ### Description
Issue releted to issure nr.: #2
We need to decide what chess notation we will use.
The more difficult to visualise it will be, the harder it will be to implement changes/features into it.
Example notations:
https://www.chess.com/terms/fen-chess
https://en.wikipedia.org/wiki/Algebraic_notation_(chess)
My suggestion:
PGN notation
### Area
User Interface | priority | research chess notations description issue releted to issure nr we need to decide what chess notation we will use the more difficult to visualise it will be the harder it will be to implement changes features into it example notations my suggestion pgn notation area user interface | 1 |
35,239 | 7,924,216,723 | IssuesEvent | 2018-07-05 16:12:38 | kobotoolbox/kpi | https://api.github.com/repos/kobotoolbox/kpi | closed | IE11 issues with current build on prod | bug coded | I made a mistake a little while ago, a little overeager in cleaning things up while doing the Webpack 4 upgrade: https://github.com/kobotoolbox/kpi/commit/5c8821c19327e335dcecf6fce882187692919a26#diff-3dcf35fd5fbe5cfbaf1a5abe4e01f217L7
That omission of `babel-polyfill` causes IE to stop intepreting ES2015+ functions (like `Array.prototype.includes`. | 1.0 | IE11 issues with current build on prod - I made a mistake a little while ago, a little overeager in cleaning things up while doing the Webpack 4 upgrade: https://github.com/kobotoolbox/kpi/commit/5c8821c19327e335dcecf6fce882187692919a26#diff-3dcf35fd5fbe5cfbaf1a5abe4e01f217L7
That omission of `babel-polyfill` causes IE to stop intepreting ES2015+ functions (like `Array.prototype.includes`. | non_priority | issues with current build on prod i made a mistake a little while ago a little overeager in cleaning things up while doing the webpack upgrade that omission of babel polyfill causes ie to stop intepreting functions like array prototype includes | 0 |
531,850 | 15,526,520,613 | IssuesEvent | 2021-03-13 01:33:23 | CreeperMagnet/the-creepers-code | https://api.github.com/repos/CreeperMagnet/the-creepers-code | closed | Hashs is mistakenly misgendered in compendium credits | priority: high | "Hashs
This guy is lazy. Whenever I see him not working on his datapack, it reminds me I should be working on mine. He has a cool pack though, demons are neat. Go download Undermagic."
->
"Hashs
This gal is lazy. Whenever I see her not working on her datapack, it reminds me I should be working on mine. She has a cool pack though, demons are neat. Go download Undermagic."
(Imported from old repository) | 1.0 | Hashs is mistakenly misgendered in compendium credits - "Hashs
This guy is lazy. Whenever I see him not working on his datapack, it reminds me I should be working on mine. He has a cool pack though, demons are neat. Go download Undermagic."
->
"Hashs
This gal is lazy. Whenever I see her not working on her datapack, it reminds me I should be working on mine. She has a cool pack though, demons are neat. Go download Undermagic."
(Imported from old repository) | priority | hashs is mistakenly misgendered in compendium credits hashs this guy is lazy whenever i see him not working on his datapack it reminds me i should be working on mine he has a cool pack though demons are neat go download undermagic hashs this gal is lazy whenever i see her not working on her datapack it reminds me i should be working on mine she has a cool pack though demons are neat go download undermagic imported from old repository | 1 |
42,058 | 2,869,095,517 | IssuesEvent | 2015-06-05 23:17:56 | dart-lang/test | https://api.github.com/repos/dart-lang/test | closed | Make it possible to unittest applications depending on dart:html on the Dart VM. | bug NotPlanned Priority-Medium | <a href="https://github.com/rbeeger"><img src="https://avatars.githubusercontent.com/u/426834?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [rbeeger](https://github.com/rbeeger)**
_Originally opened as dart-lang/sdk#6424_
----
I have unittests that mock away the view of the app I'm developing. The unittests test the logic by simulating the triggering of events and by checking what values are put into ui components.
They run without a problem in the browser, but the browser isn't really necessary since no DOM operations occur. I'd like to run them on Dart VM.
Unfortunately dart:html is not available in Dart VM.
It would be nice to have some kind of empty dart:html classes on the VM that only make the app compilable on the VM and allow the creation of mocks for them. | 1.0 | Make it possible to unittest applications depending on dart:html on the Dart VM. - <a href="https://github.com/rbeeger"><img src="https://avatars.githubusercontent.com/u/426834?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [rbeeger](https://github.com/rbeeger)**
_Originally opened as dart-lang/sdk#6424_
----
I have unittests that mock away the view of the app I'm developing. The unittests test the logic by simulating the triggering of events and by checking what values are put into ui components.
They run without a problem in the browser, but the browser isn't really necessary since no DOM operations occur. I'd like to run them on Dart VM.
Unfortunately dart:html is not available in Dart VM.
It would be nice to have some kind of empty dart:html classes on the VM that only make the app compilable on the VM and allow the creation of mocks for them. | priority | make it possible to unittest applications depending on dart html on the dart vm issue by originally opened as dart lang sdk i have unittests that mock away the view of the app i m developing the unittests test the logic by simulating the triggering of events and by checking what values are put into ui components they run without a problem in the browser but the browser isn t really necessary since no dom operations occur i d like to run them on dart vm unfortunately dart html is not available in dart vm it would be nice to have some kind of empty dart html classes on the vm that only make the app compilable on the vm and allow the creation of mocks for them | 1 |
378,295 | 11,199,946,695 | IssuesEvent | 2020-01-03 20:13:18 | intakedesk/PowerBI-General | https://api.github.com/repos/intakedesk/PowerBI-General | closed | HK: Intake Agents needs reports for their displays (see details) | high-priority revision-hk | HK: Make report based off of Pipeline Reports - Intake Pending/CB/Stuck
JG: Access will be controlled using Power BI Pro accounts for each agent. RLS was tested on 5/5 19, resulting positive using a Power BI Local table holding the Intake Rep USER ID (leads_cstm.intake_representative_c = users.id) against corresponding email (DAX USERPRINCIPALNAME (), and the report being SHARED instead of inviting the user into a workgroup. Therefore, they are able to see their data. | 1.0 | HK: Intake Agents needs reports for their displays (see details) - HK: Make report based off of Pipeline Reports - Intake Pending/CB/Stuck
JG: Access will be controlled using Power BI Pro accounts for each agent. RLS was tested on 5/5 19, resulting positive using a Power BI Local table holding the Intake Rep USER ID (leads_cstm.intake_representative_c = users.id) against corresponding email (DAX USERPRINCIPALNAME (), and the report being SHARED instead of inviting the user into a workgroup. Therefore, they are able to see their data. | priority | hk intake agents needs reports for their displays see details hk make report based off of pipeline reports intake pending cb stuck jg access will be controlled using power bi pro accounts for each agent rls was tested on resulting positive using a power bi local table holding the intake rep user id leads cstm intake representative c users id against corresponding email dax userprincipalname and the report being shared instead of inviting the user into a workgroup therefore they are able to see their data | 1 |
352,878 | 25,086,910,633 | IssuesEvent | 2022-11-08 01:04:28 | pharmaverse/admiraldev | https://api.github.com/repos/pharmaverse/admiraldev | opened | Documentation: In tests, change pkgname::function() to library(pkgname), if needed, and function() | documentation | ### Please select a category the issue is focused on?
Other
### Let us know where something needs a refresh or put your idea here!
Some tests have pkgname::function(). We would like this to be library(pkgname), if needed, and function(). If NAMESPACE already has importFrom(pkgname, function), then we do not need the library() statement in the test. | 1.0 | Documentation: In tests, change pkgname::function() to library(pkgname), if needed, and function() - ### Please select a category the issue is focused on?
Other
### Let us know where something needs a refresh or put your idea here!
Some tests have pkgname::function(). We would like this to be library(pkgname), if needed, and function(). If NAMESPACE already has importFrom(pkgname, function), then we do not need the library() statement in the test. | non_priority | documentation in tests change pkgname function to library pkgname if needed and function please select a category the issue is focused on other let us know where something needs a refresh or put your idea here some tests have pkgname function we would like this to be library pkgname if needed and function if namespace already has importfrom pkgname function then we do not need the library statement in the test | 0 |
727,354 | 25,032,604,068 | IssuesEvent | 2022-11-04 13:38:05 | redhat-developer/odo | https://api.github.com/repos/redhat-developer/odo | closed | odo delete enters an infinite loop after project is deleted and component name is set | kind/bug priority/Medium area/component v2 | [kind/bug]
## What versions of software are you using?
- Operating System: Win10Pro
- Output of `odo version`:
```
odo v1.0.0-beta3 (c2b402e3)
Server: https://172.17.159.174:8443
Kubernetes: v1.11.0+d4cacc0
```
## How did you run odo exactly?
first:
`oc delete project/demoproj`
then
odo create
once you see `What do you wish to name the new component`, enter a different name and you will enter the infinite loop
## Actual behavior
```
$ odo create
? Which component type do you wish to create java
? Which version of 'java' component type do you wish to create 8
? Which input type do you wish to use for the component local
? Location of path component, relative to 'C:\work\src\tmp\springboot-rest' C:\work\src\tmp\springboot-rest
X Sorry, your reply was invalid: Unable to determine if component 'comp1' exists or not
? What do you wish to name the new component (java-nqmv)
```
## Expected behavior
Accept the provided name
## Any logs, error output, etc?
| 1.0 | odo delete enters an infinite loop after project is deleted and component name is set - [kind/bug]
## What versions of software are you using?
- Operating System: Win10Pro
- Output of `odo version`:
```
odo v1.0.0-beta3 (c2b402e3)
Server: https://172.17.159.174:8443
Kubernetes: v1.11.0+d4cacc0
```
## How did you run odo exactly?
first:
`oc delete project/demoproj`
then
odo create
once you see `What do you wish to name the new component`, enter a different name and you will enter the infinite loop
## Actual behavior
```
$ odo create
? Which component type do you wish to create java
? Which version of 'java' component type do you wish to create 8
? Which input type do you wish to use for the component local
? Location of path component, relative to 'C:\work\src\tmp\springboot-rest' C:\work\src\tmp\springboot-rest
X Sorry, your reply was invalid: Unable to determine if component 'comp1' exists or not
? What do you wish to name the new component (java-nqmv)
```
## Expected behavior
Accept the provided name
## Any logs, error output, etc?
| priority | odo delete enters an infinite loop after project is deleted and component name is set what versions of software are you using operating system output of odo version odo server kubernetes how did you run odo exactly first oc delete project demoproj then odo create once you see what do you wish to name the new component enter a different name and you will enter the infinite loop actual behavior odo create which component type do you wish to create java which version of java component type do you wish to create which input type do you wish to use for the component local location of path component relative to c work src tmp springboot rest c work src tmp springboot rest x sorry your reply was invalid unable to determine if component exists or not what do you wish to name the new component java nqmv expected behavior accept the provided name any logs error output etc | 1 |
150,691 | 11,981,312,242 | IssuesEvent | 2020-04-07 10:52:57 | onaio/reveal-frontend | https://api.github.com/repos/onaio/reveal-frontend | closed | Increase test coverage for InterventionPlan/IRS/index.tsx | Priority: High tests | Increase test coverage to be >= 85% for:
`src/containers/pages/InterventionPlan/IRS/index.tsx`
Part of #658 | 1.0 | Increase test coverage for InterventionPlan/IRS/index.tsx - Increase test coverage to be >= 85% for:
`src/containers/pages/InterventionPlan/IRS/index.tsx`
Part of #658 | non_priority | increase test coverage for interventionplan irs index tsx increase test coverage to be for src containers pages interventionplan irs index tsx part of | 0 |
135,392 | 30,288,547,671 | IssuesEvent | 2023-07-09 01:28:56 | quiqueck/BCLib | https://api.github.com/repos/quiqueck/BCLib | closed | [Bug] BCLib causes crash on game initialisation, version 1.20.1 | 🔥 bug ⚡ compatibility 🎉 Dev Code | ### What happened?
Game crashes after initialisation, crash log suspects BCLib. Could have something to do with the datapacks I have installed, as mentioned elsewhere here.
### BCLib
3.0.10
### Fabric API
0.84.0
### Fabric Loader
0.14.21
### Minecraft
1.20.1
### Relevant log output
```shell
---- Minecraft Crash Report ----
// Daisy, daisy...
Time: 2023-07-05 12:13:25
Description: Initializing game
java.lang.NullPointerException: Cannot invoke "org.betterx.bclib.client.models.CustomModelBakery.loadCustomModels(net.minecraft.class_3300)" because "org.betterx.bclib.client.BCLibClient.modelBakery" is null
at net.minecraft.class_1092.handler$zhj000$bclib$loadCustomModels(class_1092.java:531)
at net.minecraft.class_1092.method_25931(class_1092.java:84)
at net.minecraft.class_4014.method_18368(class_4014.java:32)
at net.minecraft.class_4014.<init>(class_4014.java:44)
at net.minecraft.class_4014.method_18369(class_4014.java:32)
at net.minecraft.class_4014.method_40087(class_4014.java:101)
at net.minecraft.class_3304.method_18232(class_3304.java:47)
at net.minecraft.class_310.<init>(class_310.java:652)
at net.minecraft.client.main.Main.main(Main.java:211)
at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:468)
at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74)
at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23)
A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------
-- Head --
Thread: Render thread
Stacktrace:
at net.minecraft.class_1092.handler$zhj000$bclib$loadCustomModels(class_1092.java:531)
at net.minecraft.class_1092.method_25931(class_1092.java:84)
at net.minecraft.class_4014.method_18368(class_4014.java:32)
at net.minecraft.class_4014.<init>(class_4014.java:44)
at net.minecraft.class_4014.method_18369(class_4014.java:32)
at net.minecraft.class_4014.method_40087(class_4014.java:101)
at net.minecraft.class_3304.method_18232(class_3304.java:47)
at net.minecraft.class_310.<init>(class_310.java:652)
-- Initialization --
Details:
Modules:
ADVAPI32.dll:Advanced Windows 32 Base API:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
COMCTL32.dll:User Experience Controls Library:6.10 (WinBuild.160101.0800):Microsoft Corporation
CRYPT32.dll:Crypto API32:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
CRYPTSP.dll:Cryptographic Service Provider API:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
ColorAdapterClient.dll:Microsoft Color Adapter Client:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
CoreMessaging.dll:Microsoft CoreMessaging Dll:10.0.19041.2193:Microsoft Corporation
CoreUIComponents.dll:Microsoft Core UI Components Dll:10.0.19041.546:Microsoft Corporation
DBGHELP.DLL:Windows Image Helper:10.0.19041.867 (WinBuild.160101.0800):Microsoft Corporation
DEVOBJ.dll:Device Information Set DLL:10.0.19041.1620 (WinBuild.160101.0800):Microsoft Corporation
DNSAPI.dll:DNS Client API DLL:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
GDI32.dll:GDI Client DLL:10.0.19041.2913 (WinBuild.160101.0800):Microsoft Corporation
GLU32.dll:OpenGL Utility Library DLL:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
IMM32.DLL:Multi-User Windows IMM32 API Client DLL:10.0.19041.2673 (WinBuild.160101.0800):Microsoft Corporation
IPHLPAPI.DLL:IP Helper API:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
KERNEL32.DLL:Windows NT BASE API Client DLL:10.0.19041.2788 (WinBuild.160101.0800):Microsoft Corporation
KERNELBASE.dll:Windows NT BASE API Client DLL:10.0.19041.2788 (WinBuild.160101.0800):Microsoft Corporation
MMDevApi.dll:MMDevice API:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
MSACM32.dll:Microsoft ACM Audio Filter:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
MSCTF.dll:MSCTF Server DLL:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
MpOav.dll:IOfficeAntiVirus Module:4.18.2008.9 (WinBuild.160101.0800):Microsoft Corporation
NLAapi.dll:Network Location Awareness 2:10.0.19041.3031 (WinBuild.160101.0800):Microsoft Corporation
NSI.dll:NSI User-mode interface DLL:10.0.19041.610 (WinBuild.160101.0800):Microsoft Corporation
NTASN1.dll:Microsoft ASN.1 API:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
Ole32.dll:Microsoft OLE for Windows:10.0.19041.1320 (WinBuild.160101.0800):Microsoft Corporation
OleAut32.dll:OLEAUT32.DLL:10.0.19041.985 (WinBuild.160101.0800):Microsoft Corporation
OpenAL.dll:Main implementation library:1.21.1:
PROPSYS.dll:Microsoft Property System:7.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
PSAPI.DLL:Process Status Helper:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
Pdh.dll:Windows Performance Data Helper DLL:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
RPCRT4.dll:Remote Procedure Call Runtime:10.0.19041.2788 (WinBuild.160101.0800):Microsoft Corporation
SETUPAPI.dll:Windows Setup API:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
SHCORE.dll:SHCORE:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
SHELL32.dll:Windows Shell Common Dll:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
UMPDC.dll
USER32.dll:Multi-User Windows USER API Client DLL:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
USERENV.dll:Userenv:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
VCRUNTIME140.dll:Microsoft® C Runtime Library:14.29.30139.0 built by: vcwrkspc:Microsoft Corporation
VERSION.dll:Version Checking and File Installation Libraries:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
WINHTTP.dll:Windows HTTP Services:10.0.19041.2075 (WinBuild.160101.0800):Microsoft Corporation
WINMM.dll:MCI API DLL:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
WINSTA.dll:Winstation Library:10.0.19041.2075 (WinBuild.160101.0800):Microsoft Corporation
WINTRUST.dll:Microsoft Trust Verification APIs:10.0.19041.2913 (WinBuild.160101.0800):Microsoft Corporation
WS2_32.dll:Windows Socket 2.0 32-Bit DLL:10.0.19041.1081 (WinBuild.160101.0800):Microsoft Corporation
WSOCK32.dll:Windows Socket 32-Bit DLL:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
WTSAPI32.dll:Windows Remote Desktop Session Host Server SDK APIs:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
Wldp.dll:Windows Lockdown Policy:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
amsi.dll:Anti-Malware Scan Interface:10.0.19041.2075 (WinBuild.160101.0800):Microsoft Corporation
apphelp.dll:Application Compatibility Client Library:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
awt.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
bcrypt.dll:Windows Cryptographic Primitives Library:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
bcryptPrimitives.dll:Windows Cryptographic Primitives Library:10.0.19041.2486 (WinBuild.160101.0800):Microsoft Corporation
cfgmgr32.dll:Configuration Manager DLL:10.0.19041.1620 (WinBuild.160101.0800):Microsoft Corporation
clbcatq.dll:COM+ Configuration Catalog:2001.12.10941.16384 (WinBuild.160101.0800):Microsoft Corporation
combase.dll:Microsoft COM for Windows:10.0.19041.1320 (WinBuild.160101.0800):Microsoft Corporation
cryptbase.dll:Base cryptographic API DLL:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
cryptnet.dll:Crypto Network Related API:10.0.19041.906 (WinBuild.160101.0800):Microsoft Corporation
dbgcore.DLL:Windows Core Debugging Helpers:10.0.19041.2788 (WinBuild.160101.0800):Microsoft Corporation
dhcpcsvc.DLL:DHCP Client Service:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
dhcpcsvc6.DLL:DHCPv6 Client:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
dinput8.dll:Microsoft DirectInput:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
drvstore.dll:Driver Store API:10.0.19041.2546 (WinBuild.160101.0800):Microsoft Corporation
dwmapi.dll:Microsoft Desktop Window Manager API:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
dxcore.dll:DXCore:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
fastprox.dll:WMI Custom Marshaller:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
fwpuclnt.dll:FWP/IPsec User-Mode API:10.0.19041.2913 (WinBuild.160101.0800):Microsoft Corporation
gdi32full.dll:GDI Client DLL:10.0.19041.2913 (WinBuild.160101.0800):Microsoft Corporation
glfw.dll:GLFW 3.4.0 DLL:3.4.0:GLFW
icm32.dll:Microsoft Color Management Module (CMM):10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
inputhost.dll:InputHost:10.0.19041.1741 (WinBuild.160101.0800):Microsoft Corporation
java.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
javaw.exe:OpenJDK Platform binary:17.0.3.0:Microsoft
jemalloc.dll
jimage.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
jli.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
jna3520136715536707092.dll:JNA native library:6.1.4:Java(TM) Native Access (JNA)
jsvml.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
jvm.dll:OpenJDK 64-Bit server VM:17.0.3.0:Microsoft
kernel.appcore.dll:AppModel API Host:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
lwjgl.dll
lwjgl_opengl.dll
lwjgl_stb.dll
management.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
management_ext.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
msasn1.dll:ASN.1 Runtime APIs:10.0.19041.2251 (WinBuild.160101.0800):Microsoft Corporation
mscms.dll:Microsoft Colour Matching System DLL:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
msdmo.dll:DMO Runtime:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
msvcp140.dll:Microsoft® C Runtime Library:14.29.30139.0 built by: vcwrkspc:Microsoft Corporation
msvcp_win.dll:Microsoft® C Runtime Library:10.0.19041.789 (WinBuild.160101.0800):Microsoft Corporation
msvcrt.dll:Windows NT CRT DLL:7.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
mswsock.dll:Microsoft Windows Sockets 2.0 Service Provider:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
napinsp.dll:E-mail Naming Shim Provider:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
ncrypt.dll:Windows NCrypt Router:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
net.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
nio.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
ntdll.dll:NT Layer DLL:10.0.19041.2788 (WinBuild.160101.0800):Microsoft Corporation
ntmarta.dll:Windows NT MARTA provider:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
nvoglv64.dll:NVIDIA Compatible OpenGL ICD:31.0.15.2756:NVIDIA Corporation
nvspcap64.dll:NVIDIA Game Proxy:3.27.0.112:NVIDIA Corporation
opengl32.dll:OpenGL Client DLL:10.0.19041.2193 (WinBuild.160101.0800):Microsoft Corporation
perfos.dll:Windows System Performance Objects DLL:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
pnrpnsp.dll:PNRP Name Space Provider:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
powrprof.dll:Power Profile Helper DLL:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
profapi.dll:User Profile Basic API:10.0.19041.844 (WinBuild.160101.0800):Microsoft Corporation
rasadhlp.dll:Remote Access AutoDial Helper:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
rsaenh.dll:Microsoft Enhanced Cryptographic Provider:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
sapi.dll:Speech API:5.3.25931.00 (WinBuild.160101.0800):Microsoft Corporation
sechost.dll:Host for SCM/SDDL/LSA Lookup APIs:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
shlwapi.dll:Shell Light-weight Utility Library:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
sunmscapi.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
textinputframework.dll:"TextInputFramework.DYNLINK":10.0.19041.3086 (WinBuild.160101.0800):Microsoft Corporation
ucrtbase.dll:Microsoft® C Runtime Library:10.0.19041.789 (WinBuild.160101.0800):Microsoft Corporation
uxtheme.dll:Microsoft UxTheme Library:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
vcruntime140_1.dll:Microsoft® C Runtime Library:14.29.30139.0 built by: vcwrkspc:Microsoft Corporation
verify.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
wbemcomn.dll:WMI:10.0.19041.1566 (WinBuild.160101.0800):Microsoft Corporation
wbemprox.dll:WMI:10.0.19041.1320 (WinBuild.160101.0800):Microsoft Corporation
wbemsvc.dll:WMI:10.0.19041.1320 (WinBuild.160101.0800):Microsoft Corporation
win32u.dll:Win32u:10.0.19041.3086 (WinBuild.160101.0800):Microsoft Corporation
windows.storage.dll:Microsoft WinRT Storage API:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
winmmbase.dll:Base Multimedia Extension API DLL:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
winrnr.dll:LDAP RnR Provider DLL:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
wintypes.dll:Windows Base Types DLL:10.0.19041.1320 (WinBuild.160101.0800):Microsoft Corporation
wshbth.dll:Windows Sockets Helper DLL:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
wshunix.dll:AF_UNIX Winsock2 Helper DLL:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
xinput1_4.dll:Microsoft Common Controller API:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
zip.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
Stacktrace:
at net.minecraft.client.main.Main.main(Main.java:211)
at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:468)
at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74)
at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23)
-- System Details --
Details:
Minecraft Version: 1.20.1
Minecraft Version ID: 1.20.1
Operating System: Windows 10 (amd64) version 10.0
Java Version: 17.0.3, Microsoft
Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft
Memory: 1133511176 bytes (1081 MiB) / 1811939328 bytes (1728 MiB) up to 11408506880 bytes (10880 MiB)
CPUs: 12
Processor Vendor: AuthenticAMD
Processor Name: AMD Ryzen 5 3600 6-Core Processor
Identifier: AuthenticAMD Family 23 Model 113 Stepping 0
Microarchitecture: Zen 2
Frequency (GHz): 3.60
Number of physical packages: 1
Number of physical CPUs: 6
Number of logical CPUs: 12
Graphics card #0 name: NVIDIA GeForce RTX 2070 SUPER
Graphics card #0 vendor: NVIDIA (0x10de)
Graphics card #0 VRAM (MB): 4095.00
Graphics card #0 deviceId: 0x1e84
Graphics card #0 versionInfo: DriverVersion=31.0.15.2756
Memory slot #0 capacity (MB): 8192.00
Memory slot #0 clockSpeed (GHz): 3.20
Memory slot #0 type: DDR4
Memory slot #1 capacity (MB): 8192.00
Memory slot #1 clockSpeed (GHz): 3.20
Memory slot #1 type: DDR4
Virtual memory max (MB): 29133.25
Virtual memory used (MB): 23678.39
Swap memory total (MB): 12800.00
Swap memory used (MB): 1154.80
JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx10880m -Xms256m
Fabric Mods:
additionallanterns: Additional Lanterns 1.0.4-a
additionalstructures: Additional Structures 4.2.0
adorn: Adorn 5.0.0+1.20.1
advancednetherite: Advanced Netherite 2.0.2-1.20.1
appleskin: AppleSkin 2.5.0+mc1.20
aqupdcaracal: Caracal mob 1.20-2.3.3
areas: Areas 5.0
arrowentitylootdrop: Arrow Entity Loot Drop 1.2.1
attackspeedenchantment: Attack Speed Enchantment 1.3.0.20
awesomedungeon: Awesome dungeon 3.2.0
awesomedungeonnether: Awesome dungeon nether 3.1.1
awesomedungeonocean: Awesome dungeon edition ocean 3.3.0
bclib: BCLib 3.0.10
wunderlib: WunderLib 1.1.3
beautify: Beautify 1.0.0+1.20
beekeeperhut: Friends&Foes - Beekeeper Hut 1.3.0
beenfo: Beenfo 1.20-fabric0.83.0-1.3.3
crowdin-translate: CrowdinTranslate 1.4+1.19.3
gbfabrictools: GBfabrictools 1.3.5+1.20
betterallay: Better Allay [FABRIC]-1.4.0-1.20.1
betteranimationscollection: Better Animations Collection 8.0.0
betterarcheology: Better Archeology 1.0.2
betterend: Better End 4.0.7
betterf3: BetterF3 7.0.0
betternether: Better Nether 9.0.7
betterstats: Better Statistics Screen 2.10.3+1.20.1
architectury: Architectury 9.0.8
tcdcommons: TCD Commons API 2.10.2+1.20.1
bettertridentreturn: Better Trident Return 1.20.1-1.0.2
bettertrims: bettertrims 1.0.3
com_github_llamalad7_mixinextras: MixinExtras 0.2.0-beta.8
blossom: Blossom 1.0.7
boatiview: Boat Item View Fabric 0.0.5
borderlessmining: Borderless Mining 1.1.8+1.20.1
bridgingmod: Bridging Mod 1.20.1-v1.3.0
bushierflowers: Bushier Flowers 0.0.3-1.20.1
c2me: Concurrent Chunk Management Engine 0.2.0+alpha.10.91
c2me-base: Concurrent Chunk Management Engine (Base) 0.2.0+alpha.10.91
c2me-client-uncapvd: Concurrent Chunk Management Engine (Client/Uncap View Distance) 0.2.0+alpha.10.91
c2me-fixes-chunkio-threading-issues: Concurrent Chunk Management Engine (Fixes/Chunk IO/Threading Issues) 0.2.0+alpha.10.91
c2me-fixes-general-threading-issues: Concurrent Chunk Management Engine (Fixes/General/Threading Issues) 0.2.0+alpha.10.91
c2me-fixes-worldgen-threading-issues: Concurrent Chunk Management Engine (Fixes/WorldGen/Threading Issues) 0.2.0+alpha.10.91
c2me-fixes-worldgen-vanilla-bugs: Concurrent Chunk Management Engine (Fixes/WorldGen/Vanilla Bugs) 0.2.0+alpha.10.91
c2me-notickvd: Concurrent Chunk Management Engine (No Tick View Distance) 0.2.0+alpha.10.91
c2me-opts-allocs: Concurrent Chunk Management Engine (Optimizations/Memory Allocations) 0.2.0+alpha.10.91
c2me-opts-chunk-access: Concurrent Chunk Management Engine (Optimizations/Chunk Access) 0.2.0+alpha.10.91
c2me-opts-chunkio: Concurrent Chunk Management Engine (Optimizations/Chunk IO) 0.2.0+alpha.10.91
c2me-opts-math: Concurrent Chunk Management Engine (Optimizations/Math) 0.2.0+alpha.10.91
c2me-opts-scheduling: Concurrent Chunk Management Engine (Optimizations/Scheduling) 0.2.0+alpha.10.91
c2me-opts-worldgen-general: Concurrent Chunk Management Engine (Optimizations/General WorldGen) 0.2.0+alpha.10.91
c2me-opts-worldgen-vanilla: Concurrent Chunk Management Engine (Optimizations/Vanilla WorldGen) 0.2.0+alpha.10.91
c2me-rewrites-chunk-serializer: Concurrent Chunk Management Engine (Rewrites/Chunk Serializer) 0.2.0+alpha.10.91
c2me-rewrites-chunkio: Concurrent Chunk Management Engine (Rewrites/Chunk IO) 0.2.0+alpha.10.91
c2me-server-utils: Concurrent Chunk Management Engine (Server Utils) 0.2.0+alpha.10.91
c2me-threading-chunkio: Concurrent Chunk Management Engine (Threading/WorldGen) 0.2.0+alpha.10.91
c2me-threading-lighting: Concurrent Chunk Management Engine (Threading/Lighting) 0.2.0+alpha.10.91
c2me-threading-worldgen: Concurrent Chunk Management Engine (Threading/WorldGen) 0.2.0+alpha.10.91
com_electronwill_night-config_core: core 3.6.5
com_electronwill_night-config_toml: toml 3.6.5
com_ibm_async_asyncutil: asyncutil 0.1.0
net_objecthunter_exp4j: exp4j 0.4.8
org_threadly_threadly: threadly 7.0
can-i-mine-this-block: cAn i MiNe thIS bLOCk? 1.4.0
carpeted: Carpeted 1.20-1.4
cat_jam: cat_jam 1.1.3
cavedust: Cave Dust 1.4.1
kirin: Kirin UI 1.15.0
cenchants: Combat Enchants 2.14.9
charmofundying: Charm of Undying 6.4.2+1.20.1
spectrelib: SpectreLib 0.13.13+1.20.1
chas: Craftable Horse Armour & Saddle 1.20-1.10-Fabric
chickensshed: ChickensShed 1.4.0-0
cinderscapes: Cinderscapes 4.0.7
biolith: Biolith 1.0.0-alpha.8
cinderscapes-client: Cinderscapes: Client 4.0.7
cinderscapes-common: Cinderscapes: Common 4.0.7
cinderscapes-worldgen: Cinderscapes: World Generation 4.0.7
terraform-biome-remapper-api-v1: Terraform Biome Remapper API (v1) 7.0.1
terraform-shapes-api-v1: Terraform Shapes API (v1) 7.0.1
terraform-surfaces-api-v1: Terraform Surfaces API (v1) 7.0.1
terraform-wood-api-v1: Terraform Wood API (v1) 7.0.1
climbladdersfast: ClimbLaddersFast 4.0-1.20.1
cloth-config: Cloth Config v11 11.0.99
cloth-basic-math: cloth-basic-math 0.6.1
clutter: Clutter 1.20.1-0.3.8
collective: Collective 6.62
completeconfig: CompleteConfig 2.4.0
completeconfig-base: completeconfig-base 2.4.0
completeconfig-gui-cloth: completeconfig-gui-cloth 2.4.0
completeconfig-gui-yacl: completeconfig-gui-yacl 2.4.0
connectiblechains: Connectible Chains 2.2.1+1.20.1
cozy: Cozy 1.1.0
craterlib: CraterLib 1.0.1
crayfish: Womp's Crayfish Mod 1.34
creeperoverhaul: Creeper Overhaul 3.0.1
cristellib: Cristel Lib 1.1
croptopia: Croptopia 2.3.0
com_typesafe_config: config 1.4.1
io_leangen_geantyref_geantyref: geantyref 1.3.11
org_spongepowered_configurate-core: configurate-core 4.1.2
org_spongepowered_configurate-hocon: configurate-hocon 4.1.2
cryingportals: Crying Portals 2.3
dawn: Dawn API 5.0.0
debugify: Debugify 1.20.1+1.1
dogslie: Let Sleeping Dogs Lie 1.2.0
doubledoors: Double Doors 5.0
duckling: Duckling 3.0.0
dungeons_andtaverns_mr: Dungeons and Taverns 1-v2.1.3
dungeons_arise: When Dungeons Arise 2.1.56.1
durabilitytooltip: Durability Tooltip 1.1.4
dyed: Dyed 1.1.2
dynamicfps: Dynamic FPS 2.4.0
com_moandjiezana_toml_toml4j: toml4j 0.7.2
ears: Ears 1.4.6
easiervillagertrading: EasierVillagerTrading 1.20-fabric0.83.0-1.5.4
easymagic: Easy Magic 8.0.0
edibles: Edibles 4.1
elytraslot: Elytra Slot 6.3.0+1.20.1
elytratrims: Elytra Trims 1.1.9
conditional-mixin: conditional mixin 0.3.2
enchantinginfuser: Enchanting Infuser 8.0.0
enchantmentsplus: Enchantments Plus 1.1.8+1.20.1
reach-entity-attributes: Reach Entity Attributes 2.4.0
endrem: End Remastered 5.2.2
expanded_trident_enchanting: Expanded Trident Enchanting 1.0.7
explorations: Explorations 1.20.1-1.5.1
explorerscompass: Explorer's Compass 1.20.1-2.2.2-fabric
explorify: Explorify v1.3.0-mc1.20u1.20.1
fabric-api: Fabric API 0.85.0+1.20.1
fabric-api-base: Fabric API Base 0.4.29+b04edc7a77
fabric-api-lookup-api-v1: Fabric API Lookup API (v1) 1.6.34+4d8536c977
fabric-biome-api-v1: Fabric Biome API (v1) 13.0.10+b3afc78b77
fabric-block-api-v1: Fabric Block API (v1) 1.0.9+e022e5d177
fabric-blockrenderlayer-v1: Fabric BlockRenderLayer Registration (v1) 1.1.39+b3afc78b77
fabric-client-tags-api-v1: Fabric Client Tags 1.1.0+97bb207577
fabric-command-api-v1: Fabric Command API (v1) 1.2.32+f71b366f77
fabric-command-api-v2: Fabric Command API (v2) 2.2.11+b3afc78b77
fabric-commands-v0: Fabric Commands (v0) 0.2.49+df3654b377
fabric-containers-v0: Fabric Containers (v0) 0.1.61+df3654b377
fabric-content-registries-v0: Fabric Content Registries (v0) 4.0.8+b3afc78b77
fabric-convention-tags-v1: Fabric Convention Tags 1.5.3+b3afc78b77
fabric-crash-report-info-v1: Fabric Crash Report Info (v1) 0.2.18+aeb40ebe77
fabric-data-generation-api-v1: Fabric Data Generation API (v1) 12.1.12+b3afc78b77
fabric-dimensions-v1: Fabric Dimensions API (v1) 2.1.51+b3afc78b77
fabric-entity-events-v1: Fabric Entity Events (v1) 1.5.21+b3afc78b77
fabric-events-interaction-v0: Fabric Events Interaction (v0) 0.6.0+b3afc78b77
fabric-events-lifecycle-v0: Fabric Events Lifecycle (v0) 0.2.61+df3654b377
fabric-game-rule-api-v1: Fabric Game Rule API (v1) 1.0.38+b04edc7a77
fabric-item-api-v1: Fabric Item API (v1) 2.1.26+b3afc78b77
fabric-item-group-api-v1: Fabric Item Group API (v1) 4.0.8+40e50c4677
fabric-key-binding-api-v1: Fabric Key Binding API (v1) 1.0.36+fb8d95da77
fabric-keybindings-v0: Fabric Key Bindings (v0) 0.2.34+df3654b377
fabric-lifecycle-events-v1: Fabric Lifecycle Events (v1) 2.2.20+b3afc78b77
fabric-loot-api-v2: Fabric Loot API (v2) 1.1.38+b3afc78b77
fabric-loot-tables-v1: Fabric Loot Tables (v1) 1.1.42+9e7660c677
fabric-message-api-v1: Fabric Message API (v1) 5.1.6+b3afc78b77
fabric-mining-level-api-v1: Fabric Mining Level API (v1) 2.1.48+b3afc78b77
fabric-models-v0: Fabric Models (v0) 0.3.35+b3afc78b77
fabric-networking-api-v1: Fabric Networking API (v1) 1.3.8+b3afc78b77
fabric-networking-v0: Fabric Networking (v0) 0.3.48+df3654b377
fabric-object-builder-api-v1: Fabric Object Builder API (v1) 11.1.0+6beca84877
fabric-particles-v1: Fabric Particles (v1) 1.1.0+201a23a077
fabric-recipe-api-v1: Fabric Recipe API (v1) 1.0.18+b3afc78b77
fabric-registry-sync-v0: Fabric Registry Sync (v0) 2.2.6+b3afc78b77
fabric-renderer-api-v1: Fabric Renderer API (v1) 3.1.0+c154966e77
fabric-renderer-indigo: Fabric Renderer - Indigo 1.4.0+c154966e77
fabric-renderer-registries-v1: Fabric Renderer Registries (v1) 3.2.44+df3654b377
fabric-rendering-data-attachment-v1: Fabric Rendering Data Attachment (v1) 0.3.33+b3afc78b77
fabric-rendering-fluids-v1: Fabric Rendering Fluids (v1) 3.0.26+b3afc78b77
fabric-rendering-v0: Fabric Rendering (v0) 1.1.47+df3654b377
fabric-rendering-v1: Fabric Rendering (v1) 3.0.6+b3afc78b77
fabric-resource-conditions-api-v1: Fabric Resource Conditions API (v1) 2.3.5+ea08f9d877
fabric-resource-loader-v0: Fabric Resource Loader (v0) 0.11.8+e3d6ed2577
fabric-screen-api-v1: Fabric Screen API (v1) 2.0.6+b3afc78b77
fabric-screen-handler-api-v1: Fabric Screen Handler API (v1) 1.3.27+b3afc78b77
fabric-sound-api-v1: Fabric Sound API (v1) 1.0.12+b3afc78b77
fabric-transfer-api-v1: Fabric Transfer API (v1) 3.2.3+43a3fedd77
fabric-transitive-access-wideners-v1: Fabric Transitive Access Wideners (v1) 4.2.0+b3afc78b77
fabric-language-kotlin: Fabric Language Kotlin 1.9.6+kotlin.1.8.22
org_jetbrains_kotlin_kotlin-reflect: kotlin-reflect 1.8.22
org_jetbrains_kotlin_kotlin-stdlib: kotlin-stdlib 1.8.22
org_jetbrains_kotlin_kotlin-stdlib-jdk7: kotlin-stdlib-jdk7 1.8.22
org_jetbrains_kotlin_kotlin-stdlib-jdk8: kotlin-stdlib-jdk8 1.8.22
org_jetbrains_kotlinx_atomicfu-jvm: atomicfu-jvm 0.21.0
org_jetbrains_kotlinx_kotlinx-coroutines-core-jvm: kotlinx-coroutines-core-jvm 1.7.1
org_jetbrains_kotlinx_kotlinx-coroutines-jdk8: kotlinx-coroutines-jdk8 1.7.1
org_jetbrains_kotlinx_kotlinx-datetime-jvm: kotlinx-datetime-jvm 0.4.0
org_jetbrains_kotlinx_kotlinx-serialization-cbor-jvm: kotlinx-serialization-cbor-jvm 1.5.1
org_jetbrains_kotlinx_kotlinx-serialization-core-jvm: kotlinx-serialization-core-jvm 1.5.1
org_jetbrains_kotlinx_kotlinx-serialization-json-jvm: kotlinx-serialization-json-jvm 1.5.1
fabricloader: Fabric Loader 0.14.21
fallingleaves: Falling Leaves 1.15.1+1.20.1
ferritecore: FerriteCore 6.0.0
flowerymooblooms: Friends&Foes - Flowery Mooblooms 1.1.0
forgeconfigapiport: Forge Config API Port 8.0.0
friendsandfoes: Friends&Foes 1.9.2
frostiful: Frostiful 0.7
mm: Manningham Mills 2.3
fwaystones: Fabric Waystones 3.1.2+mc1.20
geckolib: Geckolib 4.2
com_eliotlash_mclib_mclib: mclib 20
glow_ink_plus: Glow Ink Plus Mod 1.2.0
grindenchantments: Grind Enchantments 3.1.2+1.20
codec-config-api: Codec Config API 1.0.2+1.19.3
handcrafted: Handcrafted 2.3.2
hopobetterruinedportal: Hopo Better Ruined Portal 1.3.6
horseexpert: Horse Expert 8.0.0
huskspawn: Husk Spawn 3.3
incantationem: Incantationem 1.2.1+1.20
yet_another_config_lib_v3: YetAnotherConfigLib 3.0.1+1.20
com_twelvemonkeys_common_common-image: common-image 3.9.4
com_twelvemonkeys_common_common-io: common-io 3.9.4
com_twelvemonkeys_common_common-lang: common-lang 3.9.4
com_twelvemonkeys_imageio_imageio-core: imageio-core 3.9.4
com_twelvemonkeys_imageio_imageio-metadata: imageio-metadata 3.9.4
com_twelvemonkeys_imageio_imageio-webp: imageio-webp 3.9.4
inventoryhud: Inventory HUD + 3.4.13
inventorytotem: Inventory Totem 3.0
iris: Iris 1.6.4
io_github_douira_glsl-transformer: glsl-transformer 2.0.0-pre13
org_anarres_jcpp: jcpp 1.4.14
org_antlr_antlr4-runtime: antlr4-runtime 4.11.1
jade: Jade 11.1.4
jamlib: JamLib 0.6.0+1.20
java: OpenJDK 64-Bit Server VM 17
jei: Just Enough Items 15.2.0.22
jmc: Just More Cakes! 1.12.1
justmobheads: Just Mob Heads 7.3
lambdynlights: LambDynamicLights 2.3.1+1.20.1
pride: Pride Lib 1.2.0+1.19.4
spruceui: SpruceUI 5.0.0+1.20
lazydfu: LazyDFU 0.1.3
libraryferret: Library ferret 4.0.0
lithium: Lithium 0.11.2
lootintegrations: Loot integration Mod 1.20.1-3.1
lovely_snails: Lovely Snails 1.1.2+1.20.1
mavapi: More Axolotl Variants API 1.1.1
mavm: More Axolotl Variants Mod 1.2.4
mbt: More Beautiful Torches 2.4.0-1.20.1
mcwfences: Macaw's Fences and Walls 1.0.7
mcwlights: Macaw's Lights and Lamps 1.0.6
mcwpaths: Macaw's Paths and Pavings 1.0.3
mcwroofs: Macaw's Roofs 2.2.4
mcwtrpdoors: Macaw's Trapdoors 1.1.1
memoryleakfix: Memory Leak Fix 1.1.1
midnightlib: MidnightLib 1.4.1
minecraft: Minecraft 1.20.1
mob_captains_mr: Mob Captains 1-v2.1.2
modelfix: Model Gap Fix 1.14
modmenu: Mod Menu 7.1.0
moonlight: Moonlight 1.20-2.5.16
mooshroomspawn: Mooshroom Spawn 3.3
mooshroomtweaks: Mooshroom Tweaks 3.2
more-axolotl: More Axolotl 2.0.1
more_mobs_mr: More Mobs 1.4
moreberries: More Berries 1.5.5
morebows: More Bows Restrung 1.0.11+1.20.x
moredoors: More Doors 1.5
morefrogs: More Frogs 1.20.1-1.2.5-fabric
moremobvariants: More Mob Variants 1.2.2
mousetweaks: Mouse Tweaks 2.25
moyai: moyai 1.20-2.0.2
mru: Mineblock's Repeated Utilities 0.2.1+1.20
naturescompass: Nature's Compass 1.20.1-2.2.1-fabric
netherdepthsupgrade: Nether Depths Upgrade fabric-3.0.0-1.20
nethermap: Better Nether Map 3.0.0-1.20.1
notenoughcrashes: Not Enough Crashes 4.4.4+1.20.1
npcvariety: NPC Variety 2.3.0
onsoulfire: On Soul Fire 1.20.1
cardinal-components-base: Cardinal Components API (base) 5.2.1
cardinal-components-entity: Cardinal Components API (entities) 5.2.1
owo: oωo 0.11.1+1.20
blue_endless_jankson: jankson 1.2.2
philipsruins: Philip`s Ruins 1.20.1
playertrackingcompass: Player Tracking Compass 3.0
plushies: Plushie Mod 1.2.1
presencefootsteps: Presence Footsteps 1.9.0
promenade: Promenade 4.1.0
pumpkillagersquest: Pumpkillager's Quest 3.2
puzzle: Puzzle 1.5.1+1.20
puzzle-base: Puzzle Base 1.5.1+1.20
puzzle-gui: Puzzle GUI 1.5.1+1.20
puzzle-models: Puzzle Models 1.5.1+1.20
puzzle-splashscreen: Puzzle Splash Screen 1.5.1+1.20
puzzleslib: Puzzles Lib 8.0.7
random_mob_sizes: Random Mob Sizes 1.20.1-1.3
randombonemealflowers: Random Bone Meal Flowers 4.1
regions_unexplored: Regions Unexplored 0.4.1+1.20.1
resourcefulconfig: Resourcefulconfig 2.0.0
resourcefullib: Resourceful Lib 2.1.1
com_teamresourceful_yabn: yabn 1.0.3
rightclickharvest: Right Click Harvest 3.2.2+1.19.x-1.20.1-fabric
rocks: This Rocks! 1.7.1
ruined_equipment: Ruined Equipment 2.3.1
silkspawners: SilkSpawners 1.1.3
simple-rpc: Simple RPC 3.2.2
me_hypherionmc_simplerpc_simple-rpc-common: simple-rpc-common 5.0.0
simplehats: SimpleHats 1.20.1-0.2.0
skeletonhorsespawn: Skeleton Horse Spawn 3.6
skyvillages: Sky Villages 1.0.2.1-1.20.1
snuffles: Snuffles 1.0.0+1.20
sodium: Sodium 0.4.10+build.27
soulfired: Soul fire'd 3.2.0.0
sound_physics_remastered: Sound Physics Remastered 1.20.1-1.1.1
spellbound_weapons_mr: Spellbound Weapons 4.0.5f
status-effect-bars: Status Effect Bars 1.0.3
stoneworks: Stoneworks 8.0.0
strangeberries: Strange Berries 2.2
strayspawn: Stray Spawn 3.3
subterrestrial: Subterrestrial 2.2.0
supermartijn642configlib: SuperMartijn642's Config Lib 1.1.6
supermartijn642corelib: SuperMartijn642's Core Lib 1.1.10+a
supplementaries: Supplementaries 1.20-2.5.17
surfacemushrooms: Surface Mushrooms 3.1
swampier_swamps: Swampier Swamps 1.20-4.0.0
t_and_t: Towns and Towers 1.10.2
terrablender: TerraBlender 3.0.0.165
thermoo: Thermoo 1.6.1
tlc: The Lost Castle 1.0.1
trinkets: Trinkets 3.7.0
ultris_mr: Ultris: Boss Expansion 5.6.9b
uncraftables: Uncraftable Recipes 1.10
universalbonemeal: Universal Bone Meal 8.0.0
universalenchants: Universal Enchants 8.0.0
extensibleenums: Extensible Enums 7.0.1
unsaddle: Unsaddle 0.2.1
unsaddle-compat-1-15: Unsaddle 1.15 Compat 0.2.1
unsaddle-compat-1-16: Unsaddle 1.16 Compat 0.2.1
unsaddle-core: Unsaddle Core 0.2.1
uteamcore: U Team Core 5.1.3.267
vafoen: Vanilla Foods Enhanced 1.8
vanilla_degus: Vanilla Degus 1.4.0
varietyapi: VarietyAPI 1.0
varietyaquatic: Variety Aquatic 1.0.4.8
veinmining: Vein Mining 1.2.0+1.20.1
wandering_trader_tradesfabric: Wandering Trader Trades(Fabric) 1.0.0
wildfire_gender: Wildfire's Female Gender Mod 1.20-3.0.1
windchimes: Windchimes 1.2.3+1.20
woof: Woof 4.0.2+1.20.1
wwoo: William Wythers' Overhauled Overworld 3.2.0-beta
xaerominimap: Xaero's Minimap 23.5.0
xaeroworldmap: Xaero's World Map 1.30.6
ydms_redpanda: YDM's Red Panda 1.0.4
Loaded Shaderpack: (off)
NEC status: Has NEC: INVALID
Launched Version: fabric-loader-0.14.21-1.20.1
Backend library: LWJGL version 3.3.1 SNAPSHOT
Backend API: NVIDIA GeForce RTX 2070 SUPER/PCIe/SSE2 GL version 3.2.0 NVIDIA 527.56, NVIDIA Corporation
Window size: <not initialized>
GL Caps: Using framebuffer using OpenGL 3.2
GL debug messages:
Using VBOs: Yes
Is Modded: Definitely; Client brand changed to 'fabric'
Type: Client (map_client.txt)
CPU: 12x AMD Ryzen 5 3600 6-Core Processor
Suspected Mods: Minecraft (minecraft), Fabric Loader (fabricloader), BCLib (bclib)
```
### Other Mods
```shell
In log above
```
| 1.0 | [Bug] BCLib causes crash on game initialisation, version 1.20.1 - ### What happened?
Game crashes after initialisation, crash log suspects BCLib. Could have something to do with the datapacks I have installed, as mentioned elsewhere here.
### BCLib
3.0.10
### Fabric API
0.84.0
### Fabric Loader
0.14.21
### Minecraft
1.20.1
### Relevant log output
```shell
---- Minecraft Crash Report ----
// Daisy, daisy...
Time: 2023-07-05 12:13:25
Description: Initializing game
java.lang.NullPointerException: Cannot invoke "org.betterx.bclib.client.models.CustomModelBakery.loadCustomModels(net.minecraft.class_3300)" because "org.betterx.bclib.client.BCLibClient.modelBakery" is null
at net.minecraft.class_1092.handler$zhj000$bclib$loadCustomModels(class_1092.java:531)
at net.minecraft.class_1092.method_25931(class_1092.java:84)
at net.minecraft.class_4014.method_18368(class_4014.java:32)
at net.minecraft.class_4014.<init>(class_4014.java:44)
at net.minecraft.class_4014.method_18369(class_4014.java:32)
at net.minecraft.class_4014.method_40087(class_4014.java:101)
at net.minecraft.class_3304.method_18232(class_3304.java:47)
at net.minecraft.class_310.<init>(class_310.java:652)
at net.minecraft.client.main.Main.main(Main.java:211)
at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:468)
at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74)
at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23)
A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------
-- Head --
Thread: Render thread
Stacktrace:
at net.minecraft.class_1092.handler$zhj000$bclib$loadCustomModels(class_1092.java:531)
at net.minecraft.class_1092.method_25931(class_1092.java:84)
at net.minecraft.class_4014.method_18368(class_4014.java:32)
at net.minecraft.class_4014.<init>(class_4014.java:44)
at net.minecraft.class_4014.method_18369(class_4014.java:32)
at net.minecraft.class_4014.method_40087(class_4014.java:101)
at net.minecraft.class_3304.method_18232(class_3304.java:47)
at net.minecraft.class_310.<init>(class_310.java:652)
-- Initialization --
Details:
Modules:
ADVAPI32.dll:Advanced Windows 32 Base API:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
COMCTL32.dll:User Experience Controls Library:6.10 (WinBuild.160101.0800):Microsoft Corporation
CRYPT32.dll:Crypto API32:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
CRYPTSP.dll:Cryptographic Service Provider API:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
ColorAdapterClient.dll:Microsoft Color Adapter Client:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
CoreMessaging.dll:Microsoft CoreMessaging Dll:10.0.19041.2193:Microsoft Corporation
CoreUIComponents.dll:Microsoft Core UI Components Dll:10.0.19041.546:Microsoft Corporation
DBGHELP.DLL:Windows Image Helper:10.0.19041.867 (WinBuild.160101.0800):Microsoft Corporation
DEVOBJ.dll:Device Information Set DLL:10.0.19041.1620 (WinBuild.160101.0800):Microsoft Corporation
DNSAPI.dll:DNS Client API DLL:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
GDI32.dll:GDI Client DLL:10.0.19041.2913 (WinBuild.160101.0800):Microsoft Corporation
GLU32.dll:OpenGL Utility Library DLL:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
IMM32.DLL:Multi-User Windows IMM32 API Client DLL:10.0.19041.2673 (WinBuild.160101.0800):Microsoft Corporation
IPHLPAPI.DLL:IP Helper API:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
KERNEL32.DLL:Windows NT BASE API Client DLL:10.0.19041.2788 (WinBuild.160101.0800):Microsoft Corporation
KERNELBASE.dll:Windows NT BASE API Client DLL:10.0.19041.2788 (WinBuild.160101.0800):Microsoft Corporation
MMDevApi.dll:MMDevice API:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
MSACM32.dll:Microsoft ACM Audio Filter:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
MSCTF.dll:MSCTF Server DLL:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
MpOav.dll:IOfficeAntiVirus Module:4.18.2008.9 (WinBuild.160101.0800):Microsoft Corporation
NLAapi.dll:Network Location Awareness 2:10.0.19041.3031 (WinBuild.160101.0800):Microsoft Corporation
NSI.dll:NSI User-mode interface DLL:10.0.19041.610 (WinBuild.160101.0800):Microsoft Corporation
NTASN1.dll:Microsoft ASN.1 API:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
Ole32.dll:Microsoft OLE for Windows:10.0.19041.1320 (WinBuild.160101.0800):Microsoft Corporation
OleAut32.dll:OLEAUT32.DLL:10.0.19041.985 (WinBuild.160101.0800):Microsoft Corporation
OpenAL.dll:Main implementation library:1.21.1:
PROPSYS.dll:Microsoft Property System:7.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
PSAPI.DLL:Process Status Helper:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
Pdh.dll:Windows Performance Data Helper DLL:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
RPCRT4.dll:Remote Procedure Call Runtime:10.0.19041.2788 (WinBuild.160101.0800):Microsoft Corporation
SETUPAPI.dll:Windows Setup API:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
SHCORE.dll:SHCORE:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
SHELL32.dll:Windows Shell Common Dll:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
UMPDC.dll
USER32.dll:Multi-User Windows USER API Client DLL:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
USERENV.dll:Userenv:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
VCRUNTIME140.dll:Microsoft® C Runtime Library:14.29.30139.0 built by: vcwrkspc:Microsoft Corporation
VERSION.dll:Version Checking and File Installation Libraries:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
WINHTTP.dll:Windows HTTP Services:10.0.19041.2075 (WinBuild.160101.0800):Microsoft Corporation
WINMM.dll:MCI API DLL:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
WINSTA.dll:Winstation Library:10.0.19041.2075 (WinBuild.160101.0800):Microsoft Corporation
WINTRUST.dll:Microsoft Trust Verification APIs:10.0.19041.2913 (WinBuild.160101.0800):Microsoft Corporation
WS2_32.dll:Windows Socket 2.0 32-Bit DLL:10.0.19041.1081 (WinBuild.160101.0800):Microsoft Corporation
WSOCK32.dll:Windows Socket 32-Bit DLL:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
WTSAPI32.dll:Windows Remote Desktop Session Host Server SDK APIs:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
Wldp.dll:Windows Lockdown Policy:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
amsi.dll:Anti-Malware Scan Interface:10.0.19041.2075 (WinBuild.160101.0800):Microsoft Corporation
apphelp.dll:Application Compatibility Client Library:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
awt.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
bcrypt.dll:Windows Cryptographic Primitives Library:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
bcryptPrimitives.dll:Windows Cryptographic Primitives Library:10.0.19041.2486 (WinBuild.160101.0800):Microsoft Corporation
cfgmgr32.dll:Configuration Manager DLL:10.0.19041.1620 (WinBuild.160101.0800):Microsoft Corporation
clbcatq.dll:COM+ Configuration Catalog:2001.12.10941.16384 (WinBuild.160101.0800):Microsoft Corporation
combase.dll:Microsoft COM for Windows:10.0.19041.1320 (WinBuild.160101.0800):Microsoft Corporation
cryptbase.dll:Base cryptographic API DLL:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
cryptnet.dll:Crypto Network Related API:10.0.19041.906 (WinBuild.160101.0800):Microsoft Corporation
dbgcore.DLL:Windows Core Debugging Helpers:10.0.19041.2788 (WinBuild.160101.0800):Microsoft Corporation
dhcpcsvc.DLL:DHCP Client Service:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
dhcpcsvc6.DLL:DHCPv6 Client:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
dinput8.dll:Microsoft DirectInput:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
drvstore.dll:Driver Store API:10.0.19041.2546 (WinBuild.160101.0800):Microsoft Corporation
dwmapi.dll:Microsoft Desktop Window Manager API:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
dxcore.dll:DXCore:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
fastprox.dll:WMI Custom Marshaller:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
fwpuclnt.dll:FWP/IPsec User-Mode API:10.0.19041.2913 (WinBuild.160101.0800):Microsoft Corporation
gdi32full.dll:GDI Client DLL:10.0.19041.2913 (WinBuild.160101.0800):Microsoft Corporation
glfw.dll:GLFW 3.4.0 DLL:3.4.0:GLFW
icm32.dll:Microsoft Color Management Module (CMM):10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
inputhost.dll:InputHost:10.0.19041.1741 (WinBuild.160101.0800):Microsoft Corporation
java.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
javaw.exe:OpenJDK Platform binary:17.0.3.0:Microsoft
jemalloc.dll
jimage.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
jli.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
jna3520136715536707092.dll:JNA native library:6.1.4:Java(TM) Native Access (JNA)
jsvml.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
jvm.dll:OpenJDK 64-Bit server VM:17.0.3.0:Microsoft
kernel.appcore.dll:AppModel API Host:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
lwjgl.dll
lwjgl_opengl.dll
lwjgl_stb.dll
management.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
management_ext.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
msasn1.dll:ASN.1 Runtime APIs:10.0.19041.2251 (WinBuild.160101.0800):Microsoft Corporation
mscms.dll:Microsoft Colour Matching System DLL:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
msdmo.dll:DMO Runtime:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
msvcp140.dll:Microsoft® C Runtime Library:14.29.30139.0 built by: vcwrkspc:Microsoft Corporation
msvcp_win.dll:Microsoft® C Runtime Library:10.0.19041.789 (WinBuild.160101.0800):Microsoft Corporation
msvcrt.dll:Windows NT CRT DLL:7.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
mswsock.dll:Microsoft Windows Sockets 2.0 Service Provider:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
napinsp.dll:E-mail Naming Shim Provider:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
ncrypt.dll:Windows NCrypt Router:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
net.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
nio.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
ntdll.dll:NT Layer DLL:10.0.19041.2788 (WinBuild.160101.0800):Microsoft Corporation
ntmarta.dll:Windows NT MARTA provider:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
nvoglv64.dll:NVIDIA Compatible OpenGL ICD:31.0.15.2756:NVIDIA Corporation
nvspcap64.dll:NVIDIA Game Proxy:3.27.0.112:NVIDIA Corporation
opengl32.dll:OpenGL Client DLL:10.0.19041.2193 (WinBuild.160101.0800):Microsoft Corporation
perfos.dll:Windows System Performance Objects DLL:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
pnrpnsp.dll:PNRP Name Space Provider:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
powrprof.dll:Power Profile Helper DLL:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
profapi.dll:User Profile Basic API:10.0.19041.844 (WinBuild.160101.0800):Microsoft Corporation
rasadhlp.dll:Remote Access AutoDial Helper:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
rsaenh.dll:Microsoft Enhanced Cryptographic Provider:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
sapi.dll:Speech API:5.3.25931.00 (WinBuild.160101.0800):Microsoft Corporation
sechost.dll:Host for SCM/SDDL/LSA Lookup APIs:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
shlwapi.dll:Shell Light-weight Utility Library:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
sunmscapi.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
textinputframework.dll:"TextInputFramework.DYNLINK":10.0.19041.3086 (WinBuild.160101.0800):Microsoft Corporation
ucrtbase.dll:Microsoft® C Runtime Library:10.0.19041.789 (WinBuild.160101.0800):Microsoft Corporation
uxtheme.dll:Microsoft UxTheme Library:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
vcruntime140_1.dll:Microsoft® C Runtime Library:14.29.30139.0 built by: vcwrkspc:Microsoft Corporation
verify.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
wbemcomn.dll:WMI:10.0.19041.1566 (WinBuild.160101.0800):Microsoft Corporation
wbemprox.dll:WMI:10.0.19041.1320 (WinBuild.160101.0800):Microsoft Corporation
wbemsvc.dll:WMI:10.0.19041.1320 (WinBuild.160101.0800):Microsoft Corporation
win32u.dll:Win32u:10.0.19041.3086 (WinBuild.160101.0800):Microsoft Corporation
windows.storage.dll:Microsoft WinRT Storage API:10.0.19041.1165 (WinBuild.160101.0800):Microsoft Corporation
winmmbase.dll:Base Multimedia Extension API DLL:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
winrnr.dll:LDAP RnR Provider DLL:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
wintypes.dll:Windows Base Types DLL:10.0.19041.1320 (WinBuild.160101.0800):Microsoft Corporation
wshbth.dll:Windows Sockets Helper DLL:10.0.19041.546 (WinBuild.160101.0800):Microsoft Corporation
wshunix.dll:AF_UNIX Winsock2 Helper DLL:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
xinput1_4.dll:Microsoft Common Controller API:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation
zip.dll:OpenJDK Platform binary:17.0.3.0:Microsoft
Stacktrace:
at net.minecraft.client.main.Main.main(Main.java:211)
at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:468)
at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74)
at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23)
-- System Details --
Details:
Minecraft Version: 1.20.1
Minecraft Version ID: 1.20.1
Operating System: Windows 10 (amd64) version 10.0
Java Version: 17.0.3, Microsoft
Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft
Memory: 1133511176 bytes (1081 MiB) / 1811939328 bytes (1728 MiB) up to 11408506880 bytes (10880 MiB)
CPUs: 12
Processor Vendor: AuthenticAMD
Processor Name: AMD Ryzen 5 3600 6-Core Processor
Identifier: AuthenticAMD Family 23 Model 113 Stepping 0
Microarchitecture: Zen 2
Frequency (GHz): 3.60
Number of physical packages: 1
Number of physical CPUs: 6
Number of logical CPUs: 12
Graphics card #0 name: NVIDIA GeForce RTX 2070 SUPER
Graphics card #0 vendor: NVIDIA (0x10de)
Graphics card #0 VRAM (MB): 4095.00
Graphics card #0 deviceId: 0x1e84
Graphics card #0 versionInfo: DriverVersion=31.0.15.2756
Memory slot #0 capacity (MB): 8192.00
Memory slot #0 clockSpeed (GHz): 3.20
Memory slot #0 type: DDR4
Memory slot #1 capacity (MB): 8192.00
Memory slot #1 clockSpeed (GHz): 3.20
Memory slot #1 type: DDR4
Virtual memory max (MB): 29133.25
Virtual memory used (MB): 23678.39
Swap memory total (MB): 12800.00
Swap memory used (MB): 1154.80
JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx10880m -Xms256m
Fabric Mods:
additionallanterns: Additional Lanterns 1.0.4-a
additionalstructures: Additional Structures 4.2.0
adorn: Adorn 5.0.0+1.20.1
advancednetherite: Advanced Netherite 2.0.2-1.20.1
appleskin: AppleSkin 2.5.0+mc1.20
aqupdcaracal: Caracal mob 1.20-2.3.3
areas: Areas 5.0
arrowentitylootdrop: Arrow Entity Loot Drop 1.2.1
attackspeedenchantment: Attack Speed Enchantment 1.3.0.20
awesomedungeon: Awesome dungeon 3.2.0
awesomedungeonnether: Awesome dungeon nether 3.1.1
awesomedungeonocean: Awesome dungeon edition ocean 3.3.0
bclib: BCLib 3.0.10
wunderlib: WunderLib 1.1.3
beautify: Beautify 1.0.0+1.20
beekeeperhut: Friends&Foes - Beekeeper Hut 1.3.0
beenfo: Beenfo 1.20-fabric0.83.0-1.3.3
crowdin-translate: CrowdinTranslate 1.4+1.19.3
gbfabrictools: GBfabrictools 1.3.5+1.20
betterallay: Better Allay [FABRIC]-1.4.0-1.20.1
betteranimationscollection: Better Animations Collection 8.0.0
betterarcheology: Better Archeology 1.0.2
betterend: Better End 4.0.7
betterf3: BetterF3 7.0.0
betternether: Better Nether 9.0.7
betterstats: Better Statistics Screen 2.10.3+1.20.1
architectury: Architectury 9.0.8
tcdcommons: TCD Commons API 2.10.2+1.20.1
bettertridentreturn: Better Trident Return 1.20.1-1.0.2
bettertrims: bettertrims 1.0.3
com_github_llamalad7_mixinextras: MixinExtras 0.2.0-beta.8
blossom: Blossom 1.0.7
boatiview: Boat Item View Fabric 0.0.5
borderlessmining: Borderless Mining 1.1.8+1.20.1
bridgingmod: Bridging Mod 1.20.1-v1.3.0
bushierflowers: Bushier Flowers 0.0.3-1.20.1
c2me: Concurrent Chunk Management Engine 0.2.0+alpha.10.91
c2me-base: Concurrent Chunk Management Engine (Base) 0.2.0+alpha.10.91
c2me-client-uncapvd: Concurrent Chunk Management Engine (Client/Uncap View Distance) 0.2.0+alpha.10.91
c2me-fixes-chunkio-threading-issues: Concurrent Chunk Management Engine (Fixes/Chunk IO/Threading Issues) 0.2.0+alpha.10.91
c2me-fixes-general-threading-issues: Concurrent Chunk Management Engine (Fixes/General/Threading Issues) 0.2.0+alpha.10.91
c2me-fixes-worldgen-threading-issues: Concurrent Chunk Management Engine (Fixes/WorldGen/Threading Issues) 0.2.0+alpha.10.91
c2me-fixes-worldgen-vanilla-bugs: Concurrent Chunk Management Engine (Fixes/WorldGen/Vanilla Bugs) 0.2.0+alpha.10.91
c2me-notickvd: Concurrent Chunk Management Engine (No Tick View Distance) 0.2.0+alpha.10.91
c2me-opts-allocs: Concurrent Chunk Management Engine (Optimizations/Memory Allocations) 0.2.0+alpha.10.91
c2me-opts-chunk-access: Concurrent Chunk Management Engine (Optimizations/Chunk Access) 0.2.0+alpha.10.91
c2me-opts-chunkio: Concurrent Chunk Management Engine (Optimizations/Chunk IO) 0.2.0+alpha.10.91
c2me-opts-math: Concurrent Chunk Management Engine (Optimizations/Math) 0.2.0+alpha.10.91
c2me-opts-scheduling: Concurrent Chunk Management Engine (Optimizations/Scheduling) 0.2.0+alpha.10.91
c2me-opts-worldgen-general: Concurrent Chunk Management Engine (Optimizations/General WorldGen) 0.2.0+alpha.10.91
c2me-opts-worldgen-vanilla: Concurrent Chunk Management Engine (Optimizations/Vanilla WorldGen) 0.2.0+alpha.10.91
c2me-rewrites-chunk-serializer: Concurrent Chunk Management Engine (Rewrites/Chunk Serializer) 0.2.0+alpha.10.91
c2me-rewrites-chunkio: Concurrent Chunk Management Engine (Rewrites/Chunk IO) 0.2.0+alpha.10.91
c2me-server-utils: Concurrent Chunk Management Engine (Server Utils) 0.2.0+alpha.10.91
c2me-threading-chunkio: Concurrent Chunk Management Engine (Threading/WorldGen) 0.2.0+alpha.10.91
c2me-threading-lighting: Concurrent Chunk Management Engine (Threading/Lighting) 0.2.0+alpha.10.91
c2me-threading-worldgen: Concurrent Chunk Management Engine (Threading/WorldGen) 0.2.0+alpha.10.91
com_electronwill_night-config_core: core 3.6.5
com_electronwill_night-config_toml: toml 3.6.5
com_ibm_async_asyncutil: asyncutil 0.1.0
net_objecthunter_exp4j: exp4j 0.4.8
org_threadly_threadly: threadly 7.0
can-i-mine-this-block: cAn i MiNe thIS bLOCk? 1.4.0
carpeted: Carpeted 1.20-1.4
cat_jam: cat_jam 1.1.3
cavedust: Cave Dust 1.4.1
kirin: Kirin UI 1.15.0
cenchants: Combat Enchants 2.14.9
charmofundying: Charm of Undying 6.4.2+1.20.1
spectrelib: SpectreLib 0.13.13+1.20.1
chas: Craftable Horse Armour & Saddle 1.20-1.10-Fabric
chickensshed: ChickensShed 1.4.0-0
cinderscapes: Cinderscapes 4.0.7
biolith: Biolith 1.0.0-alpha.8
cinderscapes-client: Cinderscapes: Client 4.0.7
cinderscapes-common: Cinderscapes: Common 4.0.7
cinderscapes-worldgen: Cinderscapes: World Generation 4.0.7
terraform-biome-remapper-api-v1: Terraform Biome Remapper API (v1) 7.0.1
terraform-shapes-api-v1: Terraform Shapes API (v1) 7.0.1
terraform-surfaces-api-v1: Terraform Surfaces API (v1) 7.0.1
terraform-wood-api-v1: Terraform Wood API (v1) 7.0.1
climbladdersfast: ClimbLaddersFast 4.0-1.20.1
cloth-config: Cloth Config v11 11.0.99
cloth-basic-math: cloth-basic-math 0.6.1
clutter: Clutter 1.20.1-0.3.8
collective: Collective 6.62
completeconfig: CompleteConfig 2.4.0
completeconfig-base: completeconfig-base 2.4.0
completeconfig-gui-cloth: completeconfig-gui-cloth 2.4.0
completeconfig-gui-yacl: completeconfig-gui-yacl 2.4.0
connectiblechains: Connectible Chains 2.2.1+1.20.1
cozy: Cozy 1.1.0
craterlib: CraterLib 1.0.1
crayfish: Womp's Crayfish Mod 1.34
creeperoverhaul: Creeper Overhaul 3.0.1
cristellib: Cristel Lib 1.1
croptopia: Croptopia 2.3.0
com_typesafe_config: config 1.4.1
io_leangen_geantyref_geantyref: geantyref 1.3.11
org_spongepowered_configurate-core: configurate-core 4.1.2
org_spongepowered_configurate-hocon: configurate-hocon 4.1.2
cryingportals: Crying Portals 2.3
dawn: Dawn API 5.0.0
debugify: Debugify 1.20.1+1.1
dogslie: Let Sleeping Dogs Lie 1.2.0
doubledoors: Double Doors 5.0
duckling: Duckling 3.0.0
dungeons_andtaverns_mr: Dungeons and Taverns 1-v2.1.3
dungeons_arise: When Dungeons Arise 2.1.56.1
durabilitytooltip: Durability Tooltip 1.1.4
dyed: Dyed 1.1.2
dynamicfps: Dynamic FPS 2.4.0
com_moandjiezana_toml_toml4j: toml4j 0.7.2
ears: Ears 1.4.6
easiervillagertrading: EasierVillagerTrading 1.20-fabric0.83.0-1.5.4
easymagic: Easy Magic 8.0.0
edibles: Edibles 4.1
elytraslot: Elytra Slot 6.3.0+1.20.1
elytratrims: Elytra Trims 1.1.9
conditional-mixin: conditional mixin 0.3.2
enchantinginfuser: Enchanting Infuser 8.0.0
enchantmentsplus: Enchantments Plus 1.1.8+1.20.1
reach-entity-attributes: Reach Entity Attributes 2.4.0
endrem: End Remastered 5.2.2
expanded_trident_enchanting: Expanded Trident Enchanting 1.0.7
explorations: Explorations 1.20.1-1.5.1
explorerscompass: Explorer's Compass 1.20.1-2.2.2-fabric
explorify: Explorify v1.3.0-mc1.20u1.20.1
fabric-api: Fabric API 0.85.0+1.20.1
fabric-api-base: Fabric API Base 0.4.29+b04edc7a77
fabric-api-lookup-api-v1: Fabric API Lookup API (v1) 1.6.34+4d8536c977
fabric-biome-api-v1: Fabric Biome API (v1) 13.0.10+b3afc78b77
fabric-block-api-v1: Fabric Block API (v1) 1.0.9+e022e5d177
fabric-blockrenderlayer-v1: Fabric BlockRenderLayer Registration (v1) 1.1.39+b3afc78b77
fabric-client-tags-api-v1: Fabric Client Tags 1.1.0+97bb207577
fabric-command-api-v1: Fabric Command API (v1) 1.2.32+f71b366f77
fabric-command-api-v2: Fabric Command API (v2) 2.2.11+b3afc78b77
fabric-commands-v0: Fabric Commands (v0) 0.2.49+df3654b377
fabric-containers-v0: Fabric Containers (v0) 0.1.61+df3654b377
fabric-content-registries-v0: Fabric Content Registries (v0) 4.0.8+b3afc78b77
fabric-convention-tags-v1: Fabric Convention Tags 1.5.3+b3afc78b77
fabric-crash-report-info-v1: Fabric Crash Report Info (v1) 0.2.18+aeb40ebe77
fabric-data-generation-api-v1: Fabric Data Generation API (v1) 12.1.12+b3afc78b77
fabric-dimensions-v1: Fabric Dimensions API (v1) 2.1.51+b3afc78b77
fabric-entity-events-v1: Fabric Entity Events (v1) 1.5.21+b3afc78b77
fabric-events-interaction-v0: Fabric Events Interaction (v0) 0.6.0+b3afc78b77
fabric-events-lifecycle-v0: Fabric Events Lifecycle (v0) 0.2.61+df3654b377
fabric-game-rule-api-v1: Fabric Game Rule API (v1) 1.0.38+b04edc7a77
fabric-item-api-v1: Fabric Item API (v1) 2.1.26+b3afc78b77
fabric-item-group-api-v1: Fabric Item Group API (v1) 4.0.8+40e50c4677
fabric-key-binding-api-v1: Fabric Key Binding API (v1) 1.0.36+fb8d95da77
fabric-keybindings-v0: Fabric Key Bindings (v0) 0.2.34+df3654b377
fabric-lifecycle-events-v1: Fabric Lifecycle Events (v1) 2.2.20+b3afc78b77
fabric-loot-api-v2: Fabric Loot API (v2) 1.1.38+b3afc78b77
fabric-loot-tables-v1: Fabric Loot Tables (v1) 1.1.42+9e7660c677
fabric-message-api-v1: Fabric Message API (v1) 5.1.6+b3afc78b77
fabric-mining-level-api-v1: Fabric Mining Level API (v1) 2.1.48+b3afc78b77
fabric-models-v0: Fabric Models (v0) 0.3.35+b3afc78b77
fabric-networking-api-v1: Fabric Networking API (v1) 1.3.8+b3afc78b77
fabric-networking-v0: Fabric Networking (v0) 0.3.48+df3654b377
fabric-object-builder-api-v1: Fabric Object Builder API (v1) 11.1.0+6beca84877
fabric-particles-v1: Fabric Particles (v1) 1.1.0+201a23a077
fabric-recipe-api-v1: Fabric Recipe API (v1) 1.0.18+b3afc78b77
fabric-registry-sync-v0: Fabric Registry Sync (v0) 2.2.6+b3afc78b77
fabric-renderer-api-v1: Fabric Renderer API (v1) 3.1.0+c154966e77
fabric-renderer-indigo: Fabric Renderer - Indigo 1.4.0+c154966e77
fabric-renderer-registries-v1: Fabric Renderer Registries (v1) 3.2.44+df3654b377
fabric-rendering-data-attachment-v1: Fabric Rendering Data Attachment (v1) 0.3.33+b3afc78b77
fabric-rendering-fluids-v1: Fabric Rendering Fluids (v1) 3.0.26+b3afc78b77
fabric-rendering-v0: Fabric Rendering (v0) 1.1.47+df3654b377
fabric-rendering-v1: Fabric Rendering (v1) 3.0.6+b3afc78b77
fabric-resource-conditions-api-v1: Fabric Resource Conditions API (v1) 2.3.5+ea08f9d877
fabric-resource-loader-v0: Fabric Resource Loader (v0) 0.11.8+e3d6ed2577
fabric-screen-api-v1: Fabric Screen API (v1) 2.0.6+b3afc78b77
fabric-screen-handler-api-v1: Fabric Screen Handler API (v1) 1.3.27+b3afc78b77
fabric-sound-api-v1: Fabric Sound API (v1) 1.0.12+b3afc78b77
fabric-transfer-api-v1: Fabric Transfer API (v1) 3.2.3+43a3fedd77
fabric-transitive-access-wideners-v1: Fabric Transitive Access Wideners (v1) 4.2.0+b3afc78b77
fabric-language-kotlin: Fabric Language Kotlin 1.9.6+kotlin.1.8.22
org_jetbrains_kotlin_kotlin-reflect: kotlin-reflect 1.8.22
org_jetbrains_kotlin_kotlin-stdlib: kotlin-stdlib 1.8.22
org_jetbrains_kotlin_kotlin-stdlib-jdk7: kotlin-stdlib-jdk7 1.8.22
org_jetbrains_kotlin_kotlin-stdlib-jdk8: kotlin-stdlib-jdk8 1.8.22
org_jetbrains_kotlinx_atomicfu-jvm: atomicfu-jvm 0.21.0
org_jetbrains_kotlinx_kotlinx-coroutines-core-jvm: kotlinx-coroutines-core-jvm 1.7.1
org_jetbrains_kotlinx_kotlinx-coroutines-jdk8: kotlinx-coroutines-jdk8 1.7.1
org_jetbrains_kotlinx_kotlinx-datetime-jvm: kotlinx-datetime-jvm 0.4.0
org_jetbrains_kotlinx_kotlinx-serialization-cbor-jvm: kotlinx-serialization-cbor-jvm 1.5.1
org_jetbrains_kotlinx_kotlinx-serialization-core-jvm: kotlinx-serialization-core-jvm 1.5.1
org_jetbrains_kotlinx_kotlinx-serialization-json-jvm: kotlinx-serialization-json-jvm 1.5.1
fabricloader: Fabric Loader 0.14.21
fallingleaves: Falling Leaves 1.15.1+1.20.1
ferritecore: FerriteCore 6.0.0
flowerymooblooms: Friends&Foes - Flowery Mooblooms 1.1.0
forgeconfigapiport: Forge Config API Port 8.0.0
friendsandfoes: Friends&Foes 1.9.2
frostiful: Frostiful 0.7
mm: Manningham Mills 2.3
fwaystones: Fabric Waystones 3.1.2+mc1.20
geckolib: Geckolib 4.2
com_eliotlash_mclib_mclib: mclib 20
glow_ink_plus: Glow Ink Plus Mod 1.2.0
grindenchantments: Grind Enchantments 3.1.2+1.20
codec-config-api: Codec Config API 1.0.2+1.19.3
handcrafted: Handcrafted 2.3.2
hopobetterruinedportal: Hopo Better Ruined Portal 1.3.6
horseexpert: Horse Expert 8.0.0
huskspawn: Husk Spawn 3.3
incantationem: Incantationem 1.2.1+1.20
yet_another_config_lib_v3: YetAnotherConfigLib 3.0.1+1.20
com_twelvemonkeys_common_common-image: common-image 3.9.4
com_twelvemonkeys_common_common-io: common-io 3.9.4
com_twelvemonkeys_common_common-lang: common-lang 3.9.4
com_twelvemonkeys_imageio_imageio-core: imageio-core 3.9.4
com_twelvemonkeys_imageio_imageio-metadata: imageio-metadata 3.9.4
com_twelvemonkeys_imageio_imageio-webp: imageio-webp 3.9.4
inventoryhud: Inventory HUD + 3.4.13
inventorytotem: Inventory Totem 3.0
iris: Iris 1.6.4
io_github_douira_glsl-transformer: glsl-transformer 2.0.0-pre13
org_anarres_jcpp: jcpp 1.4.14
org_antlr_antlr4-runtime: antlr4-runtime 4.11.1
jade: Jade 11.1.4
jamlib: JamLib 0.6.0+1.20
java: OpenJDK 64-Bit Server VM 17
jei: Just Enough Items 15.2.0.22
jmc: Just More Cakes! 1.12.1
justmobheads: Just Mob Heads 7.3
lambdynlights: LambDynamicLights 2.3.1+1.20.1
pride: Pride Lib 1.2.0+1.19.4
spruceui: SpruceUI 5.0.0+1.20
lazydfu: LazyDFU 0.1.3
libraryferret: Library ferret 4.0.0
lithium: Lithium 0.11.2
lootintegrations: Loot integration Mod 1.20.1-3.1
lovely_snails: Lovely Snails 1.1.2+1.20.1
mavapi: More Axolotl Variants API 1.1.1
mavm: More Axolotl Variants Mod 1.2.4
mbt: More Beautiful Torches 2.4.0-1.20.1
mcwfences: Macaw's Fences and Walls 1.0.7
mcwlights: Macaw's Lights and Lamps 1.0.6
mcwpaths: Macaw's Paths and Pavings 1.0.3
mcwroofs: Macaw's Roofs 2.2.4
mcwtrpdoors: Macaw's Trapdoors 1.1.1
memoryleakfix: Memory Leak Fix 1.1.1
midnightlib: MidnightLib 1.4.1
minecraft: Minecraft 1.20.1
mob_captains_mr: Mob Captains 1-v2.1.2
modelfix: Model Gap Fix 1.14
modmenu: Mod Menu 7.1.0
moonlight: Moonlight 1.20-2.5.16
mooshroomspawn: Mooshroom Spawn 3.3
mooshroomtweaks: Mooshroom Tweaks 3.2
more-axolotl: More Axolotl 2.0.1
more_mobs_mr: More Mobs 1.4
moreberries: More Berries 1.5.5
morebows: More Bows Restrung 1.0.11+1.20.x
moredoors: More Doors 1.5
morefrogs: More Frogs 1.20.1-1.2.5-fabric
moremobvariants: More Mob Variants 1.2.2
mousetweaks: Mouse Tweaks 2.25
moyai: moyai 1.20-2.0.2
mru: Mineblock's Repeated Utilities 0.2.1+1.20
naturescompass: Nature's Compass 1.20.1-2.2.1-fabric
netherdepthsupgrade: Nether Depths Upgrade fabric-3.0.0-1.20
nethermap: Better Nether Map 3.0.0-1.20.1
notenoughcrashes: Not Enough Crashes 4.4.4+1.20.1
npcvariety: NPC Variety 2.3.0
onsoulfire: On Soul Fire 1.20.1
cardinal-components-base: Cardinal Components API (base) 5.2.1
cardinal-components-entity: Cardinal Components API (entities) 5.2.1
owo: oωo 0.11.1+1.20
blue_endless_jankson: jankson 1.2.2
philipsruins: Philip`s Ruins 1.20.1
playertrackingcompass: Player Tracking Compass 3.0
plushies: Plushie Mod 1.2.1
presencefootsteps: Presence Footsteps 1.9.0
promenade: Promenade 4.1.0
pumpkillagersquest: Pumpkillager's Quest 3.2
puzzle: Puzzle 1.5.1+1.20
puzzle-base: Puzzle Base 1.5.1+1.20
puzzle-gui: Puzzle GUI 1.5.1+1.20
puzzle-models: Puzzle Models 1.5.1+1.20
puzzle-splashscreen: Puzzle Splash Screen 1.5.1+1.20
puzzleslib: Puzzles Lib 8.0.7
random_mob_sizes: Random Mob Sizes 1.20.1-1.3
randombonemealflowers: Random Bone Meal Flowers 4.1
regions_unexplored: Regions Unexplored 0.4.1+1.20.1
resourcefulconfig: Resourcefulconfig 2.0.0
resourcefullib: Resourceful Lib 2.1.1
com_teamresourceful_yabn: yabn 1.0.3
rightclickharvest: Right Click Harvest 3.2.2+1.19.x-1.20.1-fabric
rocks: This Rocks! 1.7.1
ruined_equipment: Ruined Equipment 2.3.1
silkspawners: SilkSpawners 1.1.3
simple-rpc: Simple RPC 3.2.2
me_hypherionmc_simplerpc_simple-rpc-common: simple-rpc-common 5.0.0
simplehats: SimpleHats 1.20.1-0.2.0
skeletonhorsespawn: Skeleton Horse Spawn 3.6
skyvillages: Sky Villages 1.0.2.1-1.20.1
snuffles: Snuffles 1.0.0+1.20
sodium: Sodium 0.4.10+build.27
soulfired: Soul fire'd 3.2.0.0
sound_physics_remastered: Sound Physics Remastered 1.20.1-1.1.1
spellbound_weapons_mr: Spellbound Weapons 4.0.5f
status-effect-bars: Status Effect Bars 1.0.3
stoneworks: Stoneworks 8.0.0
strangeberries: Strange Berries 2.2
strayspawn: Stray Spawn 3.3
subterrestrial: Subterrestrial 2.2.0
supermartijn642configlib: SuperMartijn642's Config Lib 1.1.6
supermartijn642corelib: SuperMartijn642's Core Lib 1.1.10+a
supplementaries: Supplementaries 1.20-2.5.17
surfacemushrooms: Surface Mushrooms 3.1
swampier_swamps: Swampier Swamps 1.20-4.0.0
t_and_t: Towns and Towers 1.10.2
terrablender: TerraBlender 3.0.0.165
thermoo: Thermoo 1.6.1
tlc: The Lost Castle 1.0.1
trinkets: Trinkets 3.7.0
ultris_mr: Ultris: Boss Expansion 5.6.9b
uncraftables: Uncraftable Recipes 1.10
universalbonemeal: Universal Bone Meal 8.0.0
universalenchants: Universal Enchants 8.0.0
extensibleenums: Extensible Enums 7.0.1
unsaddle: Unsaddle 0.2.1
unsaddle-compat-1-15: Unsaddle 1.15 Compat 0.2.1
unsaddle-compat-1-16: Unsaddle 1.16 Compat 0.2.1
unsaddle-core: Unsaddle Core 0.2.1
uteamcore: U Team Core 5.1.3.267
vafoen: Vanilla Foods Enhanced 1.8
vanilla_degus: Vanilla Degus 1.4.0
varietyapi: VarietyAPI 1.0
varietyaquatic: Variety Aquatic 1.0.4.8
veinmining: Vein Mining 1.2.0+1.20.1
wandering_trader_tradesfabric: Wandering Trader Trades(Fabric) 1.0.0
wildfire_gender: Wildfire's Female Gender Mod 1.20-3.0.1
windchimes: Windchimes 1.2.3+1.20
woof: Woof 4.0.2+1.20.1
wwoo: William Wythers' Overhauled Overworld 3.2.0-beta
xaerominimap: Xaero's Minimap 23.5.0
xaeroworldmap: Xaero's World Map 1.30.6
ydms_redpanda: YDM's Red Panda 1.0.4
Loaded Shaderpack: (off)
NEC status: Has NEC: INVALID
Launched Version: fabric-loader-0.14.21-1.20.1
Backend library: LWJGL version 3.3.1 SNAPSHOT
Backend API: NVIDIA GeForce RTX 2070 SUPER/PCIe/SSE2 GL version 3.2.0 NVIDIA 527.56, NVIDIA Corporation
Window size: <not initialized>
GL Caps: Using framebuffer using OpenGL 3.2
GL debug messages:
Using VBOs: Yes
Is Modded: Definitely; Client brand changed to 'fabric'
Type: Client (map_client.txt)
CPU: 12x AMD Ryzen 5 3600 6-Core Processor
Suspected Mods: Minecraft (minecraft), Fabric Loader (fabricloader), BCLib (bclib)
```
### Other Mods
```shell
In log above
```
| non_priority | bclib causes crash on game initialisation version what happened game crashes after initialisation crash log suspects bclib could have something to do with the datapacks i have installed as mentioned elsewhere here bclib fabric api fabric loader minecraft relevant log output shell minecraft crash report daisy daisy time description initializing game java lang nullpointerexception cannot invoke org betterx bclib client models custommodelbakery loadcustommodels net minecraft class because org betterx bclib client bclibclient modelbakery is null at net minecraft class handler bclib loadcustommodels class java at net minecraft class method class java at net minecraft class method class java at net minecraft class class java at net minecraft class method class java at net minecraft class method class java at net minecraft class method class java at net minecraft class class java at net minecraft client main main main main java at net fabricmc loader impl game minecraft minecraftgameprovider launch minecraftgameprovider java at net fabricmc loader impl launch knot knot launch knot java at net fabricmc loader impl launch knot knotclient main knotclient java a detailed walkthrough of the error its code path and all known details is as follows head thread render thread stacktrace at net minecraft class handler bclib loadcustommodels class java at net minecraft class method class java at net minecraft class method class java at net minecraft class class java at net minecraft class method class java at net minecraft class method class java at net minecraft class method class java at net minecraft class class java initialization details modules dll advanced windows base api winbuild microsoft corporation dll user experience controls library winbuild microsoft corporation dll crypto winbuild microsoft corporation cryptsp dll cryptographic service provider api winbuild microsoft corporation coloradapterclient dll microsoft color adapter client winbuild microsoft corporation coremessaging dll microsoft coremessaging dll microsoft corporation coreuicomponents dll microsoft core ui components dll microsoft corporation dbghelp dll windows image helper winbuild microsoft corporation devobj dll device information set dll winbuild microsoft corporation dnsapi dll dns client api dll winbuild microsoft corporation dll gdi client dll winbuild microsoft corporation dll opengl utility library dll winbuild microsoft corporation dll multi user windows api client dll winbuild microsoft corporation iphlpapi dll ip helper api winbuild microsoft corporation dll windows nt base api client dll winbuild microsoft corporation kernelbase dll windows nt base api client dll winbuild microsoft corporation mmdevapi dll mmdevice api winbuild microsoft corporation dll microsoft acm audio filter winbuild microsoft corporation msctf dll msctf server dll winbuild microsoft corporation mpoav dll iofficeantivirus module winbuild microsoft corporation nlaapi dll network location awareness winbuild microsoft corporation nsi dll nsi user mode interface dll winbuild microsoft corporation dll microsoft asn api winbuild microsoft corporation dll microsoft ole for windows winbuild microsoft corporation dll dll winbuild microsoft corporation openal dll main implementation library propsys dll microsoft property system winbuild microsoft corporation psapi dll process status helper winbuild microsoft corporation pdh dll windows performance data helper dll winbuild microsoft corporation dll remote procedure call runtime winbuild microsoft corporation setupapi dll windows setup api winbuild microsoft corporation shcore dll shcore winbuild microsoft corporation dll windows shell common dll winbuild microsoft corporation umpdc dll dll multi user windows user api client dll winbuild microsoft corporation userenv dll userenv winbuild microsoft corporation dll microsoft® c runtime library built by vcwrkspc microsoft corporation version dll version checking and file installation libraries winbuild microsoft corporation winhttp dll windows http services winbuild microsoft corporation winmm dll mci api dll winbuild microsoft corporation winsta dll winstation library winbuild microsoft corporation wintrust dll microsoft trust verification apis winbuild microsoft corporation dll windows socket bit dll winbuild microsoft corporation dll windows socket bit dll winbuild microsoft corporation dll windows remote desktop session host server sdk apis winbuild microsoft corporation wldp dll windows lockdown policy winbuild microsoft corporation amsi dll anti malware scan interface winbuild microsoft corporation apphelp dll application compatibility client library winbuild microsoft corporation awt dll openjdk platform binary microsoft bcrypt dll windows cryptographic primitives library winbuild microsoft corporation bcryptprimitives dll windows cryptographic primitives library winbuild microsoft corporation dll configuration manager dll winbuild microsoft corporation clbcatq dll com configuration catalog winbuild microsoft corporation combase dll microsoft com for windows winbuild microsoft corporation cryptbase dll base cryptographic api dll winbuild microsoft corporation cryptnet dll crypto network related api winbuild microsoft corporation dbgcore dll windows core debugging helpers winbuild microsoft corporation dhcpcsvc dll dhcp client service winbuild microsoft corporation dll client winbuild microsoft corporation dll microsoft directinput winbuild microsoft corporation drvstore dll driver store api winbuild microsoft corporation dwmapi dll microsoft desktop window manager api winbuild microsoft corporation dxcore dll dxcore winbuild microsoft corporation fastprox dll wmi custom marshaller winbuild microsoft corporation fwpuclnt dll fwp ipsec user mode api winbuild microsoft corporation dll gdi client dll winbuild microsoft corporation glfw dll glfw dll glfw dll microsoft color management module cmm winbuild microsoft corporation inputhost dll inputhost winbuild microsoft corporation java dll openjdk platform binary microsoft javaw exe openjdk platform binary microsoft jemalloc dll jimage dll openjdk platform binary microsoft jli dll openjdk platform binary microsoft dll jna native library java tm native access jna jsvml dll openjdk platform binary microsoft jvm dll openjdk bit server vm microsoft kernel appcore dll appmodel api host winbuild microsoft corporation lwjgl dll lwjgl opengl dll lwjgl stb dll management dll openjdk platform binary microsoft management ext dll openjdk platform binary microsoft dll asn runtime apis winbuild microsoft corporation mscms dll microsoft colour matching system dll winbuild microsoft corporation msdmo dll dmo runtime winbuild microsoft corporation dll microsoft® c runtime library built by vcwrkspc microsoft corporation msvcp win dll microsoft® c runtime library winbuild microsoft corporation msvcrt dll windows nt crt dll winbuild microsoft corporation mswsock dll microsoft windows sockets service provider winbuild microsoft corporation napinsp dll e mail naming shim provider winbuild microsoft corporation ncrypt dll windows ncrypt router winbuild microsoft corporation net dll openjdk platform binary microsoft nio dll openjdk platform binary microsoft ntdll dll nt layer dll winbuild microsoft corporation ntmarta dll windows nt marta provider winbuild microsoft corporation dll nvidia compatible opengl icd nvidia corporation dll nvidia game proxy nvidia corporation dll opengl client dll winbuild microsoft corporation perfos dll windows system performance objects dll winbuild microsoft corporation pnrpnsp dll pnrp name space provider winbuild microsoft corporation powrprof dll power profile helper dll winbuild microsoft corporation profapi dll user profile basic api winbuild microsoft corporation rasadhlp dll remote access autodial helper winbuild microsoft corporation rsaenh dll microsoft enhanced cryptographic provider winbuild microsoft corporation sapi dll speech api winbuild microsoft corporation sechost dll host for scm sddl lsa lookup apis winbuild microsoft corporation shlwapi dll shell light weight utility library winbuild microsoft corporation sunmscapi dll openjdk platform binary microsoft textinputframework dll textinputframework dynlink winbuild microsoft corporation ucrtbase dll microsoft® c runtime library winbuild microsoft corporation uxtheme dll microsoft uxtheme library winbuild microsoft corporation dll microsoft® c runtime library built by vcwrkspc microsoft corporation verify dll openjdk platform binary microsoft wbemcomn dll wmi winbuild microsoft corporation wbemprox dll wmi winbuild microsoft corporation wbemsvc dll wmi winbuild microsoft corporation dll winbuild microsoft corporation windows storage dll microsoft winrt storage api winbuild microsoft corporation winmmbase dll base multimedia extension api dll winbuild microsoft corporation winrnr dll ldap rnr provider dll winbuild microsoft corporation wintypes dll windows base types dll winbuild microsoft corporation wshbth dll windows sockets helper dll winbuild microsoft corporation wshunix dll af unix helper dll winbuild microsoft corporation dll microsoft common controller api winbuild microsoft corporation zip dll openjdk platform binary microsoft stacktrace at net minecraft client main main main main java at net fabricmc loader impl game minecraft minecraftgameprovider launch minecraftgameprovider java at net fabricmc loader impl launch knot knot launch knot java at net fabricmc loader impl launch knot knotclient main knotclient java system details details minecraft version minecraft version id operating system windows version java version microsoft java vm version openjdk bit server vm mixed mode microsoft memory bytes mib bytes mib up to bytes mib cpus processor vendor authenticamd processor name amd ryzen core processor identifier authenticamd family model stepping microarchitecture zen frequency ghz number of physical packages number of physical cpus number of logical cpus graphics card name nvidia geforce rtx super graphics card vendor nvidia graphics card vram mb graphics card deviceid graphics card versioninfo driverversion memory slot capacity mb memory slot clockspeed ghz memory slot type memory slot capacity mb memory slot clockspeed ghz memory slot type virtual memory max mb virtual memory used mb swap memory total mb swap memory used mb jvm flags total xx heapdumppath mojangtricksinteldriversforperformance javaw exe minecraft exe heapdump fabric mods additionallanterns additional lanterns a additionalstructures additional structures adorn adorn advancednetherite advanced netherite appleskin appleskin aqupdcaracal caracal mob areas areas arrowentitylootdrop arrow entity loot drop attackspeedenchantment attack speed enchantment awesomedungeon awesome dungeon awesomedungeonnether awesome dungeon nether awesomedungeonocean awesome dungeon edition ocean bclib bclib wunderlib wunderlib beautify beautify beekeeperhut friends foes beekeeper hut beenfo beenfo crowdin translate crowdintranslate gbfabrictools gbfabrictools betterallay better allay betteranimationscollection better animations collection betterarcheology better archeology betterend better end betternether better nether betterstats better statistics screen architectury architectury tcdcommons tcd commons api bettertridentreturn better trident return bettertrims bettertrims com github mixinextras mixinextras beta blossom blossom boatiview boat item view fabric borderlessmining borderless mining bridgingmod bridging mod bushierflowers bushier flowers concurrent chunk management engine alpha base concurrent chunk management engine base alpha client uncapvd concurrent chunk management engine client uncap view distance alpha fixes chunkio threading issues concurrent chunk management engine fixes chunk io threading issues alpha fixes general threading issues concurrent chunk management engine fixes general threading issues alpha fixes worldgen threading issues concurrent chunk management engine fixes worldgen threading issues alpha fixes worldgen vanilla bugs concurrent chunk management engine fixes worldgen vanilla bugs alpha notickvd concurrent chunk management engine no tick view distance alpha opts allocs concurrent chunk management engine optimizations memory allocations alpha opts chunk access concurrent chunk management engine optimizations chunk access alpha opts chunkio concurrent chunk management engine optimizations chunk io alpha opts math concurrent chunk management engine optimizations math alpha opts scheduling concurrent chunk management engine optimizations scheduling alpha opts worldgen general concurrent chunk management engine optimizations general worldgen alpha opts worldgen vanilla concurrent chunk management engine optimizations vanilla worldgen alpha rewrites chunk serializer concurrent chunk management engine rewrites chunk serializer alpha rewrites chunkio concurrent chunk management engine rewrites chunk io alpha server utils concurrent chunk management engine server utils alpha threading chunkio concurrent chunk management engine threading worldgen alpha threading lighting concurrent chunk management engine threading lighting alpha threading worldgen concurrent chunk management engine threading worldgen alpha com electronwill night config core core com electronwill night config toml toml com ibm async asyncutil asyncutil net objecthunter org threadly threadly threadly can i mine this block can i mine this block carpeted carpeted cat jam cat jam cavedust cave dust kirin kirin ui cenchants combat enchants charmofundying charm of undying spectrelib spectrelib chas craftable horse armour saddle fabric chickensshed chickensshed cinderscapes cinderscapes biolith biolith alpha cinderscapes client cinderscapes client cinderscapes common cinderscapes common cinderscapes worldgen cinderscapes world generation terraform biome remapper api terraform biome remapper api terraform shapes api terraform shapes api terraform surfaces api terraform surfaces api terraform wood api terraform wood api climbladdersfast climbladdersfast cloth config cloth config cloth basic math cloth basic math clutter clutter collective collective completeconfig completeconfig completeconfig base completeconfig base completeconfig gui cloth completeconfig gui cloth completeconfig gui yacl completeconfig gui yacl connectiblechains connectible chains cozy cozy craterlib craterlib crayfish womp s crayfish mod creeperoverhaul creeper overhaul cristellib cristel lib croptopia croptopia com typesafe config config io leangen geantyref geantyref geantyref org spongepowered configurate core configurate core org spongepowered configurate hocon configurate hocon cryingportals crying portals dawn dawn api debugify debugify dogslie let sleeping dogs lie doubledoors double doors duckling duckling dungeons andtaverns mr dungeons and taverns dungeons arise when dungeons arise durabilitytooltip durability tooltip dyed dyed dynamicfps dynamic fps com moandjiezana toml ears ears easiervillagertrading easiervillagertrading easymagic easy magic edibles edibles elytraslot elytra slot elytratrims elytra trims conditional mixin conditional mixin enchantinginfuser enchanting infuser enchantmentsplus enchantments plus reach entity attributes reach entity attributes endrem end remastered expanded trident enchanting expanded trident enchanting explorations explorations explorerscompass explorer s compass fabric explorify explorify fabric api fabric api fabric api base fabric api base fabric api lookup api fabric api lookup api fabric biome api fabric biome api fabric block api fabric block api fabric blockrenderlayer fabric blockrenderlayer registration fabric client tags api fabric client tags fabric command api fabric command api fabric command api fabric command api fabric commands fabric commands fabric containers fabric containers fabric content registries fabric content registries fabric convention tags fabric convention tags fabric crash report info fabric crash report info fabric data generation api fabric data generation api fabric dimensions fabric dimensions api fabric entity events fabric entity events fabric events interaction fabric events interaction fabric events lifecycle fabric events lifecycle fabric game rule api fabric game rule api fabric item api fabric item api fabric item group api fabric item group api fabric key binding api fabric key binding api fabric keybindings fabric key bindings fabric lifecycle events fabric lifecycle events fabric loot api fabric loot api fabric loot tables fabric loot tables fabric message api fabric message api fabric mining level api fabric mining level api fabric models fabric models fabric networking api fabric networking api fabric networking fabric networking fabric object builder api fabric object builder api fabric particles fabric particles fabric recipe api fabric recipe api fabric registry sync fabric registry sync fabric renderer api fabric renderer api fabric renderer indigo fabric renderer indigo fabric renderer registries fabric renderer registries fabric rendering data attachment fabric rendering data attachment fabric rendering fluids fabric rendering fluids fabric rendering fabric rendering fabric rendering fabric rendering fabric resource conditions api fabric resource conditions api fabric resource loader fabric resource loader fabric screen api fabric screen api fabric screen handler api fabric screen handler api fabric sound api fabric sound api fabric transfer api fabric transfer api fabric transitive access wideners fabric transitive access wideners fabric language kotlin fabric language kotlin kotlin org jetbrains kotlin kotlin reflect kotlin reflect org jetbrains kotlin kotlin stdlib kotlin stdlib org jetbrains kotlin kotlin stdlib kotlin stdlib org jetbrains kotlin kotlin stdlib kotlin stdlib org jetbrains kotlinx atomicfu jvm atomicfu jvm org jetbrains kotlinx kotlinx coroutines core jvm kotlinx coroutines core jvm org jetbrains kotlinx kotlinx coroutines kotlinx coroutines org jetbrains kotlinx kotlinx datetime jvm kotlinx datetime jvm org jetbrains kotlinx kotlinx serialization cbor jvm kotlinx serialization cbor jvm org jetbrains kotlinx kotlinx serialization core jvm kotlinx serialization core jvm org jetbrains kotlinx kotlinx serialization json jvm kotlinx serialization json jvm fabricloader fabric loader fallingleaves falling leaves ferritecore ferritecore flowerymooblooms friends foes flowery mooblooms forgeconfigapiport forge config api port friendsandfoes friends foes frostiful frostiful mm manningham mills fwaystones fabric waystones geckolib geckolib com eliotlash mclib mclib mclib glow ink plus glow ink plus mod grindenchantments grind enchantments codec config api codec config api handcrafted handcrafted hopobetterruinedportal hopo better ruined portal horseexpert horse expert huskspawn husk spawn incantationem incantationem yet another config lib yetanotherconfiglib com twelvemonkeys common common image common image com twelvemonkeys common common io common io com twelvemonkeys common common lang common lang com twelvemonkeys imageio imageio core imageio core com twelvemonkeys imageio imageio metadata imageio metadata com twelvemonkeys imageio imageio webp imageio webp inventoryhud inventory hud inventorytotem inventory totem iris iris io github douira glsl transformer glsl transformer org anarres jcpp jcpp org antlr runtime runtime jade jade jamlib jamlib java openjdk bit server vm jei just enough items jmc just more cakes justmobheads just mob heads lambdynlights lambdynamiclights pride pride lib spruceui spruceui lazydfu lazydfu libraryferret library ferret lithium lithium lootintegrations loot integration mod lovely snails lovely snails mavapi more axolotl variants api mavm more axolotl variants mod mbt more beautiful torches mcwfences macaw s fences and walls mcwlights macaw s lights and lamps mcwpaths macaw s paths and pavings mcwroofs macaw s roofs mcwtrpdoors macaw s trapdoors memoryleakfix memory leak fix midnightlib midnightlib minecraft minecraft mob captains mr mob captains modelfix model gap fix modmenu mod menu moonlight moonlight mooshroomspawn mooshroom spawn mooshroomtweaks mooshroom tweaks more axolotl more axolotl more mobs mr more mobs moreberries more berries morebows more bows restrung x moredoors more doors morefrogs more frogs fabric moremobvariants more mob variants mousetweaks mouse tweaks moyai moyai mru mineblock s repeated utilities naturescompass nature s compass fabric netherdepthsupgrade nether depths upgrade fabric nethermap better nether map notenoughcrashes not enough crashes npcvariety npc variety onsoulfire on soul fire cardinal components base cardinal components api base cardinal components entity cardinal components api entities owo oωo blue endless jankson jankson philipsruins philip s ruins playertrackingcompass player tracking compass plushies plushie mod presencefootsteps presence footsteps promenade promenade pumpkillagersquest pumpkillager s quest puzzle puzzle puzzle base puzzle base puzzle gui puzzle gui puzzle models puzzle models puzzle splashscreen puzzle splash screen puzzleslib puzzles lib random mob sizes random mob sizes randombonemealflowers random bone meal flowers regions unexplored regions unexplored resourcefulconfig resourcefulconfig resourcefullib resourceful lib com teamresourceful yabn yabn rightclickharvest right click harvest x fabric rocks this rocks ruined equipment ruined equipment silkspawners silkspawners simple rpc simple rpc me hypherionmc simplerpc simple rpc common simple rpc common simplehats simplehats skeletonhorsespawn skeleton horse spawn skyvillages sky villages snuffles snuffles sodium sodium build soulfired soul fire d sound physics remastered sound physics remastered spellbound weapons mr spellbound weapons status effect bars status effect bars stoneworks stoneworks strangeberries strange berries strayspawn stray spawn subterrestrial subterrestrial s config lib s core lib a supplementaries supplementaries surfacemushrooms surface mushrooms swampier swamps swampier swamps t and t towns and towers terrablender terrablender thermoo thermoo tlc the lost castle trinkets trinkets ultris mr ultris boss expansion uncraftables uncraftable recipes universalbonemeal universal bone meal universalenchants universal enchants extensibleenums extensible enums unsaddle unsaddle unsaddle compat unsaddle compat unsaddle compat unsaddle compat unsaddle core unsaddle core uteamcore u team core vafoen vanilla foods enhanced vanilla degus vanilla degus varietyapi varietyapi varietyaquatic variety aquatic veinmining vein mining wandering trader tradesfabric wandering trader trades fabric wildfire gender wildfire s female gender mod windchimes windchimes woof woof wwoo william wythers overhauled overworld beta xaerominimap xaero s minimap xaeroworldmap xaero s world map ydms redpanda ydm s red panda loaded shaderpack off nec status has nec invalid launched version fabric loader backend library lwjgl version snapshot backend api nvidia geforce rtx super pcie gl version nvidia nvidia corporation window size gl caps using framebuffer using opengl gl debug messages using vbos yes is modded definitely client brand changed to fabric type client map client txt cpu amd ryzen core processor suspected mods minecraft minecraft fabric loader fabricloader bclib bclib other mods shell in log above | 0 |
371,148 | 10,962,197,701 | IssuesEvent | 2019-11-27 16:46:20 | prysmaticlabs/prysm | https://api.github.com/repos/prysmaticlabs/prysm | closed | Prune Blacklisted Block Hashes Past FinalizedState | Enhancement Good First Issue Help Wanted Priority: Low | As a follow-up to #2297, we should prune the map of blacklisted block hashes once we have a new finalized state. At that point, all block hashes that came before the new finalized state can be safely deleted, as those blocks will never be considered again. | 1.0 | Prune Blacklisted Block Hashes Past FinalizedState - As a follow-up to #2297, we should prune the map of blacklisted block hashes once we have a new finalized state. At that point, all block hashes that came before the new finalized state can be safely deleted, as those blocks will never be considered again. | priority | prune blacklisted block hashes past finalizedstate as a follow up to we should prune the map of blacklisted block hashes once we have a new finalized state at that point all block hashes that came before the new finalized state can be safely deleted as those blocks will never be considered again | 1 |
49,647 | 6,035,611,745 | IssuesEvent | 2017-06-09 14:17:49 | IronLanguages/ironpython2 | https://api.github.com/repos/IronLanguages/ironpython2 | opened | Reenable tests in test_strformat.py on mono once it supports the format specifiers needed | mono Test Failure | _From @slide on March 14, 2017 15:50_
Need to file an issue on mono that it doesn't support custom format specifiers for BigIntegers. Two tests are disabled in test_strformat.py because of this.
_Copied from original issue: IronLanguages/main#1598_ | 1.0 | Reenable tests in test_strformat.py on mono once it supports the format specifiers needed - _From @slide on March 14, 2017 15:50_
Need to file an issue on mono that it doesn't support custom format specifiers for BigIntegers. Two tests are disabled in test_strformat.py because of this.
_Copied from original issue: IronLanguages/main#1598_ | non_priority | reenable tests in test strformat py on mono once it supports the format specifiers needed from slide on march need to file an issue on mono that it doesn t support custom format specifiers for bigintegers two tests are disabled in test strformat py because of this copied from original issue ironlanguages main | 0 |
442 | 2,497,104,814 | IssuesEvent | 2015-01-07 01:20:32 | leonbloy/pngj | https://api.github.com/repos/leonbloy/pngj | closed | Google app-engine: build/test for sandbox | imported Priority-High Type-Task | _From [hgonzalez@gmail.com](https://code.google.com/u/hgonzalez@gmail.com/) on May 27, 2011 13:16:47_
We must have an alternative build, a jar apt for app-engine sandboxing.
_Original issue: http://code.google.com/p/pngj/issues/detail?id=5_ | 1.0 | Google app-engine: build/test for sandbox - _From [hgonzalez@gmail.com](https://code.google.com/u/hgonzalez@gmail.com/) on May 27, 2011 13:16:47_
We must have an alternative build, a jar apt for app-engine sandboxing.
_Original issue: http://code.google.com/p/pngj/issues/detail?id=5_ | priority | google app engine build test for sandbox from on may we must have an alternative build a jar apt for app engine sandboxing original issue | 1 |
102,541 | 12,807,086,446 | IssuesEvent | 2020-07-03 10:43:25 | mozilla/m-response | https://api.github.com/repos/mozilla/m-response | closed | Feedback stats "total' figure styling | Design | The "total" figure presenting on the user's weekly stats graph should be visually distinct from the "current" figure.
On staging we see them styled the same:
<img width="557" alt="Screenshot 2019-08-30 at 15 44 19" src="https://user-images.githubusercontent.com/42435754/64029771-28d4f780-cb3d-11e9-8ecc-aaa0bcbc9a66.png">
The Zeplin designs show that they should be smaller in size and a lighter grey:
<img width="243" alt="Screenshot 2019-08-30 at 15 47 03" src="https://user-images.githubusercontent.com/42435754/64029932-7a7d8200-cb3d-11e9-991e-1435423bb7d3.png">
The styles captured in Zeplin are:
```
{
width: 19px;
height: 21px;
font-family: OpenSans;
font-size: 12px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: 1.75;
letter-spacing: normal;
color: #4a4a4f;
}
``` | 1.0 | Feedback stats "total' figure styling - The "total" figure presenting on the user's weekly stats graph should be visually distinct from the "current" figure.
On staging we see them styled the same:
<img width="557" alt="Screenshot 2019-08-30 at 15 44 19" src="https://user-images.githubusercontent.com/42435754/64029771-28d4f780-cb3d-11e9-8ecc-aaa0bcbc9a66.png">
The Zeplin designs show that they should be smaller in size and a lighter grey:
<img width="243" alt="Screenshot 2019-08-30 at 15 47 03" src="https://user-images.githubusercontent.com/42435754/64029932-7a7d8200-cb3d-11e9-991e-1435423bb7d3.png">
The styles captured in Zeplin are:
```
{
width: 19px;
height: 21px;
font-family: OpenSans;
font-size: 12px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: 1.75;
letter-spacing: normal;
color: #4a4a4f;
}
``` | non_priority | feedback stats total figure styling the total figure presenting on the user s weekly stats graph should be visually distinct from the current figure on staging we see them styled the same img width alt screenshot at src the zeplin designs show that they should be smaller in size and a lighter grey img width alt screenshot at src the styles captured in zeplin are width height font family opensans font size font weight normal font style normal font stretch normal line height letter spacing normal color | 0 |
3,898 | 2,541,844,434 | IssuesEvent | 2015-01-28 12:15:36 | garywmendel/Yopine | https://api.github.com/repos/garywmendel/Yopine | closed | * * - toolbar icon goes disabled after xx period of time | 1 priority bug | the only way to re-start the plugin is to close/open ff
this cant be right. | 1.0 | * * - toolbar icon goes disabled after xx period of time - the only way to re-start the plugin is to close/open ff
this cant be right. | priority | toolbar icon goes disabled after xx period of time the only way to re start the plugin is to close open ff this cant be right | 1 |
803,847 | 29,191,586,392 | IssuesEvent | 2023-05-19 20:36:18 | calcom/cal.com | https://api.github.com/repos/calcom/cal.com | closed | [CAL-1244] Missing prefill support with Floating Button popup Embed | ✨ feature Low priority | Config is what actually allows certain form values to be prefilled and it's missing in floating button popup
Also, `config` should have `prefill` property to clearly signify where prefill parameters can be specified.
<sub>From [SyncLinear.com](https://synclinear.com) | [CAL-1244](https://linear.app/calcom/issue/CAL-1244/missing-prefill-support-with-floating-button-popup)</sub> | 1.0 | [CAL-1244] Missing prefill support with Floating Button popup Embed - Config is what actually allows certain form values to be prefilled and it's missing in floating button popup
Also, `config` should have `prefill` property to clearly signify where prefill parameters can be specified.
<sub>From [SyncLinear.com](https://synclinear.com) | [CAL-1244](https://linear.app/calcom/issue/CAL-1244/missing-prefill-support-with-floating-button-popup)</sub> | priority | missing prefill support with floating button popup embed config is what actually allows certain form values to be prefilled and it s missing in floating button popup also config should have prefill property to clearly signify where prefill parameters can be specified from | 1 |
92,902 | 8,387,412,435 | IssuesEvent | 2018-10-09 00:14:34 | nebula-plugins/gradle-nebula-integration | https://api.github.com/repos/nebula-plugins/gradle-nebula-integration | closed | Platform Artifact Support | testable | project: https://github.com/nebula-plugins/gradle-nebula-integration/tree/master/excludes-in-bom
Excludes within BOM
===================
A dependency that is excluded within a bom ends up brought in anyway.
BOM
---
```
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>5.0.7.RELEASE</version>
<exclusions>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>
```
build.gradle
------------
```
dependencies {
implementation 'nebulatest:nebulabom:1.0.0' // recommends a version of spring-beans excluding snakeyaml
implementation 'org.springframework:spring-beans' // expecting snakeyaml to be excluded
implementation 'org.yaml:snakeyaml:1.19' // snakeyaml loses to spring-bean's snakeyaml
}
```
Dependencies Resolved
---------------------
```
$ ./gradlew -q dependencies --configuration compileClasspath
------------------------------------------------------------
Root project
------------------------------------------------------------
compileClasspath - Compile classpath for source set 'main'.
+--- nebulatest:nebulabom:1.0.0
| \--- org.springframework:spring-beans:5.0.7.RELEASE
| +--- org.springframework:spring-core:5.0.7.RELEASE
| | \--- org.springframework:spring-jcl:5.0.7.RELEASE
| \--- org.yaml:snakeyaml:1.20 <-- expected to be excluded
+--- org.springframework:spring-beans -> 5.0.7.RELEASE (*)
\--- org.yaml:snakeyaml:1.19 -> 1.20
(*) - dependencies omitted (listed previously)
```
Ideally I'd like to be able to craft a BOM that can exclude all the known edges that bring in a problematic dependency. Is it expected this would not work today?
I suspect this may be because `dependencyManagement` maps to [DependencyConstraint](https://docs.gradle.org/current/javadoc/org/gradle/api/artifacts/DependencyConstraint.html), which doesn't have any exclude abilities, but wanted to check. | 1.0 | Platform Artifact Support - project: https://github.com/nebula-plugins/gradle-nebula-integration/tree/master/excludes-in-bom
Excludes within BOM
===================
A dependency that is excluded within a bom ends up brought in anyway.
BOM
---
```
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>5.0.7.RELEASE</version>
<exclusions>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>
```
build.gradle
------------
```
dependencies {
implementation 'nebulatest:nebulabom:1.0.0' // recommends a version of spring-beans excluding snakeyaml
implementation 'org.springframework:spring-beans' // expecting snakeyaml to be excluded
implementation 'org.yaml:snakeyaml:1.19' // snakeyaml loses to spring-bean's snakeyaml
}
```
Dependencies Resolved
---------------------
```
$ ./gradlew -q dependencies --configuration compileClasspath
------------------------------------------------------------
Root project
------------------------------------------------------------
compileClasspath - Compile classpath for source set 'main'.
+--- nebulatest:nebulabom:1.0.0
| \--- org.springframework:spring-beans:5.0.7.RELEASE
| +--- org.springframework:spring-core:5.0.7.RELEASE
| | \--- org.springframework:spring-jcl:5.0.7.RELEASE
| \--- org.yaml:snakeyaml:1.20 <-- expected to be excluded
+--- org.springframework:spring-beans -> 5.0.7.RELEASE (*)
\--- org.yaml:snakeyaml:1.19 -> 1.20
(*) - dependencies omitted (listed previously)
```
Ideally I'd like to be able to craft a BOM that can exclude all the known edges that bring in a problematic dependency. Is it expected this would not work today?
I suspect this may be because `dependencyManagement` maps to [DependencyConstraint](https://docs.gradle.org/current/javadoc/org/gradle/api/artifacts/DependencyConstraint.html), which doesn't have any exclude abilities, but wanted to check. | non_priority | platform artifact support project excludes within bom a dependency that is excluded within a bom ends up brought in anyway bom org springframework spring beans release org yaml snakeyaml build gradle dependencies implementation nebulatest nebulabom recommends a version of spring beans excluding snakeyaml implementation org springframework spring beans expecting snakeyaml to be excluded implementation org yaml snakeyaml snakeyaml loses to spring bean s snakeyaml dependencies resolved gradlew q dependencies configuration compileclasspath root project compileclasspath compile classpath for source set main nebulatest nebulabom org springframework spring beans release org springframework spring core release org springframework spring jcl release org yaml snakeyaml expected to be excluded org springframework spring beans release org yaml snakeyaml dependencies omitted listed previously ideally i d like to be able to craft a bom that can exclude all the known edges that bring in a problematic dependency is it expected this would not work today i suspect this may be because dependencymanagement maps to which doesn t have any exclude abilities but wanted to check | 0 |
47,535 | 2,981,837,225 | IssuesEvent | 2015-07-17 06:10:59 | Kunstmaan/KunstmaanBundlesCMS | https://api.github.com/repos/Kunstmaan/KunstmaanBundlesCMS | closed | The slugs are not slugified anymore | Priority: High Profile: Backend Target audience: Visitors Type: Bugfix | If you put a space in the slug, then you'll get a 500 because it tries to generate the (preview) url, and it is possible that the whole site is down (because the page is in the navigation). | 1.0 | The slugs are not slugified anymore - If you put a space in the slug, then you'll get a 500 because it tries to generate the (preview) url, and it is possible that the whole site is down (because the page is in the navigation). | priority | the slugs are not slugified anymore if you put a space in the slug then you ll get a because it tries to generate the preview url and it is possible that the whole site is down because the page is in the navigation | 1 |
169,903 | 6,420,016,824 | IssuesEvent | 2017-08-08 22:44:13 | canonical-websites/vanillaframework.io | https://api.github.com/repos/canonical-websites/vanillaframework.io | closed | “Quick start” nav link and “Get started” button don’t work | Priority: Medium Type: Bug | 1\. Go to [the front page](https://vanillaframework.io/).
2\. In the header click “Quick start”.
3\. On the front page click “Get started”.
What happens:
2\. Nothing.
3\. Nothing.
What should happen:
2\. The page scrolls to the “Quick start” section.
3\. The page scrolls to the “Quick start” section.
This is apparently because they link to “`#quick-start`” but the section only has `id="getting-started"`. | 1.0 | “Quick start” nav link and “Get started” button don’t work - 1\. Go to [the front page](https://vanillaframework.io/).
2\. In the header click “Quick start”.
3\. On the front page click “Get started”.
What happens:
2\. Nothing.
3\. Nothing.
What should happen:
2\. The page scrolls to the “Quick start” section.
3\. The page scrolls to the “Quick start” section.
This is apparently because they link to “`#quick-start`” but the section only has `id="getting-started"`. | priority | “quick start” nav link and “get started” button don’t work go to in the header click “quick start” on the front page click “get started” what happens nothing nothing what should happen the page scrolls to the “quick start” section the page scrolls to the “quick start” section this is apparently because they link to “ quick start ” but the section only has id getting started | 1 |
87,432 | 3,754,683,092 | IssuesEvent | 2016-03-12 04:41:50 | googlei18n/noto-fonts | https://api.github.com/repos/googlei18n/noto-fonts | opened | Potential issue with UCAS Cree shapes | Android Priority-Medium | Here is feedback from Ray Larabie to Unicode about some potential issues with Cree shapes in the Unified Canadian Aboriginal Syllabics font:
> Someone familiar with the Cree language let me know, on Twitter that there was a problem with the "sh" series. From 1510-1525 is a range of "sh" characters that are only used in the Cree language. Like many UCAS characters, it pretty much involves a shape that's flipped and rotated, with added dots. The vertical characters that look like a "sine wave" are fine. The problem is with the rotated form. The sine wave shape should be rotated until is looks like it's lying flat. It should look a little bit like a tilde. But in the current Unicode chart, it looks more like an upright S. I've been told that fonts using this shape are unusable. Since a lot of OS fonts are using this incorrect form, it's causing quite a problem for Cree people. Here's a sample image showing my recommended changes.https://dl.dropboxusercontent.com/u/19433025/cree-changes.png
> Kevin Brousseau, the person who contacted me on Twitter created this PDF explaining the problem:https://dl.dropboxusercontent.com/u/19433025/sh-series.pdf
> If you click the "view All" button, you can see the inconsistency. http://www.fileformat.info/info/unicode/char/1515/fontsupport.htm
UTC will look into this in its May meeting, but in the meanwhile, I think Monotype folks should look into it to see if it's a valid report. | 1.0 | Potential issue with UCAS Cree shapes - Here is feedback from Ray Larabie to Unicode about some potential issues with Cree shapes in the Unified Canadian Aboriginal Syllabics font:
> Someone familiar with the Cree language let me know, on Twitter that there was a problem with the "sh" series. From 1510-1525 is a range of "sh" characters that are only used in the Cree language. Like many UCAS characters, it pretty much involves a shape that's flipped and rotated, with added dots. The vertical characters that look like a "sine wave" are fine. The problem is with the rotated form. The sine wave shape should be rotated until is looks like it's lying flat. It should look a little bit like a tilde. But in the current Unicode chart, it looks more like an upright S. I've been told that fonts using this shape are unusable. Since a lot of OS fonts are using this incorrect form, it's causing quite a problem for Cree people. Here's a sample image showing my recommended changes.https://dl.dropboxusercontent.com/u/19433025/cree-changes.png
> Kevin Brousseau, the person who contacted me on Twitter created this PDF explaining the problem:https://dl.dropboxusercontent.com/u/19433025/sh-series.pdf
> If you click the "view All" button, you can see the inconsistency. http://www.fileformat.info/info/unicode/char/1515/fontsupport.htm
UTC will look into this in its May meeting, but in the meanwhile, I think Monotype folks should look into it to see if it's a valid report. | priority | potential issue with ucas cree shapes here is feedback from ray larabie to unicode about some potential issues with cree shapes in the unified canadian aboriginal syllabics font someone familiar with the cree language let me know on twitter that there was a problem with the sh series from is a range of sh characters that are only used in the cree language like many ucas characters it pretty much involves a shape that s flipped and rotated with added dots the vertical characters that look like a sine wave are fine the problem is with the rotated form the sine wave shape should be rotated until is looks like it s lying flat it should look a little bit like a tilde but in the current unicode chart it looks more like an upright s i ve been told that fonts using this shape are unusable since a lot of os fonts are using this incorrect form it s causing quite a problem for cree people here s a sample image showing my recommended changes kevin brousseau the person who contacted me on twitter created this pdf explaining the problem if you click the view all button you can see the inconsistency utc will look into this in its may meeting but in the meanwhile i think monotype folks should look into it to see if it s a valid report | 1 |
168,732 | 14,171,385,782 | IssuesEvent | 2020-11-12 15:39:17 | zmkfirmware/zmk | https://api.github.com/repos/zmkfirmware/zmk | opened | Codes Support Testing: Android | documentation help wanted hid | With the release of https://zmkfirmware.dev/docs/codes/, it's time to explore operating system support!
For those unaware, it became clear during the codes redevelopment (#21) that documentation for HID operating system support was sometimes sparse or dated. So, we decided to include every feasible code we could identify so that the ZMK community could test them out and feedback their findings.
### Objectives
**Primary**: turn any ❔ into ⭐ or ❌.
**Secondary**: collate together any useful information about each code, such as the everyday applications/conditions that do/don't support them. This information will probably go into footnotes or documented metadata for each code (TBD).
### What should I do?
Please use _this issue_ for discussing and recording your findings around the **Android** operating system! Please don't keep this information in Discord as it will get lost over time, and some people don't even use it.
Please also check the **open PRs** first because someone may have already done the legwork but is awaiting verification:
https://github.com/zmkfirmware/zmk/pulls
Once you've tested a code, you can submit a PR by editing: `docs/src/data/hid.js`
**Note for developers**: if you're looking to automate (script) testing/verification across a _large_ number of codes, that would be amazing. Please contact me on Discord (#development) first though as I can likely accelerate your efforts and work with you to minimize much of the PR red tape. Your efforts may also help accelerate the development of future end-2-end test systems for ZMK.
### PR Guidelines
- PR title:
- `docs(codes): Android Support: brief-description-of-codes`
- `brief-description-of-codes` should briefly summarize the codes in the PR.
- PR description (_template_):
```md
### Android version/build?
### What codes did you test?
### How did you test?
### Have you any useful information?
### Has anyone else tested/verified it?
```
- We'll close (merge) PRs once it's clear that at least two people have verified each code, as we want to avoid false positives/negatives!
- If nobody else has tested your chosen codes yet, please submit a PR anyway. We'll keep it open until someone else verifies it.
- Please keep each PR atomic and limited in scope.
- Please don't bundle it with other unrelated changes (i.e. a bug fix or other enhancement)
- because it makes review and traceability later more difficult. If you do this, we'll ask you to resubmit two distinct PRs.
- Please don't submit lots of codes at once!
- The more changes you submit at once, the more difficult it is to review, verify and sign off the PR. Smaller PRs are better. We don't expect every code to be PR-ed individually however.
- Please aim to submit small chunks of _related_ changes.
- Unrelated changes can be difficult to track, find and verify.
### Community Effort
The ZMK developers will _not_ be running the show for this work. We've other priorities, so we'll only be signing off the PRs. It's up to the community to do the legwork which is a great opportunity for anyone to contribute to ZMK!
### Future
Once codes are verified, it should become clear which codes are supported, which can be safely removed (obsolete), and which merit further attention. We expect this to be a slow process for the less popular codes. | 1.0 | Codes Support Testing: Android - With the release of https://zmkfirmware.dev/docs/codes/, it's time to explore operating system support!
For those unaware, it became clear during the codes redevelopment (#21) that documentation for HID operating system support was sometimes sparse or dated. So, we decided to include every feasible code we could identify so that the ZMK community could test them out and feedback their findings.
### Objectives
**Primary**: turn any ❔ into ⭐ or ❌.
**Secondary**: collate together any useful information about each code, such as the everyday applications/conditions that do/don't support them. This information will probably go into footnotes or documented metadata for each code (TBD).
### What should I do?
Please use _this issue_ for discussing and recording your findings around the **Android** operating system! Please don't keep this information in Discord as it will get lost over time, and some people don't even use it.
Please also check the **open PRs** first because someone may have already done the legwork but is awaiting verification:
https://github.com/zmkfirmware/zmk/pulls
Once you've tested a code, you can submit a PR by editing: `docs/src/data/hid.js`
**Note for developers**: if you're looking to automate (script) testing/verification across a _large_ number of codes, that would be amazing. Please contact me on Discord (#development) first though as I can likely accelerate your efforts and work with you to minimize much of the PR red tape. Your efforts may also help accelerate the development of future end-2-end test systems for ZMK.
### PR Guidelines
- PR title:
- `docs(codes): Android Support: brief-description-of-codes`
- `brief-description-of-codes` should briefly summarize the codes in the PR.
- PR description (_template_):
```md
### Android version/build?
### What codes did you test?
### How did you test?
### Have you any useful information?
### Has anyone else tested/verified it?
```
- We'll close (merge) PRs once it's clear that at least two people have verified each code, as we want to avoid false positives/negatives!
- If nobody else has tested your chosen codes yet, please submit a PR anyway. We'll keep it open until someone else verifies it.
- Please keep each PR atomic and limited in scope.
- Please don't bundle it with other unrelated changes (i.e. a bug fix or other enhancement)
- because it makes review and traceability later more difficult. If you do this, we'll ask you to resubmit two distinct PRs.
- Please don't submit lots of codes at once!
- The more changes you submit at once, the more difficult it is to review, verify and sign off the PR. Smaller PRs are better. We don't expect every code to be PR-ed individually however.
- Please aim to submit small chunks of _related_ changes.
- Unrelated changes can be difficult to track, find and verify.
### Community Effort
The ZMK developers will _not_ be running the show for this work. We've other priorities, so we'll only be signing off the PRs. It's up to the community to do the legwork which is a great opportunity for anyone to contribute to ZMK!
### Future
Once codes are verified, it should become clear which codes are supported, which can be safely removed (obsolete), and which merit further attention. We expect this to be a slow process for the less popular codes. | non_priority | codes support testing android with the release of it s time to explore operating system support for those unaware it became clear during the codes redevelopment that documentation for hid operating system support was sometimes sparse or dated so we decided to include every feasible code we could identify so that the zmk community could test them out and feedback their findings objectives primary turn any ❔ into ⭐ or ❌ secondary collate together any useful information about each code such as the everyday applications conditions that do don t support them this information will probably go into footnotes or documented metadata for each code tbd what should i do please use this issue for discussing and recording your findings around the android operating system please don t keep this information in discord as it will get lost over time and some people don t even use it please also check the open prs first because someone may have already done the legwork but is awaiting verification once you ve tested a code you can submit a pr by editing docs src data hid js note for developers if you re looking to automate script testing verification across a large number of codes that would be amazing please contact me on discord development first though as i can likely accelerate your efforts and work with you to minimize much of the pr red tape your efforts may also help accelerate the development of future end end test systems for zmk pr guidelines pr title docs codes android support brief description of codes brief description of codes should briefly summarize the codes in the pr pr description template md android version build what codes did you test how did you test have you any useful information has anyone else tested verified it we ll close merge prs once it s clear that at least two people have verified each code as we want to avoid false positives negatives if nobody else has tested your chosen codes yet please submit a pr anyway we ll keep it open until someone else verifies it please keep each pr atomic and limited in scope please don t bundle it with other unrelated changes i e a bug fix or other enhancement because it makes review and traceability later more difficult if you do this we ll ask you to resubmit two distinct prs please don t submit lots of codes at once the more changes you submit at once the more difficult it is to review verify and sign off the pr smaller prs are better we don t expect every code to be pr ed individually however please aim to submit small chunks of related changes unrelated changes can be difficult to track find and verify community effort the zmk developers will not be running the show for this work we ve other priorities so we ll only be signing off the prs it s up to the community to do the legwork which is a great opportunity for anyone to contribute to zmk future once codes are verified it should become clear which codes are supported which can be safely removed obsolete and which merit further attention we expect this to be a slow process for the less popular codes | 0 |
220,861 | 7,371,645,594 | IssuesEvent | 2018-03-13 12:30:18 | pmem/issues | https://api.github.com/repos/pmem/issues | closed | test: vmem_multiple_pools/TEST1 sporadically fails on AppVeyor | Exposure: Medium OS: Windows Priority: 3 medium Type: Bug | [av_20171003_vmem_multiple_pools1.txt](https://github.com/pmem/issues/files/1382418/av_20171003_vmem_multiple_pools1.txt)
[av_20171013_vmem_multiple_pools1.txt](https://github.com/pmem/issues/files/1382419/av_20171013_vmem_multiple_pools1.txt)
[av_20170911_vmem_multiple_pools1.txt](https://github.com/pmem/issues/files/1382420/av_20170911_vmem_multiple_pools1.txt)
Could be the same issue as https://github.com/pmem/issues/issues/664
| 1.0 | test: vmem_multiple_pools/TEST1 sporadically fails on AppVeyor - [av_20171003_vmem_multiple_pools1.txt](https://github.com/pmem/issues/files/1382418/av_20171003_vmem_multiple_pools1.txt)
[av_20171013_vmem_multiple_pools1.txt](https://github.com/pmem/issues/files/1382419/av_20171013_vmem_multiple_pools1.txt)
[av_20170911_vmem_multiple_pools1.txt](https://github.com/pmem/issues/files/1382420/av_20170911_vmem_multiple_pools1.txt)
Could be the same issue as https://github.com/pmem/issues/issues/664
| priority | test vmem multiple pools sporadically fails on appveyor could be the same issue as | 1 |
220,944 | 16,990,922,248 | IssuesEvent | 2021-06-30 20:21:02 | cds-snc/platform-forms-client | https://api.github.com/repos/cds-snc/platform-forms-client | opened | Documentation for onboarding new developers to the team | documentation | Todo:
List everything we need to document | 1.0 | Documentation for onboarding new developers to the team - Todo:
List everything we need to document | non_priority | documentation for onboarding new developers to the team todo list everything we need to document | 0 |
630,929 | 20,121,058,042 | IssuesEvent | 2022-02-08 02:23:33 | prysmaticlabs/prysm | https://api.github.com/repos/prysmaticlabs/prysm | opened | Rethinking the Architecture of Block Receiving and Processing Pipelines in Prysm | Enhancement Discussion Priority: Low | Thanks to @kasey for the fruitful discussion on this and original idea.
## Background
Prysm's current architecture when it comes to receiving blocks and processing is complex, as it is a pipeline connecting several packages as part of the Prysm runtime. This makes it hard to test and arguably error prone. At a high-level, the architecture is as follows:
**Chain Synchronization and Block Retrieval**
1. The `p2p` service starts, which connects to bootnodes, other peers, and manages network connections
2. Prysm's `initial sync` service starts, which creates a state machine determining the sync status of the node by interacting with peers over p2p. This service determines if a node is synced to the canonical chain head, is **syncing** or if it has yet to begin the sync process
3. If a node needs to sync, the initial sync services interacts with the p2p service to send requests for blocks to peers in **batches**
4. Upon receiving a batch of blocks, the initial sync service then submits them to the `blockchain` service, which exposes a function named `ReceiveBlockBatch`. This function runs core state transition logic and advances the actual state of a beacon node
5. Once a node is synced, the initial sync service then closes, and a new service, known as `regular sync` starts
6. The regular sync service waits to receive blocks from peers via pubsub subscriptions, maintained via the p2p service, and upon receiving a block, it forwards it to the `ReceiveBlock` function for `blockchain service`
Overall, this follows more of a traditional, _push_ architecture where there is a logical flow to a block from p2p all the way to being processed in a state transition. Unfortunately, the sequence above involves many inter-related components that add complexity to testing. An alternative approach to this pipeline is to consider more of an isolated architecture where the `blockchain` service can subscribe to data it need, rather than exposing a method to the sync service. This improves **separation of concerns**.
The general idea, in pseudocode, is
```
func syncService() {
for block <- p2pReceivedBlocks {
validate(block)
buffer <- block
}
}
```
and
```
func blockchainService() {
for block <- syncService.Buffer() {
stateTransition(block)
}
}
```
This way, the sync service does not need to know about the blockchain service. It only needs to be in charge of maintaining its state machine internally and thats it. This issue is to explore this revamp along with limitations and potential problems. This needs a thorough design to evaluate if the refactor is worthwhile, but is a step in making Prysm follow more idiomatic Go design patterns.
| 1.0 | Rethinking the Architecture of Block Receiving and Processing Pipelines in Prysm - Thanks to @kasey for the fruitful discussion on this and original idea.
## Background
Prysm's current architecture when it comes to receiving blocks and processing is complex, as it is a pipeline connecting several packages as part of the Prysm runtime. This makes it hard to test and arguably error prone. At a high-level, the architecture is as follows:
**Chain Synchronization and Block Retrieval**
1. The `p2p` service starts, which connects to bootnodes, other peers, and manages network connections
2. Prysm's `initial sync` service starts, which creates a state machine determining the sync status of the node by interacting with peers over p2p. This service determines if a node is synced to the canonical chain head, is **syncing** or if it has yet to begin the sync process
3. If a node needs to sync, the initial sync services interacts with the p2p service to send requests for blocks to peers in **batches**
4. Upon receiving a batch of blocks, the initial sync service then submits them to the `blockchain` service, which exposes a function named `ReceiveBlockBatch`. This function runs core state transition logic and advances the actual state of a beacon node
5. Once a node is synced, the initial sync service then closes, and a new service, known as `regular sync` starts
6. The regular sync service waits to receive blocks from peers via pubsub subscriptions, maintained via the p2p service, and upon receiving a block, it forwards it to the `ReceiveBlock` function for `blockchain service`
Overall, this follows more of a traditional, _push_ architecture where there is a logical flow to a block from p2p all the way to being processed in a state transition. Unfortunately, the sequence above involves many inter-related components that add complexity to testing. An alternative approach to this pipeline is to consider more of an isolated architecture where the `blockchain` service can subscribe to data it need, rather than exposing a method to the sync service. This improves **separation of concerns**.
The general idea, in pseudocode, is
```
func syncService() {
for block <- p2pReceivedBlocks {
validate(block)
buffer <- block
}
}
```
and
```
func blockchainService() {
for block <- syncService.Buffer() {
stateTransition(block)
}
}
```
This way, the sync service does not need to know about the blockchain service. It only needs to be in charge of maintaining its state machine internally and thats it. This issue is to explore this revamp along with limitations and potential problems. This needs a thorough design to evaluate if the refactor is worthwhile, but is a step in making Prysm follow more idiomatic Go design patterns.
| priority | rethinking the architecture of block receiving and processing pipelines in prysm thanks to kasey for the fruitful discussion on this and original idea background prysm s current architecture when it comes to receiving blocks and processing is complex as it is a pipeline connecting several packages as part of the prysm runtime this makes it hard to test and arguably error prone at a high level the architecture is as follows chain synchronization and block retrieval the service starts which connects to bootnodes other peers and manages network connections prysm s initial sync service starts which creates a state machine determining the sync status of the node by interacting with peers over this service determines if a node is synced to the canonical chain head is syncing or if it has yet to begin the sync process if a node needs to sync the initial sync services interacts with the service to send requests for blocks to peers in batches upon receiving a batch of blocks the initial sync service then submits them to the blockchain service which exposes a function named receiveblockbatch this function runs core state transition logic and advances the actual state of a beacon node once a node is synced the initial sync service then closes and a new service known as regular sync starts the regular sync service waits to receive blocks from peers via pubsub subscriptions maintained via the service and upon receiving a block it forwards it to the receiveblock function for blockchain service overall this follows more of a traditional push architecture where there is a logical flow to a block from all the way to being processed in a state transition unfortunately the sequence above involves many inter related components that add complexity to testing an alternative approach to this pipeline is to consider more of an isolated architecture where the blockchain service can subscribe to data it need rather than exposing a method to the sync service this improves separation of concerns the general idea in pseudocode is func syncservice for block validate block buffer block and func blockchainservice for block syncservice buffer statetransition block this way the sync service does not need to know about the blockchain service it only needs to be in charge of maintaining its state machine internally and thats it this issue is to explore this revamp along with limitations and potential problems this needs a thorough design to evaluate if the refactor is worthwhile but is a step in making prysm follow more idiomatic go design patterns | 1 |
118,010 | 4,730,503,714 | IssuesEvent | 2016-10-18 21:49:53 | NuGet/Home | https://api.github.com/repos/NuGet/Home | closed | GetFullVsVersionString must be called on the UI thread | Area:VS.Client Priority:0 Type:Bug | Cannot open Nuget package manager in Visual Studio 2015:
Here is the error log:
LegacySitePackage failed for package [NuGetPackage]Source: Microsoft.VisualStudio.Composition
Description: An exception was thrown while initializing part "NuGet.PackageManagement.VisualStudio.VSSolutionManager".
Microsoft.VisualStudio.Composition.CompositionFailedException: An exception was thrown while initializing part "NuGet.PackageManagement.VisualStudio.VSSolutionManager". ---> System.Runtime.InteropServices.COMException: GetFullVsVersionString must be called on the UI thread.
at Microsoft.VisualStudio.Shell.ThreadHelper.ThrowIfNotOnUIThread(String callerMemberName)
at NuGet.PackageManagement.VisualStudio.VSVersionHelper.GetFullVsVersionString()
at NuGet.PackageManagement.VisualStudio.VSSolutionManager..ctor()
--- End of inner exception stack trace ---
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.RuntimePartLifecycleTracker.CreateValue()
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.Create()
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveNext(PartLifecycleState nextState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.<>c__DisplayClass15_0.<GetExportedValueHelper>b__0()
--- End of stack trace from previous location where exception was thrown ---
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.<>c__DisplayClass15_0.<GetExportedValueHelper>b__0()
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.GetValueForImportElement(RuntimePartLifecycleTracker importingPartTracker, RuntimeImport import, RuntimeExport export, Func`3 lazyFactory)
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.GetValueForImportSite(RuntimePartLifecycleTracker importingPartTracker, RuntimeImport import)
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.RuntimePartLifecycleTracker.<CreateValue>b__10_0(RuntimeImport import)
at System.Linq.Enumerable.WhereSelectArrayIterator`2.MoveNext()
at System.Linq.Buffer`1..ctor(IEnumerable`1 source)
at System.Linq.Enumerable.ToArray[TSource](IEnumerable`1 source)
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.RuntimePartLifecycleTracker.CreateValue()
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.Create()
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveNext(PartLifecycleState nextState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass53_0.<CreateExport>b__0()
at System.Lazy`1.CreateValue()
--- End of stack trace from previous location where exception was thrown ---
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
--- End of stack trace from previous location where exception was thrown ---
at System.Lazy`1.CreateValue()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass53_0.<CreateExport>b__0()
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at System.Lazy`1.CreateValue()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass53_0.<CreateExport>b__0()
at Microsoft.VisualStudio.Composition.NetFxAdapters.MefV1ExportProvider.<>c__DisplayClass12_0.<UnwrapExport>b__1()
at System.Lazy`1.CreateValue()
at System.ComponentModel.Composition.Primitives.Export.GetExportedValueCore()
at System.ComponentModel.Composition.Primitives.Export.get_Value()
at System.ComponentModel.Composition.ExportServices.GetCastedExportedValue[T](Export export)
at System.ComponentModel.Composition.ExportServices.<>c__DisplayClass12_0`1.<CreateStronglyTypedLazyOfT>b__1()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.CreateValue()
at Clide.Composition.ExportsServiceLocator.<DoGetInstance>b__0(Lazy`1 e)
at System.Lazy`1.CreateValue()
at System.Lazy`1.get_Value()
at System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source)
at System.Lazy`1.LazyInitValue()
at Clide.Composition.ExportsServiceLocator.DoGetInstance(Type serviceType, String key)
at System.Lazy`1.get_Value()
at System.ComponentModel.Composition.Primitives.Export.GetExportedValueCore()
at System.ComponentModel.Composition.Primitives.Export.get_Value()
at System.ComponentModel.Composition.ExportServices.GetCastedExportedValue[T](Export export)
at System.ComponentModel.Composition.ExportServices.<>c__DisplayClass12_0`1.<CreateStronglyTypedLazyOfT>b__1()
at Microsoft.VisualStudio.Composition.NetFxAdapters.MefV1ExportProvider.<>c__DisplayClass12_0.<UnwrapExport>b__1()
at System.Lazy`1.CreateValue()
at System.ComponentModel.Composition.ExportServices.GetCastedExportedValue[T](Export export)
at System.ComponentModel.Composition.ExportServices.<>c__DisplayClass12_0`1.<CreateStronglyTypedLazyOfT>b__1()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Clide.Composition.ExportsServiceLocator.<DoGetInstance>b__0(Lazy`1 e)
at System.Linq.Enumerable.WhereSelectEnumerableIterator`2.MoveNext()
at System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source)
at System.Linq.Enumerable.WhereSelectEnumerableIterator`2.MoveNext()
at System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source)
at Clide.Composition.ExportsServiceLocator.DoGetInstance(Type serviceType, String key)
at Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance(Type serviceType, String key)
at Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance(Type serviceType, String key)
--- End of stack trace from previous location where exception was thrown ---
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass53_0.<CreateExport>b__0()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.NetFxAdapters.MefV1ExportProvider.<>c__DisplayClass12_0.<UnwrapExport>b__1()
at System.ComponentModel.Composition.Primitives.Export.GetExportedValueCore()
at System.ComponentModel.Composition.Primitives.Export.get_Value()
at System.ComponentModel.Composition.ExportServices.GetCastedExportedValue[T](Export export)
at System.ComponentModel.Composition.ExportServices.<>c__DisplayClass12_0`1.<CreateStronglyTypedLazyOfT>b__1()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Clide.Composition.ExportsServiceLocator.<DoGetInstance>b__0(Lazy`1 e)
at System.Linq.Enumerable.WhereSelectEnumerableIterator`2.MoveNext()
at System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source)
at Clide.Composition.ExportsServiceLocator.DoGetInstance(Type serviceType, String key)
at Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance(Type serviceType, String key)
--- End of stack trace from previous location where exception was thrown ---
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.<>c__DisplayClass15_0.<GetExportedValueHelper>b__0()
--- End of stack trace from previous location where exception was thrown ---
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.<>c__DisplayClass15_0.<GetExportedValueHelper>b__0()
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.GetValueForImportElement(RuntimePartLifecycleTracker importingPartTracker, RuntimeImport import, RuntimeExport export, Func`3 lazyFactory)
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.GetValueForImportSite(RuntimePartLifecycleTracker importingPartTracker, RuntimeImport import)
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.RuntimePartLifecycleTracker.<CreateValue>b__10_0(RuntimeImport import)
at System.Linq.Enumerable.WhereSelectArrayIterator`2.MoveNext()
at System.Linq.Buffer`1..ctor(IEnumerable`1 source)
at System.Linq.Enumerable.ToArray[TSource](IEnumerable`1 source)
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.RuntimePartLifecycleTracker.CreateValue()
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.Create()
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveNext(PartLifecycleState nextState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass53_0.<CreateExport>b__0()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass70_0`2.<GetExports>b__1()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.GetExportedValue[T]()
at Microsoft.VisualStudio.ComponentModelHost.ComponentModel.GetService[T]()
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<GetComponentModelServiceAsync>d__10`1.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<>c__6`1.<<GetInstance>b__6_0>d.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTask`1.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod, JoinableTaskCreationOptions creationOptions)
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.GetInstance[TService]()
at NuGet.PackageManagement.VisualStudio.VSSolutionManager.GetProjectFactory()
at NuGet.PackageManagement.VisualStudio.VSSolutionManager.EnsureNuGetAndEnvDTEProjectCache()
at NuGet.PackageManagement.VisualStudio.VSSolutionManager.OnSolutionExistsAndFullyLoaded()
at NuGet.PackageManagement.VisualStudio.VSSolutionManager.OnCmdUIContextChanged(UInt32 dwCmdUICookie, Int32 fActive)
--- End of stack trace from previous location where exception was thrown ---
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass53_0.<CreateExport>b__0()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass70_0`2.<GetExports>b__1()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.GetExportedValue[T]()
at Microsoft.VisualStudio.ComponentModelHost.ComponentModel.GetService[T]()
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<GetComponentModelServiceAsync>d__10`1.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<>c__6`1.<<GetInstance>b__6_0>d.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTask`1.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod, JoinableTaskCreationOptions creationOptions)
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.GetInstance[TService]()
at NuGetVSExtension.NuGetPackage.LoadSettings()
--- End of stack trace from previous location where exception was thrown ---
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass53_0.<CreateExport>b__0()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass70_0`2.<GetExports>b__1()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.GetExportedValue[T]()
at Microsoft.VisualStudio.ComponentModelHost.ComponentModel.GetService[T]()
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<GetComponentModelServiceAsync>d__10`1.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<>c__6`1.<<GetInstance>b__6_0>d.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTask`1.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod, JoinableTaskCreationOptions creationOptions)
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.GetInstance[TService]()
at NuGetVSExtension.NuGetPackage.GetCredentialProviders()
at NuGetVSExtension.NuGetPackage.SetDefaultCredentialProvider()
at NuGetVSExtension.NuGetPackage.Initialize()
at Microsoft.VisualStudio.Shell.Package.Microsoft.VisualStudio.Shell.Interop.IVsPackage.SetSite(IServiceProvider sp)
--- End of stack trace from previous location where exception was thrown ---
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass53_0.<CreateExport>b__0()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass70_0`2.<GetExports>b__1()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.GetExportedValue[T]()
at Microsoft.VisualStudio.ComponentModelHost.ComponentModel.GetService[T]()
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<GetComponentModelServiceAsync>d__10`1.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<>c__6`1.<<GetInstance>b__6_0>d.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTask`1.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod, JoinableTaskCreationOptions creationOptions)
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.GetInstance[TService]()
at NuGetVSExtension.NuGetPackage.LoadSettings()
--- End of stack trace from previous location where exception was thrown ---
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass53_0.<CreateExport>b__0()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass70_0`2.<GetExports>b__1()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.GetExportedValue[T]()
at Microsoft.VisualStudio.ComponentModelHost.ComponentModel.GetService[T]()
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<GetComponentModelServiceAsync>d__10`1.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<>c__6`1.<<GetInstance>b__6_0>d.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTask`1.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod, JoinableTaskCreationOptions creationOptions)
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.GetInstance[TService]()
at NuGetVSExtension.NuGetPackage.GetCredentialProviders()
at NuGetVSExtension.NuGetPackage.SetDefaultCredentialProvider()
at NuGetVSExtension.NuGetPackage.Initialize()
at Microsoft.VisualStudio.Shell.Package.Microsoft.VisualStudio.Shell.Interop.IVsPackage.SetSite(IServiceProvider sp)
--- End of stack trace from previous location where exception was thrown ---
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass53_0.<CreateExport>b__0()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass70_0`2.<GetExports>b__1()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.GetExportedValue[T]()
at Microsoft.VisualStudio.ComponentModelHost.ComponentModel.GetService[T]()
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<GetComponentModelServiceAsync>d__10`1.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<>c__6`1.<<GetInstance>b__6_0>d.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTask`1.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod, JoinableTaskCreationOptions creationOptions)
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.GetInstance[TService]()
at NuGetVSExtension.NuGetPackage.LoadSettings()
--- End of stack trace from previous location where exception was thrown ---
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass53_0.<CreateExport>b__0()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass70_0`2.<GetExports>b__1()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.GetExportedValue[T]()
at Microsoft.VisualStudio.ComponentModelHost.ComponentModel.GetService[T]()
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<GetComponentModelServiceAsync>d__10`1.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<>c__6`1.<<GetInstance>b__6_0>d.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTask`1.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod, JoinableTaskCreationOptions creationOptions)
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.GetInstance[TService]()
at NuGetVSExtension.NuGetPackage.GetCredentialProviders()
at NuGetVSExtension.NuGetPackage.SetDefaultCredentialProvider()
at NuGetVSExtension.NuGetPackage.Initialize()
at Microsoft.VisualStudio.Shell.Package.Microsoft.VisualStudio.Shell.Interop.IVsPackage.SetSite(IServiceProvider sp)System.Runtime.InteropServices.COMException (0x8001010E): GetFullVsVersionString must be called on the UI thread.
at Microsoft.VisualStudio.Shell.ThreadHelper.ThrowIfNotOnUIThread(String callerMemberName)
at NuGet.PackageManagement.VisualStudio.VSVersionHelper.GetFullVsVersionString()
at NuGet.PackageManagement.VisualStudio.VSSolutionManager..ctor() | 1.0 | GetFullVsVersionString must be called on the UI thread - Cannot open Nuget package manager in Visual Studio 2015:
Here is the error log:
LegacySitePackage failed for package [NuGetPackage]Source: Microsoft.VisualStudio.Composition
Description: An exception was thrown while initializing part "NuGet.PackageManagement.VisualStudio.VSSolutionManager".
Microsoft.VisualStudio.Composition.CompositionFailedException: An exception was thrown while initializing part "NuGet.PackageManagement.VisualStudio.VSSolutionManager". ---> System.Runtime.InteropServices.COMException: GetFullVsVersionString must be called on the UI thread.
at Microsoft.VisualStudio.Shell.ThreadHelper.ThrowIfNotOnUIThread(String callerMemberName)
at NuGet.PackageManagement.VisualStudio.VSVersionHelper.GetFullVsVersionString()
at NuGet.PackageManagement.VisualStudio.VSSolutionManager..ctor()
--- End of inner exception stack trace ---
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.RuntimePartLifecycleTracker.CreateValue()
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.Create()
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveNext(PartLifecycleState nextState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.<>c__DisplayClass15_0.<GetExportedValueHelper>b__0()
--- End of stack trace from previous location where exception was thrown ---
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.<>c__DisplayClass15_0.<GetExportedValueHelper>b__0()
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.GetValueForImportElement(RuntimePartLifecycleTracker importingPartTracker, RuntimeImport import, RuntimeExport export, Func`3 lazyFactory)
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.GetValueForImportSite(RuntimePartLifecycleTracker importingPartTracker, RuntimeImport import)
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.RuntimePartLifecycleTracker.<CreateValue>b__10_0(RuntimeImport import)
at System.Linq.Enumerable.WhereSelectArrayIterator`2.MoveNext()
at System.Linq.Buffer`1..ctor(IEnumerable`1 source)
at System.Linq.Enumerable.ToArray[TSource](IEnumerable`1 source)
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.RuntimePartLifecycleTracker.CreateValue()
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.Create()
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveNext(PartLifecycleState nextState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass53_0.<CreateExport>b__0()
at System.Lazy`1.CreateValue()
--- End of stack trace from previous location where exception was thrown ---
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
--- End of stack trace from previous location where exception was thrown ---
at System.Lazy`1.CreateValue()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass53_0.<CreateExport>b__0()
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at System.Lazy`1.CreateValue()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass53_0.<CreateExport>b__0()
at Microsoft.VisualStudio.Composition.NetFxAdapters.MefV1ExportProvider.<>c__DisplayClass12_0.<UnwrapExport>b__1()
at System.Lazy`1.CreateValue()
at System.ComponentModel.Composition.Primitives.Export.GetExportedValueCore()
at System.ComponentModel.Composition.Primitives.Export.get_Value()
at System.ComponentModel.Composition.ExportServices.GetCastedExportedValue[T](Export export)
at System.ComponentModel.Composition.ExportServices.<>c__DisplayClass12_0`1.<CreateStronglyTypedLazyOfT>b__1()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.CreateValue()
at Clide.Composition.ExportsServiceLocator.<DoGetInstance>b__0(Lazy`1 e)
at System.Lazy`1.CreateValue()
at System.Lazy`1.get_Value()
at System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source)
at System.Lazy`1.LazyInitValue()
at Clide.Composition.ExportsServiceLocator.DoGetInstance(Type serviceType, String key)
at System.Lazy`1.get_Value()
at System.ComponentModel.Composition.Primitives.Export.GetExportedValueCore()
at System.ComponentModel.Composition.Primitives.Export.get_Value()
at System.ComponentModel.Composition.ExportServices.GetCastedExportedValue[T](Export export)
at System.ComponentModel.Composition.ExportServices.<>c__DisplayClass12_0`1.<CreateStronglyTypedLazyOfT>b__1()
at Microsoft.VisualStudio.Composition.NetFxAdapters.MefV1ExportProvider.<>c__DisplayClass12_0.<UnwrapExport>b__1()
at System.Lazy`1.CreateValue()
at System.ComponentModel.Composition.ExportServices.GetCastedExportedValue[T](Export export)
at System.ComponentModel.Composition.ExportServices.<>c__DisplayClass12_0`1.<CreateStronglyTypedLazyOfT>b__1()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Clide.Composition.ExportsServiceLocator.<DoGetInstance>b__0(Lazy`1 e)
at System.Linq.Enumerable.WhereSelectEnumerableIterator`2.MoveNext()
at System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source)
at System.Linq.Enumerable.WhereSelectEnumerableIterator`2.MoveNext()
at System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source)
at Clide.Composition.ExportsServiceLocator.DoGetInstance(Type serviceType, String key)
at Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance(Type serviceType, String key)
at Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance(Type serviceType, String key)
--- End of stack trace from previous location where exception was thrown ---
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass53_0.<CreateExport>b__0()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.NetFxAdapters.MefV1ExportProvider.<>c__DisplayClass12_0.<UnwrapExport>b__1()
at System.ComponentModel.Composition.Primitives.Export.GetExportedValueCore()
at System.ComponentModel.Composition.Primitives.Export.get_Value()
at System.ComponentModel.Composition.ExportServices.GetCastedExportedValue[T](Export export)
at System.ComponentModel.Composition.ExportServices.<>c__DisplayClass12_0`1.<CreateStronglyTypedLazyOfT>b__1()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Clide.Composition.ExportsServiceLocator.<DoGetInstance>b__0(Lazy`1 e)
at System.Linq.Enumerable.WhereSelectEnumerableIterator`2.MoveNext()
at System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source)
at Clide.Composition.ExportsServiceLocator.DoGetInstance(Type serviceType, String key)
at Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance(Type serviceType, String key)
--- End of stack trace from previous location where exception was thrown ---
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.<>c__DisplayClass15_0.<GetExportedValueHelper>b__0()
--- End of stack trace from previous location where exception was thrown ---
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.<>c__DisplayClass15_0.<GetExportedValueHelper>b__0()
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.GetValueForImportElement(RuntimePartLifecycleTracker importingPartTracker, RuntimeImport import, RuntimeExport export, Func`3 lazyFactory)
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.GetValueForImportSite(RuntimePartLifecycleTracker importingPartTracker, RuntimeImport import)
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.RuntimePartLifecycleTracker.<CreateValue>b__10_0(RuntimeImport import)
at System.Linq.Enumerable.WhereSelectArrayIterator`2.MoveNext()
at System.Linq.Buffer`1..ctor(IEnumerable`1 source)
at System.Linq.Enumerable.ToArray[TSource](IEnumerable`1 source)
at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.RuntimePartLifecycleTracker.CreateValue()
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.Create()
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveNext(PartLifecycleState nextState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass53_0.<CreateExport>b__0()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass70_0`2.<GetExports>b__1()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.GetExportedValue[T]()
at Microsoft.VisualStudio.ComponentModelHost.ComponentModel.GetService[T]()
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<GetComponentModelServiceAsync>d__10`1.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<>c__6`1.<<GetInstance>b__6_0>d.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTask`1.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod, JoinableTaskCreationOptions creationOptions)
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.GetInstance[TService]()
at NuGet.PackageManagement.VisualStudio.VSSolutionManager.GetProjectFactory()
at NuGet.PackageManagement.VisualStudio.VSSolutionManager.EnsureNuGetAndEnvDTEProjectCache()
at NuGet.PackageManagement.VisualStudio.VSSolutionManager.OnSolutionExistsAndFullyLoaded()
at NuGet.PackageManagement.VisualStudio.VSSolutionManager.OnCmdUIContextChanged(UInt32 dwCmdUICookie, Int32 fActive)
--- End of stack trace from previous location where exception was thrown ---
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass53_0.<CreateExport>b__0()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass70_0`2.<GetExports>b__1()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.GetExportedValue[T]()
at Microsoft.VisualStudio.ComponentModelHost.ComponentModel.GetService[T]()
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<GetComponentModelServiceAsync>d__10`1.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<>c__6`1.<<GetInstance>b__6_0>d.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTask`1.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod, JoinableTaskCreationOptions creationOptions)
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.GetInstance[TService]()
at NuGetVSExtension.NuGetPackage.LoadSettings()
--- End of stack trace from previous location where exception was thrown ---
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass53_0.<CreateExport>b__0()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass70_0`2.<GetExports>b__1()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.GetExportedValue[T]()
at Microsoft.VisualStudio.ComponentModelHost.ComponentModel.GetService[T]()
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<GetComponentModelServiceAsync>d__10`1.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<>c__6`1.<<GetInstance>b__6_0>d.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTask`1.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod, JoinableTaskCreationOptions creationOptions)
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.GetInstance[TService]()
at NuGetVSExtension.NuGetPackage.GetCredentialProviders()
at NuGetVSExtension.NuGetPackage.SetDefaultCredentialProvider()
at NuGetVSExtension.NuGetPackage.Initialize()
at Microsoft.VisualStudio.Shell.Package.Microsoft.VisualStudio.Shell.Interop.IVsPackage.SetSite(IServiceProvider sp)
--- End of stack trace from previous location where exception was thrown ---
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass53_0.<CreateExport>b__0()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass70_0`2.<GetExports>b__1()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.GetExportedValue[T]()
at Microsoft.VisualStudio.ComponentModelHost.ComponentModel.GetService[T]()
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<GetComponentModelServiceAsync>d__10`1.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<>c__6`1.<<GetInstance>b__6_0>d.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTask`1.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod, JoinableTaskCreationOptions creationOptions)
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.GetInstance[TService]()
at NuGetVSExtension.NuGetPackage.LoadSettings()
--- End of stack trace from previous location where exception was thrown ---
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass53_0.<CreateExport>b__0()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass70_0`2.<GetExports>b__1()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.GetExportedValue[T]()
at Microsoft.VisualStudio.ComponentModelHost.ComponentModel.GetService[T]()
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<GetComponentModelServiceAsync>d__10`1.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<>c__6`1.<<GetInstance>b__6_0>d.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTask`1.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod, JoinableTaskCreationOptions creationOptions)
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.GetInstance[TService]()
at NuGetVSExtension.NuGetPackage.GetCredentialProviders()
at NuGetVSExtension.NuGetPackage.SetDefaultCredentialProvider()
at NuGetVSExtension.NuGetPackage.Initialize()
at Microsoft.VisualStudio.Shell.Package.Microsoft.VisualStudio.Shell.Interop.IVsPackage.SetSite(IServiceProvider sp)
--- End of stack trace from previous location where exception was thrown ---
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass53_0.<CreateExport>b__0()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass70_0`2.<GetExports>b__1()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.GetExportedValue[T]()
at Microsoft.VisualStudio.ComponentModelHost.ComponentModel.GetService[T]()
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<GetComponentModelServiceAsync>d__10`1.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<>c__6`1.<<GetInstance>b__6_0>d.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTask`1.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod, JoinableTaskCreationOptions creationOptions)
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.GetInstance[TService]()
at NuGetVSExtension.NuGetPackage.LoadSettings()
--- End of stack trace from previous location where exception was thrown ---
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass53_0.<CreateExport>b__0()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.<>c__DisplayClass70_0`2.<GetExports>b__1()
at System.Lazy`1.CreateValue()
at System.Lazy`1.LazyInitValue()
at System.Lazy`1.get_Value()
at Microsoft.VisualStudio.Composition.ExportProvider.GetExportedValue[T]()
at Microsoft.VisualStudio.ComponentModelHost.ComponentModel.GetService[T]()
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<GetComponentModelServiceAsync>d__10`1.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.<>c__6`1.<<GetInstance>b__6_0>d.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTask`1.CompleteOnCurrentThread()
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod, JoinableTaskCreationOptions creationOptions)
at Microsoft.VisualStudio.Threading.JoinableTaskFactory.Run[T](Func`1 asyncMethod)
at NuGet.PackageManagement.VisualStudio.ServiceLocator.GetInstance[TService]()
at NuGetVSExtension.NuGetPackage.GetCredentialProviders()
at NuGetVSExtension.NuGetPackage.SetDefaultCredentialProvider()
at NuGetVSExtension.NuGetPackage.Initialize()
at Microsoft.VisualStudio.Shell.Package.Microsoft.VisualStudio.Shell.Interop.IVsPackage.SetSite(IServiceProvider sp)System.Runtime.InteropServices.COMException (0x8001010E): GetFullVsVersionString must be called on the UI thread.
at Microsoft.VisualStudio.Shell.ThreadHelper.ThrowIfNotOnUIThread(String callerMemberName)
at NuGet.PackageManagement.VisualStudio.VSVersionHelper.GetFullVsVersionString()
at NuGet.PackageManagement.VisualStudio.VSSolutionManager..ctor() | priority | getfullvsversionstring must be called on the ui thread cannot open nuget package manager in visual studio here is the error log legacysitepackage failed for package source microsoft visualstudio composition description an exception was thrown while initializing part nuget packagemanagement visualstudio vssolutionmanager microsoft visualstudio composition compositionfailedexception an exception was thrown while initializing part nuget packagemanagement visualstudio vssolutionmanager gt system runtime interopservices comexception getfullvsversionstring must be called on the ui thread at microsoft visualstudio shell threadhelper throwifnotonuithread string callermembername at nuget packagemanagement visualstudio vsversionhelper getfullvsversionstring at nuget packagemanagement visualstudio vssolutionmanager ctor end of inner exception stack trace at microsoft visualstudio composition runtimeexportproviderfactory runtimeexportprovider runtimepartlifecycletracker createvalue at microsoft visualstudio composition exportprovider partlifecycletracker create at microsoft visualstudio composition exportprovider partlifecycletracker movenext partlifecyclestate nextstate at microsoft visualstudio composition exportprovider partlifecycletracker movetostate partlifecyclestate requiredstate at microsoft visualstudio composition exportprovider partlifecycletracker getvaluereadytoexpose at microsoft visualstudio composition runtimeexportproviderfactory runtimeexportprovider lt gt c lt getexportedvaluehelper gt b end of stack trace from previous location where exception was thrown at microsoft visualstudio composition runtimeexportproviderfactory runtimeexportprovider lt gt c lt getexportedvaluehelper gt b at microsoft visualstudio composition runtimeexportproviderfactory runtimeexportprovider getvalueforimportelement runtimepartlifecycletracker importingparttracker runtimeimport import runtimeexport export func lazyfactory at microsoft visualstudio composition runtimeexportproviderfactory runtimeexportprovider getvalueforimportsite runtimepartlifecycletracker importingparttracker runtimeimport import at microsoft visualstudio composition runtimeexportproviderfactory runtimeexportprovider runtimepartlifecycletracker lt createvalue gt b runtimeimport import at system linq enumerable whereselectarrayiterator movenext at system linq buffer ctor ienumerable source at system linq enumerable toarray ienumerable source at microsoft visualstudio composition runtimeexportproviderfactory runtimeexportprovider runtimepartlifecycletracker createvalue at microsoft visualstudio composition exportprovider partlifecycletracker create at microsoft visualstudio composition exportprovider partlifecycletracker movenext partlifecyclestate nextstate at microsoft visualstudio composition exportprovider partlifecycletracker movetostate partlifecyclestate requiredstate at microsoft visualstudio composition exportprovider partlifecycletracker getvaluereadytoexpose at microsoft visualstudio composition exportprovider lt gt c lt createexport gt b at system lazy createvalue end of stack trace from previous location where exception was thrown at microsoft visualstudio composition exportprovider partlifecycletracker movetostate partlifecyclestate requiredstate end of stack trace from previous location where exception was thrown at system lazy createvalue at microsoft visualstudio composition exportprovider lt gt c lt createexport gt b at microsoft visualstudio composition exportprovider partlifecycletracker getvaluereadytoexpose at system lazy createvalue at microsoft visualstudio composition exportprovider lt gt c lt createexport gt b at microsoft visualstudio composition netfxadapters lt gt c lt unwrapexport gt b at system lazy createvalue at system componentmodel composition primitives export getexportedvaluecore at system componentmodel composition primitives export get value at system componentmodel composition exportservices getcastedexportedvalue export export at system componentmodel composition exportservices lt gt c lt createstronglytypedlazyoft gt b at system lazy createvalue at system lazy lazyinitvalue at system lazy createvalue at clide composition exportsservicelocator lt dogetinstance gt b lazy e at system lazy createvalue at system lazy get value at system linq enumerable firstordefault ienumerable source at system lazy lazyinitvalue at clide composition exportsservicelocator dogetinstance type servicetype string key at system lazy get value at system componentmodel composition primitives export getexportedvaluecore at system componentmodel composition primitives export get value at system componentmodel composition exportservices getcastedexportedvalue export export at system componentmodel composition exportservices lt gt c lt createstronglytypedlazyoft gt b at microsoft visualstudio composition netfxadapters lt gt c lt unwrapexport gt b at system lazy createvalue at system componentmodel composition exportservices getcastedexportedvalue export export at system componentmodel composition exportservices lt gt c lt createstronglytypedlazyoft gt b at system lazy createvalue at system lazy lazyinitvalue at system lazy createvalue at system lazy lazyinitvalue at system lazy get value at clide composition exportsservicelocator lt dogetinstance gt b lazy e at system linq enumerable whereselectenumerableiterator movenext at system linq enumerable firstordefault ienumerable source at system linq enumerable whereselectenumerableiterator movenext at system linq enumerable firstordefault ienumerable source at clide composition exportsservicelocator dogetinstance type servicetype string key at microsoft practices servicelocation servicelocatorimplbase getinstance type servicetype string key at microsoft practices servicelocation servicelocatorimplbase getinstance type servicetype string key end of stack trace from previous location where exception was thrown at microsoft visualstudio composition exportprovider partlifecycletracker movetostate partlifecyclestate requiredstate at microsoft visualstudio composition exportprovider partlifecycletracker getvaluereadytoexpose at microsoft visualstudio composition exportprovider lt gt c lt createexport gt b at system lazy createvalue at system lazy lazyinitvalue at system lazy get value at microsoft visualstudio composition netfxadapters lt gt c lt unwrapexport gt b at system componentmodel composition primitives export getexportedvaluecore at system componentmodel composition primitives export get value at system componentmodel composition exportservices getcastedexportedvalue export export at system componentmodel composition exportservices lt gt c lt createstronglytypedlazyoft gt b at system lazy createvalue at system lazy lazyinitvalue at system lazy get value at clide composition exportsservicelocator lt dogetinstance gt b lazy e at system linq enumerable whereselectenumerableiterator movenext at system linq enumerable firstordefault ienumerable source at clide composition exportsservicelocator dogetinstance type servicetype string key at microsoft practices servicelocation servicelocatorimplbase getinstance type servicetype string key end of stack trace from previous location where exception was thrown at microsoft visualstudio composition exportprovider partlifecycletracker movetostate partlifecyclestate requiredstate at microsoft visualstudio composition exportprovider partlifecycletracker getvaluereadytoexpose at microsoft visualstudio composition runtimeexportproviderfactory runtimeexportprovider lt gt c lt getexportedvaluehelper gt b end of stack trace from previous location where exception was thrown at microsoft visualstudio composition runtimeexportproviderfactory runtimeexportprovider lt gt c lt getexportedvaluehelper gt b at microsoft visualstudio composition runtimeexportproviderfactory runtimeexportprovider getvalueforimportelement runtimepartlifecycletracker importingparttracker runtimeimport import runtimeexport export func lazyfactory at microsoft visualstudio composition runtimeexportproviderfactory runtimeexportprovider getvalueforimportsite runtimepartlifecycletracker importingparttracker runtimeimport import at microsoft visualstudio composition runtimeexportproviderfactory runtimeexportprovider runtimepartlifecycletracker lt createvalue gt b runtimeimport import at system linq enumerable whereselectarrayiterator movenext at system linq buffer ctor ienumerable source at system linq enumerable toarray ienumerable source at microsoft visualstudio composition runtimeexportproviderfactory runtimeexportprovider runtimepartlifecycletracker createvalue at microsoft visualstudio composition exportprovider partlifecycletracker create at microsoft visualstudio composition exportprovider partlifecycletracker movenext partlifecyclestate nextstate at microsoft visualstudio composition exportprovider partlifecycletracker movetostate partlifecyclestate requiredstate at microsoft visualstudio composition exportprovider partlifecycletracker getvaluereadytoexpose at microsoft visualstudio composition exportprovider lt gt c lt createexport gt b at system lazy createvalue at system lazy lazyinitvalue at system lazy get value at microsoft visualstudio composition exportprovider lt gt c lt getexports gt b at system lazy createvalue at system lazy lazyinitvalue at system lazy get value at microsoft visualstudio composition exportprovider getexportedvalue at microsoft visualstudio componentmodelhost componentmodel getservice at nuget packagemanagement visualstudio servicelocator lt getcomponentmodelserviceasync gt d movenext end of stack trace from previous location where exception was thrown at system runtime compilerservices taskawaiter throwfornonsuccess task task at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget packagemanagement visualstudio servicelocator lt gt c lt lt getinstance gt b gt d movenext end of stack trace from previous location where exception was thrown at system runtime compilerservices taskawaiter throwfornonsuccess task task at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at microsoft visualstudio threading joinabletask completeoncurrentthread at microsoft visualstudio threading joinabletask completeoncurrentthread at microsoft visualstudio threading joinabletaskfactory run func asyncmethod joinabletaskcreationoptions creationoptions at microsoft visualstudio threading joinabletaskfactory run func asyncmethod at nuget packagemanagement visualstudio servicelocator getinstance at nuget packagemanagement visualstudio vssolutionmanager getprojectfactory at nuget packagemanagement visualstudio vssolutionmanager ensurenugetandenvdteprojectcache at nuget packagemanagement visualstudio vssolutionmanager onsolutionexistsandfullyloaded at nuget packagemanagement visualstudio vssolutionmanager oncmduicontextchanged dwcmduicookie factive end of stack trace from previous location where exception was thrown at microsoft visualstudio composition exportprovider partlifecycletracker movetostate partlifecyclestate requiredstate at microsoft visualstudio composition exportprovider partlifecycletracker getvaluereadytoexpose at microsoft visualstudio composition exportprovider lt gt c lt createexport gt b at system lazy createvalue at system lazy lazyinitvalue at system lazy get value at microsoft visualstudio composition exportprovider lt gt c lt getexports gt b at system lazy createvalue at system lazy lazyinitvalue at system lazy get value at microsoft visualstudio composition exportprovider getexportedvalue at microsoft visualstudio componentmodelhost componentmodel getservice at nuget packagemanagement visualstudio servicelocator lt getcomponentmodelserviceasync gt d movenext end of stack trace from previous location where exception was thrown at system runtime compilerservices taskawaiter throwfornonsuccess task task at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget packagemanagement visualstudio servicelocator lt gt c lt lt getinstance gt b gt d movenext end of stack trace from previous location where exception was thrown at system runtime compilerservices taskawaiter throwfornonsuccess task task at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at microsoft visualstudio threading joinabletask completeoncurrentthread at microsoft visualstudio threading joinabletask completeoncurrentthread at microsoft visualstudio threading joinabletaskfactory run func asyncmethod joinabletaskcreationoptions creationoptions at microsoft visualstudio threading joinabletaskfactory run func asyncmethod at nuget packagemanagement visualstudio servicelocator getinstance at nugetvsextension nugetpackage loadsettings end of stack trace from previous location where exception was thrown at microsoft visualstudio composition exportprovider partlifecycletracker movetostate partlifecyclestate requiredstate at microsoft visualstudio composition exportprovider partlifecycletracker getvaluereadytoexpose at microsoft visualstudio composition exportprovider lt gt c lt createexport gt b at system lazy createvalue at system lazy lazyinitvalue at system lazy get value at microsoft visualstudio composition exportprovider lt gt c lt getexports gt b at system lazy createvalue at system lazy lazyinitvalue at system lazy get value at microsoft visualstudio composition exportprovider getexportedvalue at microsoft visualstudio componentmodelhost componentmodel getservice at nuget packagemanagement visualstudio servicelocator lt getcomponentmodelserviceasync gt d movenext end of stack trace from previous location where exception was thrown at system runtime compilerservices taskawaiter throwfornonsuccess task task at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget packagemanagement visualstudio servicelocator lt gt c lt lt getinstance gt b gt d movenext end of stack trace from previous location where exception was thrown at system runtime compilerservices taskawaiter throwfornonsuccess task task at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at microsoft visualstudio threading joinabletask completeoncurrentthread at microsoft visualstudio threading joinabletask completeoncurrentthread at microsoft visualstudio threading joinabletaskfactory run func asyncmethod joinabletaskcreationoptions creationoptions at microsoft visualstudio threading joinabletaskfactory run func asyncmethod at nuget packagemanagement visualstudio servicelocator getinstance at nugetvsextension nugetpackage getcredentialproviders at nugetvsextension nugetpackage setdefaultcredentialprovider at nugetvsextension nugetpackage initialize at microsoft visualstudio shell package microsoft visualstudio shell interop ivspackage setsite iserviceprovider sp end of stack trace from previous location where exception was thrown at microsoft visualstudio composition exportprovider partlifecycletracker movetostate partlifecyclestate requiredstate at microsoft visualstudio composition exportprovider partlifecycletracker getvaluereadytoexpose at microsoft visualstudio composition exportprovider lt gt c lt createexport gt b at system lazy createvalue at system lazy lazyinitvalue at system lazy get value at microsoft visualstudio composition exportprovider lt gt c lt getexports gt b at system lazy createvalue at system lazy lazyinitvalue at system lazy get value at microsoft visualstudio composition exportprovider getexportedvalue at microsoft visualstudio componentmodelhost componentmodel getservice at nuget packagemanagement visualstudio servicelocator lt getcomponentmodelserviceasync gt d movenext end of stack trace from previous location where exception was thrown at system runtime compilerservices taskawaiter throwfornonsuccess task task at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget packagemanagement visualstudio servicelocator lt gt c lt lt getinstance gt b gt d movenext end of stack trace from previous location where exception was thrown at system runtime compilerservices taskawaiter throwfornonsuccess task task at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at microsoft visualstudio threading joinabletask completeoncurrentthread at microsoft visualstudio threading joinabletask completeoncurrentthread at microsoft visualstudio threading joinabletaskfactory run func asyncmethod joinabletaskcreationoptions creationoptions at microsoft visualstudio threading joinabletaskfactory run func asyncmethod at nuget packagemanagement visualstudio servicelocator getinstance at nugetvsextension nugetpackage loadsettings end of stack trace from previous location where exception was thrown at microsoft visualstudio composition exportprovider partlifecycletracker movetostate partlifecyclestate requiredstate at microsoft visualstudio composition exportprovider partlifecycletracker getvaluereadytoexpose at microsoft visualstudio composition exportprovider lt gt c lt createexport gt b at system lazy createvalue at system lazy lazyinitvalue at system lazy get value at microsoft visualstudio composition exportprovider lt gt c lt getexports gt b at system lazy createvalue at system lazy lazyinitvalue at system lazy get value at microsoft visualstudio composition exportprovider getexportedvalue at microsoft visualstudio componentmodelhost componentmodel getservice at nuget packagemanagement visualstudio servicelocator lt getcomponentmodelserviceasync gt d movenext end of stack trace from previous location where exception was thrown at system runtime compilerservices taskawaiter throwfornonsuccess task task at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget packagemanagement visualstudio servicelocator lt gt c lt lt getinstance gt b gt d movenext end of stack trace from previous location where exception was thrown at system runtime compilerservices taskawaiter throwfornonsuccess task task at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at microsoft visualstudio threading joinabletask completeoncurrentthread at microsoft visualstudio threading joinabletask completeoncurrentthread at microsoft visualstudio threading joinabletaskfactory run func asyncmethod joinabletaskcreationoptions creationoptions at microsoft visualstudio threading joinabletaskfactory run func asyncmethod at nuget packagemanagement visualstudio servicelocator getinstance at nugetvsextension nugetpackage getcredentialproviders at nugetvsextension nugetpackage setdefaultcredentialprovider at nugetvsextension nugetpackage initialize at microsoft visualstudio shell package microsoft visualstudio shell interop ivspackage setsite iserviceprovider sp end of stack trace from previous location where exception was thrown at microsoft visualstudio composition exportprovider partlifecycletracker movetostate partlifecyclestate requiredstate at microsoft visualstudio composition exportprovider partlifecycletracker getvaluereadytoexpose at microsoft visualstudio composition exportprovider lt gt c lt createexport gt b at system lazy createvalue at system lazy lazyinitvalue at system lazy get value at microsoft visualstudio composition exportprovider lt gt c lt getexports gt b at system lazy createvalue at system lazy lazyinitvalue at system lazy get value at microsoft visualstudio composition exportprovider getexportedvalue at microsoft visualstudio componentmodelhost componentmodel getservice at nuget packagemanagement visualstudio servicelocator lt getcomponentmodelserviceasync gt d movenext end of stack trace from previous location where exception was thrown at system runtime compilerservices taskawaiter throwfornonsuccess task task at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget packagemanagement visualstudio servicelocator lt gt c lt lt getinstance gt b gt d movenext end of stack trace from previous location where exception was thrown at system runtime compilerservices taskawaiter throwfornonsuccess task task at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at microsoft visualstudio threading joinabletask completeoncurrentthread at microsoft visualstudio threading joinabletask completeoncurrentthread at microsoft visualstudio threading joinabletaskfactory run func asyncmethod joinabletaskcreationoptions creationoptions at microsoft visualstudio threading joinabletaskfactory run func asyncmethod at nuget packagemanagement visualstudio servicelocator getinstance at nugetvsextension nugetpackage loadsettings end of stack trace from previous location where exception was thrown at microsoft visualstudio composition exportprovider partlifecycletracker movetostate partlifecyclestate requiredstate at microsoft visualstudio composition exportprovider partlifecycletracker getvaluereadytoexpose at microsoft visualstudio composition exportprovider lt gt c lt createexport gt b at system lazy createvalue at system lazy lazyinitvalue at system lazy get value at microsoft visualstudio composition exportprovider lt gt c lt getexports gt b at system lazy createvalue at system lazy lazyinitvalue at system lazy get value at microsoft visualstudio composition exportprovider getexportedvalue at microsoft visualstudio componentmodelhost componentmodel getservice at nuget packagemanagement visualstudio servicelocator lt getcomponentmodelserviceasync gt d movenext end of stack trace from previous location where exception was thrown at system runtime compilerservices taskawaiter throwfornonsuccess task task at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget packagemanagement visualstudio servicelocator lt gt c lt lt getinstance gt b gt d movenext end of stack trace from previous location where exception was thrown at system runtime compilerservices taskawaiter throwfornonsuccess task task at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at microsoft visualstudio threading joinabletask completeoncurrentthread at microsoft visualstudio threading joinabletask completeoncurrentthread at microsoft visualstudio threading joinabletaskfactory run func asyncmethod joinabletaskcreationoptions creationoptions at microsoft visualstudio threading joinabletaskfactory run func asyncmethod at nuget packagemanagement visualstudio servicelocator getinstance at nugetvsextension nugetpackage getcredentialproviders at nugetvsextension nugetpackage setdefaultcredentialprovider at nugetvsextension nugetpackage initialize at microsoft visualstudio shell package microsoft visualstudio shell interop ivspackage setsite iserviceprovider sp system runtime interopservices comexception getfullvsversionstring must be called on the ui thread at microsoft visualstudio shell threadhelper throwifnotonuithread string callermembername at nuget packagemanagement visualstudio vsversionhelper getfullvsversionstring at nuget packagemanagement visualstudio vssolutionmanager ctor | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.