Unnamed: 0 int64 3 832k | id float64 2.49B 32.1B | type stringclasses 1 value | created_at stringlengths 19 19 | repo stringlengths 7 112 | repo_url stringlengths 36 141 | action stringclasses 3 values | title stringlengths 2 742 | labels stringlengths 4 431 | body stringlengths 5 239k | index stringclasses 10 values | text_combine stringlengths 96 240k | label stringclasses 2 values | text stringlengths 96 200k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
19,050 | 13,536,127,501 | IssuesEvent | 2020-09-16 08:36:10 | topcoder-platform/qa-fun | https://api.github.com/repos/topcoder-platform/qa-fun | closed | [Chrome] Blank space available in CASE STUDY page | UX/Usability | Bug title - Blank space available in heading and search field
Steps To Reproduce -
1. Go to https://www.topcoder.com/case-study-type/
2. Scroll down and observe
3. blank space available between heading and search field
Actual Result - blank space available
Expected Result - There should not be blank space available there is no need of space
Device/OS/Browser Information: Laptop HP, Windows10 (64Bit) , ChromeVersion 81.0.4044.129

| True | [Chrome] Blank space available in CASE STUDY page - Bug title - Blank space available in heading and search field
Steps To Reproduce -
1. Go to https://www.topcoder.com/case-study-type/
2. Scroll down and observe
3. blank space available between heading and search field
Actual Result - blank space available
Expected Result - There should not be blank space available there is no need of space
Device/OS/Browser Information: Laptop HP, Windows10 (64Bit) , ChromeVersion 81.0.4044.129

| usab | blank space available in case study page bug title blank space available in heading and search field steps to reproduce go to scroll down and observe blank space available between heading and search field actual result blank space available expected result there should not be blank space available there is no need of space device os browser information laptop hp chromeversion | 1 |
27,940 | 30,729,746,435 | IssuesEvent | 2023-07-27 23:40:27 | tailscale/tailscale | https://api.github.com/repos/tailscale/tailscale | closed | Tagged server can access subnet routes when ACL should deny it, if admin group is given access | OS-linux L1 Very few P1 Nuisance T5 Usability waiting-for-info | ### What is the issue?
If I spin up a new node using an auth key with a tag that should only have access to one server, it still gets full access to my subnet router.
I have the ACL set up to allow group:admin access to specific subnet IPs, if I remove "192.168.0.212:*" from the "dst" for admins then the tag:tester-machine can no longer access it, as if it is in the admin group.
Additionally I have a tests section setup to verify the deny rules, which incorrectly pass even though this machine can actually access what's in the deny test list.
My ACL file is set up like so (synobro is the subnet router):
```
{
"groups": {
"group:admin": ["email@example.com"],
},
"hosts": {
"cherry-office": "<ip>",
"cherry-svn": "<ip>",
"synobro": "<ip>",
},
"acls": [
{
"action": "accept",
"src": ["autogroup:members"],
"dst": ["autogroup:self:*"],
},
{
"action": "accept",
"src": ["group:admin"],
"dst": [
"tag:server:*",
"192.168.0.1:*",
"192.168.0.58:*",
"192.168.0.212:*",
"192.168.0.12:*",
],
},
{
"action": "accept",
"src": ["tag:tester-machine"],
"dst": ["cherry-office:8080"],
},
],
"tagOwners": {
"tag:server": ["group:admin"],
"tag:tester-machine": ["group:admin"],
},
"ssh": [
// Allow all users to SSH into their own devices in check mode.
// Comment this section out if you want to define specific restrictions.
{
"action": "check",
"src": ["autogroup:members"],
"dst": ["autogroup:self"],
"users": ["autogroup:nonroot", "root"],
},
// Admins can SSH into servers
{
"action": "check",
"src": ["group:admin"],
"dst": ["tag:server"],
"users": ["autogroup:nonroot", "root"],
},
],
"tests": [
{
"src": "tag:tester-machine",
"accept": ["cherry-office:8080"],
"deny": ["cherry-office:22", "synobro:7100", "192.168.0.212:80"],
},
],
}
```
### Steps to reproduce
Running `tailscale status` shows cherry-office and synobro in the list, when only cherry-office should be visible.
Running `wget -O - 'http://192.168.0.212'` returns the web page content, when it should not have access. Removing access to that IP from the admin group and then running this again will not work, as if this tag is getting the same access as an admin.
### Are there any recent changes that introduced the issue?
_No response_
### OS
Linux
### OS version
Ubuntu 22.04 using Docker
### Tailscale version
1.46.1 (docker latest)
### Other software
_No response_
### Bug report
BUG-08d89af6dca6db048b25e8237b809b2fcfed2c45b7aaefdc3b9bfdf2e86856e7-20230727073036Z-4912e9eb859e9ff3 | True | Tagged server can access subnet routes when ACL should deny it, if admin group is given access - ### What is the issue?
If I spin up a new node using an auth key with a tag that should only have access to one server, it still gets full access to my subnet router.
I have the ACL set up to allow group:admin access to specific subnet IPs, if I remove "192.168.0.212:*" from the "dst" for admins then the tag:tester-machine can no longer access it, as if it is in the admin group.
Additionally I have a tests section setup to verify the deny rules, which incorrectly pass even though this machine can actually access what's in the deny test list.
My ACL file is set up like so (synobro is the subnet router):
```
{
"groups": {
"group:admin": ["email@example.com"],
},
"hosts": {
"cherry-office": "<ip>",
"cherry-svn": "<ip>",
"synobro": "<ip>",
},
"acls": [
{
"action": "accept",
"src": ["autogroup:members"],
"dst": ["autogroup:self:*"],
},
{
"action": "accept",
"src": ["group:admin"],
"dst": [
"tag:server:*",
"192.168.0.1:*",
"192.168.0.58:*",
"192.168.0.212:*",
"192.168.0.12:*",
],
},
{
"action": "accept",
"src": ["tag:tester-machine"],
"dst": ["cherry-office:8080"],
},
],
"tagOwners": {
"tag:server": ["group:admin"],
"tag:tester-machine": ["group:admin"],
},
"ssh": [
// Allow all users to SSH into their own devices in check mode.
// Comment this section out if you want to define specific restrictions.
{
"action": "check",
"src": ["autogroup:members"],
"dst": ["autogroup:self"],
"users": ["autogroup:nonroot", "root"],
},
// Admins can SSH into servers
{
"action": "check",
"src": ["group:admin"],
"dst": ["tag:server"],
"users": ["autogroup:nonroot", "root"],
},
],
"tests": [
{
"src": "tag:tester-machine",
"accept": ["cherry-office:8080"],
"deny": ["cherry-office:22", "synobro:7100", "192.168.0.212:80"],
},
],
}
```
### Steps to reproduce
Running `tailscale status` shows cherry-office and synobro in the list, when only cherry-office should be visible.
Running `wget -O - 'http://192.168.0.212'` returns the web page content, when it should not have access. Removing access to that IP from the admin group and then running this again will not work, as if this tag is getting the same access as an admin.
### Are there any recent changes that introduced the issue?
_No response_
### OS
Linux
### OS version
Ubuntu 22.04 using Docker
### Tailscale version
1.46.1 (docker latest)
### Other software
_No response_
### Bug report
BUG-08d89af6dca6db048b25e8237b809b2fcfed2c45b7aaefdc3b9bfdf2e86856e7-20230727073036Z-4912e9eb859e9ff3 | usab | tagged server can access subnet routes when acl should deny it if admin group is given access what is the issue if i spin up a new node using an auth key with a tag that should only have access to one server it still gets full access to my subnet router i have the acl set up to allow group admin access to specific subnet ips if i remove from the dst for admins then the tag tester machine can no longer access it as if it is in the admin group additionally i have a tests section setup to verify the deny rules which incorrectly pass even though this machine can actually access what s in the deny test list my acl file is set up like so synobro is the subnet router groups group admin hosts cherry office cherry svn synobro acls action accept src dst action accept src dst tag server action accept src dst tagowners tag server tag tester machine ssh allow all users to ssh into their own devices in check mode comment this section out if you want to define specific restrictions action check src dst users admins can ssh into servers action check src dst users tests src tag tester machine accept deny steps to reproduce running tailscale status shows cherry office and synobro in the list when only cherry office should be visible running wget o returns the web page content when it should not have access removing access to that ip from the admin group and then running this again will not work as if this tag is getting the same access as an admin are there any recent changes that introduced the issue no response os linux os version ubuntu using docker tailscale version docker latest other software no response bug report bug | 1 |
5,245 | 26,565,988,528 | IssuesEvent | 2023-01-20 20:16:30 | Lissy93/dashy | https://api.github.com/repos/Lissy93/dashy | closed | [QUESTION] Suddenly showing "It looks like something's gone wrong" | π€·ββοΈ Question π€ Awaiting Maintainer Response | <h3 dir="auto">Question</h3>
<p dir="auto">Hello :)</p>
<p dir="auto">I've been using dashy for a year or more now, and kept it updated using watchtower (it runs once every 5 minutes so I am pretty sure that I use the latest version). Since today, I always get this error message:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1122571/213356668-54c693d4-1992-4612-89a5-63af424df6cb.png"><img src="https://user-images.githubusercontent.com/1122571/213356668-54c693d4-1992-4612-89a5-63af424df6cb.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">However, after waiting for like 20 seconds, it shows the actual panel without errors, so I am a bit confused lol. I am not really sure on what to do or how to debug it :/</p>
<p dir="auto">Any help would be appreciated!</p>
<p dir="auto">My dashy url is <a href="https://hub.jeff-media.com" rel="nofollow">https://hub.jeff-media.com</a></p>
<h3 dir="auto">Category</h3>
<p dir="auto">Setup and Deployment</p>
<h3 dir="auto">Please tick the boxes</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> You are using a <a href="https://github.com/Lissy93/dashy/blob/master/.github/SECURITY.md#supported-versions">supported</a> version of Dashy (check the first two digits of the version number)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> You've checked that this <a href="https://github.com/Lissy93/dashy/issues?q=is%3Aissue">question hasn't already been raised</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> You've checked the <a href="https://github.com/Lissy93/dashy/tree/master/docs#readme">docs</a> and <a href="https://github.com/Lissy93/dashy/blob/master/docs/troubleshooting.md#troubleshooting">troubleshooting</a> guide</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> You agree to the <a href="https://github.com/Lissy93/dashy/blob/master/.github/CODE_OF_CONDUCT.md#contributor-covenant-code-of-conduct">code of conduct</a></li>
</ul>
<!-- unfurl begin -->
<blockquote> <div> <strong> <a href="https://hub.jeff-media.com/">Dashy</a> </strong> </div> </blockquote>
<!-- unfurl end --> | True | [QUESTION] Suddenly showing "It looks like something's gone wrong" - <h3 dir="auto">Question</h3>
<p dir="auto">Hello :)</p>
<p dir="auto">I've been using dashy for a year or more now, and kept it updated using watchtower (it runs once every 5 minutes so I am pretty sure that I use the latest version). Since today, I always get this error message:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1122571/213356668-54c693d4-1992-4612-89a5-63af424df6cb.png"><img src="https://user-images.githubusercontent.com/1122571/213356668-54c693d4-1992-4612-89a5-63af424df6cb.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">However, after waiting for like 20 seconds, it shows the actual panel without errors, so I am a bit confused lol. I am not really sure on what to do or how to debug it :/</p>
<p dir="auto">Any help would be appreciated!</p>
<p dir="auto">My dashy url is <a href="https://hub.jeff-media.com" rel="nofollow">https://hub.jeff-media.com</a></p>
<h3 dir="auto">Category</h3>
<p dir="auto">Setup and Deployment</p>
<h3 dir="auto">Please tick the boxes</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> You are using a <a href="https://github.com/Lissy93/dashy/blob/master/.github/SECURITY.md#supported-versions">supported</a> version of Dashy (check the first two digits of the version number)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> You've checked that this <a href="https://github.com/Lissy93/dashy/issues?q=is%3Aissue">question hasn't already been raised</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> You've checked the <a href="https://github.com/Lissy93/dashy/tree/master/docs#readme">docs</a> and <a href="https://github.com/Lissy93/dashy/blob/master/docs/troubleshooting.md#troubleshooting">troubleshooting</a> guide</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> You agree to the <a href="https://github.com/Lissy93/dashy/blob/master/.github/CODE_OF_CONDUCT.md#contributor-covenant-code-of-conduct">code of conduct</a></li>
</ul>
<!-- unfurl begin -->
<blockquote> <div> <strong> <a href="https://hub.jeff-media.com/">Dashy</a> </strong> </div> </blockquote>
<!-- unfurl end --> | non_usab | suddenly showing it looks like something s gone wrong question hello i ve been using dashy for a year or more now and kept it updated using watchtower it runs once every minutes so i am pretty sure that i use the latest version since today i always get this error message however after waiting for like seconds it shows the actual panel without errors so i am a bit confused lol i am not really sure on what to do or how to debug it any help would be appreciated my dashy url is category setup and deployment please tick the boxes you are using a you ve checked that this you ve checked the you agree to the | 0 |
17,924 | 12,438,300,712 | IssuesEvent | 2020-05-26 08:10:45 | godotengine/godot | https://api.github.com/repos/godotengine/godot | closed | Allow setting default NativeScript library | feature proposal topic:gdnative usability | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
<!-- Specify commit hash if non-official. -->
`3.0`, `master`
**Issue description:**
Currently, every time you add a new NativeScript script, you need to set the library. It would be great if you could set a default NativeScript library that all new scripts would use unless changed. | True | Allow setting default NativeScript library - <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
<!-- Specify commit hash if non-official. -->
`3.0`, `master`
**Issue description:**
Currently, every time you add a new NativeScript script, you need to set the library. It would be great if you could set a default NativeScript library that all new scripts would use unless changed. | usab | allow setting default nativescript library please search existing issues for potential duplicates before filing yours godot version master issue description currently every time you add a new nativescript script you need to set the library it would be great if you could set a default nativescript library that all new scripts would use unless changed | 1 |
134,417 | 12,603,263,414 | IssuesEvent | 2020-06-11 13:12:47 | ampproject/amphtml | https://api.github.com/repos/ampproject/amphtml | closed | Ensure all amp-inputmask examples show the correct mobile keyboard | P2: Soon Related to: Documentation Type: Bug UI: Component: amp-input-mask UI: Type: DevX WG: ui-and-a11y good first issue | > US zip / credit card should probably be type=tel so the right keyboard shows up on phones | 1.0 | Ensure all amp-inputmask examples show the correct mobile keyboard - > US zip / credit card should probably be type=tel so the right keyboard shows up on phones | non_usab | ensure all amp inputmask examples show the correct mobile keyboard us zip credit card should probably be type tel so the right keyboard shows up on phones | 0 |
288,181 | 24,885,814,270 | IssuesEvent | 2022-10-28 07:40:15 | kyma-project/test-infra | https://api.github.com/repos/kyma-project/test-infra | closed | Failing post-main-kcp-cli | kind/failing-test lifecycle/stale | Job is failing from June 3rd.
```
go: updates to go.mod needed; to update it:
go mod tidy
make: *** [Makefile:28: resolve] Error 1
```
https://status.build.kyma-project.io/job-history/gs/kyma-prow-logs/logs/post-main-kcp-cli?buildId=
**Expected result**
Fix or delete the job if not needed. | 1.0 | Failing post-main-kcp-cli - Job is failing from June 3rd.
```
go: updates to go.mod needed; to update it:
go mod tidy
make: *** [Makefile:28: resolve] Error 1
```
https://status.build.kyma-project.io/job-history/gs/kyma-prow-logs/logs/post-main-kcp-cli?buildId=
**Expected result**
Fix or delete the job if not needed. | non_usab | failing post main kcp cli job is failing from june go updates to go mod needed to update it go mod tidy make error expected result fix or delete the job if not needed | 0 |
10,082 | 3,353,860,569 | IssuesEvent | 2015-11-18 09:09:33 | zabirauf/elixir-ipfs-api | https://api.github.com/repos/zabirauf/elixir-ipfs-api | closed | Update README | documentation | * Include information of starting IPFS before using int
* Include the link to package
* Include the link to documentation
* Include license information
* Update TODO | 1.0 | Update README - * Include information of starting IPFS before using int
* Include the link to package
* Include the link to documentation
* Include license information
* Update TODO | non_usab | update readme include information of starting ipfs before using int include the link to package include the link to documentation include license information update todo | 0 |
4,616 | 3,874,301,274 | IssuesEvent | 2016-04-11 20:01:49 | lionheart/openradar-mirror | https://api.github.com/repos/lionheart/openradar-mirror | opened | 22255708: Smart Banners do not recognize TestFlight installations | classification:ui/usability reproducible:always status:open | #### Description
Similar to rdar://12551140, Smart Banners do not appear to recognize installed version of pre-release apps installed via TestFlight.
Steps to Reproduce:
1) Uninstall any copies of the app to be tested
2) Install and run your smart-banner-supporting app from TestFlight
3) Go to your website with smart banner metadata
4) Note the VIEW button, which takes you to the App Store, rather than OPEN
Expected Result:
Smart Banner shows an OPEN button, and consistently opens the TestFlight-installed version of an existing product, recognizing that an app installed via TestFlight matching the App ID associated with the referring affiliate URL is available to receive the request, and opens the app appropriately (passing any optional data to the app presented by the request).
Actual Result:
The displayed Smart Banner on the referring web site displays a VIEW button instead of an OPEN button, and tapping VIEW takes the user to the App Store instead of opening the TestFlight-installed app.
As with the ticket referred to above, this makes testing of in-development or beta features related to Smart Banners and optional data unusable without first releasing to the App Store.
-
Product Version: 8.4 (12H143)
Created: 2015-08-12T20:51:21.710180
Originated: 2015-08-12T00:00:00
Open Radar Link: http://www.openradar.me/22255708 | True | 22255708: Smart Banners do not recognize TestFlight installations - #### Description
Similar to rdar://12551140, Smart Banners do not appear to recognize installed version of pre-release apps installed via TestFlight.
Steps to Reproduce:
1) Uninstall any copies of the app to be tested
2) Install and run your smart-banner-supporting app from TestFlight
3) Go to your website with smart banner metadata
4) Note the VIEW button, which takes you to the App Store, rather than OPEN
Expected Result:
Smart Banner shows an OPEN button, and consistently opens the TestFlight-installed version of an existing product, recognizing that an app installed via TestFlight matching the App ID associated with the referring affiliate URL is available to receive the request, and opens the app appropriately (passing any optional data to the app presented by the request).
Actual Result:
The displayed Smart Banner on the referring web site displays a VIEW button instead of an OPEN button, and tapping VIEW takes the user to the App Store instead of opening the TestFlight-installed app.
As with the ticket referred to above, this makes testing of in-development or beta features related to Smart Banners and optional data unusable without first releasing to the App Store.
-
Product Version: 8.4 (12H143)
Created: 2015-08-12T20:51:21.710180
Originated: 2015-08-12T00:00:00
Open Radar Link: http://www.openradar.me/22255708 | usab | smart banners do not recognize testflight installations description similar to rdar smart banners do not appear to recognize installed version of pre release apps installed via testflight steps to reproduce uninstall any copies of the app to be tested install and run your smart banner supporting app from testflight go to your website with smart banner metadata note the view button which takes you to the app store rather than open expected result smart banner shows an open button and consistently opens the testflight installed version of an existing product recognizing that an app installed via testflight matching the app id associated with the referring affiliate url is available to receive the request and opens the app appropriately passing any optional data to the app presented by the request actual result the displayed smart banner on the referring web site displays a view button instead of an open button and tapping view takes the user to the app store instead of opening the testflight installed app as with the ticket referred to above this makes testing of in development or beta features related to smart banners and optional data unusable without first releasing to the app store product version created originated open radar link | 1 |
52,670 | 13,034,073,810 | IssuesEvent | 2020-07-28 08:07:17 | rsx-labs/aide-frontend | https://api.github.com/repos/rsx-labs/aide-frontend | opened | Add check for backend version during startup | Enhancement For Next Build | **Describe the issue**
Add check for backend version during startup
System must be able to tell if the backend is also outdated
**Do not forget to add the appropriate tag.**
| 1.0 | Add check for backend version during startup - **Describe the issue**
Add check for backend version during startup
System must be able to tell if the backend is also outdated
**Do not forget to add the appropriate tag.**
| non_usab | add check for backend version during startup describe the issue add check for backend version during startup system must be able to tell if the backend is also outdated do not forget to add the appropriate tag | 0 |
16,498 | 10,980,785,884 | IssuesEvent | 2019-11-30 16:56:52 | rabbitmq/rabbitmq-shovel | https://api.github.com/repos/rabbitmq/rabbitmq-shovel | closed | Unable to load shovel definitions at RabbitMQ server start time | usability | RabbitMQ server with management plugin give an [ability to load server definitions at start time](https://www.rabbitmq.com/management.html#load-definitions). If there are dynamic shovel definition in that file RabbitMQ server failed to start.
In example below I try to create dynamic shovel to move messages from queue `source` to `destination` at local RabbitMQ.
`/etc/rabbitmq/rabbitmq.config` (server configuration)
``` erl
[
{rabbit, [{loopback_users, []}]},
{rabbitmq_management, [{load_definitions, "/etc/rabbitmq/definitions.json"}]}
].
```
`/etc/rabbitmq/definitions.json` (queues and shovel declarations)
``` json
{
"rabbit_version": "3.6.1",
"users": [
{
"name": "guest",
"password_hash": "YhXgK79L2qYsuPCUEmBRY3np5B3TsfM9u6u+wzDvA0iPMeGh",
"hashing_algorithm": "rabbit_password_hashing_sha256",
"tags": "administrator"
}
],
"vhosts": [
{
"name": "/"
}
],
"permissions": [
{
"user": "guest",
"vhost": "/",
"configure": ".*",
"write": ".*",
"read": ".*"
}
],
"parameters": [
{
"value": {
"src-uri": "amqp://localhost",
"src-queue": "source",
"dest-uri": "amqp://localhost",
"dest-queue": "destination",
"add-forward-headers": false,
"ack-mode": "on-confirm",
"delete-after": "never"
},
"vhost": "/",
"component": "shovel",
"name": "test"
}
],
"policies": [],
"queues": [
{
"name": "source",
"vhost": "/",
"durable": true,
"auto_delete": false,
"arguments": {}
},
{
"name": "destination",
"vhost": "/",
"durable": true,
"auto_delete": false,
"arguments": {}
}
],
"exchanges": [],
"bindings": []
}
```
RabbitMQ out
```
RabbitMQ 3.6.1. Copyright (C) 2007-2016 Pivotal Software, Inc.
## ## Licensed under the MPL. See http://www.rabbitmq.com/
## ##
########## Logs: tty
###### ## tty
##########
Starting broker...
=INFO REPORT==== 7-Jun-2016::14:04:56 ===
Starting RabbitMQ 3.6.1 on Erlang 18.3
Copyright (C) 2007-2016 Pivotal Software, Inc.
Licensed under the MPL. See http://www.rabbitmq.com/
=INFO REPORT==== 7-Jun-2016::14:04:56 ===
node : rabbit@b3b3c483e939
home dir : /var/lib/rabbitmq
config file(s) : /etc/rabbitmq/rabbitmq.config
cookie hash : FqA0LwNPytStl0samvHl8Q==
log : tty
sasl log : tty
database dir : /var/lib/rabbitmq/mnesia/rabbit@b3b3c483e939
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Memory limit set to 802MB of 2005MB total.
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Disk free limit set to 50MB
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Limiting to approx 1048476 file handles (943626 sockets)
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
FHC read buffering: OFF
FHC write buffering: ON
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Database directory at /var/lib/rabbitmq/mnesia/rabbit@b3b3c483e939 is empty. Initialising from scratch...
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: mnesia
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Priority queues enabled, real BQ is rabbit_variable_queue
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Management plugin: using rates mode 'basic'
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
msg_store_transient: using rabbit_msg_store_ets_index to provide index
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
msg_store_persistent: using rabbit_msg_store_ets_index to provide index
=WARNING REPORT==== 7-Jun-2016::14:04:58 ===
msg_store_persistent: rebuilding indices from scratch
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Applying definitions from: /etc/rabbitmq/definitions.json
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Creating user 'guest'
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Setting user tags for user 'guest' to [administrator]
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Adding vhost '/'
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Setting permissions for 'guest' in '/' to '.*', '.*', '.*'
=CRASH REPORT==== 7-Jun-2016::14:04:58 ===
crasher:
initial call: application_master:init/4
pid: <0.114.0>
registered_name: []
exception exit: {bad_return,
{{rabbit,start,[normal,[]]},
{'EXIT',
{error,
<<"{noproc,{gen_server,call,\n [rabbit_shovel_dyn_worker_sup_sup,which_children,\n infinity]}}">>}}}}
in function application_master:init/4 (application_master.erl, line 134)
ancestors: [<0.113.0>]
messages: [{'EXIT',<0.115.0>,normal}]
links: [<0.113.0>,<0.7.0>]
dictionary: []
trap_exit: true
status: running
heap_size: 1598
stack_size: 27
reductions: 188
neighbours:
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: rabbit
exited: {bad_return,
{{rabbit,start,[normal,[]]},
{'EXIT',
{error,
<<"{noproc,{gen_server,call,\n [rabbit_shovel_dyn_worker_sup_sup,which_children,\n infinity]}}">>}}}}
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: os_mon
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: ranch
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: rabbitmq_web_dispatch
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: webmachine
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: mochiweb
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: syntax_tools
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: ssl
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: public_key
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: crypto
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: mnesia
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: asn1
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: inets
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: amqp_client
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: compiler
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: rabbit_common
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: xmerl
exited: stopped
type: temporary
BOOT FAILED
===========
Error description:
{could_not_start,rabbit,
{error,<<"{noproc,{gen_server,call,\n [rabbit_shovel_dyn_worker_sup_sup,which_children,\n infinity]}}">>}}
Log files (may contain more information):
tty
tty
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Error description:
{could_not_start,rabbit,
{error,<<"{noproc,{gen_server,call,\n [rabbit_shovel_dyn_worker_sup_sup,which_children,\n infinity]}}">>}}
Log files (may contain more information):
tty
tty
{"init terminating in do_boot",{could_not_start,rabbit,{error,<<123,110,111,112,114,111,99,44,123,103,101,110,95,115,101,114,118,101,114,44,99,97,108,108,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,114,97,98,98,105,116,95,115,104,111,118,101,108,95,100,121,110,95,119,111,114,107,101,114,95,115,117,112,95,115,117,112,44,119,104,105,99,104,95,99,104,105,108,100,114,101,110,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,102,105,110,105,116,121,93,125,125>>}}}
Crash dump is being written to: erl_crash.dump...init terminating in do_boot ()
```
| True | Unable to load shovel definitions at RabbitMQ server start time - RabbitMQ server with management plugin give an [ability to load server definitions at start time](https://www.rabbitmq.com/management.html#load-definitions). If there are dynamic shovel definition in that file RabbitMQ server failed to start.
In example below I try to create dynamic shovel to move messages from queue `source` to `destination` at local RabbitMQ.
`/etc/rabbitmq/rabbitmq.config` (server configuration)
``` erl
[
{rabbit, [{loopback_users, []}]},
{rabbitmq_management, [{load_definitions, "/etc/rabbitmq/definitions.json"}]}
].
```
`/etc/rabbitmq/definitions.json` (queues and shovel declarations)
``` json
{
"rabbit_version": "3.6.1",
"users": [
{
"name": "guest",
"password_hash": "YhXgK79L2qYsuPCUEmBRY3np5B3TsfM9u6u+wzDvA0iPMeGh",
"hashing_algorithm": "rabbit_password_hashing_sha256",
"tags": "administrator"
}
],
"vhosts": [
{
"name": "/"
}
],
"permissions": [
{
"user": "guest",
"vhost": "/",
"configure": ".*",
"write": ".*",
"read": ".*"
}
],
"parameters": [
{
"value": {
"src-uri": "amqp://localhost",
"src-queue": "source",
"dest-uri": "amqp://localhost",
"dest-queue": "destination",
"add-forward-headers": false,
"ack-mode": "on-confirm",
"delete-after": "never"
},
"vhost": "/",
"component": "shovel",
"name": "test"
}
],
"policies": [],
"queues": [
{
"name": "source",
"vhost": "/",
"durable": true,
"auto_delete": false,
"arguments": {}
},
{
"name": "destination",
"vhost": "/",
"durable": true,
"auto_delete": false,
"arguments": {}
}
],
"exchanges": [],
"bindings": []
}
```
RabbitMQ out
```
RabbitMQ 3.6.1. Copyright (C) 2007-2016 Pivotal Software, Inc.
## ## Licensed under the MPL. See http://www.rabbitmq.com/
## ##
########## Logs: tty
###### ## tty
##########
Starting broker...
=INFO REPORT==== 7-Jun-2016::14:04:56 ===
Starting RabbitMQ 3.6.1 on Erlang 18.3
Copyright (C) 2007-2016 Pivotal Software, Inc.
Licensed under the MPL. See http://www.rabbitmq.com/
=INFO REPORT==== 7-Jun-2016::14:04:56 ===
node : rabbit@b3b3c483e939
home dir : /var/lib/rabbitmq
config file(s) : /etc/rabbitmq/rabbitmq.config
cookie hash : FqA0LwNPytStl0samvHl8Q==
log : tty
sasl log : tty
database dir : /var/lib/rabbitmq/mnesia/rabbit@b3b3c483e939
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Memory limit set to 802MB of 2005MB total.
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Disk free limit set to 50MB
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Limiting to approx 1048476 file handles (943626 sockets)
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
FHC read buffering: OFF
FHC write buffering: ON
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Database directory at /var/lib/rabbitmq/mnesia/rabbit@b3b3c483e939 is empty. Initialising from scratch...
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: mnesia
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Priority queues enabled, real BQ is rabbit_variable_queue
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Management plugin: using rates mode 'basic'
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
msg_store_transient: using rabbit_msg_store_ets_index to provide index
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
msg_store_persistent: using rabbit_msg_store_ets_index to provide index
=WARNING REPORT==== 7-Jun-2016::14:04:58 ===
msg_store_persistent: rebuilding indices from scratch
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Applying definitions from: /etc/rabbitmq/definitions.json
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Creating user 'guest'
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Setting user tags for user 'guest' to [administrator]
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Adding vhost '/'
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Setting permissions for 'guest' in '/' to '.*', '.*', '.*'
=CRASH REPORT==== 7-Jun-2016::14:04:58 ===
crasher:
initial call: application_master:init/4
pid: <0.114.0>
registered_name: []
exception exit: {bad_return,
{{rabbit,start,[normal,[]]},
{'EXIT',
{error,
<<"{noproc,{gen_server,call,\n [rabbit_shovel_dyn_worker_sup_sup,which_children,\n infinity]}}">>}}}}
in function application_master:init/4 (application_master.erl, line 134)
ancestors: [<0.113.0>]
messages: [{'EXIT',<0.115.0>,normal}]
links: [<0.113.0>,<0.7.0>]
dictionary: []
trap_exit: true
status: running
heap_size: 1598
stack_size: 27
reductions: 188
neighbours:
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: rabbit
exited: {bad_return,
{{rabbit,start,[normal,[]]},
{'EXIT',
{error,
<<"{noproc,{gen_server,call,\n [rabbit_shovel_dyn_worker_sup_sup,which_children,\n infinity]}}">>}}}}
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: os_mon
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: ranch
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: rabbitmq_web_dispatch
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: webmachine
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: mochiweb
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: syntax_tools
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: ssl
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: public_key
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: crypto
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: mnesia
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: asn1
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: inets
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: amqp_client
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: compiler
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: rabbit_common
exited: stopped
type: temporary
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
application: xmerl
exited: stopped
type: temporary
BOOT FAILED
===========
Error description:
{could_not_start,rabbit,
{error,<<"{noproc,{gen_server,call,\n [rabbit_shovel_dyn_worker_sup_sup,which_children,\n infinity]}}">>}}
Log files (may contain more information):
tty
tty
=INFO REPORT==== 7-Jun-2016::14:04:58 ===
Error description:
{could_not_start,rabbit,
{error,<<"{noproc,{gen_server,call,\n [rabbit_shovel_dyn_worker_sup_sup,which_children,\n infinity]}}">>}}
Log files (may contain more information):
tty
tty
{"init terminating in do_boot",{could_not_start,rabbit,{error,<<123,110,111,112,114,111,99,44,123,103,101,110,95,115,101,114,118,101,114,44,99,97,108,108,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,114,97,98,98,105,116,95,115,104,111,118,101,108,95,100,121,110,95,119,111,114,107,101,114,95,115,117,112,95,115,117,112,44,119,104,105,99,104,95,99,104,105,108,100,114,101,110,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,102,105,110,105,116,121,93,125,125>>}}}
Crash dump is being written to: erl_crash.dump...init terminating in do_boot ()
```
| usab | unable to load shovel definitions at rabbitmq server start time rabbitmq server with management plugin give an if there are dynamic shovel definition in that file rabbitmq server failed to start in example below i try to create dynamic shovel to move messages from queue source to destination at local rabbitmq etc rabbitmq rabbitmq config server configuration erl rabbit rabbitmq management etc rabbitmq definitions json queues and shovel declarations json rabbit version users name guest password hash hashing algorithm rabbit password hashing tags administrator vhosts name permissions user guest vhost configure write read parameters value src uri amqp localhost src queue source dest uri amqp localhost dest queue destination add forward headers false ack mode on confirm delete after never vhost component shovel name test policies queues name source vhost durable true auto delete false arguments name destination vhost durable true auto delete false arguments exchanges bindings rabbitmq out rabbitmq copyright c pivotal software inc licensed under the mpl see logs tty tty starting broker info report jun starting rabbitmq on erlang copyright c pivotal software inc licensed under the mpl see info report jun node rabbit home dir var lib rabbitmq config file s etc rabbitmq rabbitmq config cookie hash log tty sasl log tty database dir var lib rabbitmq mnesia rabbit info report jun memory limit set to of total info report jun disk free limit set to info report jun limiting to approx file handles sockets info report jun fhc read buffering off fhc write buffering on info report jun database directory at var lib rabbitmq mnesia rabbit is empty initialising from scratch info report jun application mnesia exited stopped type temporary info report jun priority queues enabled real bq is rabbit variable queue info report jun management plugin using rates mode basic info report jun msg store transient using rabbit msg store ets index to provide index info report jun msg store persistent using rabbit msg store ets index to provide index warning report jun msg store persistent rebuilding indices from scratch info report jun applying definitions from etc rabbitmq definitions json info report jun creating user guest info report jun setting user tags for user guest to info report jun adding vhost info report jun setting permissions for guest in to crash report jun crasher initial call application master init pid registered name exception exit bad return rabbit start exit error in function application master init application master erl line ancestors messages links dictionary trap exit true status running heap size stack size reductions neighbours info report jun application rabbit exited bad return rabbit start exit error type temporary info report jun application os mon exited stopped type temporary info report jun application ranch exited stopped type temporary info report jun application rabbitmq web dispatch exited stopped type temporary info report jun application webmachine exited stopped type temporary info report jun application mochiweb exited stopped type temporary info report jun application syntax tools exited stopped type temporary info report jun application ssl exited stopped type temporary info report jun application public key exited stopped type temporary info report jun application crypto exited stopped type temporary info report jun application mnesia exited stopped type temporary info report jun application exited stopped type temporary info report jun application inets exited stopped type temporary info report jun application amqp client exited stopped type temporary info report jun application compiler exited stopped type temporary info report jun application rabbit common exited stopped type temporary info report jun application xmerl exited stopped type temporary boot failed error description could not start rabbit error log files may contain more information tty tty info report jun error description could not start rabbit error log files may contain more information tty tty init terminating in do boot could not start rabbit error crash dump is being written to erl crash dump init terminating in do boot | 1 |
13,256 | 15,725,719,346 | IssuesEvent | 2021-03-29 10:20:13 | hashicorp/packer | https://api.github.com/repos/hashicorp/packer | closed | amazon-import - improvement | enhancement post-processor/amazon-import remote-plugin/amazon | #### Feature Description
amazon-import supporting "import-snapshot" (ami import passing through snapshot.).
#### Use Case(s)
I know support from vendor is important, this case can be an exception. AWS is not declaring support for kernel version present in many new OS (CentOS 8, Fedora 31, ...) and stop vmimport task on ami import stage with error: " Unable to determine kernel version" (see #8302 from where we start to search for a solution/workaround).
AWS does not stop however import task as snapshot (instead ami directly). We succesfully reach a working CentOS8 custom AMI manually starting from an virtualbox ova e.g created with packer virtualbox-iso
* extracting VMDK inside ova (tar -xvf packer-centos8min-x86_64.ova)
* uploading vmdk (aws s3 cp ...)
* importing VMDK to aws as "snapshot" (aws ec2 import-snapshot...)
* Creating AMI from snapshot (aws ec2 register-image...)
ova was made using packer provisioned to set right iniramfs with needed modules to allow root device discovery on boot stages for xen-base es2 instances (xen-blkfront), nitro-based ec2 instances (nvme, ena).
It would be nice if amazon-import can support import-snapshot (using VMDK in ova) automating all image creation steps useful to make custom image of new OS release (when kernel version is not yet supported by AWS as often it is a long time lack).
| 1.0 | amazon-import - improvement - #### Feature Description
amazon-import supporting "import-snapshot" (ami import passing through snapshot.).
#### Use Case(s)
I know support from vendor is important, this case can be an exception. AWS is not declaring support for kernel version present in many new OS (CentOS 8, Fedora 31, ...) and stop vmimport task on ami import stage with error: " Unable to determine kernel version" (see #8302 from where we start to search for a solution/workaround).
AWS does not stop however import task as snapshot (instead ami directly). We succesfully reach a working CentOS8 custom AMI manually starting from an virtualbox ova e.g created with packer virtualbox-iso
* extracting VMDK inside ova (tar -xvf packer-centos8min-x86_64.ova)
* uploading vmdk (aws s3 cp ...)
* importing VMDK to aws as "snapshot" (aws ec2 import-snapshot...)
* Creating AMI from snapshot (aws ec2 register-image...)
ova was made using packer provisioned to set right iniramfs with needed modules to allow root device discovery on boot stages for xen-base es2 instances (xen-blkfront), nitro-based ec2 instances (nvme, ena).
It would be nice if amazon-import can support import-snapshot (using VMDK in ova) automating all image creation steps useful to make custom image of new OS release (when kernel version is not yet supported by AWS as often it is a long time lack).
| non_usab | amazon import improvement feature description amazon import supporting import snapshot ami import passing through snapshot use case s i know support from vendor is important this case can be an exception aws is not declaring support for kernel version present in many new os centos fedora and stop vmimport task on ami import stage with error unable to determine kernel version see from where we start to search for a solution workaround aws does not stop however import task as snapshot instead ami directly we succesfully reach a working custom ami manually starting from an virtualbox ova e g created with packer virtualbox iso extracting vmdk inside ova tar xvf packer ova uploading vmdk aws cp importing vmdk to aws as snapshot aws import snapshot creating ami from snapshot aws register image ova was made using packer provisioned to set right iniramfs with needed modules to allow root device discovery on boot stages for xen base instances xen blkfront nitro based instances nvme ena it would be nice if amazon import can support import snapshot using vmdk in ova automating all image creation steps useful to make custom image of new os release when kernel version is not yet supported by aws as often it is a long time lack | 0 |
17,026 | 11,582,736,515 | IssuesEvent | 2020-02-22 05:46:31 | researchart/rose6icse | https://api.github.com/repos/researchart/rose6icse | closed | mathewSLACC | Reusable | https://github.com/researchart/rose6icse/tree/master/submissions/reusable/mathewSLACC
## Authors
* Corresponding author → George Mathew - **Email**: [george2@ncsu.edu](mailto:george2@ncsu.edu); **Github**: [bigfatnoob](github.com/bigfatnoob)
* Chris Parnin - **Email**: [cjparnin@ncsu.edu](mailto:cjparnin@ncsu.edu); **Github**: [chrisparnin](github.com/chrisparnin)
* Kathryn T Stolee - **Email**: [ktstolee@ncsu.edu](mailto:ktstolee@ncsu.edu); **Github**: [kstolee](github.com/kstolee)
@ applying for reusable | True | mathewSLACC - https://github.com/researchart/rose6icse/tree/master/submissions/reusable/mathewSLACC
## Authors
* Corresponding author → George Mathew - **Email**: [george2@ncsu.edu](mailto:george2@ncsu.edu); **Github**: [bigfatnoob](github.com/bigfatnoob)
* Chris Parnin - **Email**: [cjparnin@ncsu.edu](mailto:cjparnin@ncsu.edu); **Github**: [chrisparnin](github.com/chrisparnin)
* Kathryn T Stolee - **Email**: [ktstolee@ncsu.edu](mailto:ktstolee@ncsu.edu); **Github**: [kstolee](github.com/kstolee)
@ applying for reusable | usab | mathewslacc authors corresponding author rarr george mathew email mailto ncsu edu github github com bigfatnoob chris parnin email mailto cjparnin ncsu edu github github com chrisparnin kathryn t stolee email mailto ktstolee ncsu edu github github com kstolee applying for reusable | 1 |
8,106 | 5,400,453,694 | IssuesEvent | 2017-02-27 22:04:33 | LLNL/RAJA | https://api.github.com/repos/LLNL/RAJA | opened | Error reporting improvements | API/usability | Right now if a user writes a dozen RAJA CUDA loops, and one fails, they get a failure message from our CUDA errorcheck macro, but no idea which forall caused the problem.
Solution 1) Throw a signal in the macro
Solution 2) Cleverness/an error reporting layer
I can't put in the time on this one, but people are actually running into this as a problem | True | Error reporting improvements - Right now if a user writes a dozen RAJA CUDA loops, and one fails, they get a failure message from our CUDA errorcheck macro, but no idea which forall caused the problem.
Solution 1) Throw a signal in the macro
Solution 2) Cleverness/an error reporting layer
I can't put in the time on this one, but people are actually running into this as a problem | usab | error reporting improvements right now if a user writes a dozen raja cuda loops and one fails they get a failure message from our cuda errorcheck macro but no idea which forall caused the problem solution throw a signal in the macro solution cleverness an error reporting layer i can t put in the time on this one but people are actually running into this as a problem | 1 |
260,355 | 27,781,425,517 | IssuesEvent | 2023-03-16 21:26:19 | talevy013/TestTal | https://api.github.com/repos/talevy013/TestTal | opened | CVE-2023-28155 (Medium) detected in request-2.88.2.tgz | Mend: dependency security vulnerability | ## CVE-2023-28155 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>request-2.88.2.tgz</b></p></summary>
<p>Simplified HTTP request client.</p>
<p>Library home page: <a href="https://registry.npmjs.org/request/-/request-2.88.2.tgz">https://registry.npmjs.org/request/-/request-2.88.2.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/request/package.json</p>
<p>
Dependency Hierarchy:
- :x: **request-2.88.2.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/talevy013/TestTal/commit/abf319a22bddbddad63512b0c857b0a9387a9e34">abf319a22bddbddad63512b0c857b0a9387a9e34</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
** UNSUPPORTED WHEN ASSIGNED ** The Request package through 2.88.1 for Node.js allows a bypass of SSRF mitigations via an attacker-controller server that does a cross-protocol redirect (HTTP to HTTPS, or HTTPS to HTTP). NOTE: This vulnerability only affects products that are no longer supported by the maintainer.
<p>Publish Date: 2023-03-16
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-28155>CVE-2023-28155</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: None
- User Interaction: Required
- 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>
| True | CVE-2023-28155 (Medium) detected in request-2.88.2.tgz - ## CVE-2023-28155 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>request-2.88.2.tgz</b></p></summary>
<p>Simplified HTTP request client.</p>
<p>Library home page: <a href="https://registry.npmjs.org/request/-/request-2.88.2.tgz">https://registry.npmjs.org/request/-/request-2.88.2.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/request/package.json</p>
<p>
Dependency Hierarchy:
- :x: **request-2.88.2.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/talevy013/TestTal/commit/abf319a22bddbddad63512b0c857b0a9387a9e34">abf319a22bddbddad63512b0c857b0a9387a9e34</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
** UNSUPPORTED WHEN ASSIGNED ** The Request package through 2.88.1 for Node.js allows a bypass of SSRF mitigations via an attacker-controller server that does a cross-protocol redirect (HTTP to HTTPS, or HTTPS to HTTP). NOTE: This vulnerability only affects products that are no longer supported by the maintainer.
<p>Publish Date: 2023-03-16
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-28155>CVE-2023-28155</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: None
- User Interaction: Required
- 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>
| non_usab | cve medium detected in request tgz cve medium severity vulnerability vulnerable library request tgz simplified http request client library home page a href path to dependency file package json path to vulnerable library node modules request package json dependency hierarchy x request tgz vulnerable library found in head commit a href found in base branch master vulnerability details unsupported when assigned the request package through for node js allows a bypass of ssrf mitigations via an attacker controller server that does a cross protocol redirect http to https or https to http note this vulnerability only affects products that are no longer supported by the maintainer publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href | 0 |
109,265 | 11,631,132,459 | IssuesEvent | 2020-02-28 00:22:16 | PegaSysEng/teku | https://api.github.com/repos/PegaSysEng/teku | closed | Research: CrosslinkCommittee Data Structure Does Not Exist in the Spec | documentation :memo: | ### Description
As an implementor, I want to know what the CrosslinkCommittee data structure is used for in Artemis, as it does not exist in the Beacon Chain spec. Having documentation explaining the data structures that exist in Artemis that are not mentioned in the spec is beneficial in maintaining the client.
### Acceptance Criteria
* The usage of CrosslinkCommittee is understood, and the name is updated as appropriate for the v0.7.1 version of the spec.
| 1.0 | Research: CrosslinkCommittee Data Structure Does Not Exist in the Spec - ### Description
As an implementor, I want to know what the CrosslinkCommittee data structure is used for in Artemis, as it does not exist in the Beacon Chain spec. Having documentation explaining the data structures that exist in Artemis that are not mentioned in the spec is beneficial in maintaining the client.
### Acceptance Criteria
* The usage of CrosslinkCommittee is understood, and the name is updated as appropriate for the v0.7.1 version of the spec.
| non_usab | research crosslinkcommittee data structure does not exist in the spec description as an implementor i want to know what the crosslinkcommittee data structure is used for in artemis as it does not exist in the beacon chain spec having documentation explaining the data structures that exist in artemis that are not mentioned in the spec is beneficial in maintaining the client acceptance criteria the usage of crosslinkcommittee is understood and the name is updated as appropriate for the version of the spec | 0 |
8,498 | 5,766,182,439 | IssuesEvent | 2017-04-27 06:10:13 | godotengine/godot | https://api.github.com/repos/godotengine/godot | closed | Feature request : Icon tooltips in scene tree to reflect the icons meaning | enhancement topic:editor usability | Currently if I highlight any of the icons in the scene tree, the tooltip says "Instance: res://[xyz].tscn Type: [abc]"
These two screenshots (in my opinion) shouldn't show the same tooltip.


I would like to request that this is changed (particularly as I can't find in the documentation a guide as to what the icons mean), so that each icons tooltip explains the icon the mouse is hovering over.
eg. Hovering over the eye icon would say "Toggle Visibility". Hovering over the group icon would say "Group: [whatever the group name is]" etc. | True | Feature request : Icon tooltips in scene tree to reflect the icons meaning - Currently if I highlight any of the icons in the scene tree, the tooltip says "Instance: res://[xyz].tscn Type: [abc]"
These two screenshots (in my opinion) shouldn't show the same tooltip.


I would like to request that this is changed (particularly as I can't find in the documentation a guide as to what the icons mean), so that each icons tooltip explains the icon the mouse is hovering over.
eg. Hovering over the eye icon would say "Toggle Visibility". Hovering over the group icon would say "Group: [whatever the group name is]" etc. | usab | feature request icon tooltips in scene tree to reflect the icons meaning currently if i highlight any of the icons in the scene tree the tooltip says instance res tscn type these two screenshots in my opinion shouldn t show the same tooltip i would like to request that this is changed particularly as i can t find in the documentation a guide as to what the icons mean so that each icons tooltip explains the icon the mouse is hovering over eg hovering over the eye icon would say toggle visibility hovering over the group icon would say group etc | 1 |
329,526 | 10,021,151,880 | IssuesEvent | 2019-07-16 14:06:13 | mozilla/addons-frontend | https://api.github.com/repos/mozilla/addons-frontend | closed | Always request gzip'd API responses | component: performance priority: p4 triaged | The client/server code should always request a gzip'd API response.
gzip'd API responses will be turned back on in https://github.com/mozilla/addons-server/issues/6636
This of course means we'll need to ungzip responses.
For QA:
- Load any page on the site
- Watch the network panel in developer tools
- Interact with the site so that you see requests made to URLs that look like `/api/v3/...`
- Make sure the pages still work | 1.0 | Always request gzip'd API responses - The client/server code should always request a gzip'd API response.
gzip'd API responses will be turned back on in https://github.com/mozilla/addons-server/issues/6636
This of course means we'll need to ungzip responses.
For QA:
- Load any page on the site
- Watch the network panel in developer tools
- Interact with the site so that you see requests made to URLs that look like `/api/v3/...`
- Make sure the pages still work | non_usab | always request gzip d api responses the client server code should always request a gzip d api response gzip d api responses will be turned back on in this of course means we ll need to ungzip responses for qa load any page on the site watch the network panel in developer tools interact with the site so that you see requests made to urls that look like api make sure the pages still work | 0 |
8,769 | 7,620,360,908 | IssuesEvent | 2018-05-03 02:13:07 | briankoser/sfc-listeners-guide | https://api.github.com/repos/briankoser/sfc-listeners-guide | closed | Buy URL | infrastructure mvp | Temp: sfc.koser.us
sfclistenersguide.com
thescifichristianlistenersguide.com
sfc.fyi
sfc.exposed
sfc.blue
guide.thescifichristian.com | 1.0 | Buy URL - Temp: sfc.koser.us
sfclistenersguide.com
thescifichristianlistenersguide.com
sfc.fyi
sfc.exposed
sfc.blue
guide.thescifichristian.com | non_usab | buy url temp sfc koser us sfclistenersguide com thescifichristianlistenersguide com sfc fyi sfc exposed sfc blue guide thescifichristian com | 0 |
6,324 | 4,220,692,757 | IssuesEvent | 2016-07-01 00:05:59 | kubernetes/kubernetes | https://api.github.com/repos/kubernetes/kubernetes | opened | We need a style guide | area/devexp area/usability | `gofmt` eliminates a lot of ambiguities, but they still come up. One example is how we choose to stringify otherwise opaque objects. That came up in #28134.
The issue relates a bit to usability (debug logs) and developer experience, but it's cross-cutting.
@bgrant0607 for lack of a more obvious target. | True | We need a style guide - `gofmt` eliminates a lot of ambiguities, but they still come up. One example is how we choose to stringify otherwise opaque objects. That came up in #28134.
The issue relates a bit to usability (debug logs) and developer experience, but it's cross-cutting.
@bgrant0607 for lack of a more obvious target. | usab | we need a style guide gofmt eliminates a lot of ambiguities but they still come up one example is how we choose to stringify otherwise opaque objects that came up in the issue relates a bit to usability debug logs and developer experience but it s cross cutting for lack of a more obvious target | 1 |
334,895 | 24,444,093,361 | IssuesEvent | 2022-10-06 16:28:36 | redpanda-data/documentation | https://api.github.com/repos/redpanda-data/documentation | closed | Edit this page on github | documentation | ### Describe the Issue
We want others to be able to easily edit a page on github.
### Updates to existing documentation
Specifically, this work includes the following updates:

- Make the Redpanda docs repo public so that users can submit PRs (also shown in GitHub feedback page)
- Allow users to make a contribution to github directly over the page.
| 1.0 | Edit this page on github - ### Describe the Issue
We want others to be able to easily edit a page on github.
### Updates to existing documentation
Specifically, this work includes the following updates:

- Make the Redpanda docs repo public so that users can submit PRs (also shown in GitHub feedback page)
- Allow users to make a contribution to github directly over the page.
| non_usab | edit this page on github describe the issue we want others to be able to easily edit a page on github updates to existing documentation specifically this work includes the following updates make the redpanda docs repo public so that users can submit prs also shown in github feedback page allow users to make a contribution to github directly over the page | 0 |
23,998 | 23,201,688,812 | IssuesEvent | 2022-08-01 22:19:28 | microsoft/win32metadata | https://api.github.com/repos/microsoft/win32metadata | closed | IDataObject::QueryGetData needs PreserveSig | enhancement usability | It may return S_FALSE, which which is treated as Ok by windows-rs. | True | IDataObject::QueryGetData needs PreserveSig - It may return S_FALSE, which which is treated as Ok by windows-rs. | usab | idataobject querygetdata needs preservesig it may return s false which which is treated as ok by windows rs | 1 |
7,810 | 5,222,848,687 | IssuesEvent | 2017-01-27 10:01:35 | Tiendil/the-tale | https://api.github.com/repos/Tiendil/the-tale | opened | ΠΠ°ΡΡΠ°: Π²ΠΈΠ·ΡΠ°Π»ΡΠ½ΠΎ ΠΎΡΠ΄Π΅Π»ΠΈΡΡ ΡΡΠΎΠ½ΡΠΈΡ ΠΎΡ ΡΠ΄ΡΠ° | comp_general comp_graphics cont_usability est_medium type_improvement | ΠΠ°ΡΠΈΠ°Π½ΡΡ:
- ΡΠΏΠ΅ΡΠΈΠ°Π»ΡΠ½Π°Ρ ΠΈΠΊΠΎΠ½ΠΊΠ° ΠΎΠΊΠΎΠ»ΠΎ Π½Π°Π·Π²Π°Π½ΠΈΡ Π³ΠΎΡΠΎΠ΄Π° (ΠΏΠΎΡΠΎΠΌ ΠΏΡΠΈΠ³ΠΎΠ΄ΠΈΡΡΡ ΠΈ Π΄Π»Ρ Π΄ΡΡΠ³ΠΈΡ
ΠΎΠ±ΠΎΠ·Π½Π°ΡΠ΅Π½ΠΈΠΉ ΡΡΠ°ΡΡΡΠΎΠ² Π³ΠΎΡΠΎΠ΄ΠΎΠ²: Π½ΠΎΠ²ΡΠΉ, Π² Π³ΠΎΡΠΎΠ΄Π΅ ΡΠΏΠΈΠ΄Π΅ΠΌΠΈΡ ΠΈ Ρ.Π΄.)
- ΠΏΠΎΡΡΡ ΡΡΡΠ°ΠΆΠΈ Π½Π° Π΄ΠΎΡΠΎΠ³Π°Ρ
ΠΌΠ΅ΠΆΠ΄Ρ ΡΡΠΎΠ½ΡΠΈΡΠΎΠΌ ΠΈ Π½Π΅ ΡΡΠΎΠ½ΡΠΈΡΠΎΠΌ
| True | ΠΠ°ΡΡΠ°: Π²ΠΈΠ·ΡΠ°Π»ΡΠ½ΠΎ ΠΎΡΠ΄Π΅Π»ΠΈΡΡ ΡΡΠΎΠ½ΡΠΈΡ ΠΎΡ ΡΠ΄ΡΠ° - ΠΠ°ΡΠΈΠ°Π½ΡΡ:
- ΡΠΏΠ΅ΡΠΈΠ°Π»ΡΠ½Π°Ρ ΠΈΠΊΠΎΠ½ΠΊΠ° ΠΎΠΊΠΎΠ»ΠΎ Π½Π°Π·Π²Π°Π½ΠΈΡ Π³ΠΎΡΠΎΠ΄Π° (ΠΏΠΎΡΠΎΠΌ ΠΏΡΠΈΠ³ΠΎΠ΄ΠΈΡΡΡ ΠΈ Π΄Π»Ρ Π΄ΡΡΠ³ΠΈΡ
ΠΎΠ±ΠΎΠ·Π½Π°ΡΠ΅Π½ΠΈΠΉ ΡΡΠ°ΡΡΡΠΎΠ² Π³ΠΎΡΠΎΠ΄ΠΎΠ²: Π½ΠΎΠ²ΡΠΉ, Π² Π³ΠΎΡΠΎΠ΄Π΅ ΡΠΏΠΈΠ΄Π΅ΠΌΠΈΡ ΠΈ Ρ.Π΄.)
- ΠΏΠΎΡΡΡ ΡΡΡΠ°ΠΆΠΈ Π½Π° Π΄ΠΎΡΠΎΠ³Π°Ρ
ΠΌΠ΅ΠΆΠ΄Ρ ΡΡΠΎΠ½ΡΠΈΡΠΎΠΌ ΠΈ Π½Π΅ ΡΡΠΎΠ½ΡΠΈΡΠΎΠΌ
| usab | ΠΊΠ°ΡΡΠ° Π²ΠΈΠ·ΡΠ°Π»ΡΠ½ΠΎ ΠΎΡΠ΄Π΅Π»ΠΈΡΡ ΡΡΠΎΠ½ΡΠΈΡ ΠΎΡ ΡΠ΄ΡΠ° Π²Π°ΡΠΈΠ°Π½ΡΡ ΡΠΏΠ΅ΡΠΈΠ°Π»ΡΠ½Π°Ρ ΠΈΠΊΠΎΠ½ΠΊΠ° ΠΎΠΊΠΎΠ»ΠΎ Π½Π°Π·Π²Π°Π½ΠΈΡ Π³ΠΎΡΠΎΠ΄Π° ΠΏΠΎΡΠΎΠΌ ΠΏΡΠΈΠ³ΠΎΠ΄ΠΈΡΡΡ ΠΈ Π΄Π»Ρ Π΄ΡΡΠ³ΠΈΡ
ΠΎΠ±ΠΎΠ·Π½Π°ΡΠ΅Π½ΠΈΠΉ ΡΡΠ°ΡΡΡΠΎΠ² Π³ΠΎΡΠΎΠ΄ΠΎΠ² Π½ΠΎΠ²ΡΠΉ Π² Π³ΠΎΡΠΎΠ΄Π΅ ΡΠΏΠΈΠ΄Π΅ΠΌΠΈΡ ΠΈ Ρ Π΄ ΠΏΠΎΡΡΡ ΡΡΡΠ°ΠΆΠΈ Π½Π° Π΄ΠΎΡΠΎΠ³Π°Ρ
ΠΌΠ΅ΠΆΠ΄Ρ ΡΡΠΎΠ½ΡΠΈΡΠΎΠΌ ΠΈ Π½Π΅ ΡΡΠΎΠ½ΡΠΈΡΠΎΠΌ | 1 |
22,203 | 18,845,512,032 | IssuesEvent | 2021-11-11 14:33:34 | jannikr/measuring-station | https://api.github.com/repos/jannikr/measuring-station | opened | New station | enhancement Concrete Quality Attribute Scenarios: Usability very important | # Feature Requst
## Description
The systems Stimulus signals a new station.
## Environment
At runtime.
## Artifact
System, presentation.
## Response
The user can view the new station / use it
## Response Measure
within <1 second. | True | New station - # Feature Requst
## Description
The systems Stimulus signals a new station.
## Environment
At runtime.
## Artifact
System, presentation.
## Response
The user can view the new station / use it
## Response Measure
within <1 second. | usab | new station feature requst description the systems stimulus signals a new station environment at runtime artifact system presentation response the user can view the new station use it response measure within second | 1 |
60,493 | 6,694,806,608 | IssuesEvent | 2017-10-10 04:37:46 | equella/Equella | https://api.github.com/repos/equella/Equella | closed | Remote repos are busted | bug Ready for 6.5 GA Testing | I got the following error in the logs after attempting to search the attached z3950 repo. The other types of remote reps appear to busted in the same way
java.lang.NoClassDefFoundError: javax/xml/rpc/handler/soap/SOAPMessageContext
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:760)
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:467)
at java.net.URLClassLoader.access$100(URLClassLoader.java:73)
at java.net.URLClassLoader$1.run(URLClassLoader.java:368)
at java.net.URLClassLoader$1.run(URLClassLoader.java:362)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:361)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Class.java:2701)
at java.lang.Class.getDeclaredMethods(Class.java:1975)
at com.google.inject.spi.InjectionPoint.getInjectionPoints(InjectionPoint.java:662)
at com.google.inject.spi.InjectionPoint.forInstanceMethodsAndFields(InjectionPoint.java:356)
at com.tle.core.guice.DependencyAnalyzer.analyzeImplementation(DependencyAnalyzer.java:132)
at com.tle.core.guice.DependencyAnalyzer.visit(DependencyAnalyzer.java:60)
at com.tle.core.guice.DependencyAnalyzer.visit(DependencyAnalyzer.java:41)
at com.google.inject.internal.UntargettedBindingImpl.acceptTargetVisitor(UntargettedBindingImpl.java:42)
at com.tle.core.guice.ElementAnalyzer.visit(ElementAnalyzer.java:45)
at com.tle.core.guice.ElementAnalyzer.visit(ElementAnalyzer.java:31)
at com.google.inject.internal.BindingImpl.acceptVisitor(BindingImpl.java:93)
at com.tle.core.guice.ExternalProviders.configure(ExternalProviders.java:50)
at com.google.inject.AbstractModule.configure(AbstractModule.java:59)
at com.google.inject.spi.Elements$RecordingBinder.install(Elements.java:223)
at com.google.inject.spi.Elements.getElements(Elements.java:101)
at com.google.inject.internal.InjectorShell$Builder.build(InjectorShell.java:133)
at com.google.inject.internal.InternalInjectorCreator.build(InternalInjectorCreator.java:103)
at com.google.inject.Guice.createInjector(Guice.java:95)
at com.google.inject.Guice.createInjector(Guice.java:72)
at com.google.inject.Guice.createInjector(Guice.java:62)
at com.tle.core.guice.GuicePlugin$GuiceBeanLocator$InjectorCreation.doWork(GuicePlugin.java:295)
at com.tle.core.guice.GuicePlugin$GuiceBeanLocator$InjectorCreation.doWork(GuicePlugin.java:272)
at com.tle.core.plugins.AbstractBeanLocatorCallable.call(AbstractBeanLocatorCallable.java:76)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.ClassNotFoundException: javax.xml.rpc.handler.soap.SOAPMessageContext
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
... 40 more
[Books - Libraries Australia.zip](https://github.com/equella/Equella/files/1370430/Books.-.Libraries.Australia.zip)
| 1.0 | Remote repos are busted - I got the following error in the logs after attempting to search the attached z3950 repo. The other types of remote reps appear to busted in the same way
java.lang.NoClassDefFoundError: javax/xml/rpc/handler/soap/SOAPMessageContext
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:760)
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:467)
at java.net.URLClassLoader.access$100(URLClassLoader.java:73)
at java.net.URLClassLoader$1.run(URLClassLoader.java:368)
at java.net.URLClassLoader$1.run(URLClassLoader.java:362)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:361)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Class.java:2701)
at java.lang.Class.getDeclaredMethods(Class.java:1975)
at com.google.inject.spi.InjectionPoint.getInjectionPoints(InjectionPoint.java:662)
at com.google.inject.spi.InjectionPoint.forInstanceMethodsAndFields(InjectionPoint.java:356)
at com.tle.core.guice.DependencyAnalyzer.analyzeImplementation(DependencyAnalyzer.java:132)
at com.tle.core.guice.DependencyAnalyzer.visit(DependencyAnalyzer.java:60)
at com.tle.core.guice.DependencyAnalyzer.visit(DependencyAnalyzer.java:41)
at com.google.inject.internal.UntargettedBindingImpl.acceptTargetVisitor(UntargettedBindingImpl.java:42)
at com.tle.core.guice.ElementAnalyzer.visit(ElementAnalyzer.java:45)
at com.tle.core.guice.ElementAnalyzer.visit(ElementAnalyzer.java:31)
at com.google.inject.internal.BindingImpl.acceptVisitor(BindingImpl.java:93)
at com.tle.core.guice.ExternalProviders.configure(ExternalProviders.java:50)
at com.google.inject.AbstractModule.configure(AbstractModule.java:59)
at com.google.inject.spi.Elements$RecordingBinder.install(Elements.java:223)
at com.google.inject.spi.Elements.getElements(Elements.java:101)
at com.google.inject.internal.InjectorShell$Builder.build(InjectorShell.java:133)
at com.google.inject.internal.InternalInjectorCreator.build(InternalInjectorCreator.java:103)
at com.google.inject.Guice.createInjector(Guice.java:95)
at com.google.inject.Guice.createInjector(Guice.java:72)
at com.google.inject.Guice.createInjector(Guice.java:62)
at com.tle.core.guice.GuicePlugin$GuiceBeanLocator$InjectorCreation.doWork(GuicePlugin.java:295)
at com.tle.core.guice.GuicePlugin$GuiceBeanLocator$InjectorCreation.doWork(GuicePlugin.java:272)
at com.tle.core.plugins.AbstractBeanLocatorCallable.call(AbstractBeanLocatorCallable.java:76)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.ClassNotFoundException: javax.xml.rpc.handler.soap.SOAPMessageContext
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
... 40 more
[Books - Libraries Australia.zip](https://github.com/equella/Equella/files/1370430/Books.-.Libraries.Australia.zip)
| non_usab | remote repos are busted i got the following error in the logs after attempting to search the attached repo the other types of remote reps appear to busted in the same way java lang noclassdeffounderror javax xml rpc handler soap soapmessagecontext at java lang classloader native method at java lang classloader defineclass classloader java at java security secureclassloader defineclass secureclassloader java at java net urlclassloader defineclass urlclassloader java at java net urlclassloader access urlclassloader java at java net urlclassloader run urlclassloader java at java net urlclassloader run urlclassloader java at java security accesscontroller doprivileged native method at java net urlclassloader findclass urlclassloader java at java lang classloader loadclass classloader java at sun misc launcher appclassloader loadclass launcher java at java lang classloader loadclass classloader java at java lang class native method at java lang class privategetdeclaredmethods class java at java lang class getdeclaredmethods class java at com google inject spi injectionpoint getinjectionpoints injectionpoint java at com google inject spi injectionpoint forinstancemethodsandfields injectionpoint java at com tle core guice dependencyanalyzer analyzeimplementation dependencyanalyzer java at com tle core guice dependencyanalyzer visit dependencyanalyzer java at com tle core guice dependencyanalyzer visit dependencyanalyzer java at com google inject internal untargettedbindingimpl accepttargetvisitor untargettedbindingimpl java at com tle core guice elementanalyzer visit elementanalyzer java at com tle core guice elementanalyzer visit elementanalyzer java at com google inject internal bindingimpl acceptvisitor bindingimpl java at com tle core guice externalproviders configure externalproviders java at com google inject abstractmodule configure abstractmodule java at com google inject spi elements recordingbinder install elements java at com google inject spi elements getelements elements java at com google inject internal injectorshell builder build injectorshell java at com google inject internal internalinjectorcreator build internalinjectorcreator java at com google inject guice createinjector guice java at com google inject guice createinjector guice java at com google inject guice createinjector guice java at com tle core guice guiceplugin guicebeanlocator injectorcreation dowork guiceplugin java at com tle core guice guiceplugin guicebeanlocator injectorcreation dowork guiceplugin java at com tle core plugins abstractbeanlocatorcallable call abstractbeanlocatorcallable java at java util concurrent futuretask run futuretask java at java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java util concurrent threadpoolexecutor worker run threadpoolexecutor java at java lang thread run thread java caused by java lang classnotfoundexception javax xml rpc handler soap soapmessagecontext at java net urlclassloader findclass urlclassloader java at java lang classloader loadclass classloader java at sun misc launcher appclassloader loadclass launcher java at java lang classloader loadclass classloader java more | 0 |
12,040 | 7,642,093,229 | IssuesEvent | 2018-05-08 08:05:29 | zaproxy/zaproxy | https://api.github.com/repos/zaproxy/zaproxy | closed | Allow to specify higher values for delay while scanning through the UI | Component-UI Usability bug | 
##
The delay is only limited to 1 second. Text box should be used here instead | True | Allow to specify higher values for delay while scanning through the UI - 
##
The delay is only limited to 1 second. Text box should be used here instead | usab | allow to specify higher values for delay while scanning through the ui the delay is only limited to second text box should be used here instead | 1 |
49,289 | 20,726,840,306 | IssuesEvent | 2022-03-14 03:40:55 | finos/legend-studio | https://api.github.com/repos/finos/legend-studio | opened | Feature request: test-data generation for relational execution | Type: Feature Request Extensions: DSL Mapping Extension: DSL Service Extension: Relational Store | ### Similar requests
- [X] I have searched and found no existing similar requests
### How are you using Studio?
_No response_
### What problems are you trying to solve?
We want to support test-data generation for relational mapping execution. This would be an extremely powerful feature that can be leveraged in both mapping editor and service editor. However, the bulk of the work must be done in `engine`.
### Describe the solution you would like to see implemented
_TBD_
### Describe alternatives you have considered
_No response_
### Documentation, Design, Adoption, Migration Strategy
_No response_
### Contribution
- [ ] I would like to work on this feature | 1.0 | Feature request: test-data generation for relational execution - ### Similar requests
- [X] I have searched and found no existing similar requests
### How are you using Studio?
_No response_
### What problems are you trying to solve?
We want to support test-data generation for relational mapping execution. This would be an extremely powerful feature that can be leveraged in both mapping editor and service editor. However, the bulk of the work must be done in `engine`.
### Describe the solution you would like to see implemented
_TBD_
### Describe alternatives you have considered
_No response_
### Documentation, Design, Adoption, Migration Strategy
_No response_
### Contribution
- [ ] I would like to work on this feature | non_usab | feature request test data generation for relational execution similar requests i have searched and found no existing similar requests how are you using studio no response what problems are you trying to solve we want to support test data generation for relational mapping execution this would be an extremely powerful feature that can be leveraged in both mapping editor and service editor however the bulk of the work must be done in engine describe the solution you would like to see implemented tbd describe alternatives you have considered no response documentation design adoption migration strategy no response contribution i would like to work on this feature | 0 |
547,634 | 16,044,085,122 | IssuesEvent | 2021-04-22 11:37:09 | teamforus/general | https://api.github.com/repos/teamforus/general | closed | CR: Validaties to Beoordelingen (NL) | Priority: Could have Scope: Medium | Learn more about change requests here: https://bit.ly/39CWeEE
### Requested by:
Jamal & Max
### Change description
Change validaties to beoordelingen
Change validator to beoordelaar
Reasoning: beoordelaar en beoordeling is B1, making it easier for people to understand our apps.
Of course this change request can be used to propose alternatives as well. | 1.0 | CR: Validaties to Beoordelingen (NL) - Learn more about change requests here: https://bit.ly/39CWeEE
### Requested by:
Jamal & Max
### Change description
Change validaties to beoordelingen
Change validator to beoordelaar
Reasoning: beoordelaar en beoordeling is B1, making it easier for people to understand our apps.
Of course this change request can be used to propose alternatives as well. | non_usab | cr validaties to beoordelingen nl learn more about change requests here requested by jamal max change description change validaties to beoordelingen change validator to beoordelaar reasoning beoordelaar en beoordeling is making it easier for people to understand our apps of course this change request can be used to propose alternatives as well | 0 |
185,998 | 21,910,316,432 | IssuesEvent | 2022-05-21 01:00:53 | eRez-ws/metasploit-framework | https://api.github.com/repos/eRez-ws/metasploit-framework | closed | CVE-2021-41098 (High) detected in nokogiri-1.11.2.gem - autoclosed | security vulnerability | ## CVE-2021-41098 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>nokogiri-1.11.2.gem</b></p></summary>
<p>Nokogiri (ιΈ) makes it easy and painless to work with XML and HTML from Ruby. It provides a
sensible, easy-to-understand API for reading, writing, modifying, and querying documents. It is
fast and standards-compliant by relying on native parsers like libxml2 (C) and xerces (Java).
</p>
<p>Library home page: <a href="https://rubygems.org/gems/nokogiri-1.11.2.gem">https://rubygems.org/gems/nokogiri-1.11.2.gem</a></p>
<p>
Dependency Hierarchy:
- factory_bot_rails-6.1.0.gem (Root Library)
- railties-5.2.4.5.gem
- actionpack-5.2.4.5.gem
- rails-dom-testing-2.0.3.gem
- :x: **nokogiri-1.11.2.gem** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Nokogiri is a Rubygem providing HTML, XML, SAX, and Reader parsers with XPath and CSS selector support. In Nokogiri v1.12.4 and earlier, on JRuby only, the SAX parser resolves external entities by default. Users of Nokogiri on JRuby who parse untrusted documents using any of these classes are affected: Nokogiri::XML::SAX::Parse, Nokogiri::HTML4::SAX::Parser or its alias Nokogiri::HTML::SAX::Parser, Nokogiri::XML::SAX::PushParser, and Nokogiri::HTML4::SAX::PushParser or its alias Nokogiri::HTML::SAX::PushParser. JRuby users should upgrade to Nokogiri v1.12.5 or later to receive a patch for this issue. There are no workarounds available for v1.12.4 or earlier. CRuby users are not affected.
<p>Publish Date: 2021-09-27
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-41098>CVE-2021-41098</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: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-41098">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-41098</a></p>
<p>Release Date: 2021-09-27</p>
<p>Fix Resolution: nokogiri - 1.12.5</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Ruby","packageName":"nokogiri","packageVersion":"1.11.2","packageFilePaths":[],"isTransitiveDependency":true,"dependencyTree":"factory_bot_rails:6.1.0;railties:5.2.4.5;actionpack:5.2.4.5;rails-dom-testing:2.0.3;nokogiri:1.11.2","isMinimumFixVersionAvailable":true,"minimumFixVersion":"nokogiri - 1.12.5","isBinary":true}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2021-41098","vulnerabilityDetails":"Nokogiri is a Rubygem providing HTML, XML, SAX, and Reader parsers with XPath and CSS selector support. In Nokogiri v1.12.4 and earlier, on JRuby only, the SAX parser resolves external entities by default. Users of Nokogiri on JRuby who parse untrusted documents using any of these classes are affected: Nokogiri::XML::SAX::Parse, Nokogiri::HTML4::SAX::Parser or its alias Nokogiri::HTML::SAX::Parser, Nokogiri::XML::SAX::PushParser, and Nokogiri::HTML4::SAX::PushParser or its alias Nokogiri::HTML::SAX::PushParser. JRuby users should upgrade to Nokogiri v1.12.5 or later to receive a patch for this issue. There are no workarounds available for v1.12.4 or earlier. CRuby users are not affected.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-41098","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Unchanged","C":"High","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> --> | True | CVE-2021-41098 (High) detected in nokogiri-1.11.2.gem - autoclosed - ## CVE-2021-41098 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>nokogiri-1.11.2.gem</b></p></summary>
<p>Nokogiri (ιΈ) makes it easy and painless to work with XML and HTML from Ruby. It provides a
sensible, easy-to-understand API for reading, writing, modifying, and querying documents. It is
fast and standards-compliant by relying on native parsers like libxml2 (C) and xerces (Java).
</p>
<p>Library home page: <a href="https://rubygems.org/gems/nokogiri-1.11.2.gem">https://rubygems.org/gems/nokogiri-1.11.2.gem</a></p>
<p>
Dependency Hierarchy:
- factory_bot_rails-6.1.0.gem (Root Library)
- railties-5.2.4.5.gem
- actionpack-5.2.4.5.gem
- rails-dom-testing-2.0.3.gem
- :x: **nokogiri-1.11.2.gem** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Nokogiri is a Rubygem providing HTML, XML, SAX, and Reader parsers with XPath and CSS selector support. In Nokogiri v1.12.4 and earlier, on JRuby only, the SAX parser resolves external entities by default. Users of Nokogiri on JRuby who parse untrusted documents using any of these classes are affected: Nokogiri::XML::SAX::Parse, Nokogiri::HTML4::SAX::Parser or its alias Nokogiri::HTML::SAX::Parser, Nokogiri::XML::SAX::PushParser, and Nokogiri::HTML4::SAX::PushParser or its alias Nokogiri::HTML::SAX::PushParser. JRuby users should upgrade to Nokogiri v1.12.5 or later to receive a patch for this issue. There are no workarounds available for v1.12.4 or earlier. CRuby users are not affected.
<p>Publish Date: 2021-09-27
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-41098>CVE-2021-41098</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: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-41098">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-41098</a></p>
<p>Release Date: 2021-09-27</p>
<p>Fix Resolution: nokogiri - 1.12.5</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Ruby","packageName":"nokogiri","packageVersion":"1.11.2","packageFilePaths":[],"isTransitiveDependency":true,"dependencyTree":"factory_bot_rails:6.1.0;railties:5.2.4.5;actionpack:5.2.4.5;rails-dom-testing:2.0.3;nokogiri:1.11.2","isMinimumFixVersionAvailable":true,"minimumFixVersion":"nokogiri - 1.12.5","isBinary":true}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2021-41098","vulnerabilityDetails":"Nokogiri is a Rubygem providing HTML, XML, SAX, and Reader parsers with XPath and CSS selector support. In Nokogiri v1.12.4 and earlier, on JRuby only, the SAX parser resolves external entities by default. Users of Nokogiri on JRuby who parse untrusted documents using any of these classes are affected: Nokogiri::XML::SAX::Parse, Nokogiri::HTML4::SAX::Parser or its alias Nokogiri::HTML::SAX::Parser, Nokogiri::XML::SAX::PushParser, and Nokogiri::HTML4::SAX::PushParser or its alias Nokogiri::HTML::SAX::PushParser. JRuby users should upgrade to Nokogiri v1.12.5 or later to receive a patch for this issue. There are no workarounds available for v1.12.4 or earlier. CRuby users are not affected.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-41098","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Unchanged","C":"High","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> --> | non_usab | cve high detected in nokogiri gem autoclosed cve high severity vulnerability vulnerable library nokogiri gem nokogiri ιΈ makes it easy and painless to work with xml and html from ruby it provides a sensible easy to understand api for reading writing modifying and querying documents it is fast and standards compliant by relying on native parsers like c and xerces java library home page a href dependency hierarchy factory bot rails gem root library railties gem actionpack gem rails dom testing gem x nokogiri gem vulnerable library found in base branch master vulnerability details nokogiri is a rubygem providing html xml sax and reader parsers with xpath and css selector support in nokogiri and earlier on jruby only the sax parser resolves external entities by default users of nokogiri on jruby who parse untrusted documents using any of these classes are affected nokogiri xml sax parse nokogiri sax parser or its alias nokogiri html sax parser nokogiri xml sax pushparser and nokogiri sax pushparser or its alias nokogiri html sax pushparser jruby users should upgrade to nokogiri or later to receive a patch for this issue there are no workarounds available for or earlier cruby users are not affected publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution nokogiri isopenpronvulnerability false ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree factory bot rails railties actionpack rails dom testing nokogiri isminimumfixversionavailable true minimumfixversion nokogiri isbinary true basebranches vulnerabilityidentifier cve vulnerabilitydetails nokogiri is a rubygem providing html xml sax and reader parsers with xpath and css selector support in nokogiri and earlier on jruby only the sax parser resolves external entities by default users of nokogiri on jruby who parse untrusted documents using any of these classes are affected nokogiri xml sax parse nokogiri sax parser or its alias nokogiri html sax parser nokogiri xml sax pushparser and nokogiri sax pushparser or its alias nokogiri html sax pushparser jruby users should upgrade to nokogiri or later to receive a patch for this issue there are no workarounds available for or earlier cruby users are not affected vulnerabilityurl | 0 |
15,293 | 9,935,163,721 | IssuesEvent | 2019-07-02 15:54:49 | ONRR/doi-extractives-data | https://api.github.com/repos/ONRR/doi-extractives-data | closed | Explore charts for disbursements data | disbursements enhancement:usability enhancement:visual p4: Low | Explore what charts we might want to have for disbursements data. (This should come after we get the tables done.) | True | Explore charts for disbursements data - Explore what charts we might want to have for disbursements data. (This should come after we get the tables done.) | usab | explore charts for disbursements data explore what charts we might want to have for disbursements data this should come after we get the tables done | 1 |
7,201 | 4,817,977,704 | IssuesEvent | 2016-11-04 15:11:27 | hajicj/MUSCIMarker | https://api.github.com/repos/hajicj/MUSCIMarker | closed | Alt+h to hide edges of selected symbols | prio:high type:usability-enhancement | Especially helpful for slurs, hairpins -- they mess up a lot. | True | Alt+h to hide edges of selected symbols - Especially helpful for slurs, hairpins -- they mess up a lot. | usab | alt h to hide edges of selected symbols especially helpful for slurs hairpins they mess up a lot | 1 |
97,110 | 3,985,188,817 | IssuesEvent | 2016-05-07 18:16:58 | cims-bioko/cims-tablet | https://api.github.com/repos/cims-bioko/cims-tablet | closed | Crash when changing screen orientation between ODKCollect and OpenHDS | bug low priority | To reproduce the bug:
1. Launch any form from the application
2. Rotate the tablet and complete the form in this orientation
On attempting to return to the application after finalizing the form, the application crashes. The crash occurs before the data from the form can be persisted in the tablet's database. The form associated with the crash, however, remains in tact on the tablet. | 1.0 | Crash when changing screen orientation between ODKCollect and OpenHDS - To reproduce the bug:
1. Launch any form from the application
2. Rotate the tablet and complete the form in this orientation
On attempting to return to the application after finalizing the form, the application crashes. The crash occurs before the data from the form can be persisted in the tablet's database. The form associated with the crash, however, remains in tact on the tablet. | non_usab | crash when changing screen orientation between odkcollect and openhds to reproduce the bug launch any form from the application rotate the tablet and complete the form in this orientation on attempting to return to the application after finalizing the form the application crashes the crash occurs before the data from the form can be persisted in the tablet s database the form associated with the crash however remains in tact on the tablet | 0 |
1,516 | 2,870,710,979 | IssuesEvent | 2015-06-07 12:52:34 | picnicss/picnic | https://api.github.com/repos/picnicss/picnic | closed | Links don't change status when hovered | usability | Links don't change status when hovered. This is not good for the experience. | True | Links don't change status when hovered - Links don't change status when hovered. This is not good for the experience. | usab | links don t change status when hovered links don t change status when hovered this is not good for the experience | 1 |
21,786 | 17,761,168,034 | IssuesEvent | 2021-08-29 18:20:07 | janhebnes/startlist.club | https://api.github.com/repos/janhebnes/startlist.club | closed | Kalender-view (ΓΈvelser vs tid) | UI Nice-to-have Elevlog Usability | View med uger lodret og ΓΈvelser vandret, med grading og farver.
Ekstra kolonner til specielle delΓΈvelser (afbrudt start).
Bruges til overblik. | True | Kalender-view (ΓΈvelser vs tid) - View med uger lodret og ΓΈvelser vandret, med grading og farver.
Ekstra kolonner til specielle delΓΈvelser (afbrudt start).
Bruges til overblik. | usab | kalender view ΓΈvelser vs tid view med uger lodret og ΓΈvelser vandret med grading og farver ekstra kolonner til specielle delΓΈvelser afbrudt start bruges til overblik | 1 |
19,145 | 13,549,970,732 | IssuesEvent | 2020-09-17 08:57:36 | DLR-SC/Overtarget | https://api.github.com/repos/DLR-SC/Overtarget | closed | Quick Fix: Check if a referencedTarget is set | comfort/usability ui | If no referencedTarget is set when using the quickFix, let the user know. Otherwise the targetForReferences will be null. | True | Quick Fix: Check if a referencedTarget is set - If no referencedTarget is set when using the quickFix, let the user know. Otherwise the targetForReferences will be null. | usab | quick fix check if a referencedtarget is set if no referencedtarget is set when using the quickfix let the user know otherwise the targetforreferences will be null | 1 |
26,954 | 27,425,768,227 | IssuesEvent | 2023-03-01 20:09:50 | microsoft/win32metadata | https://api.github.com/repos/microsoft/win32metadata | closed | `PROCESS_BASIC_INFORMATION` has `Reserved` placeholder names, but MSDN has full names and documentation | usability missing api | `PROCESS_BASIC_INFORMATION` is fully documented [here in MSDN](https://learn.microsoft.com/en-us/windows/win32/api/winternl/nf-winternl-ntqueryinformationprocess#process_basic_information), but is only partially "revealed" in the current metadata:
```c#
namespace Windows.Win32.System.Threading
{
public struct PROCESS_BASIC_INFORMATION
{
public unsafe void* Reserved1;
public unsafe PEB* PebBaseAddress;
public unsafe void*[] Reserved2;
public UIntPtr UniqueProcessId;
public unsafe void* Reserved3;
}
}
```
Checked in 34.0.8-preview. | True | `PROCESS_BASIC_INFORMATION` has `Reserved` placeholder names, but MSDN has full names and documentation - `PROCESS_BASIC_INFORMATION` is fully documented [here in MSDN](https://learn.microsoft.com/en-us/windows/win32/api/winternl/nf-winternl-ntqueryinformationprocess#process_basic_information), but is only partially "revealed" in the current metadata:
```c#
namespace Windows.Win32.System.Threading
{
public struct PROCESS_BASIC_INFORMATION
{
public unsafe void* Reserved1;
public unsafe PEB* PebBaseAddress;
public unsafe void*[] Reserved2;
public UIntPtr UniqueProcessId;
public unsafe void* Reserved3;
}
}
```
Checked in 34.0.8-preview. | usab | process basic information has reserved placeholder names but msdn has full names and documentation process basic information is fully documented but is only partially revealed in the current metadata c namespace windows system threading public struct process basic information public unsafe void public unsafe peb pebbaseaddress public unsafe void public uintptr uniqueprocessid public unsafe void checked in preview | 1 |
49,891 | 3,004,795,122 | IssuesEvent | 2015-07-26 09:47:22 | TechReborn/TechReborn | https://api.github.com/repos/TechReborn/TechReborn | closed | Not accepting EU or RF from Immersive Engineering Cables | bug High priority | Machines won't accept power from this mods cables which provides both EU and RF.
An Assembling machine not accepting power (Tested to work with IC2 cables)


Other mods accepting EU or RF respectively, including Open Computers, Galacticraft, Forestry, Railcraft, Binnies mods, IC2

| 1.0 | Not accepting EU or RF from Immersive Engineering Cables - Machines won't accept power from this mods cables which provides both EU and RF.
An Assembling machine not accepting power (Tested to work with IC2 cables)


Other mods accepting EU or RF respectively, including Open Computers, Galacticraft, Forestry, Railcraft, Binnies mods, IC2

| non_usab | not accepting eu or rf from immersive engineering cables machines won t accept power from this mods cables which provides both eu and rf an assembling machine not accepting power tested to work with cables other mods accepting eu or rf respectively including open computers galacticraft forestry railcraft binnies mods | 0 |
531,395 | 15,496,804,470 | IssuesEvent | 2021-03-11 03:22:22 | AY2021S2-CS2113-T10-1/tp | https://api.github.com/repos/AY2021S2-CS2113-T10-1/tp | closed | As a user, I can tag the foodβs category when I add into fridge | priority.High type.Story | ...(e.g. Veggies, meat, dairy), so that I can track what kinds of food I have in the fridge. | 1.0 | As a user, I can tag the foodβs category when I add into fridge - ...(e.g. Veggies, meat, dairy), so that I can track what kinds of food I have in the fridge. | non_usab | as a user i can tag the foodβs category when i add into fridge e g veggies meat dairy so that i can track what kinds of food i have in the fridge | 0 |
25,411 | 25,155,935,574 | IssuesEvent | 2022-11-10 13:33:45 | Open-EO/openeo-python-client | https://api.github.com/repos/Open-EO/openeo-python-client | closed | Direct import of downloaded rasters | usability | Instead of requiring the users to download a raster file and then import it, the client could do that directly and return an imported object that is ready to be visualised etc. That is also useful for the synchronous case, where the raw raster is returned right away. | True | Direct import of downloaded rasters - Instead of requiring the users to download a raster file and then import it, the client could do that directly and return an imported object that is ready to be visualised etc. That is also useful for the synchronous case, where the raw raster is returned right away. | usab | direct import of downloaded rasters instead of requiring the users to download a raster file and then import it the client could do that directly and return an imported object that is ready to be visualised etc that is also useful for the synchronous case where the raw raster is returned right away | 1 |
5,015 | 3,899,208,116 | IssuesEvent | 2016-04-17 16:01:38 | lionheart/openradar-mirror | https://api.github.com/repos/lionheart/openradar-mirror | opened | 13613769: UISplitViewController Not Receiving Delegate Callbacks | classification:ui/app usability reproducible:always status:open | #### Description
09-Apr-2013 06:43 PM Alan Livingston:
Summary:
If the rootviewcontroller is a UISplitViewController, and a modal view controller is presented at app launch while in portrait, the UISplitViewController misses a round of delegate callbacks when the modal is dismissed.
Steps to Reproduce:
A UISplitViewController is the root view controller. A separate view controller is presented modally in -[AppDelegate applicationDidBecomeActive:], with no animation.
Launch app in portrait. After modal view controller is presented, rotate to landscape and dismiss modal view controller.
In the attached project -
1. launch in portrait
2. rotate to landscape
3. dismiss modal
Expected Results:
UISplitViewController delegate receives -splitViewController:willHideViewController:withBarButtonItem:forPopoverController: before the modal view controller is presented. When the modal view controller is dismissed, after rotating to landscape, the delegate should receive -splitViewController: willShowViewController:invalidatingBarButtonItem: so the detail view can remove the invalidated bar button item.
Actual Results:
-splitViewController:willHideViewController:withBarButtonItem:forPopoverController: before the modal view controller is presented. When the modal view controller is dismissed after rotating to landscape, the delegate does NOT receive -splitViewController: willShowViewController:invalidatingBarButtonItem:. Rotate back to portrait and the delegate does not receive -splitViewController:willHideViewController:withBarButtonItem:forPopoverController:. After this, rotation events are handled correctly and the correct delegate methods are called.
Regression:
If the modal view controller is presented with animation:YES, all delegate methods are called correctly. (but "Unbalanced calls to begin/end appearance transitions" is logged to console in this case).
Notes:
09-Apr-2013 06:43 PM Alan Livingston:
'SVCModalLogin.zip' was successfully uploaded
-
Product Version: 6.1
Created: 2013-04-09T22:51:46.016514
Originated: 2013-04-09T00:00:00
Open Radar Link: http://www.openradar.me/13613769 | True | 13613769: UISplitViewController Not Receiving Delegate Callbacks - #### Description
09-Apr-2013 06:43 PM Alan Livingston:
Summary:
If the rootviewcontroller is a UISplitViewController, and a modal view controller is presented at app launch while in portrait, the UISplitViewController misses a round of delegate callbacks when the modal is dismissed.
Steps to Reproduce:
A UISplitViewController is the root view controller. A separate view controller is presented modally in -[AppDelegate applicationDidBecomeActive:], with no animation.
Launch app in portrait. After modal view controller is presented, rotate to landscape and dismiss modal view controller.
In the attached project -
1. launch in portrait
2. rotate to landscape
3. dismiss modal
Expected Results:
UISplitViewController delegate receives -splitViewController:willHideViewController:withBarButtonItem:forPopoverController: before the modal view controller is presented. When the modal view controller is dismissed, after rotating to landscape, the delegate should receive -splitViewController: willShowViewController:invalidatingBarButtonItem: so the detail view can remove the invalidated bar button item.
Actual Results:
-splitViewController:willHideViewController:withBarButtonItem:forPopoverController: before the modal view controller is presented. When the modal view controller is dismissed after rotating to landscape, the delegate does NOT receive -splitViewController: willShowViewController:invalidatingBarButtonItem:. Rotate back to portrait and the delegate does not receive -splitViewController:willHideViewController:withBarButtonItem:forPopoverController:. After this, rotation events are handled correctly and the correct delegate methods are called.
Regression:
If the modal view controller is presented with animation:YES, all delegate methods are called correctly. (but "Unbalanced calls to begin/end appearance transitions" is logged to console in this case).
Notes:
09-Apr-2013 06:43 PM Alan Livingston:
'SVCModalLogin.zip' was successfully uploaded
-
Product Version: 6.1
Created: 2013-04-09T22:51:46.016514
Originated: 2013-04-09T00:00:00
Open Radar Link: http://www.openradar.me/13613769 | usab | uisplitviewcontroller not receiving delegate callbacks description apr pm alan livingston summary if the rootviewcontroller is a uisplitviewcontroller and a modal view controller is presented at app launch while in portrait the uisplitviewcontroller misses a round of delegate callbacks when the modal is dismissed steps to reproduce a uisplitviewcontroller is the root view controller a separate view controller is presented modally in with no animation launch app in portrait after modal view controller is presented rotate to landscape and dismiss modal view controller in the attached project launch in portrait rotate to landscape dismiss modal expected results uisplitviewcontroller delegate receives splitviewcontroller willhideviewcontroller withbarbuttonitem forpopovercontroller before the modal view controller is presented when the modal view controller is dismissed after rotating to landscape the delegate should receive splitviewcontroller willshowviewcontroller invalidatingbarbuttonitem so the detail view can remove the invalidated bar button item actual results splitviewcontroller willhideviewcontroller withbarbuttonitem forpopovercontroller before the modal view controller is presented when the modal view controller is dismissed after rotating to landscape the delegate does not receive splitviewcontroller willshowviewcontroller invalidatingbarbuttonitem rotate back to portrait and the delegate does not receive splitviewcontroller willhideviewcontroller withbarbuttonitem forpopovercontroller after this rotation events are handled correctly and the correct delegate methods are called regression if the modal view controller is presented with animation yes all delegate methods are called correctly but unbalanced calls to begin end appearance transitions is logged to console in this case notes apr pm alan livingston svcmodallogin zip was successfully uploaded product version created originated open radar link | 1 |
86,276 | 10,480,079,668 | IssuesEvent | 2019-09-24 06:36:37 | pravega/pravega | https://api.github.com/repos/pravega/pravega | closed | Update REST api documentation for the Pravega controller | area/controller area/documentation kind/bug priority/P2 version/0.6.0 | **Problem description**
The current REST API documentation for Pravega controller is not upto date.
**Problem location**
restapis.md
**Suggestions for an improvement**
- Ensure the latest `swagger2markup-cli-1.3.3.jar` is used to generate the documentation.
- Ensure the REST API documentation is upto date. | 1.0 | Update REST api documentation for the Pravega controller - **Problem description**
The current REST API documentation for Pravega controller is not upto date.
**Problem location**
restapis.md
**Suggestions for an improvement**
- Ensure the latest `swagger2markup-cli-1.3.3.jar` is used to generate the documentation.
- Ensure the REST API documentation is upto date. | non_usab | update rest api documentation for the pravega controller problem description the current rest api documentation for pravega controller is not upto date problem location restapis md suggestions for an improvement ensure the latest cli jar is used to generate the documentation ensure the rest api documentation is upto date | 0 |
20,837 | 31,166,764,997 | IssuesEvent | 2023-08-16 20:23:08 | BDX-town/Mangane | https://api.github.com/repos/BDX-town/Mangane | closed | Allow exporting CSV backups of user data (follows, mutes, blocks) | enhancement compatibility | Currently, it's possible to import CSV backups of user data from the interface, but not to export them. Soapbox had removed the ability to do so (probably due to instability?) but has already restored that functionality in later patches:
https://gitlab.com/soapbox-pub/soapbox/-/commit/e50e4b8e608de927bb64405aec4d50d1104e7c25
https://gitlab.com/soapbox-pub/soapbox/-/commit/658e336e5c2ff371eced8bc131f044831c158912
https://gitlab.com/soapbox-pub/soapbox/-/commit/21f864c8a61f3669acbf19f062d240b0f9ea3d68
Is it possible to import these patches from upstream and apply them to Mangane? | True | Allow exporting CSV backups of user data (follows, mutes, blocks) - Currently, it's possible to import CSV backups of user data from the interface, but not to export them. Soapbox had removed the ability to do so (probably due to instability?) but has already restored that functionality in later patches:
https://gitlab.com/soapbox-pub/soapbox/-/commit/e50e4b8e608de927bb64405aec4d50d1104e7c25
https://gitlab.com/soapbox-pub/soapbox/-/commit/658e336e5c2ff371eced8bc131f044831c158912
https://gitlab.com/soapbox-pub/soapbox/-/commit/21f864c8a61f3669acbf19f062d240b0f9ea3d68
Is it possible to import these patches from upstream and apply them to Mangane? | non_usab | allow exporting csv backups of user data follows mutes blocks currently it s possible to import csv backups of user data from the interface but not to export them soapbox had removed the ability to do so probably due to instability but has already restored that functionality in later patches is it possible to import these patches from upstream and apply them to mangane | 0 |
234,065 | 19,093,007,705 | IssuesEvent | 2021-11-29 14:06:29 | elastic/elasticsearch | https://api.github.com/repos/elastic/elasticsearch | closed | [CI] SnapshotLifecycleRestIT.testBasicTimeBasedRetention failing | >test-failure :Data Management/ILM+SLM Team:Data Management | <!--
Please fill out the following information, and ensure you have attempted
to reproduce locally
-->
**Build scan**: https://gradle-enterprise.elastic.co/s/sluoev3ttfqtm/tests/:x-pack:plugin:ilm:qa:multi-node:javaRestTest/org.elasticsearch.xpack.slm.SnapshotLifecycleRestIT/testBasicTimeBasedRetention?top-execution=1
**Repro line**: `./gradlew ':x-pack:plugin:ilm:qa:multi-node:javaRestTest' --tests "org.elasticsearch.xpack.slm.SnapshotLifecycleRestIT.testBasicTimeBasedRetention" -Dtests.seed=9C07192018733E66 -Dtests.locale=nl-BE -Dtests.timezone=America/Guatemala -Druntime.java=11`
**Reproduces locally?**: didn't try
**Applicable branches**: master
**Failure history**: https://gradle-enterprise.elastic.co/scans/tests?tests.container=org.elasticsearch.xpack.slm.SnapshotLifecycleRestIT&tests.test=testBasicTimeBasedRetention
<!--
Link to build stats and possible indication of when this started failing and how often it fails
<https://build-stats.elastic.co/app/kibana>
-->
**Failure excerpt**:
```
AssertionError: expected snapshot to exist but it does not: {"error":{"root_cause":[{"type":"snapshot_missing_exception","reason":"[time-based-retention-repo:snap-jtopkav2rvqjzxd0eeljtw] is missing"}],"type":"snapshot_missing_exception","reason":"[time-based-retention-repo:snap-jtopkav2rvqjzxd0eeljtw] is missing"},"status":404} | Β
```
| 1.0 | [CI] SnapshotLifecycleRestIT.testBasicTimeBasedRetention failing - <!--
Please fill out the following information, and ensure you have attempted
to reproduce locally
-->
**Build scan**: https://gradle-enterprise.elastic.co/s/sluoev3ttfqtm/tests/:x-pack:plugin:ilm:qa:multi-node:javaRestTest/org.elasticsearch.xpack.slm.SnapshotLifecycleRestIT/testBasicTimeBasedRetention?top-execution=1
**Repro line**: `./gradlew ':x-pack:plugin:ilm:qa:multi-node:javaRestTest' --tests "org.elasticsearch.xpack.slm.SnapshotLifecycleRestIT.testBasicTimeBasedRetention" -Dtests.seed=9C07192018733E66 -Dtests.locale=nl-BE -Dtests.timezone=America/Guatemala -Druntime.java=11`
**Reproduces locally?**: didn't try
**Applicable branches**: master
**Failure history**: https://gradle-enterprise.elastic.co/scans/tests?tests.container=org.elasticsearch.xpack.slm.SnapshotLifecycleRestIT&tests.test=testBasicTimeBasedRetention
<!--
Link to build stats and possible indication of when this started failing and how often it fails
<https://build-stats.elastic.co/app/kibana>
-->
**Failure excerpt**:
```
AssertionError: expected snapshot to exist but it does not: {"error":{"root_cause":[{"type":"snapshot_missing_exception","reason":"[time-based-retention-repo:snap-jtopkav2rvqjzxd0eeljtw] is missing"}],"type":"snapshot_missing_exception","reason":"[time-based-retention-repo:snap-jtopkav2rvqjzxd0eeljtw] is missing"},"status":404} | Β
```
| non_usab | snapshotlifecyclerestit testbasictimebasedretention failing please fill out the following information and ensure you have attempted to reproduce locally build scan repro line gradlew x pack plugin ilm qa multi node javaresttest tests org elasticsearch xpack slm snapshotlifecyclerestit testbasictimebasedretention dtests seed dtests locale nl be dtests timezone america guatemala druntime java reproduces locally didn t try applicable branches master failure history link to build stats and possible indication of when this started failing and how often it fails failure excerpt assertionerror expected snapshot to exist but it does not error root cause is missing type snapshot missing exception reason is missing status Β | 0 |
13,523 | 8,554,073,023 | IssuesEvent | 2018-11-08 04:07:55 | OctopusDeploy/Issues | https://api.github.com/repos/OctopusDeploy/Issues | closed | Add full screen option for variable editor | area/usability kind/enhancement | # Prerequisites
- [x] I have searched [open](https://github.com/OctopusDeploy/Issues/issues) and [closed](https://github.com/OctopusDeploy/Issues/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed) issues to make sure it isn't already requested
- [x] I have written a descriptive issue title
- [x] I have linked the original source of this feature request
- [x] I have tagged the issue appropriately (area/*, kind/enhancement)
# The enhancement
Provide a full-screen option for the variable editor in order to make using the code editor as part of the dialog more enjoyable.
## Links
https://octopususergroup.slack.com/archives/C6UEBB7R9/p1536780906000100
| True | Add full screen option for variable editor - # Prerequisites
- [x] I have searched [open](https://github.com/OctopusDeploy/Issues/issues) and [closed](https://github.com/OctopusDeploy/Issues/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed) issues to make sure it isn't already requested
- [x] I have written a descriptive issue title
- [x] I have linked the original source of this feature request
- [x] I have tagged the issue appropriately (area/*, kind/enhancement)
# The enhancement
Provide a full-screen option for the variable editor in order to make using the code editor as part of the dialog more enjoyable.
## Links
https://octopususergroup.slack.com/archives/C6UEBB7R9/p1536780906000100
| usab | add full screen option for variable editor prerequisites i have searched and issues to make sure it isn t already requested i have written a descriptive issue title i have linked the original source of this feature request i have tagged the issue appropriately area kind enhancement the enhancement provide a full screen option for the variable editor in order to make using the code editor as part of the dialog more enjoyable links | 1 |
9,991 | 6,538,033,710 | IssuesEvent | 2017-09-01 02:48:53 | coreos/bugs | https://api.github.com/repos/coreos/bugs | opened | Container Linux release notes are not usable | area/usability component/site kind/friction team/os | # Issue Report #
## Bug ##
### Container Linux Version ###
Any beta or stable
### Environment ###
Any
### Expected Behavior ###
The release notes page clearly states what has changed between releases.
### Actual Behavior ###
The release notes page assumes a working understanding of the Container Linux branching model.
### Reproduction Steps ###
1. Visit the [release notes page](https://coreos.com/releases/).
2. Try to determine what has changed between 1409.9.0 and 1465.6.0.
### Other Information ###
To answer that question, one must currently:
1. Read the alpha release notes for the *first* release of each major version between 1409 exclusive and 1465 inclusive. This is usually x.0.0 but not always (e.g. 1451.2.0).
2. Read the release notes for all other 1465 alpha releases, if any.
3. Read the release notes for all 1465 beta releases.
4. Read the release notes for all 1465 stable releases up to 1465.6.0 inclusive.
5. Remain unconcerned about version numbers missing from all three channels, e.g. 1465.1.0.
This is highly non-obvious. Looking solely at the Stable tab, one might plausibly conclude that the only change between 1409.9.0 and 1465.6.0 was an update to Linux 4.12.7. | True | Container Linux release notes are not usable - # Issue Report #
## Bug ##
### Container Linux Version ###
Any beta or stable
### Environment ###
Any
### Expected Behavior ###
The release notes page clearly states what has changed between releases.
### Actual Behavior ###
The release notes page assumes a working understanding of the Container Linux branching model.
### Reproduction Steps ###
1. Visit the [release notes page](https://coreos.com/releases/).
2. Try to determine what has changed between 1409.9.0 and 1465.6.0.
### Other Information ###
To answer that question, one must currently:
1. Read the alpha release notes for the *first* release of each major version between 1409 exclusive and 1465 inclusive. This is usually x.0.0 but not always (e.g. 1451.2.0).
2. Read the release notes for all other 1465 alpha releases, if any.
3. Read the release notes for all 1465 beta releases.
4. Read the release notes for all 1465 stable releases up to 1465.6.0 inclusive.
5. Remain unconcerned about version numbers missing from all three channels, e.g. 1465.1.0.
This is highly non-obvious. Looking solely at the Stable tab, one might plausibly conclude that the only change between 1409.9.0 and 1465.6.0 was an update to Linux 4.12.7. | usab | container linux release notes are not usable issue report bug container linux version any beta or stable environment any expected behavior the release notes page clearly states what has changed between releases actual behavior the release notes page assumes a working understanding of the container linux branching model reproduction steps visit the try to determine what has changed between and other information to answer that question one must currently read the alpha release notes for the first release of each major version between exclusive and inclusive this is usually x but not always e g read the release notes for all other alpha releases if any read the release notes for all beta releases read the release notes for all stable releases up to inclusive remain unconcerned about version numbers missing from all three channels e g this is highly non obvious looking solely at the stable tab one might plausibly conclude that the only change between and was an update to linux | 1 |
1,744 | 2,997,696,172 | IssuesEvent | 2015-07-23 09:25:25 | hypothesis/h | https://api.github.com/repos/hypothesis/h | closed | Highlight name of OP (original poster) whenever they occur in thread | Enhancement Usability | Possibly have cascading OPs. i.e. you're the OP of any thread you start. when you reply further down, your name is highlighted (perhaps just in a light grey). | True | Highlight name of OP (original poster) whenever they occur in thread - Possibly have cascading OPs. i.e. you're the OP of any thread you start. when you reply further down, your name is highlighted (perhaps just in a light grey). | usab | highlight name of op original poster whenever they occur in thread possibly have cascading ops i e you re the op of any thread you start when you reply further down your name is highlighted perhaps just in a light grey | 1 |
70,932 | 8,598,234,989 | IssuesEvent | 2018-11-15 21:09:03 | patternfly/patternfly-next | https://api.github.com/repos/patternfly/patternfly-next | closed | Tabs | Feature P2 css design approved | Introduce tabs
Tabs Design - Examples + spacing spec
[PF4_Tabs.pdf](https://github.com/patternfly/patternfly-next/files/2357300/PF4_Tabs.pdf)
- [x] Interaction design requirements
- [x] Visuals
- [x] First checkpoint complete and approved
- [ ] CSS
- [ ] React
- [ ] Second checkpoint complete and approved
Contacts:
- IxD
- Visual
- CSS | 1.0 | Tabs - Introduce tabs
Tabs Design - Examples + spacing spec
[PF4_Tabs.pdf](https://github.com/patternfly/patternfly-next/files/2357300/PF4_Tabs.pdf)
- [x] Interaction design requirements
- [x] Visuals
- [x] First checkpoint complete and approved
- [ ] CSS
- [ ] React
- [ ] Second checkpoint complete and approved
Contacts:
- IxD
- Visual
- CSS | non_usab | tabs introduce tabs tabs design examples spacing spec interaction design requirements visuals first checkpoint complete and approved css react second checkpoint complete and approved contacts ixd visual css | 0 |
3,771 | 3,551,502,065 | IssuesEvent | 2016-01-21 04:11:21 | opengovfoundation/madison | https://api.github.com/repos/opengovfoundation/madison | closed | Comment tally should include comments on annotations | 1 - Todo Laravel UX / Usability | The comment tally that appears at the top of the right column currently only includes Discussion comments. It should also include comments that folks put on Annotations, since those are otherwise not captured and seem to be where a lot of the engagement happens once you hit saturation on annotations. Alternatively, comments on annotations could be counted as annotations also, since the difference is somewhat academic. But the current UI seems to favor the first option.
per @mattbailey0 cc: @cmgiven | True | Comment tally should include comments on annotations - The comment tally that appears at the top of the right column currently only includes Discussion comments. It should also include comments that folks put on Annotations, since those are otherwise not captured and seem to be where a lot of the engagement happens once you hit saturation on annotations. Alternatively, comments on annotations could be counted as annotations also, since the difference is somewhat academic. But the current UI seems to favor the first option.
per @mattbailey0 cc: @cmgiven | usab | comment tally should include comments on annotations the comment tally that appears at the top of the right column currently only includes discussion comments it should also include comments that folks put on annotations since those are otherwise not captured and seem to be where a lot of the engagement happens once you hit saturation on annotations alternatively comments on annotations could be counted as annotations also since the difference is somewhat academic but the current ui seems to favor the first option per cc cmgiven | 1 |
19,256 | 13,750,423,522 | IssuesEvent | 2020-10-06 12:01:39 | honzajavorek/junior.guru | https://api.github.com/repos/honzajavorek/junior.guru | closed | Podchytit znalost jazykΕ― | enhancement usability | podchytit znalost jazykΕ―: jestli je nutnΓ‘ angliΔtina / ΔeΕ‘tina (prΓ‘ce s kolegama, zadΓ‘nΓ, atd.) ... PΕepΓnaΔ aby inzerΓ‘ty Ε‘ly zobrazovat jen v ΔeΕ‘tinΔ | True | Podchytit znalost jazykΕ― - podchytit znalost jazykΕ―: jestli je nutnΓ‘ angliΔtina / ΔeΕ‘tina (prΓ‘ce s kolegama, zadΓ‘nΓ, atd.) ... PΕepΓnaΔ aby inzerΓ‘ty Ε‘ly zobrazovat jen v ΔeΕ‘tinΔ | usab | podchytit znalost jazykΕ― podchytit znalost jazykΕ― jestli je nutnΓ‘ angliΔtina ΔeΕ‘tina prΓ‘ce s kolegama zadΓ‘nΓ atd pΕepΓnaΔ aby inzerΓ‘ty Ε‘ly zobrazovat jen v ΔeΕ‘tinΔ | 1 |
34,851 | 14,532,242,712 | IssuesEvent | 2020-12-14 22:06:02 | microsoft/BotBuilder-Samples | https://api.github.com/repos/microsoft/BotBuilder-Samples | closed | Orchestrator: How to download the .lu files from Luis or .tsv files from QNA using cli commands | Bot Services customer-replied-to customer-reported feature-request needs-triage | I am trying to use orchestrator as a replacement to dispatcher where I am exporting .lu files for multiple Luis applications and trying to create a snapshot(i.e. .blu files), here I am downloading the .lu files from Luis manually but I want to download the .lu files using cli commands or programmatically for my requirement . Is that feature available?.
I am using the following sample:
https://github.com/microsoft/BotBuilder-Samples/tree/main/experimental/orchestrator/csharp_dotnetcore/01.dispatch-bot
@tsuwandy
| 1.0 | Orchestrator: How to download the .lu files from Luis or .tsv files from QNA using cli commands - I am trying to use orchestrator as a replacement to dispatcher where I am exporting .lu files for multiple Luis applications and trying to create a snapshot(i.e. .blu files), here I am downloading the .lu files from Luis manually but I want to download the .lu files using cli commands or programmatically for my requirement . Is that feature available?.
I am using the following sample:
https://github.com/microsoft/BotBuilder-Samples/tree/main/experimental/orchestrator/csharp_dotnetcore/01.dispatch-bot
@tsuwandy
| non_usab | orchestrator how to download the lu files from luis or tsv files from qna using cli commands i am trying to use orchestrator as a replacement to dispatcher where i am exporting lu files for multiple luis applications and trying to create a snapshot i e blu files here i am downloading the lu files from luis manually but i want to download the lu files using cli commands or programmatically for my requirement is that feature available i am using the following sample tsuwandy | 0 |
41,423 | 21,684,734,062 | IssuesEvent | 2022-05-09 10:08:14 | eclipse/xtext-eclipse | https://api.github.com/repos/eclipse/xtext-eclipse | opened | Storage2UriMapperJavaImpl.getStorages is unnecessarily slow | performance | It traverses the list of all package fragment roots twice and performance pointless exists() check apparently only to modify a local copy of the data.
Can be observed on workspaces with large number of projects.

See org.eclipse.xtext.ui.resource.Storage2UriMapperJavaImpl.getStorages(URI) | True | Storage2UriMapperJavaImpl.getStorages is unnecessarily slow - It traverses the list of all package fragment roots twice and performance pointless exists() check apparently only to modify a local copy of the data.
Can be observed on workspaces with large number of projects.

See org.eclipse.xtext.ui.resource.Storage2UriMapperJavaImpl.getStorages(URI) | non_usab | getstorages is unnecessarily slow it traverses the list of all package fragment roots twice and performance pointless exists check apparently only to modify a local copy of the data can be observed on workspaces with large number of projects see org eclipse xtext ui resource getstorages uri | 0 |
18,296 | 12,746,590,556 | IssuesEvent | 2020-06-26 16:13:03 | apache/cloudstack-primate | https://api.github.com/repos/apache/cloudstack-primate | closed | [BUG] After session expire, upon new login user is given 403 | bug usability | **Describe the bug**
After session expire and following log, user is being displayed with 403 instead of the resource he had just authenticated to.
**To Reproduce**
Steps to reproduce the behavior:
1. Let the session expire while on a page
2. Click anywhere on the screen
3. You're being redirected to login, login to CS
4. Instead of the page you've clicked before login you've been displayed with 403
**Expected behavior**
User should be redirected to the page where he was last
| True | [BUG] After session expire, upon new login user is given 403 - **Describe the bug**
After session expire and following log, user is being displayed with 403 instead of the resource he had just authenticated to.
**To Reproduce**
Steps to reproduce the behavior:
1. Let the session expire while on a page
2. Click anywhere on the screen
3. You're being redirected to login, login to CS
4. Instead of the page you've clicked before login you've been displayed with 403
**Expected behavior**
User should be redirected to the page where he was last
| usab | after session expire upon new login user is given describe the bug after session expire and following log user is being displayed with instead of the resource he had just authenticated to to reproduce steps to reproduce the behavior let the session expire while on a page click anywhere on the screen you re being redirected to login login to cs instead of the page you ve clicked before login you ve been displayed with expected behavior user should be redirected to the page where he was last | 1 |
20,429 | 15,435,934,639 | IssuesEvent | 2021-03-07 11:02:34 | AntennaPod/AntennaPod | https://api.github.com/repos/AntennaPod/AntennaPod | closed | Improve clarity of (gpodder.net) sync error notification | enhancement usability | # Checklist
<!-- Place an x in the boxes to tick them: [x] -->
- [x ] I have used the search function to see if someone else has already submitted the same feature request.
- [x ] I will only create one feature request per issue.
- [x ] I will describe the problem with as much detail as possible.
# System info
**App version**: 2.1.2
<!-- The latest version may be different depending on your device. You can find the version in AntennaPod's settings. -->
**App source**: Google Play
<!-- Please delete irrelevant answer or fill in the blank -->
# Enhancement description
**Problem you may be having, or feature you want**:
[From the forum](https://forum.antennapod.org/t/notification-synchronization-failed-with-gpodder/610): a slightly vague error is show when synchronisation with gpodder.net fails. Given that this happens for a lot of users quite frequently now, we should improve the notification.
<!-- Give a brief explanation about the problem that may currently exist -->
**Suggested solution**: Clearly indicate the gpodder.net server could not be reached, thus sync failed, e.g.:
_gpodder.net synchronization error_
Server could not be reached. Please retry later.
Maybe we can make this specific to the http code we're getting back, so we can distinguish between the server being inaccessible, and another sync issues (e.g. connection dropped half way or software error).
<!-- Describe how your requested feature solves this problem. Try to be as specific as possible. Please not only explain what the feature does, but also how. -->
**Screenshots / Drawings / Technical details**: /
<!-- If your request is about (or includes) changing or extending the UI, describe what the UI would look like and how the user would interact with it. -->
| True | Improve clarity of (gpodder.net) sync error notification - # Checklist
<!-- Place an x in the boxes to tick them: [x] -->
- [x ] I have used the search function to see if someone else has already submitted the same feature request.
- [x ] I will only create one feature request per issue.
- [x ] I will describe the problem with as much detail as possible.
# System info
**App version**: 2.1.2
<!-- The latest version may be different depending on your device. You can find the version in AntennaPod's settings. -->
**App source**: Google Play
<!-- Please delete irrelevant answer or fill in the blank -->
# Enhancement description
**Problem you may be having, or feature you want**:
[From the forum](https://forum.antennapod.org/t/notification-synchronization-failed-with-gpodder/610): a slightly vague error is show when synchronisation with gpodder.net fails. Given that this happens for a lot of users quite frequently now, we should improve the notification.
<!-- Give a brief explanation about the problem that may currently exist -->
**Suggested solution**: Clearly indicate the gpodder.net server could not be reached, thus sync failed, e.g.:
_gpodder.net synchronization error_
Server could not be reached. Please retry later.
Maybe we can make this specific to the http code we're getting back, so we can distinguish between the server being inaccessible, and another sync issues (e.g. connection dropped half way or software error).
<!-- Describe how your requested feature solves this problem. Try to be as specific as possible. Please not only explain what the feature does, but also how. -->
**Screenshots / Drawings / Technical details**: /
<!-- If your request is about (or includes) changing or extending the UI, describe what the UI would look like and how the user would interact with it. -->
| usab | improve clarity of gpodder net sync error notification checklist i have used the search function to see if someone else has already submitted the same feature request i will only create one feature request per issue i will describe the problem with as much detail as possible system info app version app source google play enhancement description problem you may be having or feature you want a slightly vague error is show when synchronisation with gpodder net fails given that this happens for a lot of users quite frequently now we should improve the notification suggested solution clearly indicate the gpodder net server could not be reached thus sync failed e g gpodder net synchronization error server could not be reached please retry later maybe we can make this specific to the http code we re getting back so we can distinguish between the server being inaccessible and another sync issues e g connection dropped half way or software error screenshots drawings technical details | 1 |
10,013 | 6,543,704,629 | IssuesEvent | 2017-09-03 04:11:30 | csasf/members | https://api.github.com/repos/csasf/members | opened | Include ability to include waiver status on roster pages | easy-first-pr usability | We should be able to display a "waiver missing" notice on roster pages, for an at-a-glance view of who hasn't signed the waiver yet, for membership committee's benefit. | True | Include ability to include waiver status on roster pages - We should be able to display a "waiver missing" notice on roster pages, for an at-a-glance view of who hasn't signed the waiver yet, for membership committee's benefit. | usab | include ability to include waiver status on roster pages we should be able to display a waiver missing notice on roster pages for an at a glance view of who hasn t signed the waiver yet for membership committee s benefit | 1 |
9,076 | 6,145,156,918 | IssuesEvent | 2017-06-27 10:43:11 | Virtual-Labs/structural-dynamics-iiith | https://api.github.com/repos/Virtual-Labs/structural-dynamics-iiith | closed | QA_Continuous Systems_Theory_content-missed | Category: Usability Developed by: VLEAD Open-Edx Resolved Severity: S2 Status: Open | Defect Description :
In the theory page of Continuous Systems experiment, content is not included along with the special characters while porting. Formula is missing. The Image is available for this section in vlab.co.in.
Actual Result :
In the theory page of Continuous Systems experiment, content is not included along with the special characters while porting. Formula is missing.
Environment :
OS: Windows 7, Ubuntu-16.04,Centos-6
Browsers: Firefox-42.0,Chrome-47.0,chromium-45.0
Bandwidth : 100Mbps
Hardware Configuration:8GBRAM
Processor:i5
Attachment

| True | QA_Continuous Systems_Theory_content-missed - Defect Description :
In the theory page of Continuous Systems experiment, content is not included along with the special characters while porting. Formula is missing. The Image is available for this section in vlab.co.in.
Actual Result :
In the theory page of Continuous Systems experiment, content is not included along with the special characters while porting. Formula is missing.
Environment :
OS: Windows 7, Ubuntu-16.04,Centos-6
Browsers: Firefox-42.0,Chrome-47.0,chromium-45.0
Bandwidth : 100Mbps
Hardware Configuration:8GBRAM
Processor:i5
Attachment

| usab | qa continuous systems theory content missed defect description in the theory page of continuous systems experiment content is not included along with the special characters while porting formula is missing the image is available for this section in vlab co in actual result in the theory page of continuous systems experiment content is not included along with the special characters while porting formula is missing environment os windows ubuntu centos browsers firefox chrome chromium bandwidth hardware configuration processor attachment | 1 |
693,784 | 23,790,410,762 | IssuesEvent | 2022-09-02 14:04:04 | wp-media/wp-rocket | https://api.github.com/repos/wp-media/wp-rocket | closed | Exclude 'var wpforms_user_journey' inline JS from combine JS to avoid cache dir size issue | type: enhancement 3rd party compatibility priority: low module: combine JS | **Before submitting an issue please check that youβve completed the following steps:**
yes - Made sure youβre on the latest version
yes - Used the search feature to ensure that the bug hasnβt been reported before
**Describe the bug**
`var wpforms_user_journey` is dynamically changing **page_id** value
example: https://cb-hypnotherapy.com/hypnotherapy-treatments/
script: https://snippi.com/s/i9cijuz
**To Reproduce**
Steps to reproduce the behavior:
1. Install WPForms User Journey
2. Enable Combine JS
3. The cache dir size will grow because of the combined files
**Expected behavior**
Exclude `var wpforms_user_journey` from combine js to prevent the issue
**Screenshots**
If applicable, add screenshots to help explain your problem.
https://jmp.sh/DlCRFqe
**Backlog Grooming (for WP Media dev team use only)**
- [ ] Reproduce the problem
- [ ] Identify the root cause
- [ ] Scope a solution
- [ ] Estimate the effort
| 1.0 | Exclude 'var wpforms_user_journey' inline JS from combine JS to avoid cache dir size issue - **Before submitting an issue please check that youβve completed the following steps:**
yes - Made sure youβre on the latest version
yes - Used the search feature to ensure that the bug hasnβt been reported before
**Describe the bug**
`var wpforms_user_journey` is dynamically changing **page_id** value
example: https://cb-hypnotherapy.com/hypnotherapy-treatments/
script: https://snippi.com/s/i9cijuz
**To Reproduce**
Steps to reproduce the behavior:
1. Install WPForms User Journey
2. Enable Combine JS
3. The cache dir size will grow because of the combined files
**Expected behavior**
Exclude `var wpforms_user_journey` from combine js to prevent the issue
**Screenshots**
If applicable, add screenshots to help explain your problem.
https://jmp.sh/DlCRFqe
**Backlog Grooming (for WP Media dev team use only)**
- [ ] Reproduce the problem
- [ ] Identify the root cause
- [ ] Scope a solution
- [ ] Estimate the effort
| non_usab | exclude var wpforms user journey inline js from combine js to avoid cache dir size issue before submitting an issue please check that youβve completed the following steps yes made sure youβre on the latest version yes used the search feature to ensure that the bug hasnβt been reported before describe the bug var wpforms user journey is dynamically changing page id value example script to reproduce steps to reproduce the behavior install wpforms user journey enable combine js the cache dir size will grow because of the combined files expected behavior exclude var wpforms user journey from combine js to prevent the issue screenshots if applicable add screenshots to help explain your problem backlog grooming for wp media dev team use only reproduce the problem identify the root cause scope a solution estimate the effort | 0 |
813,500 | 30,459,346,074 | IssuesEvent | 2023-07-17 05:02:13 | steedos/steedos-platform | https://api.github.com/repos/steedos/steedos-platform | closed | [Bug]: ζ°ε»Ίζ΅η¨-ιζ©ζ΅η¨ι‘΅ι’ δΈιθ¦δΈ€δΈͺζ»ε¨ζ‘ | bug done priority: High | ### Description
δΈδΈͺηι’εͺιδΈδΈͺζ»ε¨ζ‘
### Steps To Reproduce ιη°ζ₯ιͺ€

### Version ηζ¬
2.5.8 | 1.0 | [Bug]: ζ°ε»Ίζ΅η¨-ιζ©ζ΅η¨ι‘΅ι’ δΈιθ¦δΈ€δΈͺζ»ε¨ζ‘ - ### Description
δΈδΈͺηι’εͺιδΈδΈͺζ»ε¨ζ‘
### Steps To Reproduce ιη°ζ₯ιͺ€

### Version ηζ¬
2.5.8 | non_usab | ζ°ε»Ίζ΅η¨ ιζ©ζ΅η¨ι‘΅ι’ δΈιθ¦δΈ€δΈͺζ»ε¨ζ‘ description δΈδΈͺηι’εͺιδΈδΈͺζ»ε¨ζ‘ steps to reproduce ιη°ζ₯ιͺ€ version ηζ¬ | 0 |
5,778 | 3,995,652,743 | IssuesEvent | 2016-05-10 16:08:50 | factor/factor | https://api.github.com/repos/factor/factor | closed | dark-theme is too hard to read | themes ui usability | 
Maybe lighten up the background color? Or is this a dup of that bug where the color profiles are ignored so the colors are wrong? | True | dark-theme is too hard to read - 
Maybe lighten up the background color? Or is this a dup of that bug where the color profiles are ignored so the colors are wrong? | usab | dark theme is too hard to read maybe lighten up the background color or is this a dup of that bug where the color profiles are ignored so the colors are wrong | 1 |
1,543 | 2,875,383,819 | IssuesEvent | 2015-06-09 07:47:41 | MISP/MISP | https://api.github.com/repos/MISP/MISP | closed | Organisation field list for new user creation | usability | When creating a new user account, for the organisation, display a dropdown list of existing orgs on the server, and at the beginning of the list "new org..." to make the field editable to put the name of an org not already present. | True | Organisation field list for new user creation - When creating a new user account, for the organisation, display a dropdown list of existing orgs on the server, and at the beginning of the list "new org..." to make the field editable to put the name of an org not already present. | usab | organisation field list for new user creation when creating a new user account for the organisation display a dropdown list of existing orgs on the server and at the beginning of the list new org to make the field editable to put the name of an org not already present | 1 |
168,279 | 20,747,240,001 | IssuesEvent | 2022-03-15 01:15:43 | DavidSpek/pipelines | https://api.github.com/repos/DavidSpek/pipelines | opened | WS-2022-0097 (Medium) detected in Pillow-6.2.2-cp27-cp27mu-manylinux1_x86_64.whl | security vulnerability | ## WS-2022-0097 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>Pillow-6.2.2-cp27-cp27mu-manylinux1_x86_64.whl</b></p></summary>
<p>Python Imaging Library (Fork)</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/12/ad/61f8dfba88c4e56196bf6d056cdbba64dc9c5dfdfbc97d02e6472feed913/Pillow-6.2.2-cp27-cp27mu-manylinux1_x86_64.whl">https://files.pythonhosted.org/packages/12/ad/61f8dfba88c4e56196bf6d056cdbba64dc9c5dfdfbc97d02e6472feed913/Pillow-6.2.2-cp27-cp27mu-manylinux1_x86_64.whl</a></p>
<p>Path to dependency file: /samples/contrib/ibm-samples/ffdl-seldon/source/seldon-pytorch-serving-image/requirements.txt</p>
<p>Path to vulnerable library: /samples/contrib/ibm-samples/ffdl-seldon/source/seldon-pytorch-serving-image/requirements.txt,/backend/src/apiserver/visualization/requirements.txt</p>
<p>
Dependency Hierarchy:
- torchvision-0.2.1-py2.py3-none-any.whl (Root Library)
- :x: **Pillow-6.2.2-cp27-cp27mu-manylinux1_x86_64.whl** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
JpegImagePlugin may append an EOF marker to the end of a truncated file, so that the last segment of the data will still be processed by the decoder.
If the EOF marker is not detected as such however, this could lead to an infinite loop where JpegImagePlugin keeps trying to end the file.
<p>Publish Date: 2022-03-11
<p>URL: <a href=https://github.com/python-pillow/Pillow/commit/baae9ec4b67c68e3adaf1208cf54e8de5e38a6fd>WS-2022-0097</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: None
- User Interaction: Required
- 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/advisories/GHSA-4fx9-vc88-q2xc">https://github.com/advisories/GHSA-4fx9-vc88-q2xc</a></p>
<p>Release Date: 2022-03-11</p>
<p>Fix Resolution: Pillow - 9.0.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-2022-0097 (Medium) detected in Pillow-6.2.2-cp27-cp27mu-manylinux1_x86_64.whl - ## WS-2022-0097 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>Pillow-6.2.2-cp27-cp27mu-manylinux1_x86_64.whl</b></p></summary>
<p>Python Imaging Library (Fork)</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/12/ad/61f8dfba88c4e56196bf6d056cdbba64dc9c5dfdfbc97d02e6472feed913/Pillow-6.2.2-cp27-cp27mu-manylinux1_x86_64.whl">https://files.pythonhosted.org/packages/12/ad/61f8dfba88c4e56196bf6d056cdbba64dc9c5dfdfbc97d02e6472feed913/Pillow-6.2.2-cp27-cp27mu-manylinux1_x86_64.whl</a></p>
<p>Path to dependency file: /samples/contrib/ibm-samples/ffdl-seldon/source/seldon-pytorch-serving-image/requirements.txt</p>
<p>Path to vulnerable library: /samples/contrib/ibm-samples/ffdl-seldon/source/seldon-pytorch-serving-image/requirements.txt,/backend/src/apiserver/visualization/requirements.txt</p>
<p>
Dependency Hierarchy:
- torchvision-0.2.1-py2.py3-none-any.whl (Root Library)
- :x: **Pillow-6.2.2-cp27-cp27mu-manylinux1_x86_64.whl** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
JpegImagePlugin may append an EOF marker to the end of a truncated file, so that the last segment of the data will still be processed by the decoder.
If the EOF marker is not detected as such however, this could lead to an infinite loop where JpegImagePlugin keeps trying to end the file.
<p>Publish Date: 2022-03-11
<p>URL: <a href=https://github.com/python-pillow/Pillow/commit/baae9ec4b67c68e3adaf1208cf54e8de5e38a6fd>WS-2022-0097</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: None
- User Interaction: Required
- 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/advisories/GHSA-4fx9-vc88-q2xc">https://github.com/advisories/GHSA-4fx9-vc88-q2xc</a></p>
<p>Release Date: 2022-03-11</p>
<p>Fix Resolution: Pillow - 9.0.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_usab | ws medium detected in pillow whl ws medium severity vulnerability vulnerable library pillow whl python imaging library fork library home page a href path to dependency file samples contrib ibm samples ffdl seldon source seldon pytorch serving image requirements txt path to vulnerable library samples contrib ibm samples ffdl seldon source seldon pytorch serving image requirements txt backend src apiserver visualization requirements txt dependency hierarchy torchvision none any whl root library x pillow whl vulnerable library found in base branch master vulnerability details jpegimageplugin may append an eof marker to the end of a truncated file so that the last segment of the data will still be processed by the decoder if the eof marker is not detected as such however this could lead to an infinite loop where jpegimageplugin keeps trying to end the file publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required none user interaction required scope 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 pillow step up your open source security game with whitesource | 0 |
638,426 | 20,727,495,565 | IssuesEvent | 2022-03-14 05:01:02 | minio/minio-dotnet | https://api.github.com/repos/minio/minio-dotnet | closed | MakeBucketAsync does not work with region parameter | priority: medium community | I am unable to create a bucket using the .NET client SDK. I get an exception with
```
MinIO API responded with message=The XML you provided was not well-formed or did not validate against our published schema
```
All my code does is
```cs
_mc = new MinioClient(endpoint, config.AccessKeyId, config.SecretAccessKey);
if (uri.Scheme == "https") {
_mc = _mc.WithSSL();
}
_mc.MakeBucketAsync("xyz", _config.Region).Wait();
```
If I run a local minio server I get the following:
```cs
$ minio server minio-lol
...
API: PutBucket(bucket=xyz)
Time: 16:27:01 CEST 09/29/2020
DeploymentID: 4c442570-afbb-4ca2-a840-eb537e128865
RequestID: 1639476057D9FF78
RemoteHost: 127.0.0.1
Host: 127.0.0.1:9000
UserAgent: MinIO (Darwin 18.7.0 Darwin Kernel Version 18.7.0: Thu Jun 20 18:42:21 PDT 2019; root:xnu-4903.270.47~4/RELEASE_X86_64;X64) minio-dotnet/1.0.9
Error: Bad sha256: Expected e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 does not match calculated 21a2331ffea5b7711cd8a996461c34140a170b981d282a9e1ae9c5d38f672e50
4: cmd/auth-handler.go:320:cmd.checkRequestAuthTypeToAccessKey()
3: cmd/auth-handler.go:273:cmd.checkRequestAuthType()
2: cmd/bucket-handlers.go:540:cmd.objectAPIHandlers.PutBucketHandler()
1: net/http/server.go:2042:http.HandlerFunc.ServeHTTP()
```
And if I use admin tracing, I find this:
```
minio.cloud.algoryx.se [REQUEST s3.PutBucket] 14:44:51.385
minio.cloud.algoryx.se PUT /xyz
minio.cloud.algoryx.se Proto:
minio.cloud.algoryx.se Host: minio.cloud.algoryx.se:443
minio.cloud.algoryx.se Authorization: AWS4-HMAC-SHA256 Credential=xxx, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=xxx
minio.cloud.algoryx.se Content-Type: application/xml
minio.cloud.algoryx.se User-Agent: MinIO (Darwin 18.7.0 Darwin Kernel Version 18.7.0: Thu Jun 20 18:42:21 PDT 2019; root:xnu-4903.270.47~4/RELEASE_X86_64;X64) minio-dotnet/1.0.9
minio.cloud.algoryx.se X-Forwarded-Proto: https
minio.cloud.algoryx.se X-Real-Ip: 10.255.0.2
minio.cloud.algoryx.se Content-Length: 211
minio.cloud.algoryx.se X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
minio.cloud.algoryx.se X-Amz-Date: 20200929T144450Z
minio.cloud.algoryx.se X-Forwarded-For: 10.255.0.2
minio.cloud.algoryx.se X-Forwarded-Port: 443
minio.cloud.algoryx.se Accept: application/json, text/json, text/x-json, text/javascript, application/xml, text/xml
minio.cloud.algoryx.se Accept-Encoding: gzip, deflate
minio.cloud.algoryx.se Request-Id: |72590bfd-44bab348368790e7.1.
minio.cloud.algoryx.se X-Forwarded-Host: minio.cloud.algoryx.se:443
minio.cloud.algoryx.se X-Forwarded-Server: d655ef62def1
minio.cloud.algoryx.se <?xml version="1.0" encoding="utf-8"?>
<q1:CreateBucketConfiguration xmlns:q1="http://s3.amazonaws.com/doc/2006-03-01/">
<q1:LocationConstraint>eu-west-1</q1:LocationConstraint>
</q1:CreateBucketConfiguration>
minio.cloud.algoryx.se [RESPONSE] [14:44:51.385] [ Duration 349Β΅s β 432 B β 592 B ]
minio.cloud.algoryx.se 400 Bad Request
minio.cloud.algoryx.se Content-Security-Policy: block-all-mixed-content
minio.cloud.algoryx.se Content-Type: application/xml
minio.cloud.algoryx.se Server: MinIO/RELEASE.2020-06-22T03-12-50Z
minio.cloud.algoryx.se Vary: Origin
minio.cloud.algoryx.se X-Amz-Request-Id: 163948596A994443
minio.cloud.algoryx.se X-Xss-Protection: 1; mode=block
minio.cloud.algoryx.se Accept-Ranges: bytes
minio.cloud.algoryx.se Content-Length: 333
minio.cloud.algoryx.se <?xml version="1.0" encoding="UTF-8"?>
<Error><Code>MalformedXML</Code><Message>The XML you provided was not well-formed or did not validate against our published schema.</Message><BucketName>xyz</BucketName><Resource>/xyz</Resource><RequestId>163948596A994443</RequestId><HostId>b85b8107-7224-464a-b477-f22bd6680c7a</HostId></Error>
minio.cloud.algoryx.se
```
If I compare this to my working python client:
```
minio.cloud.algoryx.se [REQUEST s3.PutBucket] 14:45:42.532
minio.cloud.algoryx.se PUT /e21dbb95-7a38-480a-9a58-dadc61e17db1/
minio.cloud.algoryx.se Proto:
minio.cloud.algoryx.se Host: minio.cloud.algoryx.se
minio.cloud.algoryx.se X-Amz-Date: 20200929T144542Z
minio.cloud.algoryx.se X-Forwarded-For: 10.255.0.2
minio.cloud.algoryx.se X-Real-Ip: 10.255.0.2
minio.cloud.algoryx.se X-Amz-Content-Sha256: UNSIGNED-PAYLOAD
minio.cloud.algoryx.se Content-Length: 153
minio.cloud.algoryx.se X-Forwarded-Proto: https
minio.cloud.algoryx.se X-Forwarded-Server: d655ef62def1
minio.cloud.algoryx.se Accept-Encoding: identity
minio.cloud.algoryx.se X-Forwarded-Port: 443
minio.cloud.algoryx.se Content-Md5: RRbNtostJSb8PTpMdgsvng==
minio.cloud.algoryx.se User-Agent: MinIO (Darwin; x86_64) minio-py/5.0.8
minio.cloud.algoryx.se X-Forwarded-Host: minio.cloud.algoryx.se
minio.cloud.algoryx.se Authorization: AWS4-HMAC-SHA256 Credential=xxx, SignedHeaders=content-length;content-md5;host;user-agent;x-amz-content-sha256;x-amz-date, Signature=xxx
minio.cloud.algoryx.se <CreateBucketConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><LocationConstraint>eu-west-1</LocationConstraint></CreateBucketConfiguration>
minio.cloud.algoryx.se [RESPONSE] [14:45:42.532] [ Duration 947Β΅s β 355 B β 266 B ]
minio.cloud.algoryx.se 200 OK
minio.cloud.algoryx.se Content-Security-Policy: block-all-mixed-content
minio.cloud.algoryx.se Location: /e21dbb95-7a38-480a-9a58-dadc61e17db1
minio.cloud.algoryx.se Server: MinIO/RELEASE.2020-06-22T03-12-50Z
minio.cloud.algoryx.se Vary: Origin
minio.cloud.algoryx.se X-Amz-Request-Id: 1639486553292357
minio.cloud.algoryx.se X-Xss-Protection: 1; mode=block
minio.cloud.algoryx.se Accept-Ranges: bytes
minio.cloud.algoryx.se Content-Length: 0
``` | 1.0 | MakeBucketAsync does not work with region parameter - I am unable to create a bucket using the .NET client SDK. I get an exception with
```
MinIO API responded with message=The XML you provided was not well-formed or did not validate against our published schema
```
All my code does is
```cs
_mc = new MinioClient(endpoint, config.AccessKeyId, config.SecretAccessKey);
if (uri.Scheme == "https") {
_mc = _mc.WithSSL();
}
_mc.MakeBucketAsync("xyz", _config.Region).Wait();
```
If I run a local minio server I get the following:
```cs
$ minio server minio-lol
...
API: PutBucket(bucket=xyz)
Time: 16:27:01 CEST 09/29/2020
DeploymentID: 4c442570-afbb-4ca2-a840-eb537e128865
RequestID: 1639476057D9FF78
RemoteHost: 127.0.0.1
Host: 127.0.0.1:9000
UserAgent: MinIO (Darwin 18.7.0 Darwin Kernel Version 18.7.0: Thu Jun 20 18:42:21 PDT 2019; root:xnu-4903.270.47~4/RELEASE_X86_64;X64) minio-dotnet/1.0.9
Error: Bad sha256: Expected e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 does not match calculated 21a2331ffea5b7711cd8a996461c34140a170b981d282a9e1ae9c5d38f672e50
4: cmd/auth-handler.go:320:cmd.checkRequestAuthTypeToAccessKey()
3: cmd/auth-handler.go:273:cmd.checkRequestAuthType()
2: cmd/bucket-handlers.go:540:cmd.objectAPIHandlers.PutBucketHandler()
1: net/http/server.go:2042:http.HandlerFunc.ServeHTTP()
```
And if I use admin tracing, I find this:
```
minio.cloud.algoryx.se [REQUEST s3.PutBucket] 14:44:51.385
minio.cloud.algoryx.se PUT /xyz
minio.cloud.algoryx.se Proto:
minio.cloud.algoryx.se Host: minio.cloud.algoryx.se:443
minio.cloud.algoryx.se Authorization: AWS4-HMAC-SHA256 Credential=xxx, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=xxx
minio.cloud.algoryx.se Content-Type: application/xml
minio.cloud.algoryx.se User-Agent: MinIO (Darwin 18.7.0 Darwin Kernel Version 18.7.0: Thu Jun 20 18:42:21 PDT 2019; root:xnu-4903.270.47~4/RELEASE_X86_64;X64) minio-dotnet/1.0.9
minio.cloud.algoryx.se X-Forwarded-Proto: https
minio.cloud.algoryx.se X-Real-Ip: 10.255.0.2
minio.cloud.algoryx.se Content-Length: 211
minio.cloud.algoryx.se X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
minio.cloud.algoryx.se X-Amz-Date: 20200929T144450Z
minio.cloud.algoryx.se X-Forwarded-For: 10.255.0.2
minio.cloud.algoryx.se X-Forwarded-Port: 443
minio.cloud.algoryx.se Accept: application/json, text/json, text/x-json, text/javascript, application/xml, text/xml
minio.cloud.algoryx.se Accept-Encoding: gzip, deflate
minio.cloud.algoryx.se Request-Id: |72590bfd-44bab348368790e7.1.
minio.cloud.algoryx.se X-Forwarded-Host: minio.cloud.algoryx.se:443
minio.cloud.algoryx.se X-Forwarded-Server: d655ef62def1
minio.cloud.algoryx.se <?xml version="1.0" encoding="utf-8"?>
<q1:CreateBucketConfiguration xmlns:q1="http://s3.amazonaws.com/doc/2006-03-01/">
<q1:LocationConstraint>eu-west-1</q1:LocationConstraint>
</q1:CreateBucketConfiguration>
minio.cloud.algoryx.se [RESPONSE] [14:44:51.385] [ Duration 349Β΅s β 432 B β 592 B ]
minio.cloud.algoryx.se 400 Bad Request
minio.cloud.algoryx.se Content-Security-Policy: block-all-mixed-content
minio.cloud.algoryx.se Content-Type: application/xml
minio.cloud.algoryx.se Server: MinIO/RELEASE.2020-06-22T03-12-50Z
minio.cloud.algoryx.se Vary: Origin
minio.cloud.algoryx.se X-Amz-Request-Id: 163948596A994443
minio.cloud.algoryx.se X-Xss-Protection: 1; mode=block
minio.cloud.algoryx.se Accept-Ranges: bytes
minio.cloud.algoryx.se Content-Length: 333
minio.cloud.algoryx.se <?xml version="1.0" encoding="UTF-8"?>
<Error><Code>MalformedXML</Code><Message>The XML you provided was not well-formed or did not validate against our published schema.</Message><BucketName>xyz</BucketName><Resource>/xyz</Resource><RequestId>163948596A994443</RequestId><HostId>b85b8107-7224-464a-b477-f22bd6680c7a</HostId></Error>
minio.cloud.algoryx.se
```
If I compare this to my working python client:
```
minio.cloud.algoryx.se [REQUEST s3.PutBucket] 14:45:42.532
minio.cloud.algoryx.se PUT /e21dbb95-7a38-480a-9a58-dadc61e17db1/
minio.cloud.algoryx.se Proto:
minio.cloud.algoryx.se Host: minio.cloud.algoryx.se
minio.cloud.algoryx.se X-Amz-Date: 20200929T144542Z
minio.cloud.algoryx.se X-Forwarded-For: 10.255.0.2
minio.cloud.algoryx.se X-Real-Ip: 10.255.0.2
minio.cloud.algoryx.se X-Amz-Content-Sha256: UNSIGNED-PAYLOAD
minio.cloud.algoryx.se Content-Length: 153
minio.cloud.algoryx.se X-Forwarded-Proto: https
minio.cloud.algoryx.se X-Forwarded-Server: d655ef62def1
minio.cloud.algoryx.se Accept-Encoding: identity
minio.cloud.algoryx.se X-Forwarded-Port: 443
minio.cloud.algoryx.se Content-Md5: RRbNtostJSb8PTpMdgsvng==
minio.cloud.algoryx.se User-Agent: MinIO (Darwin; x86_64) minio-py/5.0.8
minio.cloud.algoryx.se X-Forwarded-Host: minio.cloud.algoryx.se
minio.cloud.algoryx.se Authorization: AWS4-HMAC-SHA256 Credential=xxx, SignedHeaders=content-length;content-md5;host;user-agent;x-amz-content-sha256;x-amz-date, Signature=xxx
minio.cloud.algoryx.se <CreateBucketConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><LocationConstraint>eu-west-1</LocationConstraint></CreateBucketConfiguration>
minio.cloud.algoryx.se [RESPONSE] [14:45:42.532] [ Duration 947Β΅s β 355 B β 266 B ]
minio.cloud.algoryx.se 200 OK
minio.cloud.algoryx.se Content-Security-Policy: block-all-mixed-content
minio.cloud.algoryx.se Location: /e21dbb95-7a38-480a-9a58-dadc61e17db1
minio.cloud.algoryx.se Server: MinIO/RELEASE.2020-06-22T03-12-50Z
minio.cloud.algoryx.se Vary: Origin
minio.cloud.algoryx.se X-Amz-Request-Id: 1639486553292357
minio.cloud.algoryx.se X-Xss-Protection: 1; mode=block
minio.cloud.algoryx.se Accept-Ranges: bytes
minio.cloud.algoryx.se Content-Length: 0
``` | non_usab | makebucketasync does not work with region parameter i am unable to create a bucket using the net client sdk i get an exception with minio api responded with message the xml you provided was not well formed or did not validate against our published schema all my code does is cs mc new minioclient endpoint config accesskeyid config secretaccesskey if uri scheme https mc mc withssl mc makebucketasync xyz config region wait if i run a local minio server i get the following cs minio server minio lol api putbucket bucket xyz time cest deploymentid afbb requestid remotehost host useragent minio darwin darwin kernel version thu jun pdt root xnu release minio dotnet error bad expected does not match calculated cmd auth handler go cmd checkrequestauthtypetoaccesskey cmd auth handler go cmd checkrequestauthtype cmd bucket handlers go cmd objectapihandlers putbuckethandler net http server go http handlerfunc servehttp and if i use admin tracing i find this minio cloud algoryx se minio cloud algoryx se put xyz minio cloud algoryx se proto minio cloud algoryx se host minio cloud algoryx se minio cloud algoryx se authorization hmac credential xxx signedheaders host x amz content x amz date signature xxx minio cloud algoryx se content type application xml minio cloud algoryx se user agent minio darwin darwin kernel version thu jun pdt root xnu release minio dotnet minio cloud algoryx se x forwarded proto https minio cloud algoryx se x real ip minio cloud algoryx se content length minio cloud algoryx se x amz content minio cloud algoryx se x amz date minio cloud algoryx se x forwarded for minio cloud algoryx se x forwarded port minio cloud algoryx se accept application json text json text x json text javascript application xml text xml minio cloud algoryx se accept encoding gzip deflate minio cloud algoryx se request id minio cloud algoryx se x forwarded host minio cloud algoryx se minio cloud algoryx se x forwarded server minio cloud algoryx se createbucketconfiguration xmlns eu west minio cloud algoryx se minio cloud algoryx se bad request minio cloud algoryx se content security policy block all mixed content minio cloud algoryx se content type application xml minio cloud algoryx se server minio release minio cloud algoryx se vary origin minio cloud algoryx se x amz request id minio cloud algoryx se x xss protection mode block minio cloud algoryx se accept ranges bytes minio cloud algoryx se content length minio cloud algoryx se malformedxml the xml you provided was not well formed or did not validate against our published schema xyz xyz minio cloud algoryx se if i compare this to my working python client minio cloud algoryx se minio cloud algoryx se put minio cloud algoryx se proto minio cloud algoryx se host minio cloud algoryx se minio cloud algoryx se x amz date minio cloud algoryx se x forwarded for minio cloud algoryx se x real ip minio cloud algoryx se x amz content unsigned payload minio cloud algoryx se content length minio cloud algoryx se x forwarded proto https minio cloud algoryx se x forwarded server minio cloud algoryx se accept encoding identity minio cloud algoryx se x forwarded port minio cloud algoryx se content minio cloud algoryx se user agent minio darwin minio py minio cloud algoryx se x forwarded host minio cloud algoryx se minio cloud algoryx se authorization hmac credential xxx signedheaders content length content host user agent x amz content x amz date signature xxx minio cloud algoryx se createbucketconfiguration xmlns minio cloud algoryx se minio cloud algoryx se ok minio cloud algoryx se content security policy block all mixed content minio cloud algoryx se location minio cloud algoryx se server minio release minio cloud algoryx se vary origin minio cloud algoryx se x amz request id minio cloud algoryx se x xss protection mode block minio cloud algoryx se accept ranges bytes minio cloud algoryx se content length | 0 |
4,884 | 3,897,418,389 | IssuesEvent | 2016-04-16 12:02:05 | lionheart/openradar-mirror | https://api.github.com/repos/lionheart/openradar-mirror | opened | 15611486: Xcode SCM Operations (mostly Push) Blocks the UI | classification:ui/usability reproducible:always status:open | #### Description
If the amount of things you have to push is big that's a terrible blocker. The "Commit 22 Files ans Push" button becomes grayed out and all you can do is sit there and watch, instead of being able to further code and be informed later when the push is done.
-
Product Version: 5.0.2
Created: 2013-12-07T18:19:40.523587
Originated: 2013-12-07T00:00:00
Open Radar Link: http://www.openradar.me/15611486 | True | 15611486: Xcode SCM Operations (mostly Push) Blocks the UI - #### Description
If the amount of things you have to push is big that's a terrible blocker. The "Commit 22 Files ans Push" button becomes grayed out and all you can do is sit there and watch, instead of being able to further code and be informed later when the push is done.
-
Product Version: 5.0.2
Created: 2013-12-07T18:19:40.523587
Originated: 2013-12-07T00:00:00
Open Radar Link: http://www.openradar.me/15611486 | usab | xcode scm operations mostly push blocks the ui description if the amount of things you have to push is big that s a terrible blocker the commit files ans push button becomes grayed out and all you can do is sit there and watch instead of being able to further code and be informed later when the push is done product version created originated open radar link | 1 |
6,921 | 4,662,148,145 | IssuesEvent | 2016-10-05 01:50:00 | coreos/bugs | https://api.github.com/repos/coreos/bugs | closed | Pre-golang 1.6 docker cannot talk to docker daemon | area/usability component/docker kind/bug team/os version/docker/1.11.2 | # Issue Report #
## Bug ##
Pre-golang 1.6 docker should be able to talk with docker daemon.
It seems that the latest beta (1153.4.0) docker is built with the go 1.6. Previous betas were built with 1.5 and they seems to work just fine.
https://github.com/docker/docker/issues/20865
### CoreOS Version ###
1153.4.0
### Expected Behavior ###
Pre-golang 1.6 docker should be able to talk with docker daemon
### Actual Behavior ###
Docker daemon responds:
```
Error response from daemon: 400 Bad Request: malformed Host header
```
| True | Pre-golang 1.6 docker cannot talk to docker daemon - # Issue Report #
## Bug ##
Pre-golang 1.6 docker should be able to talk with docker daemon.
It seems that the latest beta (1153.4.0) docker is built with the go 1.6. Previous betas were built with 1.5 and they seems to work just fine.
https://github.com/docker/docker/issues/20865
### CoreOS Version ###
1153.4.0
### Expected Behavior ###
Pre-golang 1.6 docker should be able to talk with docker daemon
### Actual Behavior ###
Docker daemon responds:
```
Error response from daemon: 400 Bad Request: malformed Host header
```
| usab | pre golang docker cannot talk to docker daemon issue report bug pre golang docker should be able to talk with docker daemon it seems that the latest beta docker is built with the go previous betas were built with and they seems to work just fine coreos version expected behavior pre golang docker should be able to talk with docker daemon actual behavior docker daemon responds error response from daemon bad request malformed host header | 1 |
600,224 | 18,291,859,510 | IssuesEvent | 2021-10-05 16:02:48 | episphere/connect | https://api.github.com/repos/episphere/connect | closed | Shpg - Dshbrd - Remove "report as Missing" button | modifications Shipping Dashboard Priority 1 Dev Ops Feedback Backend | On the Shipping Packaging screen, under the Location Unknown section, remove the "Report as Missing" button. Instead, all tubes on this list should be automatically removed after 36 hours of being placed on the list. Then we will need to have a missing tubes report for all the stray tubes that have been automatically removed after 36 hours.
[Shipping Packaging Remove report as missing.docx](https://github.com/episphere/connect/files/6339032/Shipping.Packaging.Remove.report.as.missing.docx)
tubes. | 1.0 | Shpg - Dshbrd - Remove "report as Missing" button - On the Shipping Packaging screen, under the Location Unknown section, remove the "Report as Missing" button. Instead, all tubes on this list should be automatically removed after 36 hours of being placed on the list. Then we will need to have a missing tubes report for all the stray tubes that have been automatically removed after 36 hours.
[Shipping Packaging Remove report as missing.docx](https://github.com/episphere/connect/files/6339032/Shipping.Packaging.Remove.report.as.missing.docx)
tubes. | non_usab | shpg dshbrd remove report as missing button on the shipping packaging screen under the location unknown section remove the report as missing button instead all tubes on this list should be automatically removed after hours of being placed on the list then we will need to have a missing tubes report for all the stray tubes that have been automatically removed after hours tubes | 0 |
19,140 | 25,202,654,599 | IssuesEvent | 2022-11-13 09:48:07 | ppy/osu-web | https://api.github.com/repos/ppy/osu-web | closed | Some beatmaps are missing the "Spotlight" label | area:beatmap-processing | Here are the beatmaps that have no "Spotlight" tag:
https://osu.ppy.sh/beatmapsets/1570536
https://osu.ppy.sh/beatmapsets/1373644
https://osu.ppy.sh/beatmapsets/1714190
https://osu.ppy.sh/beatmapsets/1774999
https://osu.ppy.sh/beatmapsets/1742131
https://osu.ppy.sh/beatmapsets/543917
https://osu.ppy.sh/beatmapsets/1593278
https://osu.ppy.sh/beatmapsets/1610294
https://osu.ppy.sh/beatmapsets/1611987
https://osu.ppy.sh/beatmapsets/1762719
https://osu.ppy.sh/beatmapsets/1453784
https://osu.ppy.sh/beatmapsets/1328323
https://osu.ppy.sh/beatmapsets/1646183
https://osu.ppy.sh/beatmapsets/1769222
https://osu.ppy.sh/beatmapsets/1687320
https://osu.ppy.sh/beatmapsets/1507426
https://osu.ppy.sh/beatmapsets/1678112
https://osu.ppy.sh/beatmapsets/978534
https://osu.ppy.sh/beatmapsets/1734128
https://osu.ppy.sh/beatmapsets/1774562
https://osu.ppy.sh/beatmapsets/1031588
https://osu.ppy.sh/beatmapsets/933984
https://osu.ppy.sh/beatmapsets/1592786
https://osu.ppy.sh/beatmapsets/1525823
https://osu.ppy.sh/beatmapsets/74274
https://osu.ppy.sh/beatmapsets/1734804
https://osu.ppy.sh/beatmapsets/506110
https://osu.ppy.sh/beatmapsets/1683802
https://osu.ppy.sh/beatmapsets/1435937
https://osu.ppy.sh/beatmapsets/1741009
https://osu.ppy.sh/beatmapsets/365716
https://osu.ppy.sh/beatmapsets/1683972
https://osu.ppy.sh/beatmapsets/1378488
https://osu.ppy.sh/beatmapsets/1326970
https://osu.ppy.sh/beatmapsets/1645306
I'm sorry if this is so many. These beatmaps appeared in the Summer 2022 Playlist C, but probably peppy forgot to add these. | 1.0 | Some beatmaps are missing the "Spotlight" label - Here are the beatmaps that have no "Spotlight" tag:
https://osu.ppy.sh/beatmapsets/1570536
https://osu.ppy.sh/beatmapsets/1373644
https://osu.ppy.sh/beatmapsets/1714190
https://osu.ppy.sh/beatmapsets/1774999
https://osu.ppy.sh/beatmapsets/1742131
https://osu.ppy.sh/beatmapsets/543917
https://osu.ppy.sh/beatmapsets/1593278
https://osu.ppy.sh/beatmapsets/1610294
https://osu.ppy.sh/beatmapsets/1611987
https://osu.ppy.sh/beatmapsets/1762719
https://osu.ppy.sh/beatmapsets/1453784
https://osu.ppy.sh/beatmapsets/1328323
https://osu.ppy.sh/beatmapsets/1646183
https://osu.ppy.sh/beatmapsets/1769222
https://osu.ppy.sh/beatmapsets/1687320
https://osu.ppy.sh/beatmapsets/1507426
https://osu.ppy.sh/beatmapsets/1678112
https://osu.ppy.sh/beatmapsets/978534
https://osu.ppy.sh/beatmapsets/1734128
https://osu.ppy.sh/beatmapsets/1774562
https://osu.ppy.sh/beatmapsets/1031588
https://osu.ppy.sh/beatmapsets/933984
https://osu.ppy.sh/beatmapsets/1592786
https://osu.ppy.sh/beatmapsets/1525823
https://osu.ppy.sh/beatmapsets/74274
https://osu.ppy.sh/beatmapsets/1734804
https://osu.ppy.sh/beatmapsets/506110
https://osu.ppy.sh/beatmapsets/1683802
https://osu.ppy.sh/beatmapsets/1435937
https://osu.ppy.sh/beatmapsets/1741009
https://osu.ppy.sh/beatmapsets/365716
https://osu.ppy.sh/beatmapsets/1683972
https://osu.ppy.sh/beatmapsets/1378488
https://osu.ppy.sh/beatmapsets/1326970
https://osu.ppy.sh/beatmapsets/1645306
I'm sorry if this is so many. These beatmaps appeared in the Summer 2022 Playlist C, but probably peppy forgot to add these. | non_usab | some beatmaps are missing the spotlight label here are the beatmaps that have no spotlight tag i m sorry if this is so many these beatmaps appeared in the summer playlist c but probably peppy forgot to add these | 0 |
23,414 | 21,797,085,413 | IssuesEvent | 2022-05-15 19:48:50 | lgarron/first-world | https://api.github.com/repos/lgarron/first-world | opened | Can't drop a song on a playlist | Type: Bug Reason: Usability Level: Medium Software: iTunes / Apple Music Workaround: Not Persistent Pet Peeve | If I drop a song file from Finder into a `Music.app` playlist on macOS, it will be added to the library.
However, despite a ride line showing "you're dropping this song at this spot int he playlist" (just like when dragging from inside `Music.app`)... it will *not* be added to the playlist. Just to the library. You have to go through the clunky "Recently added" UI to get the song and then drag it back.
If you're trying to add multiple songs that aren't grouped into the same album, you have to go through that clunk process for each individual song. (I use a custom smart playlist to work around this, similar to #69. But only if I think ahead of time how cranky `Music.app` is going to make me.)
This wasn't an issue for, like, a decade. I suspect Apple Music has something to do with it, but I can't be sure. All I know is I can't add songs to playlists without a long extra dance. | True | Can't drop a song on a playlist - If I drop a song file from Finder into a `Music.app` playlist on macOS, it will be added to the library.
However, despite a ride line showing "you're dropping this song at this spot int he playlist" (just like when dragging from inside `Music.app`)... it will *not* be added to the playlist. Just to the library. You have to go through the clunky "Recently added" UI to get the song and then drag it back.
If you're trying to add multiple songs that aren't grouped into the same album, you have to go through that clunk process for each individual song. (I use a custom smart playlist to work around this, similar to #69. But only if I think ahead of time how cranky `Music.app` is going to make me.)
This wasn't an issue for, like, a decade. I suspect Apple Music has something to do with it, but I can't be sure. All I know is I can't add songs to playlists without a long extra dance. | usab | can t drop a song on a playlist if i drop a song file from finder into a music app playlist on macos it will be added to the library however despite a ride line showing you re dropping this song at this spot int he playlist just like when dragging from inside music app it will not be added to the playlist just to the library you have to go through the clunky recently added ui to get the song and then drag it back if you re trying to add multiple songs that aren t grouped into the same album you have to go through that clunk process for each individual song i use a custom smart playlist to work around this similar to but only if i think ahead of time how cranky music app is going to make me this wasn t an issue for like a decade i suspect apple music has something to do with it but i can t be sure all i know is i can t add songs to playlists without a long extra dance | 1 |
26,526 | 26,910,480,405 | IssuesEvent | 2023-02-06 23:07:23 | ClickHouse/ClickHouse | https://api.github.com/repos/ClickHouse/ClickHouse | reopened | Output to local Parquet file returns an error that the file already exists | invalid usability comp-formats | Hello Clickhouse team,
Outputting to a local file in the parquet format does not currently work using the Clickhouse local CLI.
**How to reproduce**
Fiddle: https://fiddle.clickhouse.com/5c8eb9f4-249f-480e-9080-969bae59a002
Clickhouse version: 23.2.1.841
Client: Clickhouse Local CLI
OS: OSX M1 ARM
**Expected behavior**
I would expect the query below to output to a parquet file with success.
Instead, the query will crash and an empty (0 bytes sized) file will have been created.
Since this empty file exists, it would seem like multiple stages of the ClickHouse logic try to create the file.
This does not happen when writing to a different file format like CSV.
`SELECT 123 AS my_col INTO OUTFILE '/tmp/myfile.parquet' FORMAT PARQUET;`
**Error message and/or stacktrace**
```
Error on processing query: Code: 76. DB::Exception: Code: 76. DB::ErrnoException: Cannot open file /tmp/myfile.parquet, errno: 17, strerror: File exists. (CANNOT_OPEN_FILE) (version 23.1.3.5 (official build)). (CANNOT_OPEN_FILE) (version 23.1.3.5 (official build))
(query: SELECT 123 AS my_col INTO OUTFILE '/tmp/myfile.parquet' FORMAT PARQUET;)
```
| True | Output to local Parquet file returns an error that the file already exists - Hello Clickhouse team,
Outputting to a local file in the parquet format does not currently work using the Clickhouse local CLI.
**How to reproduce**
Fiddle: https://fiddle.clickhouse.com/5c8eb9f4-249f-480e-9080-969bae59a002
Clickhouse version: 23.2.1.841
Client: Clickhouse Local CLI
OS: OSX M1 ARM
**Expected behavior**
I would expect the query below to output to a parquet file with success.
Instead, the query will crash and an empty (0 bytes sized) file will have been created.
Since this empty file exists, it would seem like multiple stages of the ClickHouse logic try to create the file.
This does not happen when writing to a different file format like CSV.
`SELECT 123 AS my_col INTO OUTFILE '/tmp/myfile.parquet' FORMAT PARQUET;`
**Error message and/or stacktrace**
```
Error on processing query: Code: 76. DB::Exception: Code: 76. DB::ErrnoException: Cannot open file /tmp/myfile.parquet, errno: 17, strerror: File exists. (CANNOT_OPEN_FILE) (version 23.1.3.5 (official build)). (CANNOT_OPEN_FILE) (version 23.1.3.5 (official build))
(query: SELECT 123 AS my_col INTO OUTFILE '/tmp/myfile.parquet' FORMAT PARQUET;)
```
| usab | output to local parquet file returns an error that the file already exists hello clickhouse team outputting to a local file in the parquet format does not currently work using the clickhouse local cli how to reproduce fiddle clickhouse version client clickhouse local cli os osx arm expected behavior i would expect the query below to output to a parquet file with success instead the query will crash and an empty bytes sized file will have been created since this empty file exists it would seem like multiple stages of the clickhouse logic try to create the file this does not happen when writing to a different file format like csv select as my col into outfile tmp myfile parquet format parquet error message and or stacktrace error on processing query code db exception code db errnoexception cannot open file tmp myfile parquet errno strerror file exists cannot open file version official build cannot open file version official build query select as my col into outfile tmp myfile parquet format parquet | 1 |
10,088 | 6,557,535,185 | IssuesEvent | 2017-09-06 17:48:15 | USDepartmentofLabor/Ilab-do-good | https://api.github.com/repos/USDepartmentofLabor/Ilab-do-good | opened | Website - Accessibility - Not Able to Close Menu Bar with Keyboard | Website-accessibility Website-usability | A keyboard only or screen reader user is not able to use a keyboard to close the main menu after it opens up. Only way to do so is make a choice on the main menu and go to that page. | True | Website - Accessibility - Not Able to Close Menu Bar with Keyboard - A keyboard only or screen reader user is not able to use a keyboard to close the main menu after it opens up. Only way to do so is make a choice on the main menu and go to that page. | usab | website accessibility not able to close menu bar with keyboard a keyboard only or screen reader user is not able to use a keyboard to close the main menu after it opens up only way to do so is make a choice on the main menu and go to that page | 1 |
136,167 | 11,042,367,495 | IssuesEvent | 2019-12-09 09:00:53 | microsoft/azure-maven-plugins | https://api.github.com/repos/microsoft/azure-maven-plugins | closed | Can't trigger function app after deploying to the portal | Internal Test bug webapps | ### Plugin name and version
azure-functions-maven-plugin 1.3.5-SNAPSHOT
### Plugin configuration in your pom.xml
```
<plugin>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-functions-maven-plugin</artifactId>
<configuration>
<resourceGroup>${functionResourceGroup}</resourceGroup>
<appName>${functionAppName}</appName>
<region>${functionAppRegion}</region>
<pricingTier>xxx</pricingTier>
<deploymentType>RUN_FROM_ZIP</deploymentType>
<runtime>
<os>linux</os>
</runtime>
<appSettings>
<!-- Run Azure Function from package file by default -->
<property>
<name>FUNCTIONS_EXTENSION_VERSION</name>
<value>~3</value>
</property>
<property>
<name>AzureWebJobsStorage</name>
<value>xxxxx</value>
</property>
......
</appSettings>
</configuration>
<executions>
<execution>
<id>package-functions</id>
<goals>
<goal>package</goal>
</goals>
</execution>
</executions>
</plugin>
```
### Actual behavior
1. When triggering the function app after deploying to the portal, there no trigger info shows in logs.

2. Can triggering the function app after updating function app

| 1.0 | Can't trigger function app after deploying to the portal - ### Plugin name and version
azure-functions-maven-plugin 1.3.5-SNAPSHOT
### Plugin configuration in your pom.xml
```
<plugin>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-functions-maven-plugin</artifactId>
<configuration>
<resourceGroup>${functionResourceGroup}</resourceGroup>
<appName>${functionAppName}</appName>
<region>${functionAppRegion}</region>
<pricingTier>xxx</pricingTier>
<deploymentType>RUN_FROM_ZIP</deploymentType>
<runtime>
<os>linux</os>
</runtime>
<appSettings>
<!-- Run Azure Function from package file by default -->
<property>
<name>FUNCTIONS_EXTENSION_VERSION</name>
<value>~3</value>
</property>
<property>
<name>AzureWebJobsStorage</name>
<value>xxxxx</value>
</property>
......
</appSettings>
</configuration>
<executions>
<execution>
<id>package-functions</id>
<goals>
<goal>package</goal>
</goals>
</execution>
</executions>
</plugin>
```
### Actual behavior
1. When triggering the function app after deploying to the portal, there no trigger info shows in logs.

2. Can triggering the function app after updating function app

| non_usab | can t trigger function app after deploying to the portal plugin name and version azure functions maven plugin snapshot plugin configuration in your pom xml com microsoft azure azure functions maven plugin functionresourcegroup functionappname functionappregion xxx run from zip linux functions extension version azurewebjobsstorage xxxxx package functions package actual behavior when triggering the function app after deploying to the portal there no trigger info shows in logs can triggering the function app after updating function app | 0 |
24,257 | 23,542,502,101 | IssuesEvent | 2022-08-20 16:13:50 | the-tale/the-tale | https://api.github.com/repos/the-tale/the-tale | closed | Π£ΡΠΎΡΠ½ΠΈΡΡ ΠΎΠΏΠΈΡΠ°Π½ΠΈΠ΅ Β«Π±Π°Π½Π° Π½Π° ΠΎΠ±ΡΠ΅Π½ΠΈΡΒ» | comp_general type_improvement cont_usability cont_community est_simple good first issue | ΠΠ° ΡΡΡΠ°Π½ΠΈΡΠ΅ https://the-tale.org/guide/behavior-rules ΡΠΊΠ°Π·Π°Π½ΠΎ, ΠΏΡΠΎ Π·Π°ΠΏΡΠ΅Ρ ΠΎΠ±ΡΠ΅Π½ΠΈΡ Π½Π° ΡΠΎΡΡΠΌΠ΅, Ρ
ΠΎΡΡ Π²Π²ΠΎΠ΄ΠΈΡΡΡ ΠΏΠΎΠ»Π½ΡΠΉ Π·Π°ΠΏΡΠ΅Ρ Π»ΡΠ±ΠΎΠ³ΠΎ ΠΎΠ±ΡΠ΅Π½ΠΈΡ (ΠΈ ΠΊΠΎΡΠ²Π΅Π½Π½ΠΎΠ³ΠΎ, Π½Π°ΠΏΡΠΈΠΌΠ΅Ρ, ΡΠ΅ΡΠ΅Π· ΠΊΠ½ΠΈΠ³Ρ ΡΡΠ΄Π΅Π±).
ΠΠ°Π΄ΠΎ ΡΡΠΎΡΠ½ΠΈΡΡ.
ΠΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, Π½Π°Π΄ΠΎ Π²ΡΠ½Π΅ΡΡΠΈ ΡΡΡΠ»ΠΊΡ Π½Π° ΡΡΠΈ ΠΏΡΠ°Π²ΠΈΠ»Π° Π² Π³Π»Π°Π²Π½ΠΎΠ΅ ΠΌΠ΅Π½Ρ. | True | Π£ΡΠΎΡΠ½ΠΈΡΡ ΠΎΠΏΠΈΡΠ°Π½ΠΈΠ΅ Β«Π±Π°Π½Π° Π½Π° ΠΎΠ±ΡΠ΅Π½ΠΈΡΒ» - ΠΠ° ΡΡΡΠ°Π½ΠΈΡΠ΅ https://the-tale.org/guide/behavior-rules ΡΠΊΠ°Π·Π°Π½ΠΎ, ΠΏΡΠΎ Π·Π°ΠΏΡΠ΅Ρ ΠΎΠ±ΡΠ΅Π½ΠΈΡ Π½Π° ΡΠΎΡΡΠΌΠ΅, Ρ
ΠΎΡΡ Π²Π²ΠΎΠ΄ΠΈΡΡΡ ΠΏΠΎΠ»Π½ΡΠΉ Π·Π°ΠΏΡΠ΅Ρ Π»ΡΠ±ΠΎΠ³ΠΎ ΠΎΠ±ΡΠ΅Π½ΠΈΡ (ΠΈ ΠΊΠΎΡΠ²Π΅Π½Π½ΠΎΠ³ΠΎ, Π½Π°ΠΏΡΠΈΠΌΠ΅Ρ, ΡΠ΅ΡΠ΅Π· ΠΊΠ½ΠΈΠ³Ρ ΡΡΠ΄Π΅Π±).
ΠΠ°Π΄ΠΎ ΡΡΠΎΡΠ½ΠΈΡΡ.
ΠΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, Π½Π°Π΄ΠΎ Π²ΡΠ½Π΅ΡΡΠΈ ΡΡΡΠ»ΠΊΡ Π½Π° ΡΡΠΈ ΠΏΡΠ°Π²ΠΈΠ»Π° Π² Π³Π»Π°Π²Π½ΠΎΠ΅ ΠΌΠ΅Π½Ρ. | usab | ΡΡΠΎΡΠ½ΠΈΡΡ ΠΎΠΏΠΈΡΠ°Π½ΠΈΠ΅ Β«Π±Π°Π½Π° Π½Π° ΠΎΠ±ΡΠ΅Π½ΠΈΡΒ» Π½Π° ΡΡΡΠ°Π½ΠΈΡΠ΅ ΡΠΊΠ°Π·Π°Π½ΠΎ ΠΏΡΠΎ Π·Π°ΠΏΡΠ΅Ρ ΠΎΠ±ΡΠ΅Π½ΠΈΡ Π½Π° ΡΠΎΡΡΠΌΠ΅ Ρ
ΠΎΡΡ Π²Π²ΠΎΠ΄ΠΈΡΡΡ ΠΏΠΎΠ»Π½ΡΠΉ Π·Π°ΠΏΡΠ΅Ρ Π»ΡΠ±ΠΎΠ³ΠΎ ΠΎΠ±ΡΠ΅Π½ΠΈΡ ΠΈ ΠΊΠΎΡΠ²Π΅Π½Π½ΠΎΠ³ΠΎ Π½Π°ΠΏΡΠΈΠΌΠ΅Ρ ΡΠ΅ΡΠ΅Π· ΠΊΠ½ΠΈΠ³Ρ ΡΡΠ΄Π΅Π± Π½Π°Π΄ΠΎ ΡΡΠΎΡΠ½ΠΈΡΡ Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ Π½Π°Π΄ΠΎ Π²ΡΠ½Π΅ΡΡΠΈ ΡΡΡΠ»ΠΊΡ Π½Π° ΡΡΠΈ ΠΏΡΠ°Π²ΠΈΠ»Π° Π² Π³Π»Π°Π²Π½ΠΎΠ΅ ΠΌΠ΅Π½Ρ | 1 |
25,011 | 7,611,594,535 | IssuesEvent | 2018-05-01 14:31:50 | ORNL-CEES/DataTransferKit | https://api.github.com/repos/ORNL-CEES/DataTransferKit | closed | PGI 17.10 | Build Medium Priority Testing | PGI 17.10 was released yesterday. It is supported by Kokkos so we should make it work too. | 1.0 | PGI 17.10 - PGI 17.10 was released yesterday. It is supported by Kokkos so we should make it work too. | non_usab | pgi pgi was released yesterday it is supported by kokkos so we should make it work too | 0 |
13,930 | 8,738,413,855 | IssuesEvent | 2018-12-12 03:01:26 | OctopusDeploy/Issues | https://api.github.com/repos/OctopusDeploy/Issues | opened | Viewing project process throws error if user doesn't have LifecycleView | area/modelling area/usability kind/bug tag/regression | # Prerequisites
- [x] I have verified the problem exists in the latest version
- [x] I have searched [open](https://github.com/OctopusDeploy/Issues/issues) and [closed](https://github.com/OctopusDeploy/Issues/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed) issues to make sure it isn't already reported
- [x] I have written a descriptive issue title
- [x] I have linked the original source of this report
- [x] I have tagged the issue appropriately (area/*, kind/bug, tag/regression?)
# The bug
A user without `LifecycleView` receives an exception if they try and view the process page.

## What I expected to happen
The page should be viewable with an info box mentioning missing permissions for the lifecycle.

## Steps to reproduce
1. Create a role/team/user without `LifecycleView` permission
2. Login as that user
3. try and view a project process
-> exception
## Affected versions
**Octopus Server:** `2018.9.2` until fixed
## Workarounds
Grant the user `LifecycleView` permission
## Links
source: https://github.com/OctopusDeploy/OctopusDeploy/issues/3232
| True | Viewing project process throws error if user doesn't have LifecycleView - # Prerequisites
- [x] I have verified the problem exists in the latest version
- [x] I have searched [open](https://github.com/OctopusDeploy/Issues/issues) and [closed](https://github.com/OctopusDeploy/Issues/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed) issues to make sure it isn't already reported
- [x] I have written a descriptive issue title
- [x] I have linked the original source of this report
- [x] I have tagged the issue appropriately (area/*, kind/bug, tag/regression?)
# The bug
A user without `LifecycleView` receives an exception if they try and view the process page.

## What I expected to happen
The page should be viewable with an info box mentioning missing permissions for the lifecycle.

## Steps to reproduce
1. Create a role/team/user without `LifecycleView` permission
2. Login as that user
3. try and view a project process
-> exception
## Affected versions
**Octopus Server:** `2018.9.2` until fixed
## Workarounds
Grant the user `LifecycleView` permission
## Links
source: https://github.com/OctopusDeploy/OctopusDeploy/issues/3232
| usab | viewing project process throws error if user doesn t have lifecycleview prerequisites i have verified the problem exists in the latest version i have searched and issues to make sure it isn t already reported i have written a descriptive issue title i have linked the original source of this report i have tagged the issue appropriately area kind bug tag regression the bug a user without lifecycleview receives an exception if they try and view the process page what i expected to happen the page should be viewable with an info box mentioning missing permissions for the lifecycle steps to reproduce create a role team user without lifecycleview permission login as that user try and view a project process exception affected versions octopus server until fixed workarounds grant the user lifecycleview permission links source | 1 |
278,433 | 8,641,448,200 | IssuesEvent | 2018-11-24 17:51:54 | xsolve-pl/feater | https://api.github.com/repos/xsolve-pl/feater | closed | Add support for storing secrets | enhancement priority 2 | It is necessary to allow storing secrets on build definition level (in the future also build instance level). They could be made available to containers via volume or as environmental variables. They should not be available to view over API - they could only be updated or removed. | 1.0 | Add support for storing secrets - It is necessary to allow storing secrets on build definition level (in the future also build instance level). They could be made available to containers via volume or as environmental variables. They should not be available to view over API - they could only be updated or removed. | non_usab | add support for storing secrets it is necessary to allow storing secrets on build definition level in the future also build instance level they could be made available to containers via volume or as environmental variables they should not be available to view over api they could only be updated or removed | 0 |
18,709 | 13,168,400,791 | IssuesEvent | 2020-08-11 12:03:57 | topcoder-platform/qa-fun | https://api.github.com/repos/topcoder-platform/qa-fun | closed | [TCO20-REGIONAL][Web-Chrome] Button's color is confusing | UX/Usability | Repro Steps:
1. Go to https://www.coursera.org/
2. Scroll down to "Learner outcomes on Coursera" section
3. Notice how the 2 buttons differ from each other
4. Hover into the button "Try Coursera for Business"
5. Compare it to the other button "Join for Free".
Actual Result:
Buttons have almost identical look.
Expected Result:
There should be better way for each buttons to standout differently from each other. Like make both buttons colored white instead.
Device/Browser Name:
Asus (K401UB); 64-bit OS; x64-based processor / Chrome Version 84.0.4147.105 (Official Build) (64-bit)
OS Version:
Windows 10 Home Single Language

| True | [TCO20-REGIONAL][Web-Chrome] Button's color is confusing - Repro Steps:
1. Go to https://www.coursera.org/
2. Scroll down to "Learner outcomes on Coursera" section
3. Notice how the 2 buttons differ from each other
4. Hover into the button "Try Coursera for Business"
5. Compare it to the other button "Join for Free".
Actual Result:
Buttons have almost identical look.
Expected Result:
There should be better way for each buttons to standout differently from each other. Like make both buttons colored white instead.
Device/Browser Name:
Asus (K401UB); 64-bit OS; x64-based processor / Chrome Version 84.0.4147.105 (Official Build) (64-bit)
OS Version:
Windows 10 Home Single Language

| usab | button s color is confusing repro steps go to scroll down to learner outcomes on coursera section notice how the buttons differ from each other hover into the button try coursera for business compare it to the other button join for free actual result buttons have almost identical look expected result there should be better way for each buttons to standout differently from each other like make both buttons colored white instead device browser name asus bit os based processor chrome version official build bit os version windows home single language | 1 |
148,946 | 19,560,746,281 | IssuesEvent | 2022-01-03 15:53:58 | shaimael/Webgoat | https://api.github.com/repos/shaimael/Webgoat | opened | CVE-2016-10735 (Medium) detected in bootstrap-3.1.1.min.js | security vulnerability | ## CVE-2016-10735 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>bootstrap-3.1.1.min.js</b></p></summary>
<p>The most popular front-end framework for developing responsive, mobile first projects on the web.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.1.1/js/bootstrap.min.js">https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.1.1/js/bootstrap.min.js</a></p>
<p>Path to vulnerable library: /webgoat-lessons/challenge/src/main/resources/js/bootstrap.min.js,/webgoat-container/src/main/resources/static/js/libs/bootstrap.min.js</p>
<p>
Dependency Hierarchy:
- :x: **bootstrap-3.1.1.min.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/shaimael/Webgoat/commit/06d8d0b5bb8a459ba3d47f61a64fe00c62662d81">06d8d0b5bb8a459ba3d47f61a64fe00c62662d81</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In Bootstrap 3.x before 3.4.0 and 4.x-beta before 4.0.0-beta.2, XSS is possible in the data-target attribute, a different vulnerability than CVE-2018-14041.
<p>Publish Date: 2019-01-09
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2016-10735>CVE-2016-10735</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/twbs/bootstrap/issues/20184">https://github.com/twbs/bootstrap/issues/20184</a></p>
<p>Release Date: 2019-01-09</p>
<p>Fix Resolution: 3.4.0</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"JavaScript","packageName":"twitter-bootstrap","packageVersion":"3.1.1","packageFilePaths":[null],"isTransitiveDependency":false,"dependencyTree":"twitter-bootstrap:3.1.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"3.4.0","isBinary":false}],"baseBranches":["main"],"vulnerabilityIdentifier":"CVE-2016-10735","vulnerabilityDetails":"In Bootstrap 3.x before 3.4.0 and 4.x-beta before 4.0.0-beta.2, XSS is possible in the data-target attribute, a different vulnerability than CVE-2018-14041.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2016-10735","cvss3Severity":"medium","cvss3Score":"6.1","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Changed","C":"Low","UI":"Required","AV":"Network","I":"Low"},"extraData":{}}</REMEDIATE> --> | True | CVE-2016-10735 (Medium) detected in bootstrap-3.1.1.min.js - ## CVE-2016-10735 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>bootstrap-3.1.1.min.js</b></p></summary>
<p>The most popular front-end framework for developing responsive, mobile first projects on the web.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.1.1/js/bootstrap.min.js">https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.1.1/js/bootstrap.min.js</a></p>
<p>Path to vulnerable library: /webgoat-lessons/challenge/src/main/resources/js/bootstrap.min.js,/webgoat-container/src/main/resources/static/js/libs/bootstrap.min.js</p>
<p>
Dependency Hierarchy:
- :x: **bootstrap-3.1.1.min.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/shaimael/Webgoat/commit/06d8d0b5bb8a459ba3d47f61a64fe00c62662d81">06d8d0b5bb8a459ba3d47f61a64fe00c62662d81</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In Bootstrap 3.x before 3.4.0 and 4.x-beta before 4.0.0-beta.2, XSS is possible in the data-target attribute, a different vulnerability than CVE-2018-14041.
<p>Publish Date: 2019-01-09
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2016-10735>CVE-2016-10735</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/twbs/bootstrap/issues/20184">https://github.com/twbs/bootstrap/issues/20184</a></p>
<p>Release Date: 2019-01-09</p>
<p>Fix Resolution: 3.4.0</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"JavaScript","packageName":"twitter-bootstrap","packageVersion":"3.1.1","packageFilePaths":[null],"isTransitiveDependency":false,"dependencyTree":"twitter-bootstrap:3.1.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"3.4.0","isBinary":false}],"baseBranches":["main"],"vulnerabilityIdentifier":"CVE-2016-10735","vulnerabilityDetails":"In Bootstrap 3.x before 3.4.0 and 4.x-beta before 4.0.0-beta.2, XSS is possible in the data-target attribute, a different vulnerability than CVE-2018-14041.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2016-10735","cvss3Severity":"medium","cvss3Score":"6.1","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Changed","C":"Low","UI":"Required","AV":"Network","I":"Low"},"extraData":{}}</REMEDIATE> --> | non_usab | cve medium detected in bootstrap min js cve medium severity vulnerability vulnerable library bootstrap min js the most popular front end framework for developing responsive mobile first projects on the web library home page a href path to vulnerable library webgoat lessons challenge src main resources js bootstrap min js webgoat container src main resources static js libs bootstrap min js dependency hierarchy x bootstrap min js vulnerable library found in head commit a href found in base branch main vulnerability details in bootstrap x before and x beta before beta xss is possible in the data target attribute a different vulnerability than cve publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution isopenpronvulnerability true ispackagebased true isdefaultbranch true packages istransitivedependency false dependencytree twitter bootstrap isminimumfixversionavailable true minimumfixversion isbinary false basebranches vulnerabilityidentifier cve vulnerabilitydetails in bootstrap x before and x beta before beta xss is possible in the data target attribute a different vulnerability than cve vulnerabilityurl | 0 |
2,740 | 3,144,680,192 | IssuesEvent | 2015-09-14 14:33:44 | sandstorm-io/sandstorm | https://api.github.com/repos/sandstorm-io/sandstorm | closed | pentadactyl hints do not work on sandstorm UI. | html-css shell usability | [Pentadactyl](http://5digits.org/pentadactyl) uses hinting to allow for keyboard-based navigation of webpages.
On a local sandstorm page, only some of the elements are hinted:

This system works on the vast majority of other sites, even elaborate webapps like gmail,

so while it is possible this is a bug in pentadactyl, it seems more likely that the clickable menu items are not the right kind of thing (which may yield accessibility etc issues down the line). | True | pentadactyl hints do not work on sandstorm UI. - [Pentadactyl](http://5digits.org/pentadactyl) uses hinting to allow for keyboard-based navigation of webpages.
On a local sandstorm page, only some of the elements are hinted:

This system works on the vast majority of other sites, even elaborate webapps like gmail,

so while it is possible this is a bug in pentadactyl, it seems more likely that the clickable menu items are not the right kind of thing (which may yield accessibility etc issues down the line). | usab | pentadactyl hints do not work on sandstorm ui uses hinting to allow for keyboard based navigation of webpages on a local sandstorm page only some of the elements are hinted this system works on the vast majority of other sites even elaborate webapps like gmail so while it is possible this is a bug in pentadactyl it seems more likely that the clickable menu items are not the right kind of thing which may yield accessibility etc issues down the line | 1 |
6,221 | 4,186,265,981 | IssuesEvent | 2016-06-23 14:01:55 | lionheart/openradar-mirror | https://api.github.com/repos/lionheart/openradar-mirror | opened | 26841516: iOS 10 Control Center Corners Lose Transparency When Reduce Transparency is Turned On and Back Off | classification:ui/usability reproducible:always status:open | #### Description
Area:
Control Center
Summary:
When the Reduce Transparency option is enabled and then disabled, the corners of the Control Center lose transparency and become semi-opaque.
Steps to Reproduce:
0. Open the Music app; select a song and then go to the Now Playing screen.
1. Open Settings
2. Tap General
3. Tap Accessibility
4. Tap Increase Contrast
5. Tap Reduce Transparency
6. Return to the Music app
7. Swipe up Control Center
Expected Results:
The Control Center shouldn't have semi-opaque corners when enabling and disabling the Reduce Transparency option.
Actual Results:
The Control Center has semi-opaque corners when enabling and disabling the Reduce Transparency option.
Version:
iOS 10 Beta (14A5261v)
Notes:
NONE
Configuration:
iPhone 5s 16GB Verizon
Attachments:
2
-
Product Version: 10 Beta (14A5261v)
Created: 2016-06-16T17:57:47.388460
Originated: 2016-06-16T00:00:00
Open Radar Link: http://www.openradar.me/26841516 | True | 26841516: iOS 10 Control Center Corners Lose Transparency When Reduce Transparency is Turned On and Back Off - #### Description
Area:
Control Center
Summary:
When the Reduce Transparency option is enabled and then disabled, the corners of the Control Center lose transparency and become semi-opaque.
Steps to Reproduce:
0. Open the Music app; select a song and then go to the Now Playing screen.
1. Open Settings
2. Tap General
3. Tap Accessibility
4. Tap Increase Contrast
5. Tap Reduce Transparency
6. Return to the Music app
7. Swipe up Control Center
Expected Results:
The Control Center shouldn't have semi-opaque corners when enabling and disabling the Reduce Transparency option.
Actual Results:
The Control Center has semi-opaque corners when enabling and disabling the Reduce Transparency option.
Version:
iOS 10 Beta (14A5261v)
Notes:
NONE
Configuration:
iPhone 5s 16GB Verizon
Attachments:
2
-
Product Version: 10 Beta (14A5261v)
Created: 2016-06-16T17:57:47.388460
Originated: 2016-06-16T00:00:00
Open Radar Link: http://www.openradar.me/26841516 | usab | ios control center corners lose transparency when reduce transparency is turned on and back off description area control center summary when the reduce transparency option is enabled and then disabled the corners of the control center lose transparency and become semi opaque steps to reproduce open the music app select a song and then go to the now playing screen open settings tap general tap accessibility tap increase contrast tap reduce transparency return to the music app swipe up control center expected results the control center shouldn t have semi opaque corners when enabling and disabling the reduce transparency option actual results the control center has semi opaque corners when enabling and disabling the reduce transparency option version ios beta notes none configuration iphone verizon attachments product version beta created originated open radar link | 1 |
16,749 | 11,278,233,516 | IssuesEvent | 2020-01-15 06:03:14 | SanderMertens/flecs | https://api.github.com/repos/SanderMertens/flecs | closed | Allow for empty signatures in C and C++ API | c++ enhancement usability | **Describe the problem you are trying to solve.**
Currently the API throws an error if an application attempts to create a query or system with an empty string or nullptr as signature.
**Describe the solution you'd like**
An empty string or nullptr should be equivalent to `"0"`. This allows for more concise and intuitive code.
| True | Allow for empty signatures in C and C++ API - **Describe the problem you are trying to solve.**
Currently the API throws an error if an application attempts to create a query or system with an empty string or nullptr as signature.
**Describe the solution you'd like**
An empty string or nullptr should be equivalent to `"0"`. This allows for more concise and intuitive code.
| usab | allow for empty signatures in c and c api describe the problem you are trying to solve currently the api throws an error if an application attempts to create a query or system with an empty string or nullptr as signature describe the solution you d like an empty string or nullptr should be equivalent to this allows for more concise and intuitive code | 1 |
226,121 | 17,950,483,054 | IssuesEvent | 2021-09-12 16:25:49 | godotengine/godot | https://api.github.com/repos/godotengine/godot | closed | Godot 3.4 beta 4 Mono crashes on loading a project with C# scripts | bug platform:linuxbsd topic:editor needs testing topic:mono | ### Godot version
3.4.beta.4
### System information
Manjaro Linux 21.1.0, Ryzen 7 3700X, 16GB RAM, RTX 2070 Super
### Issue description
I've had this issue on multiple non-Windows OSes now, I don't know if it also happens on Windows. When I load a C# project in Godot 3.4 beta 4 or 3.3.3, the editor window disappears, but the executable appears to still run after the window disappears. I started the project on SolusOS, and occasionally the editor would close when running the project, but other than that it was fine. When I switched to Manjaro, however, it now crashes whenever I load the project. I don't think the switch caused it, I think I might be missing a Mono dependency or there might be a bug (which I think is unlikely but it could be).
### Steps to reproduce
1. Be on Linux
2. Load Godot 3.4 beta 4 Mono or 3.3.3 Mono
3. Load or create a C# project
Additionally, here is the Mono crash file from my most recent attempt at loading.
[2021-08-25_16.17.05_5258.log](https://github.com/godotengine/godot/files/7049756/2021-08-25_16.17.05_5258.log)
### Minimal reproduction project
_No response_ | 1.0 | Godot 3.4 beta 4 Mono crashes on loading a project with C# scripts - ### Godot version
3.4.beta.4
### System information
Manjaro Linux 21.1.0, Ryzen 7 3700X, 16GB RAM, RTX 2070 Super
### Issue description
I've had this issue on multiple non-Windows OSes now, I don't know if it also happens on Windows. When I load a C# project in Godot 3.4 beta 4 or 3.3.3, the editor window disappears, but the executable appears to still run after the window disappears. I started the project on SolusOS, and occasionally the editor would close when running the project, but other than that it was fine. When I switched to Manjaro, however, it now crashes whenever I load the project. I don't think the switch caused it, I think I might be missing a Mono dependency or there might be a bug (which I think is unlikely but it could be).
### Steps to reproduce
1. Be on Linux
2. Load Godot 3.4 beta 4 Mono or 3.3.3 Mono
3. Load or create a C# project
Additionally, here is the Mono crash file from my most recent attempt at loading.
[2021-08-25_16.17.05_5258.log](https://github.com/godotengine/godot/files/7049756/2021-08-25_16.17.05_5258.log)
### Minimal reproduction project
_No response_ | non_usab | godot beta mono crashes on loading a project with c scripts godot version beta system information manjaro linux ryzen ram rtx super issue description i ve had this issue on multiple non windows oses now i don t know if it also happens on windows when i load a c project in godot beta or the editor window disappears but the executable appears to still run after the window disappears i started the project on solusos and occasionally the editor would close when running the project but other than that it was fine when i switched to manjaro however it now crashes whenever i load the project i don t think the switch caused it i think i might be missing a mono dependency or there might be a bug which i think is unlikely but it could be steps to reproduce be on linux load godot beta mono or mono load or create a c project additionally here is the mono crash file from my most recent attempt at loading minimal reproduction project no response | 0 |
217,888 | 16,891,490,120 | IssuesEvent | 2021-06-23 09:46:58 | hakehuang/zephyr | https://api.github.com/repos/hakehuang/zephyr | opened |
tests-ci :kernel.common.nano64.bitfield : zephyr-v2.6.0-286-g46029914a7ac: mimxrt1015_evk: test Flash error
| area: Tests bug |
**Describe the bug**
kernel.common.nano64.bitfield test is Flash error on zephyr-v2.6.0-286-g46029914a7ac on mimxrt1015_evk
see logs for details
**To Reproduce**
1.
```
scripts/twister --device-testing --device-serial /dev/ttyACM0 -p mimxrt1015_evk --testcase-root tests --sub-test kernel.common
```
2. See error
**Expected behavior**
test pass
**Impact**
**Logs and console output**
```
None
```
**Environment (please complete the following information):**
- OS: (e.g. Linux )
- Toolchain (e.g Zephyr SDK)
- Commit SHA or Version used: zephyr-v2.6.0-286-g46029914a7ac
| 1.0 |
tests-ci :kernel.common.nano64.bitfield : zephyr-v2.6.0-286-g46029914a7ac: mimxrt1015_evk: test Flash error
-
**Describe the bug**
kernel.common.nano64.bitfield test is Flash error on zephyr-v2.6.0-286-g46029914a7ac on mimxrt1015_evk
see logs for details
**To Reproduce**
1.
```
scripts/twister --device-testing --device-serial /dev/ttyACM0 -p mimxrt1015_evk --testcase-root tests --sub-test kernel.common
```
2. See error
**Expected behavior**
test pass
**Impact**
**Logs and console output**
```
None
```
**Environment (please complete the following information):**
- OS: (e.g. Linux )
- Toolchain (e.g Zephyr SDK)
- Commit SHA or Version used: zephyr-v2.6.0-286-g46029914a7ac
| non_usab | tests ci kernel common bitfield zephyr evk test flash error describe the bug kernel common bitfield test is flash error on zephyr on evk see logs for details to reproduce scripts twister device testing device serial dev p evk testcase root tests sub test kernel common see error expected behavior test pass impact logs and console output none environment please complete the following information os e g linux toolchain e g zephyr sdk commit sha or version used zephyr | 0 |
33,557 | 6,219,212,356 | IssuesEvent | 2017-07-09 11:24:23 | derhansen/sf_event_mgt | https://api.github.com/repos/derhansen/sf_event_mgt | closed | [FEATURE] Add support for recurring events | documentation | It would be very nice, if this extension gets support for recurring sometime. The user should be able to choose the interval of the recurrence (day, week, month, year). The event should occur with the calculated date until a given end date is reached. Additionally there should be the possibility to add exception dates where the event won't takes place.
| 1.0 | [FEATURE] Add support for recurring events - It would be very nice, if this extension gets support for recurring sometime. The user should be able to choose the interval of the recurrence (day, week, month, year). The event should occur with the calculated date until a given end date is reached. Additionally there should be the possibility to add exception dates where the event won't takes place.
| non_usab | add support for recurring events it would be very nice if this extension gets support for recurring sometime the user should be able to choose the interval of the recurrence day week month year the event should occur with the calculated date until a given end date is reached additionally there should be the possibility to add exception dates where the event won t takes place | 0 |
26,700 | 27,093,506,821 | IssuesEvent | 2023-02-14 23:33:14 | redpanda-data/documentation | https://api.github.com/repos/redpanda-data/documentation | opened | Inconsistent rendering of RP product documentation font weight/color | website engine usability improvement P3 | ### Describe the Issue
Several internal users have reported that the product doc text is difficult to see. Some see it as a lighter gray, other see that the font weight is thin/difficult to see. Users on Windows and macOS report seeing the font as bacl or gray. It seems to vary by OS and browser. One user reports that it is very light gray while viewing in Brave (vs Safari). Following image was shared for the Brave browser--both the block and red font render super light:

Please ensure our CSS settings are correct, that our font color and weight are consistent between the navtrees and center text font.
@yougotashovel Can you identify why this occuring? Thx.
### Updates to existing documentation
<!--
Provide the URL of the page(s) to which the updates apply.
Which topic(s) should be updated?
What is the requested fix? Describe what is wrong in the existing doc and include screenshots if possible. Then provide the correct information.
Is this request to document an existing Redpanda feature that is not currently documented?
-->
### New feature or content gap requests
<!--
If this is a new feature, provide material that will help the writer draft the new or updated content. If an issue only includes the name of a feature and release, it will be marked βMore Info Neededβ or βBlockedβ. Ideally, the issue will provide:
- Links to internal wikis, PRDs, design docs, KIPs, training material, or slide decks.
- Links to engineering PRs that implement the update.
- Links to blog posts, if applicable.
- Identify specific Slack channels that the writer can join to get more details about the feature.
- Links to Slack conversations (RP and RP Community) about the issue.
- Names of SMEs who can answer questions and act as reviewers (at least one engineer and one PM).
- Any additional information that will be of use to the writer.
-->
### If new feature, in which release is it included or expected?
### If the requested update is from customer feedback or a Community slack conversation, provide a link:
### Additional notes
<!--
Documentation Issues must be distinct and not overlap. If filing an Issue for a feature that spans platform and cloud, you must file two separate Issues. Each Issue will drive the new content in GitHub for the respective platform or cloud doc.
Include:
- Relevant GitHub issues and pull requests
- Dependencies on other features or components
- Specific Redpanda contributors to notify
-->
| True | Inconsistent rendering of RP product documentation font weight/color - ### Describe the Issue
Several internal users have reported that the product doc text is difficult to see. Some see it as a lighter gray, other see that the font weight is thin/difficult to see. Users on Windows and macOS report seeing the font as bacl or gray. It seems to vary by OS and browser. One user reports that it is very light gray while viewing in Brave (vs Safari). Following image was shared for the Brave browser--both the block and red font render super light:

Please ensure our CSS settings are correct, that our font color and weight are consistent between the navtrees and center text font.
@yougotashovel Can you identify why this occuring? Thx.
### Updates to existing documentation
<!--
Provide the URL of the page(s) to which the updates apply.
Which topic(s) should be updated?
What is the requested fix? Describe what is wrong in the existing doc and include screenshots if possible. Then provide the correct information.
Is this request to document an existing Redpanda feature that is not currently documented?
-->
### New feature or content gap requests
<!--
If this is a new feature, provide material that will help the writer draft the new or updated content. If an issue only includes the name of a feature and release, it will be marked βMore Info Neededβ or βBlockedβ. Ideally, the issue will provide:
- Links to internal wikis, PRDs, design docs, KIPs, training material, or slide decks.
- Links to engineering PRs that implement the update.
- Links to blog posts, if applicable.
- Identify specific Slack channels that the writer can join to get more details about the feature.
- Links to Slack conversations (RP and RP Community) about the issue.
- Names of SMEs who can answer questions and act as reviewers (at least one engineer and one PM).
- Any additional information that will be of use to the writer.
-->
### If new feature, in which release is it included or expected?
### If the requested update is from customer feedback or a Community slack conversation, provide a link:
### Additional notes
<!--
Documentation Issues must be distinct and not overlap. If filing an Issue for a feature that spans platform and cloud, you must file two separate Issues. Each Issue will drive the new content in GitHub for the respective platform or cloud doc.
Include:
- Relevant GitHub issues and pull requests
- Dependencies on other features or components
- Specific Redpanda contributors to notify
-->
| usab | inconsistent rendering of rp product documentation font weight color describe the issue several internal users have reported that the product doc text is difficult to see some see it as a lighter gray other see that the font weight is thin difficult to see users on windows and macos report seeing the font as bacl or gray it seems to vary by os and browser one user reports that it is very light gray while viewing in brave vs safari following image was shared for the brave browser both the block and red font render super light please ensure our css settings are correct that our font color and weight are consistent between the navtrees and center text font yougotashovel can you identify why this occuring thx updates to existing documentation provide the url of the page s to which the updates apply which topic s should be updated what is the requested fix describe what is wrong in the existing doc and include screenshots if possible then provide the correct information is this request to document an existing redpanda feature that is not currently documented new feature or content gap requests if this is a new feature provide material that will help the writer draft the new or updated content if an issue only includes the name of a feature and release it will be marked βmore info neededβ or βblockedβ ideally the issue will provide links to internal wikis prds design docs kips training material or slide decks links to engineering prs that implement the update links to blog posts if applicable identify specific slack channels that the writer can join to get more details about the feature links to slack conversations rp and rp community about the issue names of smes who can answer questions and act as reviewers at least one engineer and one pm any additional information that will be of use to the writer if new feature in which release is it included or expected if the requested update is from customer feedback or a community slack conversation provide a link additional notes documentation issues must be distinct and not overlap if filing an issue for a feature that spans platform and cloud you must file two separate issues each issue will drive the new content in github for the respective platform or cloud doc include relevant github issues and pull requests dependencies on other features or components specific redpanda contributors to notify | 1 |
8,164 | 5,439,161,852 | IssuesEvent | 2017-03-06 12:39:37 | citusdata/citus | https://api.github.com/repos/citusdata/citus | closed | Support PREPARE statements with parameters: Non-distribution column | 1-2 weeks in progress usability | When making Citus an extension, we temporarily removed support for `PREPARE` statements with parameters, where the prepare statement runs for more than five times and has a cheaper plan.
We're tracking adding support for `PREPARE` statements in #306. We decided to break up that issue into two: (1) `prepare` statements with parameters on the distribution column and (2) `prepare` statements with parameters on the non-distribution column.
We're tracking `prepare` statements with parameters on the non-distribution column in this issue.
When we start working on this, we should also look into how users' drivers are running `PREPARE`. @a-bro, if you have a few example queries, could you post them here?
| True | Support PREPARE statements with parameters: Non-distribution column - When making Citus an extension, we temporarily removed support for `PREPARE` statements with parameters, where the prepare statement runs for more than five times and has a cheaper plan.
We're tracking adding support for `PREPARE` statements in #306. We decided to break up that issue into two: (1) `prepare` statements with parameters on the distribution column and (2) `prepare` statements with parameters on the non-distribution column.
We're tracking `prepare` statements with parameters on the non-distribution column in this issue.
When we start working on this, we should also look into how users' drivers are running `PREPARE`. @a-bro, if you have a few example queries, could you post them here?
| usab | support prepare statements with parameters non distribution column when making citus an extension we temporarily removed support for prepare statements with parameters where the prepare statement runs for more than five times and has a cheaper plan we re tracking adding support for prepare statements in we decided to break up that issue into two prepare statements with parameters on the distribution column and prepare statements with parameters on the non distribution column we re tracking prepare statements with parameters on the non distribution column in this issue when we start working on this we should also look into how users drivers are running prepare a bro if you have a few example queries could you post them here | 1 |
397,576 | 11,729,696,793 | IssuesEvent | 2020-03-10 19:53:10 | RobotLocomotion/drake | https://api.github.com/repos/RobotLocomotion/drake | closed | New CI base images | priority: high team: kitware type: continuous integration | Please roll out new Ubuntu images so that we receive the GCC 7.5 upgrade from canonical that just landed today.
The macOS image does not need to change.
| 1.0 | New CI base images - Please roll out new Ubuntu images so that we receive the GCC 7.5 upgrade from canonical that just landed today.
The macOS image does not need to change.
| non_usab | new ci base images please roll out new ubuntu images so that we receive the gcc upgrade from canonical that just landed today the macos image does not need to change | 0 |
787,476 | 27,718,838,140 | IssuesEvent | 2023-03-14 18:53:50 | harvard-lil/perma | https://api.github.com/repos/harvard-lil/perma | opened | Consider increasing minimum password length | housekeeping priority-low | Back when we first launched Perma Payments, we decided to have Perma's password requirements meet the minimum length and alpha-numeric requirements of the PCI standard, even though we judged it was not in fact required on either system (since they do not grant access to cardholder data).
The latest PCI standard, with which we are not yet required to comply, specifies a [minimum length of 12 chars](https://github.com/harvard-lil/perma-payments/issues/167).
We could consider [increasing our minimum](https://github.com/harvard-lil/perma/blob/f4124b65e23ecafad1a2d29b855bb7181de68470/perma_web/perma/settings/deployments/settings_common.py#L204), for internal consistency. | 1.0 | Consider increasing minimum password length - Back when we first launched Perma Payments, we decided to have Perma's password requirements meet the minimum length and alpha-numeric requirements of the PCI standard, even though we judged it was not in fact required on either system (since they do not grant access to cardholder data).
The latest PCI standard, with which we are not yet required to comply, specifies a [minimum length of 12 chars](https://github.com/harvard-lil/perma-payments/issues/167).
We could consider [increasing our minimum](https://github.com/harvard-lil/perma/blob/f4124b65e23ecafad1a2d29b855bb7181de68470/perma_web/perma/settings/deployments/settings_common.py#L204), for internal consistency. | non_usab | consider increasing minimum password length back when we first launched perma payments we decided to have perma s password requirements meet the minimum length and alpha numeric requirements of the pci standard even though we judged it was not in fact required on either system since they do not grant access to cardholder data the latest pci standard with which we are not yet required to comply specifies a we could consider for internal consistency | 0 |
17,637 | 12,220,324,454 | IssuesEvent | 2020-05-02 01:00:44 | dgraph-io/dgraph | https://api.github.com/repos/dgraph-io/dgraph | opened | Misleading Error about Invalid Hostname when port not included | area/usability kind/bug | ### CONFIGURATION
*Dgraph Version*: v20.03.0
*OS*: `Ubuntu 18.04.3 LTS`
```
$ grep $(hostname -f) /etc/hosts
127.0.1.1 ubuntu1804.localdomain
127.0.0.1 ubuntu1804.localdomain
```
### STEPS TO REPRODUCE
```bash
curl -sSf https://get.dgraph.io | ACCEPT_LICENSE=y VERSION=v20.03.1 bash
dgraph zero --my="$(hostname -f):5080" --idx 1
dgraph alpha --my=$(hostname -f) --zero $(hostname -f):5080 -lru_mb 2048
```
### EXPECTED RESULT
An error message about the port not existing, or default it to `7080`.
### ACTUAL RESULT
```
2020/05/02 00:38:02 ubuntu1804.localdomain is not valid address
github.com/dgraph-io/dgraph/x.AssertTruef
/ext-go/1/src/github.com/dgraph-io/dgraph/x/error.go:101
github.com/dgraph-io/dgraph/worker.StartRaftNodes
/ext-go/1/src/github.com/dgraph-io/dgraph/worker/groups.go:83
github.com/dgraph-io/dgraph/dgraph/cmd/alpha.run.func4
/ext-go/1/src/github.com/dgraph-io/dgraph/dgraph/cmd/alpha/run.go:663
runtime.goexit
/usr/local/go/src/runtime/asm_amd64.s:1373
```
| True | Misleading Error about Invalid Hostname when port not included - ### CONFIGURATION
*Dgraph Version*: v20.03.0
*OS*: `Ubuntu 18.04.3 LTS`
```
$ grep $(hostname -f) /etc/hosts
127.0.1.1 ubuntu1804.localdomain
127.0.0.1 ubuntu1804.localdomain
```
### STEPS TO REPRODUCE
```bash
curl -sSf https://get.dgraph.io | ACCEPT_LICENSE=y VERSION=v20.03.1 bash
dgraph zero --my="$(hostname -f):5080" --idx 1
dgraph alpha --my=$(hostname -f) --zero $(hostname -f):5080 -lru_mb 2048
```
### EXPECTED RESULT
An error message about the port not existing, or default it to `7080`.
### ACTUAL RESULT
```
2020/05/02 00:38:02 ubuntu1804.localdomain is not valid address
github.com/dgraph-io/dgraph/x.AssertTruef
/ext-go/1/src/github.com/dgraph-io/dgraph/x/error.go:101
github.com/dgraph-io/dgraph/worker.StartRaftNodes
/ext-go/1/src/github.com/dgraph-io/dgraph/worker/groups.go:83
github.com/dgraph-io/dgraph/dgraph/cmd/alpha.run.func4
/ext-go/1/src/github.com/dgraph-io/dgraph/dgraph/cmd/alpha/run.go:663
runtime.goexit
/usr/local/go/src/runtime/asm_amd64.s:1373
```
| usab | misleading error about invalid hostname when port not included configuration dgraph version os ubuntu lts grep hostname f etc hosts localdomain localdomain steps to reproduce bash curl ssf accept license y version bash dgraph zero my hostname f idx dgraph alpha my hostname f zero hostname f lru mb expected result an error message about the port not existing or default it to actual result localdomain is not valid address github com dgraph io dgraph x asserttruef ext go src github com dgraph io dgraph x error go github com dgraph io dgraph worker startraftnodes ext go src github com dgraph io dgraph worker groups go github com dgraph io dgraph dgraph cmd alpha run ext go src github com dgraph io dgraph dgraph cmd alpha run go runtime goexit usr local go src runtime asm s | 1 |
29,810 | 5,694,518,826 | IssuesEvent | 2017-04-15 14:02:28 | symfony/symfony-docs | https://api.github.com/repos/symfony/symfony-docs | closed | Add docs for "fromJsonString()" | Easy pick hasPR HttpFoundation Missing Documentation | In https://github.com/symfony/symfony/pull/19552 we added the named constructor `fromJsonString()` to create `JsonResponse` objects using already encoded JSON contents. Should we document or mention it? | 1.0 | Add docs for "fromJsonString()" - In https://github.com/symfony/symfony/pull/19552 we added the named constructor `fromJsonString()` to create `JsonResponse` objects using already encoded JSON contents. Should we document or mention it? | non_usab | add docs for fromjsonstring in we added the named constructor fromjsonstring to create jsonresponse objects using already encoded json contents should we document or mention it | 0 |
17,143 | 11,726,427,502 | IssuesEvent | 2020-03-10 14:30:14 | prometheus/alertmanager | https://api.github.com/repos/prometheus/alertmanager | closed | Query inhibitions from amtool | area/usability component/cli hacktoberfest help wanted kind/enhancement | <!--
Please do *NOT* ask usage questions in Github issues.
If your issue is not a feature request or bug report use:
https://groups.google.com/forum/#!forum/prometheus-users. If
you are unsure whether you hit a bug, search and ask in the
mailing list first.
You can find more information at: https://prometheus.io/community/
-->
**What did you do?**
I had some alerts not being routed. I used `amtool silence query` to find current silences, but via the web UI when I checked the `[ ] Inhbitions` box I was able to see that my query was inhibited.
It would be nice if there was `amtool inhibition query` to see current inhibition status. Is this possible, a planned feature, etc.?
* Alertmanager version:
0.13.0
| True | Query inhibitions from amtool - <!--
Please do *NOT* ask usage questions in Github issues.
If your issue is not a feature request or bug report use:
https://groups.google.com/forum/#!forum/prometheus-users. If
you are unsure whether you hit a bug, search and ask in the
mailing list first.
You can find more information at: https://prometheus.io/community/
-->
**What did you do?**
I had some alerts not being routed. I used `amtool silence query` to find current silences, but via the web UI when I checked the `[ ] Inhbitions` box I was able to see that my query was inhibited.
It would be nice if there was `amtool inhibition query` to see current inhibition status. Is this possible, a planned feature, etc.?
* Alertmanager version:
0.13.0
| usab | query inhibitions from amtool please do not ask usage questions in github issues if your issue is not a feature request or bug report use if you are unsure whether you hit a bug search and ask in the mailing list first you can find more information at what did you do i had some alerts not being routed i used amtool silence query to find current silences but via the web ui when i checked the inhbitions box i was able to see that my query was inhibited it would be nice if there was amtool inhibition query to see current inhibition status is this possible a planned feature etc alertmanager version | 1 |
93,842 | 8,445,699,656 | IssuesEvent | 2018-10-18 22:30:52 | mui-org/material-ui | https://api.github.com/repos/mui-org/material-ui | closed | Jest error when testing Slider component from @material-ui/lab | good first issue lab: Slider test | <!--- Provide a general summary of the issue in the Title above -->
<!--
Thank you very much for contributing to Material-UI by creating an issue! β€οΈ
To avoid duplicate issues we ask you to check off the following list.
-->
<!-- Checked checkbox should look like this: [x] -->
- [x] This is not a v0.x issue. <!-- (v0.x is no longer maintained) -->
- [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate.
## Expected Behavior
<!---
Describe what should happen.
-->
When I want to test `Slider` component, I could test it without error in Jest + jsdom environment.
## Current Behavior
<!---
Describe what happens instead of the expected behavior.
-->
I'm testing a `Slider` component with :
* storybook => everything work
* storyshot addon (with jest & jsdom environment) => throw an error cf [gitlab ci log](https://gitlab.com/mdartic/mui-lab-slider-storyshot/-/jobs/109817474)
```
Error: Uncaught [TypeError: Cannot read property 'removeEventListener' of null]
```
## Steps to Reproduce
<!---
Provide a link to a live example (you can use codesandbox.io) and an unambiguous set of steps to reproduce this bug.
Include code to reproduce, if relevant (which it most likely is).
This codesandbox.io template _may_ be a good starting point:
https://codesandbox.io/s/github/mui-org/material-ui/tree/master/examples/create-react-app
If you're using typescript a better starting point would be
https://codesandbox.io/s/github/mui-org/material-ui/tree/master/examples/create-react-app-with-typescript
If YOU DO NOT take time to provide a codesandbox.io reproduction, should the COMMUNITY take time to help you?
-->
Link:
* [codesandbox](https://codesandbox.io/s/github/mdartic/mui-lab-slider-storyshot)
* [github](https://github.com/mdartic/mui-lab-slider-storyshot)
* [gitlab](https://gitlab.com/mdartic/mui-lab-slider-storyshot/)
* [storybook](http://mui-lab-slider-storyshot.surge.sh/)
* [jest/storyshot error](https://gitlab.com/mdartic/mui-lab-slider-storyshot/-/jobs/109817474)
1. Implement a component `Slider`
2. Use it with storybook => ok
3. Use it with storyshot addon + jest => nok
## Context
<!---
What are you trying to accomplish? How has this issue affected you?
Providing context helps us come up with a solution that is most useful in the real world.
-->
With [`MyComponent`](https://gitlab.com/mdartic/mui-lab-slider-storyshot/blob/master/src/MyComponent.js) I create two components, one only with `Slider`, other with a `componentWillUnmount` that trace the `Slider` instance.
We can observe in the storybook [*fixed* story](http://mui-lab-slider-storyshot.surge.sh/?selectedKind=MyComponent&selectedStory=fixed&full=0&addons=1&stories=1&panelRight=0&addonPanel=storybook%2Factions%2Factions-panel) there is no `containerRef` defined, so the `removeEventListener` could not be executed ? (open devtools & click on *default* story to see the `componentWillUnmount` trace)
## Your Environment
<!---
Include as many relevant details about the environment with which you experienced the bug.
If you encounter issues with typescript please include version and tsconfig.
-->
You can see
| Tech | Version |
|--------------|---------|
| Material-UI | v3.2.2 |
| React | 16.5.2 |
| Browser | jsdom for jest, FF for devtools |
| TypeScript | |
| etc. | |
cf [package.json](https://gitlab.com/mdartic/mui-lab-slider-storyshot/blob/master/package.json)
## Idea of resolution ?
I make the test work by changing the [`componentWillUnmount` of `Slider`](https://github.com/mui-org/material-ui/blob/master/packages/material-ui-lab/src/Slider/Slider.js#L214-L219) component like this :
```js
componentWillUnmount() {
if (this.containerRef) {
this.containerRef.removeEventListener('touchstart', preventPageScrolling, { passive: false });
}
document.body.removeEventListener('mousemove', this.handleMouseMove);
document.body.removeEventListener('mouseup', this.handleMouseUp);
clearTimeout(this.jumpAnimationTimeoutId);
}
``` | 1.0 | Jest error when testing Slider component from @material-ui/lab - <!--- Provide a general summary of the issue in the Title above -->
<!--
Thank you very much for contributing to Material-UI by creating an issue! β€οΈ
To avoid duplicate issues we ask you to check off the following list.
-->
<!-- Checked checkbox should look like this: [x] -->
- [x] This is not a v0.x issue. <!-- (v0.x is no longer maintained) -->
- [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate.
## Expected Behavior
<!---
Describe what should happen.
-->
When I want to test `Slider` component, I could test it without error in Jest + jsdom environment.
## Current Behavior
<!---
Describe what happens instead of the expected behavior.
-->
I'm testing a `Slider` component with :
* storybook => everything work
* storyshot addon (with jest & jsdom environment) => throw an error cf [gitlab ci log](https://gitlab.com/mdartic/mui-lab-slider-storyshot/-/jobs/109817474)
```
Error: Uncaught [TypeError: Cannot read property 'removeEventListener' of null]
```
## Steps to Reproduce
<!---
Provide a link to a live example (you can use codesandbox.io) and an unambiguous set of steps to reproduce this bug.
Include code to reproduce, if relevant (which it most likely is).
This codesandbox.io template _may_ be a good starting point:
https://codesandbox.io/s/github/mui-org/material-ui/tree/master/examples/create-react-app
If you're using typescript a better starting point would be
https://codesandbox.io/s/github/mui-org/material-ui/tree/master/examples/create-react-app-with-typescript
If YOU DO NOT take time to provide a codesandbox.io reproduction, should the COMMUNITY take time to help you?
-->
Link:
* [codesandbox](https://codesandbox.io/s/github/mdartic/mui-lab-slider-storyshot)
* [github](https://github.com/mdartic/mui-lab-slider-storyshot)
* [gitlab](https://gitlab.com/mdartic/mui-lab-slider-storyshot/)
* [storybook](http://mui-lab-slider-storyshot.surge.sh/)
* [jest/storyshot error](https://gitlab.com/mdartic/mui-lab-slider-storyshot/-/jobs/109817474)
1. Implement a component `Slider`
2. Use it with storybook => ok
3. Use it with storyshot addon + jest => nok
## Context
<!---
What are you trying to accomplish? How has this issue affected you?
Providing context helps us come up with a solution that is most useful in the real world.
-->
With [`MyComponent`](https://gitlab.com/mdartic/mui-lab-slider-storyshot/blob/master/src/MyComponent.js) I create two components, one only with `Slider`, other with a `componentWillUnmount` that trace the `Slider` instance.
We can observe in the storybook [*fixed* story](http://mui-lab-slider-storyshot.surge.sh/?selectedKind=MyComponent&selectedStory=fixed&full=0&addons=1&stories=1&panelRight=0&addonPanel=storybook%2Factions%2Factions-panel) there is no `containerRef` defined, so the `removeEventListener` could not be executed ? (open devtools & click on *default* story to see the `componentWillUnmount` trace)
## Your Environment
<!---
Include as many relevant details about the environment with which you experienced the bug.
If you encounter issues with typescript please include version and tsconfig.
-->
You can see
| Tech | Version |
|--------------|---------|
| Material-UI | v3.2.2 |
| React | 16.5.2 |
| Browser | jsdom for jest, FF for devtools |
| TypeScript | |
| etc. | |
cf [package.json](https://gitlab.com/mdartic/mui-lab-slider-storyshot/blob/master/package.json)
## Idea of resolution ?
I make the test work by changing the [`componentWillUnmount` of `Slider`](https://github.com/mui-org/material-ui/blob/master/packages/material-ui-lab/src/Slider/Slider.js#L214-L219) component like this :
```js
componentWillUnmount() {
if (this.containerRef) {
this.containerRef.removeEventListener('touchstart', preventPageScrolling, { passive: false });
}
document.body.removeEventListener('mousemove', this.handleMouseMove);
document.body.removeEventListener('mouseup', this.handleMouseUp);
clearTimeout(this.jumpAnimationTimeoutId);
}
``` | non_usab | jest error when testing slider component from material ui lab thank you very much for contributing to material ui by creating an issue β€οΈ to avoid duplicate issues we ask you to check off the following list this is not a x issue i have searched the of this repository and believe that this is not a duplicate expected behavior describe what should happen when i want to test slider component i could test it without error in jest jsdom environment current behavior describe what happens instead of the expected behavior i m testing a slider component with storybook everything work storyshot addon with jest jsdom environment throw an error cf error uncaught steps to reproduce provide a link to a live example you can use codesandbox io and an unambiguous set of steps to reproduce this bug include code to reproduce if relevant which it most likely is this codesandbox io template may be a good starting point if you re using typescript a better starting point would be if you do not take time to provide a codesandbox io reproduction should the community take time to help you link implement a component slider use it with storybook ok use it with storyshot addon jest nok context what are you trying to accomplish how has this issue affected you providing context helps us come up with a solution that is most useful in the real world with i create two components one only with slider other with a componentwillunmount that trace the slider instance we can observe in the storybook there is no containerref defined so the removeeventlistener could not be executed open devtools click on default story to see the componentwillunmount trace your environment include as many relevant details about the environment with which you experienced the bug if you encounter issues with typescript please include version and tsconfig you can see tech version material ui react browser jsdom for jest ff for devtools typescript etc cf idea of resolution i make the test work by changing the component like this js componentwillunmount if this containerref this containerref removeeventlistener touchstart preventpagescrolling passive false document body removeeventlistener mousemove this handlemousemove document body removeeventlistener mouseup this handlemouseup cleartimeout this jumpanimationtimeoutid | 0 |
139,472 | 18,853,518,400 | IssuesEvent | 2021-11-12 01:10:23 | keanhankins/ranger | https://api.github.com/repos/keanhankins/ranger | opened | WS-2021-0419 (High) detected in gson-2.2.4.jar | security vulnerability | ## WS-2021-0419 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>gson-2.2.4.jar</b></p></summary>
<p>Google Gson library</p>
<p>Library home page: <a href="http://code.google.com/p/google-gson/">http://code.google.com/p/google-gson/</a></p>
<p>Path to dependency file: ranger/plugin-atlas/pom.xml</p>
<p>Path to vulnerable library: canner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,canner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,canner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,canner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,canner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,canner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,canner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,canner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,canner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,canner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar</p>
<p>
Dependency Hierarchy:
- :x: **gson-2.2.4.jar** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Denial of Service vulnerability was discovered in gson before 2.8.9 via the writeReplace() method.
<p>Publish Date: 2021-10-11
<p>URL: <a href=https://github.com/google/gson/pull/1991>WS-2021-0419</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.7</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: N/A
- Attack Complexity: N/A
- Privileges Required: N/A
- User Interaction: N/A
- Scope: N/A
- Impact Metrics:
- Confidentiality Impact: N/A
- Integrity Impact: N/A
- Availability Impact: N/A
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/google/gson/releases/tag/gson-parent-2.8.9">https://github.com/google/gson/releases/tag/gson-parent-2.8.9</a></p>
<p>Release Date: 2021-10-11</p>
<p>Fix Resolution: com.google.code.gson:gson:2.8.9</p>
</p>
</details>
<p></p>
***
:rescue_worker_helmet: Automatic Remediation is available for this issue
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"com.google.code.gson","packageName":"gson","packageVersion":"2.2.4","packageFilePaths":["/plugin-atlas/pom.xml","/plugin-ozone/pom.xml","/tagsync/pom.xml","/plugin-yarn/pom.xml","/ranger-tools/pom.xml","/unixauthclient/pom.xml","/plugin-schema-registry/pom.xml","/ranger-examples/sample-client/pom.xml","/agents-common/pom.xml","/plugin-kylin/pom.xml","/plugin-kms/pom.xml","/ranger-kms-plugin-shim/pom.xml","/credentialbuilder/pom.xml","/ranger-atlas-plugin-shim/pom.xml","/plugin-kafka/pom.xml","/plugin-solr/pom.xml","/storm-agent/pom.xml","/agents-cred/pom.xml","/ranger-solr-plugin-shim/pom.xml","/intg/pom.xml","/ranger-hdfs-plugin-shim/pom.xml","/plugin-sqoop/pom.xml","/plugin-nifi-registry/pom.xml","/ranger-yarn-plugin-shim/pom.xml","/hive-agent/pom.xml","/hdfs-agent/pom.xml","/ranger-presto-plugin-shim/pom.xml","/kms/pom.xml","/plugin-elasticsearch/pom.xml","/ranger-examples/plugin-sampleapp/pom.xml","/ranger-storm-plugin-shim/pom.xml","/hbase-agent/pom.xml","/ugsync/pom.xml","/ranger-hbase-plugin-shim/pom.xml","/security-admin/pom.xml","/embeddedwebserver/pom.xml","/ranger-ozone-plugin-shim/pom.xml","/plugin-kudu/pom.xml","/ranger-kylin-plugin-shim/pom.xml","/ranger-kafka-plugin-shim/pom.xml","/ranger-knox-plugin-shim/pom.xml","/plugin-nifi/pom.xml","/ranger-hive-plugin-shim/pom.xml","/ranger-sqoop-plugin-shim/pom.xml","/ranger-examples/conditions-enrichers/pom.xml","/plugin-presto/pom.xml","/agents-audit/pom.xml"],"isTransitiveDependency":false,"dependencyTree":"com.google.code.gson:gson:2.2.4","isMinimumFixVersionAvailable":true,"minimumFixVersion":"com.google.code.gson:gson:2.8.9"}],"baseBranches":["master"],"vulnerabilityIdentifier":"WS-2021-0419","vulnerabilityDetails":"Denial of Service vulnerability was discovered in gson before 2.8.9 via the writeReplace() method.","vulnerabilityUrl":"https://github.com/google/gson/pull/1991","cvss3Severity":"high","cvss3Score":"7.7","cvss3Metrics":{"A":"N/A","AC":"N/A","PR":"N/A","S":"N/A","C":"N/A","UI":"N/A","AV":"N/A","I":"N/A"},"extraData":{}}</REMEDIATE> --> | True | WS-2021-0419 (High) detected in gson-2.2.4.jar - ## WS-2021-0419 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>gson-2.2.4.jar</b></p></summary>
<p>Google Gson library</p>
<p>Library home page: <a href="http://code.google.com/p/google-gson/">http://code.google.com/p/google-gson/</a></p>
<p>Path to dependency file: ranger/plugin-atlas/pom.xml</p>
<p>Path to vulnerable library: canner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,canner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,canner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,canner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,canner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,canner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,canner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,canner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,canner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,canner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar</p>
<p>
Dependency Hierarchy:
- :x: **gson-2.2.4.jar** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Denial of Service vulnerability was discovered in gson before 2.8.9 via the writeReplace() method.
<p>Publish Date: 2021-10-11
<p>URL: <a href=https://github.com/google/gson/pull/1991>WS-2021-0419</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.7</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: N/A
- Attack Complexity: N/A
- Privileges Required: N/A
- User Interaction: N/A
- Scope: N/A
- Impact Metrics:
- Confidentiality Impact: N/A
- Integrity Impact: N/A
- Availability Impact: N/A
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/google/gson/releases/tag/gson-parent-2.8.9">https://github.com/google/gson/releases/tag/gson-parent-2.8.9</a></p>
<p>Release Date: 2021-10-11</p>
<p>Fix Resolution: com.google.code.gson:gson:2.8.9</p>
</p>
</details>
<p></p>
***
:rescue_worker_helmet: Automatic Remediation is available for this issue
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"com.google.code.gson","packageName":"gson","packageVersion":"2.2.4","packageFilePaths":["/plugin-atlas/pom.xml","/plugin-ozone/pom.xml","/tagsync/pom.xml","/plugin-yarn/pom.xml","/ranger-tools/pom.xml","/unixauthclient/pom.xml","/plugin-schema-registry/pom.xml","/ranger-examples/sample-client/pom.xml","/agents-common/pom.xml","/plugin-kylin/pom.xml","/plugin-kms/pom.xml","/ranger-kms-plugin-shim/pom.xml","/credentialbuilder/pom.xml","/ranger-atlas-plugin-shim/pom.xml","/plugin-kafka/pom.xml","/plugin-solr/pom.xml","/storm-agent/pom.xml","/agents-cred/pom.xml","/ranger-solr-plugin-shim/pom.xml","/intg/pom.xml","/ranger-hdfs-plugin-shim/pom.xml","/plugin-sqoop/pom.xml","/plugin-nifi-registry/pom.xml","/ranger-yarn-plugin-shim/pom.xml","/hive-agent/pom.xml","/hdfs-agent/pom.xml","/ranger-presto-plugin-shim/pom.xml","/kms/pom.xml","/plugin-elasticsearch/pom.xml","/ranger-examples/plugin-sampleapp/pom.xml","/ranger-storm-plugin-shim/pom.xml","/hbase-agent/pom.xml","/ugsync/pom.xml","/ranger-hbase-plugin-shim/pom.xml","/security-admin/pom.xml","/embeddedwebserver/pom.xml","/ranger-ozone-plugin-shim/pom.xml","/plugin-kudu/pom.xml","/ranger-kylin-plugin-shim/pom.xml","/ranger-kafka-plugin-shim/pom.xml","/ranger-knox-plugin-shim/pom.xml","/plugin-nifi/pom.xml","/ranger-hive-plugin-shim/pom.xml","/ranger-sqoop-plugin-shim/pom.xml","/ranger-examples/conditions-enrichers/pom.xml","/plugin-presto/pom.xml","/agents-audit/pom.xml"],"isTransitiveDependency":false,"dependencyTree":"com.google.code.gson:gson:2.2.4","isMinimumFixVersionAvailable":true,"minimumFixVersion":"com.google.code.gson:gson:2.8.9"}],"baseBranches":["master"],"vulnerabilityIdentifier":"WS-2021-0419","vulnerabilityDetails":"Denial of Service vulnerability was discovered in gson before 2.8.9 via the writeReplace() method.","vulnerabilityUrl":"https://github.com/google/gson/pull/1991","cvss3Severity":"high","cvss3Score":"7.7","cvss3Metrics":{"A":"N/A","AC":"N/A","PR":"N/A","S":"N/A","C":"N/A","UI":"N/A","AV":"N/A","I":"N/A"},"extraData":{}}</REMEDIATE> --> | non_usab | ws high detected in gson jar ws high severity vulnerability vulnerable library gson jar google gson library library home page a href path to dependency file ranger plugin atlas pom xml path to vulnerable library canner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar canner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar canner repository com google code gson gson gson jar canner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar canner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar canner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar canner repository com google code gson gson gson jar canner repository com google code gson gson gson jar canner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar canner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar dependency hierarchy x gson jar vulnerable library found in base branch master vulnerability details denial of service vulnerability was discovered in gson before via the writereplace method publish date url a href cvss score details base score metrics exploitability metrics attack vector n a attack complexity n a privileges required n a user interaction n a scope n a impact metrics confidentiality impact n a integrity impact n a availability impact n a for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution com google code gson gson rescue worker helmet automatic remediation is available for this issue isopenpronvulnerability true ispackagebased true isdefaultbranch true packages istransitivedependency false dependencytree com google code gson gson isminimumfixversionavailable true minimumfixversion com google code gson gson basebranches vulnerabilityidentifier ws vulnerabilitydetails denial of service vulnerability was discovered in gson before via the writereplace method vulnerabilityurl | 0 |
11,179 | 7,096,112,507 | IssuesEvent | 2018-01-14 01:29:50 | fabiocolacio/Marker | https://api.github.com/repos/fabiocolacio/Marker | closed | use gtk timeout to for refreshing the view | enhancement usability | Use a [timeout](https://developer.gnome.org/gtk-tutorial/stable/c1759.html) to refresh the view to avoid very fast and useless preview refresh. | True | use gtk timeout to for refreshing the view - Use a [timeout](https://developer.gnome.org/gtk-tutorial/stable/c1759.html) to refresh the view to avoid very fast and useless preview refresh. | usab | use gtk timeout to for refreshing the view use a to refresh the view to avoid very fast and useless preview refresh | 1 |
8,767 | 5,955,533,253 | IssuesEvent | 2017-05-28 07:28:58 | godotengine/godot | https://api.github.com/repos/godotengine/godot | closed | [Bug] GraphNode is created instead of Node if selected from Recent list | bug confirmed junior job topic:editor usability | **Windows 64bits - v2.1.3**
**Issue description:**
If you add a Node to a scene and select it via the _Recent_ list, it creates a GraphNode instead. Doesn't seem to happen with any other node.
http://i.imgur.com/e2zphKm.gif
**Steps to reproduce:**
Add a new node to a scene (CTRL+A), select Node from the _Recent_ list.
| True | [Bug] GraphNode is created instead of Node if selected from Recent list - **Windows 64bits - v2.1.3**
**Issue description:**
If you add a Node to a scene and select it via the _Recent_ list, it creates a GraphNode instead. Doesn't seem to happen with any other node.
http://i.imgur.com/e2zphKm.gif
**Steps to reproduce:**
Add a new node to a scene (CTRL+A), select Node from the _Recent_ list.
| usab | graphnode is created instead of node if selected from recent list windows issue description if you add a node to a scene and select it via the recent list it creates a graphnode instead doesn t seem to happen with any other node steps to reproduce add a new node to a scene ctrl a select node from the recent list | 1 |
27,801 | 30,352,652,085 | IssuesEvent | 2023-07-11 20:17:10 | MAAP-Project/Community | https://api.github.com/repos/MAAP-Project/Community | closed | Jobs UI: after successfully submitting job, auto-refresh the job listing | Enhancement ADE Usability | After successfully submitting a job, auto-refresh the job listing so that you can flip to it and see your running job. Currently when you flip to job status you must manually Refresh the listing to see the job(s) you just submitted, so it looks like they are not there. | True | Jobs UI: after successfully submitting job, auto-refresh the job listing - After successfully submitting a job, auto-refresh the job listing so that you can flip to it and see your running job. Currently when you flip to job status you must manually Refresh the listing to see the job(s) you just submitted, so it looks like they are not there. | usab | jobs ui after successfully submitting job auto refresh the job listing after successfully submitting a job auto refresh the job listing so that you can flip to it and see your running job currently when you flip to job status you must manually refresh the listing to see the job s you just submitted so it looks like they are not there | 1 |
18,976 | 13,507,434,496 | IssuesEvent | 2020-09-14 05:57:11 | joncampbell123/dosbox-x | https://api.github.com/repos/joncampbell123/dosbox-x | closed | Confusing "Quick right mouse button copy/paste" | usability |
**Is your feature request related to a problem? Please describe.**
https://github.com/joncampbell123/dosbox-x/blob/23653d031af2036b241d53bb94e548fff79a1ec7/CHANGELOG#L329

This is confusing, I thought I'd be able to copy a .BAS program I typed and that wasn't yet saved but no, it overwrote it with Windows clipboard!
**Describe the solution you'd like**
This should rather be something like `Paste text in Windows clipboard with right mouse button click`, things will be clear then.
| True | Confusing "Quick right mouse button copy/paste" -
**Is your feature request related to a problem? Please describe.**
https://github.com/joncampbell123/dosbox-x/blob/23653d031af2036b241d53bb94e548fff79a1ec7/CHANGELOG#L329

This is confusing, I thought I'd be able to copy a .BAS program I typed and that wasn't yet saved but no, it overwrote it with Windows clipboard!
**Describe the solution you'd like**
This should rather be something like `Paste text in Windows clipboard with right mouse button click`, things will be clear then.
| usab | confusing quick right mouse button copy paste is your feature request related to a problem please describe this is confusing i thought i d be able to copy a bas program i typed and that wasn t yet saved but no it overwrote it with windows clipboard describe the solution you d like this should rather be something like paste text in windows clipboard with right mouse button click things will be clear then | 1 |
6,898 | 4,650,624,450 | IssuesEvent | 2016-10-03 06:01:38 | lionheart/openradar-mirror | https://api.github.com/repos/lionheart/openradar-mirror | opened | 28584409: Notification Centre does not respect dark mode setting | classification:ui/usability reproducible:always status:open | #### Description
Summary:
As shown in the attached screenshot, the Notification Center in Sierra always renders using the light vibrant appearance β even when the user has chosen dark mode in General system preferences.
This appears to be a regression from El Capitan.
Steps to Reproduce:
1. Open System Preferences. app
2. Select "General"
3. Select the "Use dark menu bar and Dock" checkbox
Expected Results:
The menu bar, Dock and Notification Center all use the dark vibrant appearance.
Actual Results:
Only the menu bar and Dock use the dark vibrant appearance. The Notification Centre continues to use the light vibrant appearance.
Version:
10.12 (16A323)
Notes:
Configuration:
Hardware Overview:
Model Name: MacBook Pro
Model Identifier: MacBookPro11,3
Processor Name: Intel Core i7
Processor Speed: 2.6 GHz
Number of Processors: 1
Total Number of Cores: 4
L2 Cache (per Core): 256 KB
L3 Cache: 6 MB
Memory: 16 GB
Boot ROM Version: MBP112.0138.B15
SMC Version (system): 2.19f12
Serial Number (system): C02LK1CYFR1M
Hardware UUID: D597922E-2C4D-5DAD-B0B8-BDC0F0A88D30
-
Product Version: 10.12 (16A323)
Created: 2016-10-03T05:45:20.195390
Originated: 2016-10-03T16:43:00
Open Radar Link: http://www.openradar.me/28584409 | True | 28584409: Notification Centre does not respect dark mode setting - #### Description
Summary:
As shown in the attached screenshot, the Notification Center in Sierra always renders using the light vibrant appearance β even when the user has chosen dark mode in General system preferences.
This appears to be a regression from El Capitan.
Steps to Reproduce:
1. Open System Preferences. app
2. Select "General"
3. Select the "Use dark menu bar and Dock" checkbox
Expected Results:
The menu bar, Dock and Notification Center all use the dark vibrant appearance.
Actual Results:
Only the menu bar and Dock use the dark vibrant appearance. The Notification Centre continues to use the light vibrant appearance.
Version:
10.12 (16A323)
Notes:
Configuration:
Hardware Overview:
Model Name: MacBook Pro
Model Identifier: MacBookPro11,3
Processor Name: Intel Core i7
Processor Speed: 2.6 GHz
Number of Processors: 1
Total Number of Cores: 4
L2 Cache (per Core): 256 KB
L3 Cache: 6 MB
Memory: 16 GB
Boot ROM Version: MBP112.0138.B15
SMC Version (system): 2.19f12
Serial Number (system): C02LK1CYFR1M
Hardware UUID: D597922E-2C4D-5DAD-B0B8-BDC0F0A88D30
-
Product Version: 10.12 (16A323)
Created: 2016-10-03T05:45:20.195390
Originated: 2016-10-03T16:43:00
Open Radar Link: http://www.openradar.me/28584409 | usab | notification centre does not respect dark mode setting description summary as shown in the attached screenshot the notification center in sierra always renders using the light vibrant appearance β even when the user has chosen dark mode in general system preferences this appears to be a regression from el capitan steps to reproduce open system preferences app select general select the use dark menu bar and dock checkbox expected results the menu bar dock and notification center all use the dark vibrant appearance actual results only the menu bar and dock use the dark vibrant appearance the notification centre continues to use the light vibrant appearance version notes configuration hardware overview model name macbook pro model identifier processor name intel core processor speed ghz number of processors total number of cores cache per core kb cache mb memory gb boot rom version smc version system serial number system hardware uuid product version created originated open radar link | 1 |
56,511 | 6,990,052,439 | IssuesEvent | 2017-12-14 18:12:44 | HabitRPG/habitica | https://api.github.com/repos/HabitRPG/habitica | closed | changing guild leader gives no immediate feedback | POST-REDESIGN priority: important section: Guilds status: issue: in progress | When you change a guild leader using the "Member List" feature, there's no feedback that the leader change has been successful (e.g., a notification saying "leader has been changed").
Also when you close the menu list, the original guild leader name has been removed from the guild (which is correct) but the new guild leader's name doesn't appear there until you reload the page (it should appear immediately with no need for a reload).
Also, the edit form for the guild should be changed to remove the drop-down menu for selecting a new guild leader.
Instead there should probably be a message saying something like this:
_To change the leader, close this form, click on the guild's "Member List" link, search for the name of the new leader, and select 'Promote to Leader" from that person's three-dots menu._
We're waiting on approval for inserting a message like that.
Finally, moderators and staff should be able to change a guild's leader.
All of these points should also apply to parties, except that mods and staff should NOT be able to change the party's leader (unless they happen to be the original leader of course).
None of these points should apply to any guild or party that has a group plan. It should not be possible for anyone to change leader. | 1.0 | changing guild leader gives no immediate feedback - When you change a guild leader using the "Member List" feature, there's no feedback that the leader change has been successful (e.g., a notification saying "leader has been changed").
Also when you close the menu list, the original guild leader name has been removed from the guild (which is correct) but the new guild leader's name doesn't appear there until you reload the page (it should appear immediately with no need for a reload).
Also, the edit form for the guild should be changed to remove the drop-down menu for selecting a new guild leader.
Instead there should probably be a message saying something like this:
_To change the leader, close this form, click on the guild's "Member List" link, search for the name of the new leader, and select 'Promote to Leader" from that person's three-dots menu._
We're waiting on approval for inserting a message like that.
Finally, moderators and staff should be able to change a guild's leader.
All of these points should also apply to parties, except that mods and staff should NOT be able to change the party's leader (unless they happen to be the original leader of course).
None of these points should apply to any guild or party that has a group plan. It should not be possible for anyone to change leader. | non_usab | changing guild leader gives no immediate feedback when you change a guild leader using the member list feature there s no feedback that the leader change has been successful e g a notification saying leader has been changed also when you close the menu list the original guild leader name has been removed from the guild which is correct but the new guild leader s name doesn t appear there until you reload the page it should appear immediately with no need for a reload also the edit form for the guild should be changed to remove the drop down menu for selecting a new guild leader instead there should probably be a message saying something like this to change the leader close this form click on the guild s member list link search for the name of the new leader and select promote to leader from that person s three dots menu we re waiting on approval for inserting a message like that finally moderators and staff should be able to change a guild s leader all of these points should also apply to parties except that mods and staff should not be able to change the party s leader unless they happen to be the original leader of course none of these points should apply to any guild or party that has a group plan it should not be possible for anyone to change leader | 0 |
556,449 | 16,484,496,587 | IssuesEvent | 2021-05-24 15:58:36 | tliron/prudence | https://api.github.com/repos/tliron/prudence | closed | Prudence Administration start/stop links not working | Flavor-All Priority-Medium Release-2.0 Type-Bug auto-migrated | ```
1) What's the problem?
The Prudence Administration page's start/stop links are clickable but never
toggle and don't work as expected.
2) How can someone else reproduce it?
In the Prudence Administration, click on various start/stop links. They never
toggle.
The prudence-tests "stop" brings down the Administration page. (This has been
tested with nothing but the out-of-the-box apps installed, too.)
The "wackywiki" tutorial app I'm working on cannot be stopped from this page.
3) What flavor of the Prudence are you using? Which version, and on what
operating system?
Prudence 1.1.1-1064 for JavaScript.
CentOS 64-bit
> java -version
java version "1.6.0_24"
Java(TM) SE Runtime Environment (build 1.6.0_24-b07)
Java HotSpot(TM) 64-Bit Server VM (build 19.1-b02, mixed mode)
4) Please provide any additional information below:
```
Original issue reported on code.google.com by `jonathan...@gmail.com` on 28 Aug 2011 at 8:50
| 1.0 | Prudence Administration start/stop links not working - ```
1) What's the problem?
The Prudence Administration page's start/stop links are clickable but never
toggle and don't work as expected.
2) How can someone else reproduce it?
In the Prudence Administration, click on various start/stop links. They never
toggle.
The prudence-tests "stop" brings down the Administration page. (This has been
tested with nothing but the out-of-the-box apps installed, too.)
The "wackywiki" tutorial app I'm working on cannot be stopped from this page.
3) What flavor of the Prudence are you using? Which version, and on what
operating system?
Prudence 1.1.1-1064 for JavaScript.
CentOS 64-bit
> java -version
java version "1.6.0_24"
Java(TM) SE Runtime Environment (build 1.6.0_24-b07)
Java HotSpot(TM) 64-Bit Server VM (build 19.1-b02, mixed mode)
4) Please provide any additional information below:
```
Original issue reported on code.google.com by `jonathan...@gmail.com` on 28 Aug 2011 at 8:50
| non_usab | prudence administration start stop links not working what s the problem the prudence administration page s start stop links are clickable but never toggle and don t work as expected how can someone else reproduce it in the prudence administration click on various start stop links they never toggle the prudence tests stop brings down the administration page this has been tested with nothing but the out of the box apps installed too the wackywiki tutorial app i m working on cannot be stopped from this page what flavor of the prudence are you using which version and on what operating system prudence for javascript centos bit java version java version java tm se runtime environment build java hotspot tm bit server vm build mixed mode please provide any additional information below original issue reported on code google com by jonathan gmail com on aug at | 0 |
611,361 | 18,953,243,913 | IssuesEvent | 2021-11-18 17:11:39 | ntop/ntopng | https://api.github.com/repos/ntop/ntopng | opened | Missing reload feedback in Historical Flow Explorer | feature request priority ticket clickhouse | 
The load feedback icon is present only in the first page, and whenever queries are made there is no load icon whatsoever.
This ticket is to request to show the icon while the page is being rendered this to tell people that the result in the page top is not in sync with the table content. | 1.0 | Missing reload feedback in Historical Flow Explorer - 
The load feedback icon is present only in the first page, and whenever queries are made there is no load icon whatsoever.
This ticket is to request to show the icon while the page is being rendered this to tell people that the result in the page top is not in sync with the table content. | non_usab | missing reload feedback in historical flow explorer the load feedback icon is present only in the first page and whenever queries are made there is no load icon whatsoever this ticket is to request to show the icon while the page is being rendered this to tell people that the result in the page top is not in sync with the table content | 0 |
412,959 | 27,881,524,748 | IssuesEvent | 2023-03-21 19:49:26 | JoshuaKGoldberg/template-typescript-node-package | https://api.github.com/repos/JoshuaKGoldberg/template-typescript-node-package | closed | π Documentation: Mention review request flow in contributing docs | area: documentation status: accepting prs | ### Bug Report Checklist
- [X] I have pulled the latest `main` branch of the repository.
- [X] I have [searched for related issues](https://github.com/JoshuaKGoldberg/template-typescript-node-package/issues?q=is%3Aissue) and found none that matched my issue.
### Overview
Especially with #312 being filed, this template's provided automations are starting to suggest a particular PR review cycle. Which is good IMO - I think packages having unclear PR review practices is a common source of confusion! (e.g. https://github.com/typescript-eslint/typescript-eslint/issues/6492)
I'll mention these tidbits:
* Draft PRs won't be reviewed
* No need to ping a maintainer for review: they'll receive a notification when a PR is sent
* If your PR is merged, and I don't add you with allcontributors within 24 hours, that's a mistake on my end; please do bug me for it
### Additional Info
_No response_ | 1.0 | π Documentation: Mention review request flow in contributing docs - ### Bug Report Checklist
- [X] I have pulled the latest `main` branch of the repository.
- [X] I have [searched for related issues](https://github.com/JoshuaKGoldberg/template-typescript-node-package/issues?q=is%3Aissue) and found none that matched my issue.
### Overview
Especially with #312 being filed, this template's provided automations are starting to suggest a particular PR review cycle. Which is good IMO - I think packages having unclear PR review practices is a common source of confusion! (e.g. https://github.com/typescript-eslint/typescript-eslint/issues/6492)
I'll mention these tidbits:
* Draft PRs won't be reviewed
* No need to ping a maintainer for review: they'll receive a notification when a PR is sent
* If your PR is merged, and I don't add you with allcontributors within 24 hours, that's a mistake on my end; please do bug me for it
### Additional Info
_No response_ | non_usab | π documentation mention review request flow in contributing docs bug report checklist i have pulled the latest main branch of the repository i have and found none that matched my issue overview especially with being filed this template s provided automations are starting to suggest a particular pr review cycle which is good imo i think packages having unclear pr review practices is a common source of confusion e g i ll mention these tidbits draft prs won t be reviewed no need to ping a maintainer for review they ll receive a notification when a pr is sent if your pr is merged and i don t add you with allcontributors within hours that s a mistake on my end please do bug me for it additional info no response | 0 |
22,978 | 20,774,066,839 | IssuesEvent | 2022-03-16 08:49:25 | godotengine/godot | https://api.github.com/repos/godotengine/godot | closed | Mouse cursor disappears after adjusting environment preview sky light parameters | bug topic:editor usability topic:3d | ### Godot version
4.0 alpha 4 [f47097973]
### System information
Vulkan, Windows 11, Nvidia GTX 1060, intel i5 11400
### Issue description
After clicking the three dots on the top of the editor preview to adjust the properties of the sky light and adjusting the angular altitude or the azimuth with the sliders, the mouse cursor no longer displays while Godot is open

.
### Steps to reproduce
In a new project, adjust the azimuth or angular altitude settings of the sun with the sliders from the drop down menu above the preview window.
### Minimal reproduction project
_No response_ | True | Mouse cursor disappears after adjusting environment preview sky light parameters - ### Godot version
4.0 alpha 4 [f47097973]
### System information
Vulkan, Windows 11, Nvidia GTX 1060, intel i5 11400
### Issue description
After clicking the three dots on the top of the editor preview to adjust the properties of the sky light and adjusting the angular altitude or the azimuth with the sliders, the mouse cursor no longer displays while Godot is open

.
### Steps to reproduce
In a new project, adjust the azimuth or angular altitude settings of the sun with the sliders from the drop down menu above the preview window.
### Minimal reproduction project
_No response_ | usab | mouse cursor disappears after adjusting environment preview sky light parameters godot version alpha system information vulkan windows nvidia gtx intel issue description after clicking the three dots on the top of the editor preview to adjust the properties of the sky light and adjusting the angular altitude or the azimuth with the sliders the mouse cursor no longer displays while godot is open steps to reproduce in a new project adjust the azimuth or angular altitude settings of the sun with the sliders from the drop down menu above the preview window minimal reproduction project no response | 1 |
23,178 | 21,263,010,741 | IssuesEvent | 2022-04-13 07:11:38 | informalsystems/apalache | https://api.github.com/repos/informalsystems/apalache | closed | 'version' is not listed in 'apalache-mc --help', and standard way to obtain the version is 'foo --version', not 'foo version' | bug usability | The output of 'apalache-mc --help' does not list the 'version' command.
In addition, the command for obtaining the version as 'apalache-mc version' is non-standard.
The standard way to obtain the version appears to be as in 'apalache-mc --version', see e.g. 'grep --version', 'ls --version', 'java --version' | True | 'version' is not listed in 'apalache-mc --help', and standard way to obtain the version is 'foo --version', not 'foo version' - The output of 'apalache-mc --help' does not list the 'version' command.
In addition, the command for obtaining the version as 'apalache-mc version' is non-standard.
The standard way to obtain the version appears to be as in 'apalache-mc --version', see e.g. 'grep --version', 'ls --version', 'java --version' | usab | version is not listed in apalache mc help and standard way to obtain the version is foo version not foo version the output of apalache mc help does not list the version command in addition the command for obtaining the version as apalache mc version is non standard the standard way to obtain the version appears to be as in apalache mc version see e g grep version ls version java version | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.