Unnamed: 0
int64
0
832k
id
float64
2.49B
32.1B
type
stringclasses
1 value
created_at
stringlengths
19
19
repo
stringlengths
7
112
repo_url
stringlengths
36
141
action
stringclasses
3 values
title
stringlengths
2
665
labels
stringlengths
4
554
body
stringlengths
3
235k
index
stringclasses
6 values
text_combine
stringlengths
96
235k
label
stringclasses
2 values
text
stringlengths
96
196k
binary_label
int64
0
1
23,869
16,655,958,652
IssuesEvent
2021-06-05 14:28:40
Pafipi/MDM-iOS
https://api.github.com/repos/Pafipi/MDM-iOS
closed
Implement APNs with configuration.
appstore connect infrastructure
Apple Push Notification service is primary form of communication between device and MDM Server.
1.0
Implement APNs with configuration. - Apple Push Notification service is primary form of communication between device and MDM Server.
infrastructure
implement apns with configuration apple push notification service is primary form of communication between device and mdm server
1
7,198
6,818,953,731
IssuesEvent
2017-11-07 08:26:03
joshleeb/pylon
https://api.github.com/repos/joshleeb/pylon
closed
Re-Architect User Authentication
api infrastructure security
**Goal** Re-architect and re-implement user authentication for greater security and extensibility. **Technical Description** The requirements of the authentication system are: - Ability for a user to invalidate their authentication token on logout - A user should be able to log in on multiple devices - Ability to remember being logged in for a specified amount of time - Should link in with any already implemented Facebook/Google/3rd Party authentication methods **Work to be done** - [ ] Design architecture of authentication system - [ ] Consider pulling out into a separate service - [ ] Implement - [ ] E2E Testing **Notes** Initial thinking is that we will be using JWT as the token format and possibly a store such as Redis to contain a list of logged in users.
1.0
Re-Architect User Authentication - **Goal** Re-architect and re-implement user authentication for greater security and extensibility. **Technical Description** The requirements of the authentication system are: - Ability for a user to invalidate their authentication token on logout - A user should be able to log in on multiple devices - Ability to remember being logged in for a specified amount of time - Should link in with any already implemented Facebook/Google/3rd Party authentication methods **Work to be done** - [ ] Design architecture of authentication system - [ ] Consider pulling out into a separate service - [ ] Implement - [ ] E2E Testing **Notes** Initial thinking is that we will be using JWT as the token format and possibly a store such as Redis to contain a list of logged in users.
infrastructure
re architect user authentication goal re architect and re implement user authentication for greater security and extensibility technical description the requirements of the authentication system are ability for a user to invalidate their authentication token on logout a user should be able to log in on multiple devices ability to remember being logged in for a specified amount of time should link in with any already implemented facebook google party authentication methods work to be done design architecture of authentication system consider pulling out into a separate service implement testing notes initial thinking is that we will be using jwt as the token format and possibly a store such as redis to contain a list of logged in users
1
106,573
11,492,524,166
IssuesEvent
2020-02-11 21:09:54
BIAPT/Scripts
https://api.github.com/repos/BIAPT/Scripts
opened
Define the features inside the excell database
documentation
Don sent an excel file and we need to define the feature we are using over there so that everyone can understand what is hapening.
1.0
Define the features inside the excell database - Don sent an excel file and we need to define the feature we are using over there so that everyone can understand what is hapening.
non_infrastructure
define the features inside the excell database don sent an excel file and we need to define the feature we are using over there so that everyone can understand what is hapening
0
29,038
23,678,965,912
IssuesEvent
2022-08-28 14:09:28
codingteam/emulsion
https://api.github.com/repos/codingteam/emulsion
closed
Telegram content proxy
kind:feature kind:infrastructure
As an improvement from #26 (see #99), which doesn't always work that reliable, I think we could provide an actual Telegram content proxy. Whenever anyone sends us a piece of Telegram-only content (e.g. a photo, an audio log, a file, whatever), we receive a content identifier of said material. We may afterwards send something called `getFile` to the Telegram server, and eventually we'll receive a link to download the content. That link is only valid for a short amount of time, so it won't work for long-term storage inside of our logs. I suggest we do the following: - [x] Reap the content identifiers from incoming messages, and save them to a persistent storage. So, each Telegram content identifier effectively gets mapped to an id from our storage. The internal storage id should be resistant to brute force (i.e. no sequential ids, no pseudo-random or GUIDs). - [x] Provide a simple HTTP access to the Telegram content, that will receive our internal id, like `codingteam.org.ru/content/{internalid}`, and include this content link into a message sent to XMPP. - [ ] When receiving a HTTP request for content, asynchronously send a `getFile` Telegram content request, and await for a response. - [ ] When got the response, then, depending on the file size: - for smaller files (say, less than 5 MiB): get the contents and stream them to the requesting user directly, while saving the contents to the private LRU cache of some small size (say, several hundreds MiB) to faster serve multiple subsequent requests for the same content - for bigger files: await for a Telegram link, and then answer the user with a HTTP redirect to that link (if that's technically viable) The bot should also accumulate an anonymized file delivery statistics: count of requests for every file, average download/upload speed, cache hits. No client IPs should be saved (we value users' privacy). Q&A: 1. **Why not just use the Telegram content identifiers as-is: receive them from the user, and then proxy them as follows? Why ever use our own ids instead of Telegram-provided ones?** This would open a direct way of abusing the bot, which would effectively provide a proxy to all Telegram content ever. Instead of that, we'll filter to only the Telegram content posted in our chat, and the simplest way of filtering it would be just to remap the identifiers. 2. **Why use our internal cache at all?** To not overload Telegram infrastructure (otherwise they could simply ban us), and to improve the content delivery speed for bunch of smaller requests to the same resource. 3. **What's the use of the file download statistics?** To monitor and prevent any abuse of our content delivery system: e.g. if someone shares the content links to a wide audience, this could leech our traffic limits pretty fast, and/or lead to us being banned on Telegram. Depends on: - [x] #145 - [x] #147
1.0
Telegram content proxy - As an improvement from #26 (see #99), which doesn't always work that reliable, I think we could provide an actual Telegram content proxy. Whenever anyone sends us a piece of Telegram-only content (e.g. a photo, an audio log, a file, whatever), we receive a content identifier of said material. We may afterwards send something called `getFile` to the Telegram server, and eventually we'll receive a link to download the content. That link is only valid for a short amount of time, so it won't work for long-term storage inside of our logs. I suggest we do the following: - [x] Reap the content identifiers from incoming messages, and save them to a persistent storage. So, each Telegram content identifier effectively gets mapped to an id from our storage. The internal storage id should be resistant to brute force (i.e. no sequential ids, no pseudo-random or GUIDs). - [x] Provide a simple HTTP access to the Telegram content, that will receive our internal id, like `codingteam.org.ru/content/{internalid}`, and include this content link into a message sent to XMPP. - [ ] When receiving a HTTP request for content, asynchronously send a `getFile` Telegram content request, and await for a response. - [ ] When got the response, then, depending on the file size: - for smaller files (say, less than 5 MiB): get the contents and stream them to the requesting user directly, while saving the contents to the private LRU cache of some small size (say, several hundreds MiB) to faster serve multiple subsequent requests for the same content - for bigger files: await for a Telegram link, and then answer the user with a HTTP redirect to that link (if that's technically viable) The bot should also accumulate an anonymized file delivery statistics: count of requests for every file, average download/upload speed, cache hits. No client IPs should be saved (we value users' privacy). Q&A: 1. **Why not just use the Telegram content identifiers as-is: receive them from the user, and then proxy them as follows? Why ever use our own ids instead of Telegram-provided ones?** This would open a direct way of abusing the bot, which would effectively provide a proxy to all Telegram content ever. Instead of that, we'll filter to only the Telegram content posted in our chat, and the simplest way of filtering it would be just to remap the identifiers. 2. **Why use our internal cache at all?** To not overload Telegram infrastructure (otherwise they could simply ban us), and to improve the content delivery speed for bunch of smaller requests to the same resource. 3. **What's the use of the file download statistics?** To monitor and prevent any abuse of our content delivery system: e.g. if someone shares the content links to a wide audience, this could leech our traffic limits pretty fast, and/or lead to us being banned on Telegram. Depends on: - [x] #145 - [x] #147
infrastructure
telegram content proxy as an improvement from see which doesn t always work that reliable i think we could provide an actual telegram content proxy whenever anyone sends us a piece of telegram only content e g a photo an audio log a file whatever we receive a content identifier of said material we may afterwards send something called getfile to the telegram server and eventually we ll receive a link to download the content that link is only valid for a short amount of time so it won t work for long term storage inside of our logs i suggest we do the following reap the content identifiers from incoming messages and save them to a persistent storage so each telegram content identifier effectively gets mapped to an id from our storage the internal storage id should be resistant to brute force i e no sequential ids no pseudo random or guids provide a simple http access to the telegram content that will receive our internal id like codingteam org ru content internalid and include this content link into a message sent to xmpp when receiving a http request for content asynchronously send a getfile telegram content request and await for a response when got the response then depending on the file size for smaller files say less than mib get the contents and stream them to the requesting user directly while saving the contents to the private lru cache of some small size say several hundreds mib to faster serve multiple subsequent requests for the same content for bigger files await for a telegram link and then answer the user with a http redirect to that link if that s technically viable the bot should also accumulate an anonymized file delivery statistics count of requests for every file average download upload speed cache hits no client ips should be saved we value users privacy q a why not just use the telegram content identifiers as is receive them from the user and then proxy them as follows why ever use our own ids instead of telegram provided ones this would open a direct way of abusing the bot which would effectively provide a proxy to all telegram content ever instead of that we ll filter to only the telegram content posted in our chat and the simplest way of filtering it would be just to remap the identifiers why use our internal cache at all to not overload telegram infrastructure otherwise they could simply ban us and to improve the content delivery speed for bunch of smaller requests to the same resource what s the use of the file download statistics to monitor and prevent any abuse of our content delivery system e g if someone shares the content links to a wide audience this could leech our traffic limits pretty fast and or lead to us being banned on telegram depends on
1
28,204
23,083,275,865
IssuesEvent
2022-07-26 09:08:37
mad-coders/sylius-plugin-skeleton-generator
https://api.github.com/repos/mad-coders/sylius-plugin-skeleton-generator
opened
Define CORS policy
api frontend infrastructure
Ensure secure and consistent CORS policy across components: - Frontend (angular) application - API (nestjs) application - AWS API Gateway v2
1.0
Define CORS policy - Ensure secure and consistent CORS policy across components: - Frontend (angular) application - API (nestjs) application - AWS API Gateway v2
infrastructure
define cors policy ensure secure and consistent cors policy across components frontend angular application api nestjs application aws api gateway
1
38,494
8,850,936,038
IssuesEvent
2019-01-08 14:34:56
STEllAR-GROUP/phylanx
https://api.github.com/repos/STEllAR-GROUP/phylanx
closed
PhySL parser silently converts the type to node_data<double>
category: PhySL submodule: backend type: defect
Using square brackets to indicate a vector of integers in PhySL produces a `node_data<double>` instead of `node_data<std::int64_t>`. ``` cout(repeat(2,hstack(3))) cout(repeat(2,[3])) ``` ```console [2, 2, 2] physl: exception caught: <unknown>: primitive_argument_type does not hold an integer value type (type held: 'phylanx::ir::node_data<double>'): HPX(bad_parameter) ``` ```scheme define(a,[3]) cout(repeat(2,a)) ``` ```console physl: exception caught: <unknown>: primitive_argument_type does not hold an integer value type (type held: 'phylanx::ir::node_data<double>'): HPX(bad_parameter) ```
1.0
PhySL parser silently converts the type to node_data<double> - Using square brackets to indicate a vector of integers in PhySL produces a `node_data<double>` instead of `node_data<std::int64_t>`. ``` cout(repeat(2,hstack(3))) cout(repeat(2,[3])) ``` ```console [2, 2, 2] physl: exception caught: <unknown>: primitive_argument_type does not hold an integer value type (type held: 'phylanx::ir::node_data<double>'): HPX(bad_parameter) ``` ```scheme define(a,[3]) cout(repeat(2,a)) ``` ```console physl: exception caught: <unknown>: primitive_argument_type does not hold an integer value type (type held: 'phylanx::ir::node_data<double>'): HPX(bad_parameter) ```
non_infrastructure
physl parser silently converts the type to node data using square brackets to indicate a vector of integers in physl produces a node data instead of node data cout repeat hstack cout repeat console physl exception caught primitive argument type does not hold an integer value type type held phylanx ir node data hpx bad parameter scheme define a cout repeat a console physl exception caught primitive argument type does not hold an integer value type type held phylanx ir node data hpx bad parameter
0
15,550
11,581,991,492
IssuesEvent
2020-02-22 00:41:00
cmu-db/terrier
https://api.github.com/repos/cmu-db/terrier
closed
Switch to use diffs for check-clang-tidy
beginner infrastructure
Our `make check-clang-tidy` target takes almost 30min for some stages in our build. We should instead just run it against only the files that have changed in the PR.
1.0
Switch to use diffs for check-clang-tidy - Our `make check-clang-tidy` target takes almost 30min for some stages in our build. We should instead just run it against only the files that have changed in the PR.
infrastructure
switch to use diffs for check clang tidy our make check clang tidy target takes almost for some stages in our build we should instead just run it against only the files that have changed in the pr
1
807,842
30,020,964,293
IssuesEvent
2023-06-26 23:19:58
yugabyte/yugabyte-db
https://api.github.com/repos/yugabyte/yugabyte-db
closed
Add the ability to collapse/expand groups in the tserver Memory Breakdown page
kind/enhancement area/docdb priority/medium
Jira Link: [DB-2131](https://yugabyte.atlassian.net/browse/DB-2131) It would be very convenient to be able to collapse/expand nested groups like server, BlockBasedTable, etc: ![image (18)](https://user-images.githubusercontent.com/903044/65644708-adf8e280-dffd-11e9-906f-9e8fc49e8957.png)
1.0
Add the ability to collapse/expand groups in the tserver Memory Breakdown page - Jira Link: [DB-2131](https://yugabyte.atlassian.net/browse/DB-2131) It would be very convenient to be able to collapse/expand nested groups like server, BlockBasedTable, etc: ![image (18)](https://user-images.githubusercontent.com/903044/65644708-adf8e280-dffd-11e9-906f-9e8fc49e8957.png)
non_infrastructure
add the ability to collapse expand groups in the tserver memory breakdown page jira link it would be very convenient to be able to collapse expand nested groups like server blockbasedtable etc
0
676,927
23,142,928,311
IssuesEvent
2022-07-28 20:27:04
dhowe/AdNauseam
https://api.github.com/repos/dhowe/AdNauseam
closed
Adjust HTML structure in Options.html
PRIORITY: Medium
The HTML structure of our options.html page in the dashboard is really outdated. In general it is fine, but it makes our checkboxes look ugly in comparisson with ublock: ![Captureublock](https://user-images.githubusercontent.com/4967860/146659166-79a7ceaf-50f5-4a76-9552-16472aadfe9e.PNG) ![Capturedashboard](https://user-images.githubusercontent.com/4967860/146659167-00bda651-1c92-46cb-93de-8e8ded9d0b2e.PNG) ### I was able to fix this at the filter list page: ![Capture3pfilters](https://user-images.githubusercontent.com/4967860/146659169-81e7a796-38f9-4a86-9499-65157a1c3d01.PNG) But at the options it is much more tricky to do so... Very time consuming plus some adaptations are necessary.
1.0
Adjust HTML structure in Options.html - The HTML structure of our options.html page in the dashboard is really outdated. In general it is fine, but it makes our checkboxes look ugly in comparisson with ublock: ![Captureublock](https://user-images.githubusercontent.com/4967860/146659166-79a7ceaf-50f5-4a76-9552-16472aadfe9e.PNG) ![Capturedashboard](https://user-images.githubusercontent.com/4967860/146659167-00bda651-1c92-46cb-93de-8e8ded9d0b2e.PNG) ### I was able to fix this at the filter list page: ![Capture3pfilters](https://user-images.githubusercontent.com/4967860/146659169-81e7a796-38f9-4a86-9499-65157a1c3d01.PNG) But at the options it is much more tricky to do so... Very time consuming plus some adaptations are necessary.
non_infrastructure
adjust html structure in options html the html structure of our options html page in the dashboard is really outdated in general it is fine but it makes our checkboxes look ugly in comparisson with ublock i was able to fix this at the filter list page but at the options it is much more tricky to do so very time consuming plus some adaptations are necessary
0
25,153
18,169,488,629
IssuesEvent
2021-09-27 18:11:28
dotnet/roslyn
https://api.github.com/repos/dotnet/roslyn
closed
Build failed due to NU3037 (The repository primary signature validity period has expired.)
Bug Area-Infrastructure Contributor Pain
This is a tracking issue for CI builds that fail due to NU3037. <!-- runfo report start --> |Build|Kind|Start Time| |---|---|---| [1095348](https://dev.azure.com/dnceng/public/_build/results?buildId=1095348)|Rolling|2021-19-04| [1099112](https://dev.azure.com/dnceng/public/_build/results?buildId=1099112)|Rolling|2021-21-04| <!-- runfo report end -->
1.0
Build failed due to NU3037 (The repository primary signature validity period has expired.) - This is a tracking issue for CI builds that fail due to NU3037. <!-- runfo report start --> |Build|Kind|Start Time| |---|---|---| [1095348](https://dev.azure.com/dnceng/public/_build/results?buildId=1095348)|Rolling|2021-19-04| [1099112](https://dev.azure.com/dnceng/public/_build/results?buildId=1099112)|Rolling|2021-21-04| <!-- runfo report end -->
infrastructure
build failed due to the repository primary signature validity period has expired this is a tracking issue for ci builds that fail due to build kind start time
1
174,749
13,509,773,206
IssuesEvent
2020-09-14 09:41:58
bpfkorea/agora
https://api.github.com/repos/bpfkorea/agora
closed
Networking unittests should test multi-round consensus
C. Stellar Consensus Protocol Story-Points:8 type-testing
Currently all of the networking tests reach consensus in 1 round - they were only doing multiple rounds accidentally due to the code before the bugfix in https://github.com/bpfkorea/agora/pull/1078. We should write some tests where the nodes are deliberately rejecting nominations for several rounds until one is accepted at round R, where R could be arbitrarily high.
1.0
Networking unittests should test multi-round consensus - Currently all of the networking tests reach consensus in 1 round - they were only doing multiple rounds accidentally due to the code before the bugfix in https://github.com/bpfkorea/agora/pull/1078. We should write some tests where the nodes are deliberately rejecting nominations for several rounds until one is accepted at round R, where R could be arbitrarily high.
non_infrastructure
networking unittests should test multi round consensus currently all of the networking tests reach consensus in round they were only doing multiple rounds accidentally due to the code before the bugfix in we should write some tests where the nodes are deliberately rejecting nominations for several rounds until one is accepted at round r where r could be arbitrarily high
0
35,064
30,727,014,712
IssuesEvent
2023-07-27 20:34:59
dart-lang/site-www
https://api.github.com/repos/dart-lang/site-www
closed
https://storage.googleapis.com/download.dartlang.org/linux/debian is not signed
infrastructure p1-high InstallDart
### Describe the problem IT looks like the GPG key expired again (See previous issue: https://github.com/dart-lang/site-www/issues/1457) sudo apt update ... Ign:5 https://storage.googleapis.com/download.dartlang.org/linux/debian stable InRelease Get:8 https://storage.googleapis.com/download.dartlang.org/linux/debian stable Release [944 B] Get:9 https://storage.googleapis.com/download.dartlang.org/linux/debian stable Release.gpg [819 B] Ign:9 https://storage.googleapis.com/download.dartlang.org/linux/debian stable Release.gpg ... Reading package lists... Done W: GPG error: https://storage.googleapis.com/download.dartlang.org/linux/debian stable Release: The following signatures were invalid: BADSIG 4EB27DB2A3B88B8B Google Inc. (Linux Packages Signing Authority) <linux-packages-keymaster@google.com> E: The repository 'https://storage.googleapis.com/download.dartlang.org/linux/debian stable Release' is not signed. ### Expected fix Update the signing key / Re-sign the repository ### Additional context A Dockerfile with the following will not build: ```Dockerfile FROM docker.sel.inc/ubuntu:20.04 # Install Dart RUN apt-get update && apt-get install -y apt-transport-https \ && sh -c 'wget --waitretry=5 -qO- https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -' \ && sh -c 'wget --waitretry=5 -qO- https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list' RUN apt-get update && apt-get install -y dart=2.14.4-1 ``` When running it locally, it is apparent that the apt-get update fails: ```sh Reading package lists... Done W: GPG error: https://storage.googleapis.com/download.dartlang.org/linux/debian stable Release: The following signatures were invalid: BADSIG 4EB27DB2A3B88B8B Google Inc. (Linux Packages Signing Authority) <linux-packages-keymaster@google.com> E: The repository 'https://storage.googleapis.com/download.dartlang.org/linux/debian stable Release' is not signed. ```
1.0
https://storage.googleapis.com/download.dartlang.org/linux/debian is not signed - ### Describe the problem IT looks like the GPG key expired again (See previous issue: https://github.com/dart-lang/site-www/issues/1457) sudo apt update ... Ign:5 https://storage.googleapis.com/download.dartlang.org/linux/debian stable InRelease Get:8 https://storage.googleapis.com/download.dartlang.org/linux/debian stable Release [944 B] Get:9 https://storage.googleapis.com/download.dartlang.org/linux/debian stable Release.gpg [819 B] Ign:9 https://storage.googleapis.com/download.dartlang.org/linux/debian stable Release.gpg ... Reading package lists... Done W: GPG error: https://storage.googleapis.com/download.dartlang.org/linux/debian stable Release: The following signatures were invalid: BADSIG 4EB27DB2A3B88B8B Google Inc. (Linux Packages Signing Authority) <linux-packages-keymaster@google.com> E: The repository 'https://storage.googleapis.com/download.dartlang.org/linux/debian stable Release' is not signed. ### Expected fix Update the signing key / Re-sign the repository ### Additional context A Dockerfile with the following will not build: ```Dockerfile FROM docker.sel.inc/ubuntu:20.04 # Install Dart RUN apt-get update && apt-get install -y apt-transport-https \ && sh -c 'wget --waitretry=5 -qO- https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -' \ && sh -c 'wget --waitretry=5 -qO- https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list' RUN apt-get update && apt-get install -y dart=2.14.4-1 ``` When running it locally, it is apparent that the apt-get update fails: ```sh Reading package lists... Done W: GPG error: https://storage.googleapis.com/download.dartlang.org/linux/debian stable Release: The following signatures were invalid: BADSIG 4EB27DB2A3B88B8B Google Inc. (Linux Packages Signing Authority) <linux-packages-keymaster@google.com> E: The repository 'https://storage.googleapis.com/download.dartlang.org/linux/debian stable Release' is not signed. ```
infrastructure
is not signed describe the problem it looks like the gpg key expired again see previous issue sudo apt update ign stable inrelease get stable release get stable release gpg ign stable release gpg reading package lists done w gpg error stable release the following signatures were invalid badsig google inc linux packages signing authority e the repository stable release is not signed expected fix update the signing key re sign the repository additional context a dockerfile with the following will not build dockerfile from docker sel inc ubuntu install dart run apt get update apt get install y apt transport https sh c wget waitretry qo apt key add sh c wget waitretry qo etc apt sources list d dart stable list run apt get update apt get install y dart when running it locally it is apparent that the apt get update fails sh reading package lists done w gpg error stable release the following signatures were invalid badsig google inc linux packages signing authority e the repository stable release is not signed
1
16,834
12,152,119,409
IssuesEvent
2020-04-24 21:26:58
BCDevOps/developer-experience
https://api.github.com/repos/BCDevOps/developer-experience
opened
Create monitoring for Kibana/EFK Logging services
Infrastructure action-required
https://trello.com/c/sOMkFfGc/96-create-monitoring-for-kibana-efk-logging-services Internal tools for monitoring disk space are too inconsistent - want to add at the very least disk space checks for Elasticsearch pods. Should probably add additional checks as well to flesh out our proactive monitoring of this service.
1.0
Create monitoring for Kibana/EFK Logging services - https://trello.com/c/sOMkFfGc/96-create-monitoring-for-kibana-efk-logging-services Internal tools for monitoring disk space are too inconsistent - want to add at the very least disk space checks for Elasticsearch pods. Should probably add additional checks as well to flesh out our proactive monitoring of this service.
infrastructure
create monitoring for kibana efk logging services internal tools for monitoring disk space are too inconsistent want to add at the very least disk space checks for elasticsearch pods should probably add additional checks as well to flesh out our proactive monitoring of this service
1
109,628
23,801,461,483
IssuesEvent
2022-09-03 11:07:49
JabRef/jabref
https://api.github.com/repos/JabRef/jabref
closed
Tilde accent in author field gives "Names are not in the standard BibTex format" message
bib(la)tex unicode
### JabRef version Latest development branch build (please note build date below) ### Operating system Windows ### Details on version and operating system Windows 10 21H1, JabRef 5.4 (2021-09-10) ### Checked with the latest development build - [X] I made a backup of my libraries before testing the latest development version. - [X] I have tested the latest development version and the problem persists ### Steps to reproduce the behaviour 1. Create a new library and citation 2. Fill in author field, e.g., `Nu{\~{n}}ez, Jose and Smith, John` The error does not occur with any other accent characters (`\"{o}`, `\'{e}`,`\u{o}`, etc.) 3. The warning sign appears by the field and integrity check displays the message "Names are not in the standard BibTex format" ### Appendix ![image](https://user-images.githubusercontent.com/48645469/132863787-17244f30-f472-4b92-bbc4-22b869595558.png)
1.0
Tilde accent in author field gives "Names are not in the standard BibTex format" message - ### JabRef version Latest development branch build (please note build date below) ### Operating system Windows ### Details on version and operating system Windows 10 21H1, JabRef 5.4 (2021-09-10) ### Checked with the latest development build - [X] I made a backup of my libraries before testing the latest development version. - [X] I have tested the latest development version and the problem persists ### Steps to reproduce the behaviour 1. Create a new library and citation 2. Fill in author field, e.g., `Nu{\~{n}}ez, Jose and Smith, John` The error does not occur with any other accent characters (`\"{o}`, `\'{e}`,`\u{o}`, etc.) 3. The warning sign appears by the field and integrity check displays the message "Names are not in the standard BibTex format" ### Appendix ![image](https://user-images.githubusercontent.com/48645469/132863787-17244f30-f472-4b92-bbc4-22b869595558.png)
non_infrastructure
tilde accent in author field gives names are not in the standard bibtex format message jabref version latest development branch build please note build date below operating system windows details on version and operating system windows jabref checked with the latest development build i made a backup of my libraries before testing the latest development version i have tested the latest development version and the problem persists steps to reproduce the behaviour create a new library and citation fill in author field e g nu n ez jose and smith john the error does not occur with any other accent characters o e u o etc the warning sign appears by the field and integrity check displays the message names are not in the standard bibtex format appendix
0
5,460
5,672,357,489
IssuesEvent
2017-04-12 01:04:24
dotnet/corefx
https://api.github.com/repos/dotnet/corefx
closed
Move to 2.0 CLI for our toolsets
area-Infrastructure enhancement
As part of the Build from Source effort we need to be able to build CoreFx with the 2.0 CLI otherwise we will not be able do a full stack build from SharedFx to CLI and then reuse that to build the stack again. Somethings that I know will be broken are the 2.0 tools no longer support direct restore of a project.json file which we depend on still in corefx (likely in all our repos). cc @dleeapho @ellismg @chcosta @ellismg are you tracking this work somewhere else?
1.0
Move to 2.0 CLI for our toolsets - As part of the Build from Source effort we need to be able to build CoreFx with the 2.0 CLI otherwise we will not be able do a full stack build from SharedFx to CLI and then reuse that to build the stack again. Somethings that I know will be broken are the 2.0 tools no longer support direct restore of a project.json file which we depend on still in corefx (likely in all our repos). cc @dleeapho @ellismg @chcosta @ellismg are you tracking this work somewhere else?
infrastructure
move to cli for our toolsets as part of the build from source effort we need to be able to build corefx with the cli otherwise we will not be able do a full stack build from sharedfx to cli and then reuse that to build the stack again somethings that i know will be broken are the tools no longer support direct restore of a project json file which we depend on still in corefx likely in all our repos cc dleeapho ellismg chcosta ellismg are you tracking this work somewhere else
1
520,836
15,095,101,969
IssuesEvent
2021-02-07 09:38:37
bit-by-bit-coding/bxb-website
https://api.github.com/repos/bit-by-bit-coding/bxb-website
opened
Sub-sub menus don't collapse or look good on mobile
bug high priority
Ie all the stuff under summer or school year
1.0
Sub-sub menus don't collapse or look good on mobile - Ie all the stuff under summer or school year
non_infrastructure
sub sub menus don t collapse or look good on mobile ie all the stuff under summer or school year
0
405,293
27,511,964,064
IssuesEvent
2023-03-06 09:26:07
alphagov/govuk-design-system
https://api.github.com/repos/alphagov/govuk-design-system
closed
Record what content/documentation we have in GitHub
documentation
<!-- This is a template for any issues that aren’t bug reports or new feature requests. The headings in this section provide examples of the information you might want to include, but feel free to add/delete sections where appropriate. --> ## What Record what content/documentation we have in GitHub. ## Why Part of the content audit and management epic https://github.com/alphagov/govuk-design-system/issues/2352 Improving our documentation for users ## Who needs to work on this Technical Writer ## Who needs to review this User Researcher, Delivery Manager ## Done when Listed all the relevant pages in GitHub and associated observations - [ ] Thing to do
1.0
Record what content/documentation we have in GitHub - <!-- This is a template for any issues that aren’t bug reports or new feature requests. The headings in this section provide examples of the information you might want to include, but feel free to add/delete sections where appropriate. --> ## What Record what content/documentation we have in GitHub. ## Why Part of the content audit and management epic https://github.com/alphagov/govuk-design-system/issues/2352 Improving our documentation for users ## Who needs to work on this Technical Writer ## Who needs to review this User Researcher, Delivery Manager ## Done when Listed all the relevant pages in GitHub and associated observations - [ ] Thing to do
non_infrastructure
record what content documentation we have in github this is a template for any issues that aren’t bug reports or new feature requests the headings in this section provide examples of the information you might want to include but feel free to add delete sections where appropriate what record what content documentation we have in github why part of the content audit and management epic improving our documentation for users who needs to work on this technical writer who needs to review this user researcher delivery manager done when listed all the relevant pages in github and associated observations thing to do
0
189,664
15,192,663,672
IssuesEvent
2021-02-15 22:34:20
cake-contrib/Cake.Warp
https://api.github.com/repos/cake-contrib/Cake.Warp
closed
Nuget package mentions wrong repository for warp binaries
Documentation
The description of the package mentions that the warp binaries originates from https://github.com/dgiagio/warp. This is unfortunately not true anymore, as the latest binaries are grabbed from https://github.com/fintermobilityas/warp instead.
1.0
Nuget package mentions wrong repository for warp binaries - The description of the package mentions that the warp binaries originates from https://github.com/dgiagio/warp. This is unfortunately not true anymore, as the latest binaries are grabbed from https://github.com/fintermobilityas/warp instead.
non_infrastructure
nuget package mentions wrong repository for warp binaries the description of the package mentions that the warp binaries originates from this is unfortunately not true anymore as the latest binaries are grabbed from instead
0
199,326
6,988,284,517
IssuesEvent
2017-12-14 12:21:26
xcodeswift/sake
https://api.github.com/repos/xcodeswift/sake
closed
Add shell util
difficulty:moderate priority:high status:ready-development type:enhancement
## Context 🕵️‍♀️ The Foundation API to run commands in the shell is a bit cumbersome. ## What 🌱 Add a util that exposes an interface to run tasks in the shell. ## Proposal 🎉 We can maybe use [SwiftShell](https://github.com/kareman/SwiftShell) or [ShellOut](https://github.com/JohnSundell/ShellOut) as inspiration
1.0
Add shell util - ## Context 🕵️‍♀️ The Foundation API to run commands in the shell is a bit cumbersome. ## What 🌱 Add a util that exposes an interface to run tasks in the shell. ## Proposal 🎉 We can maybe use [SwiftShell](https://github.com/kareman/SwiftShell) or [ShellOut](https://github.com/JohnSundell/ShellOut) as inspiration
non_infrastructure
add shell util context 🕵️‍♀️ the foundation api to run commands in the shell is a bit cumbersome what 🌱 add a util that exposes an interface to run tasks in the shell proposal 🎉 we can maybe use or as inspiration
0
32,002
26,343,630,743
IssuesEvent
2023-01-10 19:54:15
opensearch-project/sql
https://api.github.com/repos/opensearch-project/sql
closed
move workbench outside of SQL repo
enhancement infrastructure
### Is your feature request related to a problem? Please describe As mentioned under https://github.com/opensearch-project/opensearch-build/issues/2188, the workbench tool is deployed alongside the SQL plugin in the SQL plugin repo. However, the UI tool should follow its own CI/CD process and release versioning instead of depending on the SQL plugin. These are separate release artefacts and they should have their own separate repository project. ### Describe the solution you'd like Move SQL-workbench folder into it's own project repository under the OpenSearch project. ### Describe alternatives you've considered Alternatives (such as the status quo) means that repositories will be responsible for multiple release artefacts, which is less ideal. ### Additional context Additional discussion under: https://github.com/opensearch-project/opensearch-build/issues/2188 including Pro/Cons
1.0
move workbench outside of SQL repo - ### Is your feature request related to a problem? Please describe As mentioned under https://github.com/opensearch-project/opensearch-build/issues/2188, the workbench tool is deployed alongside the SQL plugin in the SQL plugin repo. However, the UI tool should follow its own CI/CD process and release versioning instead of depending on the SQL plugin. These are separate release artefacts and they should have their own separate repository project. ### Describe the solution you'd like Move SQL-workbench folder into it's own project repository under the OpenSearch project. ### Describe alternatives you've considered Alternatives (such as the status quo) means that repositories will be responsible for multiple release artefacts, which is less ideal. ### Additional context Additional discussion under: https://github.com/opensearch-project/opensearch-build/issues/2188 including Pro/Cons
infrastructure
move workbench outside of sql repo is your feature request related to a problem please describe as mentioned under the workbench tool is deployed alongside the sql plugin in the sql plugin repo however the ui tool should follow its own ci cd process and release versioning instead of depending on the sql plugin these are separate release artefacts and they should have their own separate repository project describe the solution you d like move sql workbench folder into it s own project repository under the opensearch project describe alternatives you ve considered alternatives such as the status quo means that repositories will be responsible for multiple release artefacts which is less ideal additional context additional discussion under including pro cons
1
7,057
10,216,698,494
IssuesEvent
2019-08-15 11:28:36
eobermuhlner/big-math
https://api.github.com/repos/eobermuhlner/big-math
closed
Prepare release 2.2.0
development process
- [x] run performance benchmarks, create png, commit - [x] add release number header to release note - [x] rename release note - [x] change version in `build.gradle` - [x] upload artifacts to maven central - [x] uncomment task `uploadArtifacts` in `build.gradle` - [x] run `./gradlew clean` - [x] run `./gradlew :ch.obermuhlner.math.big:uploadArchives` - [x] comment task `uploadArtifacts` in `build.gradle` - [x] go to https://oss.sonatype.org/ - [x] in tab 'Staging Repositories' locate own Repository (typically at the end of the list) - [x] verify content of own Repository (version number!) - [x] `Close` own Repository - [x] `Refresh` until `Release` becomes enabled - [x] `Release` own Repository - [x] create github release from same artifacts - [x] Create new draft release - [x] Copy content of release note into draft release - [x] Add artefacts from gradle build to draft release - [x] big-math-*.jar - [x] big-math-*-javadoc.jar - [x] big-math-*-sources.jar - [x] Publish release - [x] update readme - [x] add generated javadoc to `docs/javadoc` - [x] update `docs/index.md` - [x] update dependent projects - [x] create empty release note for next release
1.0
Prepare release 2.2.0 - - [x] run performance benchmarks, create png, commit - [x] add release number header to release note - [x] rename release note - [x] change version in `build.gradle` - [x] upload artifacts to maven central - [x] uncomment task `uploadArtifacts` in `build.gradle` - [x] run `./gradlew clean` - [x] run `./gradlew :ch.obermuhlner.math.big:uploadArchives` - [x] comment task `uploadArtifacts` in `build.gradle` - [x] go to https://oss.sonatype.org/ - [x] in tab 'Staging Repositories' locate own Repository (typically at the end of the list) - [x] verify content of own Repository (version number!) - [x] `Close` own Repository - [x] `Refresh` until `Release` becomes enabled - [x] `Release` own Repository - [x] create github release from same artifacts - [x] Create new draft release - [x] Copy content of release note into draft release - [x] Add artefacts from gradle build to draft release - [x] big-math-*.jar - [x] big-math-*-javadoc.jar - [x] big-math-*-sources.jar - [x] Publish release - [x] update readme - [x] add generated javadoc to `docs/javadoc` - [x] update `docs/index.md` - [x] update dependent projects - [x] create empty release note for next release
non_infrastructure
prepare release run performance benchmarks create png commit add release number header to release note rename release note change version in build gradle upload artifacts to maven central uncomment task uploadartifacts in build gradle run gradlew clean run gradlew ch obermuhlner math big uploadarchives comment task uploadartifacts in build gradle go to in tab staging repositories locate own repository typically at the end of the list verify content of own repository version number close own repository refresh until release becomes enabled release own repository create github release from same artifacts create new draft release copy content of release note into draft release add artefacts from gradle build to draft release big math jar big math javadoc jar big math sources jar publish release update readme add generated javadoc to docs javadoc update docs index md update dependent projects create empty release note for next release
0
23,400
4,934,034,507
IssuesEvent
2016-11-28 17:55:04
gunthercox/ChatterBot
https://api.github.com/repos/gunthercox/ChatterBot
closed
Add example of using sessions to documentation
documentation
A good example of this might be the get method in the Django ChatterBot API view.
1.0
Add example of using sessions to documentation - A good example of this might be the get method in the Django ChatterBot API view.
non_infrastructure
add example of using sessions to documentation a good example of this might be the get method in the django chatterbot api view
0
8,890
7,719,839,790
IssuesEvent
2018-05-23 20:46:09
MarcelCutts/pride-london-web-gatsby
https://api.github.com/repos/MarcelCutts/pride-london-web-gatsby
closed
Deploy current master
Infrastructure
Whatever is the HEAD of master should be hosted and accessible. This will be done with Zeit using similar configurations to the previous repo.
1.0
Deploy current master - Whatever is the HEAD of master should be hosted and accessible. This will be done with Zeit using similar configurations to the previous repo.
infrastructure
deploy current master whatever is the head of master should be hosted and accessible this will be done with zeit using similar configurations to the previous repo
1
539,611
15,791,927,152
IssuesEvent
2021-04-02 05:55:24
webcompat/web-bugs
https://api.github.com/repos/webcompat/web-bugs
closed
tv2.dk - Incorrect page position when returning back to main page
browser-firefox-ios engine-gecko os-ios priority-normal
<!-- @browser: Firefox 33 --> <!-- @ua_header: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Safari/605.1.15 --> <!-- @reported_with: mobile-reporter --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/68763 --> **URL**: https://tv2.dk/ **Browser / Version**: Firefox 33 **Operating System**: iOS 14.4.1 **Tested Another Browser**: Yes Chrome **Problem type**: Something else **Description**: Scroll down in the frontpage and click an article. Navigate back from the article and you end up in the top of the frontpage - not where you clicked. **Steps to Reproduce**: Scroll down in the frontpage of tv2.dk and click an article. Navigate back from the article and you end up in the top of the frontpage - not in the position from where you clicked the article. It dosn’t happen in iOS Safari or Chrome. <details> <summary>Browser Configuration</summary> <ul> <li>None</li> </ul> </details> _From [webcompat.com](https://webcompat.com/) with ❤️_
1.0
tv2.dk - Incorrect page position when returning back to main page - <!-- @browser: Firefox 33 --> <!-- @ua_header: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Safari/605.1.15 --> <!-- @reported_with: mobile-reporter --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/68763 --> **URL**: https://tv2.dk/ **Browser / Version**: Firefox 33 **Operating System**: iOS 14.4.1 **Tested Another Browser**: Yes Chrome **Problem type**: Something else **Description**: Scroll down in the frontpage and click an article. Navigate back from the article and you end up in the top of the frontpage - not where you clicked. **Steps to Reproduce**: Scroll down in the frontpage of tv2.dk and click an article. Navigate back from the article and you end up in the top of the frontpage - not in the position from where you clicked the article. It dosn’t happen in iOS Safari or Chrome. <details> <summary>Browser Configuration</summary> <ul> <li>None</li> </ul> </details> _From [webcompat.com](https://webcompat.com/) with ❤️_
non_infrastructure
dk incorrect page position when returning back to main page url browser version firefox operating system ios tested another browser yes chrome problem type something else description scroll down in the frontpage and click an article navigate back from the article and you end up in the top of the frontpage not where you clicked steps to reproduce scroll down in the frontpage of dk and click an article navigate back from the article and you end up in the top of the frontpage not in the position from where you clicked the article it dosn’t happen in ios safari or chrome browser configuration none from with ❤️
0
682,066
23,330,965,269
IssuesEvent
2022-08-09 05:07:06
WasmEdge/WasmEdge
https://api.github.com/repos/WasmEdge/WasmEdge
closed
[Integration] Provide Fedora and RHEL packages
integration priority:medium
Provide WasmEdge install packages for Fedora / RHEL upstream repos.
1.0
[Integration] Provide Fedora and RHEL packages - Provide WasmEdge install packages for Fedora / RHEL upstream repos.
non_infrastructure
provide fedora and rhel packages provide wasmedge install packages for fedora rhel upstream repos
0
97,923
16,327,787,556
IssuesEvent
2021-05-12 04:56:08
sharethrough/mikro-orm
https://api.github.com/repos/sharethrough/mikro-orm
opened
CVE-2021-23337 (High) detected in lodash-4.17.20.tgz, lodash-4.17.15.tgz
security vulnerability
## CVE-2021-23337 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>lodash-4.17.20.tgz</b>, <b>lodash-4.17.15.tgz</b></p></summary> <p> <details><summary><b>lodash-4.17.20.tgz</b></p></summary> <p>Lodash modular utilities.</p> <p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz">https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz</a></p> <p>Path to dependency file: mikro-orm/docs/package.json</p> <p>Path to vulnerable library: mikro-orm/docs/node_modules/lodash</p> <p> Dependency Hierarchy: - preset-classic-2.0.0-alpha.75.tgz (Root Library) - plugin-content-pages-2.0.0-alpha.75.tgz - :x: **lodash-4.17.20.tgz** (Vulnerable Library) </details> <details><summary><b>lodash-4.17.15.tgz</b></p></summary> <p>Lodash modular utilities.</p> <p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz">https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz</a></p> <p>Path to dependency file: mikro-orm/docs/package.json</p> <p>Path to vulnerable library: mikro-orm/docs/node_modules/lodash</p> <p> Dependency Hierarchy: - core-2.0.0-alpha.75.tgz (Root Library) - webpack-dev-server-3.11.2.tgz - portfinder-1.0.28.tgz - async-2.6.3.tgz - :x: **lodash-4.17.15.tgz** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/sharethrough/mikro-orm/commit/36ba319629e171ff276cb2202ec06ccd2db2c0ed">36ba319629e171ff276cb2202ec06ccd2db2c0ed</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Lodash versions prior to 4.17.21 are vulnerable to Command Injection via the template function. <p>Publish Date: 2021-02-15 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23337>CVE-2021-23337</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.2</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: High - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/lodash/lodash/commit/3469357cff396a26c363f8c1b5a91dde28ba4b1c">https://github.com/lodash/lodash/commit/3469357cff396a26c363f8c1b5a91dde28ba4b1c</a></p> <p>Release Date: 2021-02-15</p> <p>Fix Resolution: lodash - 4.17.21</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"lodash","packageVersion":"4.17.20","packageFilePaths":["/docs/package.json"],"isTransitiveDependency":true,"dependencyTree":"@docusaurus/preset-classic:2.0.0-alpha.75;@docusaurus/plugin-content-pages:2.0.0-alpha.75;lodash:4.17.20","isMinimumFixVersionAvailable":true,"minimumFixVersion":"lodash - 4.17.21"},{"packageType":"javascript/Node.js","packageName":"lodash","packageVersion":"4.17.15","packageFilePaths":["/docs/package.json"],"isTransitiveDependency":true,"dependencyTree":"@docusaurus/core:2.0.0-alpha.75;webpack-dev-server:3.11.2;portfinder:1.0.28;async:2.6.3;lodash:4.17.15","isMinimumFixVersionAvailable":true,"minimumFixVersion":"lodash - 4.17.21"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2021-23337","vulnerabilityDetails":"Lodash versions prior to 4.17.21 are vulnerable to Command Injection via the template function.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23337","cvss3Severity":"high","cvss3Score":"7.2","cvss3Metrics":{"A":"High","AC":"Low","PR":"High","S":"Unchanged","C":"High","UI":"None","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> -->
True
CVE-2021-23337 (High) detected in lodash-4.17.20.tgz, lodash-4.17.15.tgz - ## CVE-2021-23337 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>lodash-4.17.20.tgz</b>, <b>lodash-4.17.15.tgz</b></p></summary> <p> <details><summary><b>lodash-4.17.20.tgz</b></p></summary> <p>Lodash modular utilities.</p> <p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz">https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz</a></p> <p>Path to dependency file: mikro-orm/docs/package.json</p> <p>Path to vulnerable library: mikro-orm/docs/node_modules/lodash</p> <p> Dependency Hierarchy: - preset-classic-2.0.0-alpha.75.tgz (Root Library) - plugin-content-pages-2.0.0-alpha.75.tgz - :x: **lodash-4.17.20.tgz** (Vulnerable Library) </details> <details><summary><b>lodash-4.17.15.tgz</b></p></summary> <p>Lodash modular utilities.</p> <p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz">https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz</a></p> <p>Path to dependency file: mikro-orm/docs/package.json</p> <p>Path to vulnerable library: mikro-orm/docs/node_modules/lodash</p> <p> Dependency Hierarchy: - core-2.0.0-alpha.75.tgz (Root Library) - webpack-dev-server-3.11.2.tgz - portfinder-1.0.28.tgz - async-2.6.3.tgz - :x: **lodash-4.17.15.tgz** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/sharethrough/mikro-orm/commit/36ba319629e171ff276cb2202ec06ccd2db2c0ed">36ba319629e171ff276cb2202ec06ccd2db2c0ed</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Lodash versions prior to 4.17.21 are vulnerable to Command Injection via the template function. <p>Publish Date: 2021-02-15 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23337>CVE-2021-23337</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.2</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: High - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/lodash/lodash/commit/3469357cff396a26c363f8c1b5a91dde28ba4b1c">https://github.com/lodash/lodash/commit/3469357cff396a26c363f8c1b5a91dde28ba4b1c</a></p> <p>Release Date: 2021-02-15</p> <p>Fix Resolution: lodash - 4.17.21</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"lodash","packageVersion":"4.17.20","packageFilePaths":["/docs/package.json"],"isTransitiveDependency":true,"dependencyTree":"@docusaurus/preset-classic:2.0.0-alpha.75;@docusaurus/plugin-content-pages:2.0.0-alpha.75;lodash:4.17.20","isMinimumFixVersionAvailable":true,"minimumFixVersion":"lodash - 4.17.21"},{"packageType":"javascript/Node.js","packageName":"lodash","packageVersion":"4.17.15","packageFilePaths":["/docs/package.json"],"isTransitiveDependency":true,"dependencyTree":"@docusaurus/core:2.0.0-alpha.75;webpack-dev-server:3.11.2;portfinder:1.0.28;async:2.6.3;lodash:4.17.15","isMinimumFixVersionAvailable":true,"minimumFixVersion":"lodash - 4.17.21"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2021-23337","vulnerabilityDetails":"Lodash versions prior to 4.17.21 are vulnerable to Command Injection via the template function.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23337","cvss3Severity":"high","cvss3Score":"7.2","cvss3Metrics":{"A":"High","AC":"Low","PR":"High","S":"Unchanged","C":"High","UI":"None","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> -->
non_infrastructure
cve high detected in lodash tgz lodash tgz cve high severity vulnerability vulnerable libraries lodash tgz lodash tgz lodash tgz lodash modular utilities library home page a href path to dependency file mikro orm docs package json path to vulnerable library mikro orm docs node modules lodash dependency hierarchy preset classic alpha tgz root library plugin content pages alpha tgz x lodash tgz vulnerable library lodash tgz lodash modular utilities library home page a href path to dependency file mikro orm docs package json path to vulnerable library mikro orm docs node modules lodash dependency hierarchy core alpha tgz root library webpack dev server tgz portfinder tgz async tgz x lodash tgz vulnerable library found in head commit a href found in base branch master vulnerability details lodash versions prior to are vulnerable to command injection via the template function publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required high user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution lodash isopenpronvulnerability false ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree docusaurus preset classic alpha docusaurus plugin content pages alpha lodash isminimumfixversionavailable true minimumfixversion lodash packagetype javascript node js packagename lodash packageversion packagefilepaths istransitivedependency true dependencytree docusaurus core alpha webpack dev server portfinder async lodash isminimumfixversionavailable true minimumfixversion lodash basebranches vulnerabilityidentifier cve vulnerabilitydetails lodash versions prior to are vulnerable to command injection via the template function vulnerabilityurl
0
273,750
8,552,305,074
IssuesEvent
2018-11-07 20:39:34
kristinbranson/APT
https://api.github.com/repos/kristinbranson/APT
closed
Zoom 'set' button doesn't preserve chosen zoom after changing movies (or in stored project)
lowpriority
Minor annoyance but when i set zoom it doesn't stay after I switch to a new movie. Also isn't saved when i reload a project but this is even more minor.
1.0
Zoom 'set' button doesn't preserve chosen zoom after changing movies (or in stored project) - Minor annoyance but when i set zoom it doesn't stay after I switch to a new movie. Also isn't saved when i reload a project but this is even more minor.
non_infrastructure
zoom set button doesn t preserve chosen zoom after changing movies or in stored project minor annoyance but when i set zoom it doesn t stay after i switch to a new movie also isn t saved when i reload a project but this is even more minor
0
25,819
11,220,674,924
IssuesEvent
2020-01-07 16:15:32
HumanCellAtlas/ingest-central
https://api.github.com/repos/HumanCellAtlas/ingest-central
reopened
Remediate High Urllib3 vulnerability
security
Snyk reports the following **High** severity vulnerability in HumanCellAtlas/ingest-api-tests. Please remediate by the end of Q1 Milestone 1. ### **Description** urllib3 ### **Suggested Remediation** Upgrade urllib3 to version 1.24.3 or higher. ### **Details** urllib3 is an HTTP library with thread-safe connection pooling, file post, and more. Affected versions of this package are vulnerable to CRLF injection. Attacker who has the control of the requesting address parameter, could manipulate an HTTP header and attack an internal service.
True
Remediate High Urllib3 vulnerability - Snyk reports the following **High** severity vulnerability in HumanCellAtlas/ingest-api-tests. Please remediate by the end of Q1 Milestone 1. ### **Description** urllib3 ### **Suggested Remediation** Upgrade urllib3 to version 1.24.3 or higher. ### **Details** urllib3 is an HTTP library with thread-safe connection pooling, file post, and more. Affected versions of this package are vulnerable to CRLF injection. Attacker who has the control of the requesting address parameter, could manipulate an HTTP header and attack an internal service.
non_infrastructure
remediate high vulnerability snyk reports the following high severity vulnerability in humancellatlas ingest api tests please remediate by the end of milestone description suggested remediation upgrade to version or higher details is an http library with thread safe connection pooling file post and more affected versions of this package are vulnerable to crlf injection attacker who has the control of the requesting address parameter could manipulate an http header and attack an internal service
0
34,080
28,181,025,965
IssuesEvent
2023-04-04 02:26:16
APSIMInitiative/ApsimX
https://api.github.com/repos/APSIMInitiative/ApsimX
closed
Solute nodes do not allow movement up and down via keyboard shortcut
bug interface/infrastructure
Other model nodes allow this functionality, and it seems right to have this with solutes as well.
1.0
Solute nodes do not allow movement up and down via keyboard shortcut - Other model nodes allow this functionality, and it seems right to have this with solutes as well.
infrastructure
solute nodes do not allow movement up and down via keyboard shortcut other model nodes allow this functionality and it seems right to have this with solutes as well
1
25,878
26,028,050,831
IssuesEvent
2022-12-21 18:09:21
microsoft/react-native-gallery
https://api.github.com/repos/microsoft/react-native-gallery
reopened
Screen Reader is not announcing the group names i.e., Basic Input, Layout, text and etc while entering or existing from the related group of buttons.
enhancement A11yUsable Area: Accessibility
Found during accessibility grading. Tracking internal bug: https://microsoft.visualstudio.com/DefaultCollection/OS/_workitems/edit/40128192
True
Screen Reader is not announcing the group names i.e., Basic Input, Layout, text and etc while entering or existing from the related group of buttons. - Found during accessibility grading. Tracking internal bug: https://microsoft.visualstudio.com/DefaultCollection/OS/_workitems/edit/40128192
non_infrastructure
screen reader is not announcing the group names i e basic input layout text and etc while entering or existing from the related group of buttons found during accessibility grading tracking internal bug
0
984
3,022,640,867
IssuesEvent
2015-07-31 21:38:45
catapult-project/catapult
https://api.github.com/repos/catapult-project/catapult
closed
When tracks are hidden, keep them hidden across reloads
Infrastructure P2
<a href="https://github.com/natduca"><img src="https://avatars.githubusercontent.com/u/412396?v=3" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [natduca](https://github.com/natduca)** _Monday Sep 22, 2014 at 19:55 GMT_ _Originally opened as https://github.com/google/trace-viewer/issues/40_ ---- _From [nd...@chromium.org](https://code.google.com/u/102435256078839283966/) on June 09, 2012 02:46:05_ Right now, when you hide a track, it comes right back when you load another file. We should try to persist these hiding actions, when possible. _Original issue: http://code.google.com/p/trace-viewer/issues/detail?id=34_
1.0
When tracks are hidden, keep them hidden across reloads - <a href="https://github.com/natduca"><img src="https://avatars.githubusercontent.com/u/412396?v=3" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [natduca](https://github.com/natduca)** _Monday Sep 22, 2014 at 19:55 GMT_ _Originally opened as https://github.com/google/trace-viewer/issues/40_ ---- _From [nd...@chromium.org](https://code.google.com/u/102435256078839283966/) on June 09, 2012 02:46:05_ Right now, when you hide a track, it comes right back when you load another file. We should try to persist these hiding actions, when possible. _Original issue: http://code.google.com/p/trace-viewer/issues/detail?id=34_
infrastructure
when tracks are hidden keep them hidden across reloads issue by monday sep at gmt originally opened as from on june right now when you hide a track it comes right back when you load another file we should try to persist these hiding actions when possible original issue
1
16,904
12,152,147,795
IssuesEvent
2020-04-24 21:31:06
BCDevOps/developer-experience
https://api.github.com/repos/BCDevOps/developer-experience
closed
Order additional storage for EFK
Infrastructure closed
ERROR: type should be string, got "https://trello.com/c/ZbFqmqMn/111-order-additional-storage-for-efk\n\nEFK logging currently only supports 5 days of logs before it gets full and starts alerting us. I did some math and figure we can get 7 days of logging +15% for growth with and additional 150G on each infra node.\n\nDXCAS to order\n\nOCIOPF-P-170.DMZ ADD 150G T2R5\nOCIOPF-P-171.DMZ ADD 150G T2R5\nOCIOPF-P-180.DMZ ADD 150G T2R5"
1.0
Order additional storage for EFK - https://trello.com/c/ZbFqmqMn/111-order-additional-storage-for-efk EFK logging currently only supports 5 days of logs before it gets full and starts alerting us. I did some math and figure we can get 7 days of logging +15% for growth with and additional 150G on each infra node. DXCAS to order OCIOPF-P-170.DMZ ADD 150G T2R5 OCIOPF-P-171.DMZ ADD 150G T2R5 OCIOPF-P-180.DMZ ADD 150G T2R5
infrastructure
order additional storage for efk efk logging currently only supports days of logs before it gets full and starts alerting us i did some math and figure we can get days of logging for growth with and additional on each infra node dxcas to order ociopf p dmz add ociopf p dmz add ociopf p dmz add
1
217,255
7,319,495,181
IssuesEvent
2018-03-02 01:08:43
fossasia/loklak_search
https://api.github.com/repos/fossasia/loklak_search
closed
First letter disappears when entered in search box on start page
Priority: HIGH bug
First letter disappears when entered in search box on start page. ![screenshot from 2018-03-02 02-04-45](https://user-images.githubusercontent.com/1583873/36878229-408d3424-1dbe-11e8-8444-1198fa0fb520.png)
1.0
First letter disappears when entered in search box on start page - First letter disappears when entered in search box on start page. ![screenshot from 2018-03-02 02-04-45](https://user-images.githubusercontent.com/1583873/36878229-408d3424-1dbe-11e8-8444-1198fa0fb520.png)
non_infrastructure
first letter disappears when entered in search box on start page first letter disappears when entered in search box on start page
0
6,911
6,661,674,233
IssuesEvent
2017-10-02 09:39:39
datawire/telepresence
https://api.github.com/repos/datawire/telepresence
closed
Unable to start telepresence 0.67 on arch linux
bug infrastructure
### What were you trying to do? Start telepresence to access services deployed on local minikube. Telepresence is installed from AUR package: https://aur.archlinux.org/packages/telepresence/ Not sure what additional info could help, please ask if you need something. ### What did you expect to happen? Telepresence started ### What happened instead? It crashed ### Automatically included information Command line: `['/usr/bin/telepresence', '--logfile', '/tmp/telepresence.log']` Version: `0.67` Python version: `3.6.2 (default, Jul 20 2017, 03:52:27) [GCC 7.1.1 20170630]` kubectl version: `Client Version: v1.7.6` oc version: `(error: [Errno 2] No such file or directory: 'oc')` OS: `Linux vstepchik_macpro 4.12.13-1-ARCH #1 SMP PREEMPT Fri Sep 15 06:36:43 UTC 2017 x86_64 GNU/Linux` Traceback: ``` Traceback (most recent call last): File "/usr/bin/telepresence", line 257, in call_f return f(*args, **kwargs) File "/usr/bin/telepresence", line 2350, in go runner, args File "/usr/bin/telepresence", line 1516, in start_proxy processes, socks_port, ssh = connect(runner, remote_info, args) File "/usr/bin/telepresence", line 1099, in connect bufsize=0, File "/usr/bin/telepresence", line 404, in popen return self.launch_command(track, *args, **kwargs) File "/usr/bin/telepresence", line 367, in launch_command stderr=self.logfile File "/usr/lib/python3.6/subprocess.py", line 707, in __init__ restore_signals, start_new_session) File "/usr/lib/python3.6/subprocess.py", line 1333, in _execute_child raise child_exception_type(errno_num, err_msg) FileNotFoundError: [Errno 2] No such file or directory: 'stamp-telepresence' ``` Logs: ``` kube', '--namespace', 'default', 'get', 'pod', 'telepresence-1506520541-048964-25778-1327857849-08rns', '-o', 'json'],)... 18.4 TL | [58] captured. 18.6 TL | [59] Capturing: (['kubectl', '--context', 'minikube', '--namespace', 'default', 'get', 'pod', 'telepresence-1506520541-048964-25778-1327857849-08rns', '-o', 'json'],)... 18.8 TL | [59] captured. 19.0 TL | [60] Capturing: (['kubectl', '--context', 'minikube', '--namespace', 'default', 'get', 'pod', 'telepresence-1506520541-048964-25778-1327857849-08rns', '-o', 'json'],)... 19.2 TL | [60] captured. 19.4 TL | [61] Capturing: (['kubectl', '--context', 'minikube', '--namespace', 'default', 'get', 'pod', 'telepresence-1506520541-048964-25778-1327857849-08rns', '-o', 'json'],)... 19.5 TL | [61] captured. 19.5 TL | [62] Launching: (['kubectl', '--context', 'minikube', '--namespace', 'default', 'logs', '-f', 'telepresence-1506520541-048964-25778-1327857849-08rns', '--container', 'telepresence-1506520541-048964-25778'],)... ```
1.0
Unable to start telepresence 0.67 on arch linux - ### What were you trying to do? Start telepresence to access services deployed on local minikube. Telepresence is installed from AUR package: https://aur.archlinux.org/packages/telepresence/ Not sure what additional info could help, please ask if you need something. ### What did you expect to happen? Telepresence started ### What happened instead? It crashed ### Automatically included information Command line: `['/usr/bin/telepresence', '--logfile', '/tmp/telepresence.log']` Version: `0.67` Python version: `3.6.2 (default, Jul 20 2017, 03:52:27) [GCC 7.1.1 20170630]` kubectl version: `Client Version: v1.7.6` oc version: `(error: [Errno 2] No such file or directory: 'oc')` OS: `Linux vstepchik_macpro 4.12.13-1-ARCH #1 SMP PREEMPT Fri Sep 15 06:36:43 UTC 2017 x86_64 GNU/Linux` Traceback: ``` Traceback (most recent call last): File "/usr/bin/telepresence", line 257, in call_f return f(*args, **kwargs) File "/usr/bin/telepresence", line 2350, in go runner, args File "/usr/bin/telepresence", line 1516, in start_proxy processes, socks_port, ssh = connect(runner, remote_info, args) File "/usr/bin/telepresence", line 1099, in connect bufsize=0, File "/usr/bin/telepresence", line 404, in popen return self.launch_command(track, *args, **kwargs) File "/usr/bin/telepresence", line 367, in launch_command stderr=self.logfile File "/usr/lib/python3.6/subprocess.py", line 707, in __init__ restore_signals, start_new_session) File "/usr/lib/python3.6/subprocess.py", line 1333, in _execute_child raise child_exception_type(errno_num, err_msg) FileNotFoundError: [Errno 2] No such file or directory: 'stamp-telepresence' ``` Logs: ``` kube', '--namespace', 'default', 'get', 'pod', 'telepresence-1506520541-048964-25778-1327857849-08rns', '-o', 'json'],)... 18.4 TL | [58] captured. 18.6 TL | [59] Capturing: (['kubectl', '--context', 'minikube', '--namespace', 'default', 'get', 'pod', 'telepresence-1506520541-048964-25778-1327857849-08rns', '-o', 'json'],)... 18.8 TL | [59] captured. 19.0 TL | [60] Capturing: (['kubectl', '--context', 'minikube', '--namespace', 'default', 'get', 'pod', 'telepresence-1506520541-048964-25778-1327857849-08rns', '-o', 'json'],)... 19.2 TL | [60] captured. 19.4 TL | [61] Capturing: (['kubectl', '--context', 'minikube', '--namespace', 'default', 'get', 'pod', 'telepresence-1506520541-048964-25778-1327857849-08rns', '-o', 'json'],)... 19.5 TL | [61] captured. 19.5 TL | [62] Launching: (['kubectl', '--context', 'minikube', '--namespace', 'default', 'logs', '-f', 'telepresence-1506520541-048964-25778-1327857849-08rns', '--container', 'telepresence-1506520541-048964-25778'],)... ```
infrastructure
unable to start telepresence on arch linux what were you trying to do start telepresence to access services deployed on local minikube telepresence is installed from aur package not sure what additional info could help please ask if you need something what did you expect to happen telepresence started what happened instead it crashed automatically included information command line version python version default jul kubectl version client version oc version error no such file or directory oc os linux vstepchik macpro arch smp preempt fri sep utc gnu linux traceback traceback most recent call last file usr bin telepresence line in call f return f args kwargs file usr bin telepresence line in go runner args file usr bin telepresence line in start proxy processes socks port ssh connect runner remote info args file usr bin telepresence line in connect bufsize file usr bin telepresence line in popen return self launch command track args kwargs file usr bin telepresence line in launch command stderr self logfile file usr lib subprocess py line in init restore signals start new session file usr lib subprocess py line in execute child raise child exception type errno num err msg filenotfounderror no such file or directory stamp telepresence logs kube namespace default get pod telepresence o json tl captured tl capturing tl captured tl capturing tl captured tl capturing tl captured tl launching
1
19,342
13,220,206,642
IssuesEvent
2020-08-17 11:59:12
gnosis/safe-ios
https://api.github.com/repos/gnosis/safe-ios
closed
Technical prototype for adding migrations to the Core Data
infrastructure
- Create an app that uses Core Data - Create migrations - Delete existing field - Modify existing field - Add new field - Add new object - Remove existing object - Rename the object - Create new object and transfer data to it from existing object - Check that migrations work
1.0
Technical prototype for adding migrations to the Core Data - - Create an app that uses Core Data - Create migrations - Delete existing field - Modify existing field - Add new field - Add new object - Remove existing object - Rename the object - Create new object and transfer data to it from existing object - Check that migrations work
infrastructure
technical prototype for adding migrations to the core data create an app that uses core data create migrations delete existing field modify existing field add new field add new object remove existing object rename the object create new object and transfer data to it from existing object check that migrations work
1
17,296
12,290,138,637
IssuesEvent
2020-05-10 01:51:46
oppia/oppia-android
https://api.github.com/repos/oppia/oppia-android
opened
Hints & solution revealed states should only affect ephemeral state
Priority: Essential Status: Not started Type: Improvement Where: Infrastructure
When working on #500, I noticed that whether a hint is revealed is part of the actual State Hint/Solution structure. Those structures should be read-only since they're going to be stored on disk. We should be storing temporary state like whether something has been revealed as part of the ephemeral state, not the persistent version of the state.
1.0
Hints & solution revealed states should only affect ephemeral state - When working on #500, I noticed that whether a hint is revealed is part of the actual State Hint/Solution structure. Those structures should be read-only since they're going to be stored on disk. We should be storing temporary state like whether something has been revealed as part of the ephemeral state, not the persistent version of the state.
infrastructure
hints solution revealed states should only affect ephemeral state when working on i noticed that whether a hint is revealed is part of the actual state hint solution structure those structures should be read only since they re going to be stored on disk we should be storing temporary state like whether something has been revealed as part of the ephemeral state not the persistent version of the state
1
35,031
30,694,241,044
IssuesEvent
2023-07-26 17:18:18
dotnet/runtime
https://api.github.com/repos/dotnet/runtime
closed
Add MacOS M1 (ARM64) to runtime-extra-platforms leg
help wanted area-Infrastructure
@safern mentioned we should add this to the `runtime-extra-platforms` leg. Opening this issue to track that.
1.0
Add MacOS M1 (ARM64) to runtime-extra-platforms leg - @safern mentioned we should add this to the `runtime-extra-platforms` leg. Opening this issue to track that.
infrastructure
add macos to runtime extra platforms leg safern mentioned we should add this to the runtime extra platforms leg opening this issue to track that
1
112,097
9,553,778,062
IssuesEvent
2019-05-02 20:11:11
cornellius-gp/gpytorch
https://api.github.com/repos/cornellius-gp/gpytorch
closed
Flaky unit test in BaseLikelihoodTestCase
unit tests
The random matrix constructed [here](https://github.com/cornellius-gp/gpytorch/blob/3bb10d37d51d79d23f535b9e6b1ddbabbf5c85d8/test/likelihoods/_base_likelihood_test_case.py#L21-L22) will occasionally cause a failure in instantiating the MVN with an error of the sort ``` RuntimeError: cholesky_cpu: For batch 3: U(5,5) is zero, singular U ``` which results in a flaky test. We should just add some small value to the diagonal.
1.0
Flaky unit test in BaseLikelihoodTestCase - The random matrix constructed [here](https://github.com/cornellius-gp/gpytorch/blob/3bb10d37d51d79d23f535b9e6b1ddbabbf5c85d8/test/likelihoods/_base_likelihood_test_case.py#L21-L22) will occasionally cause a failure in instantiating the MVN with an error of the sort ``` RuntimeError: cholesky_cpu: For batch 3: U(5,5) is zero, singular U ``` which results in a flaky test. We should just add some small value to the diagonal.
non_infrastructure
flaky unit test in baselikelihoodtestcase the random matrix constructed will occasionally cause a failure in instantiating the mvn with an error of the sort runtimeerror cholesky cpu for batch u is zero singular u which results in a flaky test we should just add some small value to the diagonal
0
26,075
19,634,686,510
IssuesEvent
2022-01-08 03:49:54
aws-solutions/aws-media-insights-engine
https://api.github.com/repos/aws-solutions/aws-media-insights-engine
closed
Enable CloudWatch logging on State Machines create by MIE APIs
type: enhancement type: infrastructure priority: highest point: 13
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] No **Describe the feature you'd like** A clear and concise description of what you want to happen. Enable CloudWatch logging for all events on state machines created using the MIE APIs. **Additional context** CloudWatch logs data is important to troubleshooting and audit trails.
1.0
Enable CloudWatch logging on State Machines create by MIE APIs - **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] No **Describe the feature you'd like** A clear and concise description of what you want to happen. Enable CloudWatch logging for all events on state machines created using the MIE APIs. **Additional context** CloudWatch logs data is important to troubleshooting and audit trails.
infrastructure
enable cloudwatch logging on state machines create by mie apis is your feature request related to a problem please describe a clear and concise description of what the problem is ex i m always frustrated when no describe the feature you d like a clear and concise description of what you want to happen enable cloudwatch logging for all events on state machines created using the mie apis additional context cloudwatch logs data is important to troubleshooting and audit trails
1
422,407
28,436,953,651
IssuesEvent
2023-04-15 12:39:58
janisdd/vscode-edit-csv
https://api.github.com/repos/janisdd/vscode-edit-csv
closed
Odd auto detect behavior
documentation
It seems that the delimiter auto detect is very easily tricked when multiple common delimiters are present, even if just once. The following (fake but realistic data) will split at the comma (,) instead of at the semicolon (;), even though the semicolon is all over whereas each line only contains one comma: ``` April 15, 2023;4028722987;25.00;4.00;16.00;Ray;pending; April 14, 2023;4441335566;25.00;4.00;16.00;Scott;pending; April 14, 2023;1012167625;25.00;4.00;16.00;Paige;pending; April 13, 2023;5595193937;25.00;4.00;16.00;Antone;pending; April 12, 2023;3329268556;25.00;4.00;16.00;Theron;pending; April 11, 2023;7187180132;25.00;4.00;16.00;Brandy;pending; April 10, 2023;1327553107;25.00;4.00;16.00;Lupe;pending; April 9, 2023;6783434534;25.00;4.00;16.00;Lonny; April 9, 2023;6387478020;25.00;4.00;16.00;Rosa; April 8, 2023;7795581629;25.00;4.00;16.00;Cecelia; ``` I would think it should be looking at either the last character or the most appearing (non-escaped) character, before assuming it's supposed to be the first appearing delimiter instead.
1.0
Odd auto detect behavior - It seems that the delimiter auto detect is very easily tricked when multiple common delimiters are present, even if just once. The following (fake but realistic data) will split at the comma (,) instead of at the semicolon (;), even though the semicolon is all over whereas each line only contains one comma: ``` April 15, 2023;4028722987;25.00;4.00;16.00;Ray;pending; April 14, 2023;4441335566;25.00;4.00;16.00;Scott;pending; April 14, 2023;1012167625;25.00;4.00;16.00;Paige;pending; April 13, 2023;5595193937;25.00;4.00;16.00;Antone;pending; April 12, 2023;3329268556;25.00;4.00;16.00;Theron;pending; April 11, 2023;7187180132;25.00;4.00;16.00;Brandy;pending; April 10, 2023;1327553107;25.00;4.00;16.00;Lupe;pending; April 9, 2023;6783434534;25.00;4.00;16.00;Lonny; April 9, 2023;6387478020;25.00;4.00;16.00;Rosa; April 8, 2023;7795581629;25.00;4.00;16.00;Cecelia; ``` I would think it should be looking at either the last character or the most appearing (non-escaped) character, before assuming it's supposed to be the first appearing delimiter instead.
non_infrastructure
odd auto detect behavior it seems that the delimiter auto detect is very easily tricked when multiple common delimiters are present even if just once the following fake but realistic data will split at the comma instead of at the semicolon even though the semicolon is all over whereas each line only contains one comma april ray pending april scott pending april paige pending april antone pending april theron pending april brandy pending april lupe pending april lonny april rosa april cecelia i would think it should be looking at either the last character or the most appearing non escaped character before assuming it s supposed to be the first appearing delimiter instead
0
26,576
20,254,558,274
IssuesEvent
2022-02-14 21:32:43
APSIMInitiative/ApsimX
https://api.github.com/repos/APSIMInitiative/ApsimX
closed
APSIM NextGen shutting down and not uninstalling old version when upgrading
bug interface/infrastructure
Tried to update and got a warning that the old version couldn't be uninstalled. Would run >1 simulation and it would shut down. Manually uninstalled APSIM and then reinstalled from the website: didn't solve the problem.
1.0
APSIM NextGen shutting down and not uninstalling old version when upgrading - Tried to update and got a warning that the old version couldn't be uninstalled. Would run >1 simulation and it would shut down. Manually uninstalled APSIM and then reinstalled from the website: didn't solve the problem.
infrastructure
apsim nextgen shutting down and not uninstalling old version when upgrading tried to update and got a warning that the old version couldn t be uninstalled would run simulation and it would shut down manually uninstalled apsim and then reinstalled from the website didn t solve the problem
1
1,971
3,442,707,549
IssuesEvent
2015-12-14 23:53:35
WP-API/WP-API
https://api.github.com/repos/WP-API/WP-API
closed
Add object type-to-route mapping to index for discoverability
#Blessed Enhancement Infrastructure
To enhance client discovery, we'd like for endpoints to be able to register a global name that will appear in the index. For instance, core will register `posts`, `users`, `comments`, `terms`. Jetpack may register `portfolio`. Currently our index returns a list of routes, but the individual routes don't have much metadata about the *type* of resource each represents. The degree to which we recognize these as named content objects is TBD.
1.0
Add object type-to-route mapping to index for discoverability - To enhance client discovery, we'd like for endpoints to be able to register a global name that will appear in the index. For instance, core will register `posts`, `users`, `comments`, `terms`. Jetpack may register `portfolio`. Currently our index returns a list of routes, but the individual routes don't have much metadata about the *type* of resource each represents. The degree to which we recognize these as named content objects is TBD.
infrastructure
add object type to route mapping to index for discoverability to enhance client discovery we d like for endpoints to be able to register a global name that will appear in the index for instance core will register posts users comments terms jetpack may register portfolio currently our index returns a list of routes but the individual routes don t have much metadata about the type of resource each represents the degree to which we recognize these as named content objects is tbd
1
35,191
30,829,348,563
IssuesEvent
2023-08-01 23:29:03
Freihart512/fotoInfraccionesScrapper
https://api.github.com/repos/Freihart512/fotoInfraccionesScrapper
opened
[Task]:
Task infrastructure
### Descripcion Install husky to have git hooks install linters for yml y md ### Prioridad Alta ### Criterios de Aceptacion that the linters run in precommit event
1.0
[Task]: - ### Descripcion Install husky to have git hooks install linters for yml y md ### Prioridad Alta ### Criterios de Aceptacion that the linters run in precommit event
infrastructure
descripcion install husky to have git hooks install linters for yml y md prioridad alta criterios de aceptacion that the linters run in precommit event
1
20,217
13,763,343,216
IssuesEvent
2020-10-07 10:23:18
spring1944/spring1944
https://api.github.com/repos/spring1944/spring1944
closed
Move to CC-BY-SA
Status:new infrastructure
Everything except lua scripts are licensed as Creative Commons BY-NC 3.0, which is not considered a free cultural license. That has a number of drawbacks. The most important, we cannot announce the game neither in free-software forums nor in commercial platforms. Actually commercial platforms are not that clear, but it is blocking some plans to announce the game. @specing can give more details. I think moving to Creative Commons BY-SA 3.0 will solve many problems, and it is indeed a harmless change. I'm pretty sure @FLOZi and @yuritch are "assets" copyright owners. I think any of you are entitled to change the license.
1.0
Move to CC-BY-SA - Everything except lua scripts are licensed as Creative Commons BY-NC 3.0, which is not considered a free cultural license. That has a number of drawbacks. The most important, we cannot announce the game neither in free-software forums nor in commercial platforms. Actually commercial platforms are not that clear, but it is blocking some plans to announce the game. @specing can give more details. I think moving to Creative Commons BY-SA 3.0 will solve many problems, and it is indeed a harmless change. I'm pretty sure @FLOZi and @yuritch are "assets" copyright owners. I think any of you are entitled to change the license.
infrastructure
move to cc by sa everything except lua scripts are licensed as creative commons by nc which is not considered a free cultural license that has a number of drawbacks the most important we cannot announce the game neither in free software forums nor in commercial platforms actually commercial platforms are not that clear but it is blocking some plans to announce the game specing can give more details i think moving to creative commons by sa will solve many problems and it is indeed a harmless change i m pretty sure flozi and yuritch are assets copyright owners i think any of you are entitled to change the license
1
140,115
18,895,232,821
IssuesEvent
2021-11-15 17:08:19
bgoonz/searchAwesome
https://api.github.com/repos/bgoonz/searchAwesome
closed
WS-2019-0032 (High) detected in multiple libraries
security vulnerability
## WS-2019-0032 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>js-yaml-3.10.0.tgz</b>, <b>js-yaml-3.4.5.tgz</b>, <b>js-yaml-3.12.2.tgz</b>, <b>js-yaml-3.7.0.tgz</b></p></summary> <p> <details><summary><b>js-yaml-3.10.0.tgz</b></p></summary> <p>YAML 1.2 parser and serializer</p> <p>Library home page: <a href="https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz">https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz</a></p> <p>Path to dependency file: searchAwesome/clones/awesome-markdown/package.json</p> <p>Path to vulnerable library: searchAwesome/clones/awesome-markdown/node_modules/js-yaml/package.json</p> <p> Dependency Hierarchy: - remark-cli-4.0.0.tgz (Root Library) - unified-args-4.0.0.tgz - unified-engine-4.0.1.tgz - :x: **js-yaml-3.10.0.tgz** (Vulnerable Library) </details> <details><summary><b>js-yaml-3.4.5.tgz</b></p></summary> <p>YAML 1.2 parser and serializer</p> <p>Library home page: <a href="https://registry.npmjs.org/js-yaml/-/js-yaml-3.4.5.tgz">https://registry.npmjs.org/js-yaml/-/js-yaml-3.4.5.tgz</a></p> <p>Path to dependency file: searchAwesome/clones/awesome-gulp/package.json</p> <p>Path to vulnerable library: searchAwesome/clones/awesome-gulp/node_modules/js-yaml/package.json</p> <p> Dependency Hierarchy: - eslint-1.10.3.tgz (Root Library) - :x: **js-yaml-3.4.5.tgz** (Vulnerable Library) </details> <details><summary><b>js-yaml-3.12.2.tgz</b></p></summary> <p>YAML 1.2 parser and serializer</p> <p>Library home page: <a href="https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.2.tgz">https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.2.tgz</a></p> <p>Path to dependency file: searchAwesome/clones/awesome-stacks/package.json</p> <p>Path to vulnerable library: searchAwesome/clones/awesome-stacks/node_modules/js-yaml/package.json</p> <p> Dependency Hierarchy: - gatsby-2.1.19.tgz (Root Library) - eslint-5.14.1.tgz - :x: **js-yaml-3.12.2.tgz** (Vulnerable Library) </details> <details><summary><b>js-yaml-3.7.0.tgz</b></p></summary> <p>YAML 1.2 parser and serializer</p> <p>Library home page: <a href="https://registry.npmjs.org/js-yaml/-/js-yaml-3.7.0.tgz">https://registry.npmjs.org/js-yaml/-/js-yaml-3.7.0.tgz</a></p> <p> Dependency Hierarchy: - gatsby-plugin-sharp-2.0.23.tgz (Root Library) - svgo-0.7.2.tgz - :x: **js-yaml-3.7.0.tgz** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/bgoonz/searchAwesome/commit/69c29da6ef1b97d45651070d898c2a42eae6c528">69c29da6ef1b97d45651070d898c2a42eae6c528</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Versions js-yaml prior to 3.13.0 are vulnerable to Denial of Service. By parsing a carefully-crafted YAML file, the node process stalls and may exhaust system resources leading to a Denial of Service. <p>Publish Date: 2019-03-20 <p>URL: <a href=https://github.com/nodeca/js-yaml/commit/a567ef3c6e61eb319f0bfc2671d91061afb01235>WS-2019-0032</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://www.npmjs.com/advisories/788/versions">https://www.npmjs.com/advisories/788/versions</a></p> <p>Release Date: 2019-03-20</p> <p>Fix Resolution: js-yaml - 3.13.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-2019-0032 (High) detected in multiple libraries - ## WS-2019-0032 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>js-yaml-3.10.0.tgz</b>, <b>js-yaml-3.4.5.tgz</b>, <b>js-yaml-3.12.2.tgz</b>, <b>js-yaml-3.7.0.tgz</b></p></summary> <p> <details><summary><b>js-yaml-3.10.0.tgz</b></p></summary> <p>YAML 1.2 parser and serializer</p> <p>Library home page: <a href="https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz">https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz</a></p> <p>Path to dependency file: searchAwesome/clones/awesome-markdown/package.json</p> <p>Path to vulnerable library: searchAwesome/clones/awesome-markdown/node_modules/js-yaml/package.json</p> <p> Dependency Hierarchy: - remark-cli-4.0.0.tgz (Root Library) - unified-args-4.0.0.tgz - unified-engine-4.0.1.tgz - :x: **js-yaml-3.10.0.tgz** (Vulnerable Library) </details> <details><summary><b>js-yaml-3.4.5.tgz</b></p></summary> <p>YAML 1.2 parser and serializer</p> <p>Library home page: <a href="https://registry.npmjs.org/js-yaml/-/js-yaml-3.4.5.tgz">https://registry.npmjs.org/js-yaml/-/js-yaml-3.4.5.tgz</a></p> <p>Path to dependency file: searchAwesome/clones/awesome-gulp/package.json</p> <p>Path to vulnerable library: searchAwesome/clones/awesome-gulp/node_modules/js-yaml/package.json</p> <p> Dependency Hierarchy: - eslint-1.10.3.tgz (Root Library) - :x: **js-yaml-3.4.5.tgz** (Vulnerable Library) </details> <details><summary><b>js-yaml-3.12.2.tgz</b></p></summary> <p>YAML 1.2 parser and serializer</p> <p>Library home page: <a href="https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.2.tgz">https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.2.tgz</a></p> <p>Path to dependency file: searchAwesome/clones/awesome-stacks/package.json</p> <p>Path to vulnerable library: searchAwesome/clones/awesome-stacks/node_modules/js-yaml/package.json</p> <p> Dependency Hierarchy: - gatsby-2.1.19.tgz (Root Library) - eslint-5.14.1.tgz - :x: **js-yaml-3.12.2.tgz** (Vulnerable Library) </details> <details><summary><b>js-yaml-3.7.0.tgz</b></p></summary> <p>YAML 1.2 parser and serializer</p> <p>Library home page: <a href="https://registry.npmjs.org/js-yaml/-/js-yaml-3.7.0.tgz">https://registry.npmjs.org/js-yaml/-/js-yaml-3.7.0.tgz</a></p> <p> Dependency Hierarchy: - gatsby-plugin-sharp-2.0.23.tgz (Root Library) - svgo-0.7.2.tgz - :x: **js-yaml-3.7.0.tgz** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/bgoonz/searchAwesome/commit/69c29da6ef1b97d45651070d898c2a42eae6c528">69c29da6ef1b97d45651070d898c2a42eae6c528</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Versions js-yaml prior to 3.13.0 are vulnerable to Denial of Service. By parsing a carefully-crafted YAML file, the node process stalls and may exhaust system resources leading to a Denial of Service. <p>Publish Date: 2019-03-20 <p>URL: <a href=https://github.com/nodeca/js-yaml/commit/a567ef3c6e61eb319f0bfc2671d91061afb01235>WS-2019-0032</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://www.npmjs.com/advisories/788/versions">https://www.npmjs.com/advisories/788/versions</a></p> <p>Release Date: 2019-03-20</p> <p>Fix Resolution: js-yaml - 3.13.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_infrastructure
ws high detected in multiple libraries ws high severity vulnerability vulnerable libraries js yaml tgz js yaml tgz js yaml tgz js yaml tgz js yaml tgz yaml parser and serializer library home page a href path to dependency file searchawesome clones awesome markdown package json path to vulnerable library searchawesome clones awesome markdown node modules js yaml package json dependency hierarchy remark cli tgz root library unified args tgz unified engine tgz x js yaml tgz vulnerable library js yaml tgz yaml parser and serializer library home page a href path to dependency file searchawesome clones awesome gulp package json path to vulnerable library searchawesome clones awesome gulp node modules js yaml package json dependency hierarchy eslint tgz root library x js yaml tgz vulnerable library js yaml tgz yaml parser and serializer library home page a href path to dependency file searchawesome clones awesome stacks package json path to vulnerable library searchawesome clones awesome stacks node modules js yaml package json dependency hierarchy gatsby tgz root library eslint tgz x js yaml tgz vulnerable library js yaml tgz yaml parser and serializer library home page a href dependency hierarchy gatsby plugin sharp tgz root library svgo tgz x js yaml tgz vulnerable library found in head commit a href found in base branch master vulnerability details versions js yaml prior to are vulnerable to denial of service by parsing a carefully crafted yaml file the node process stalls and may exhaust system resources leading to a denial of service publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution js yaml step up your open source security game with whitesource
0
335,394
30,027,478,436
IssuesEvent
2023-06-27 07:21:19
beside-kkeuroolryo/spring-server
https://api.github.com/repos/beside-kkeuroolryo/spring-server
opened
[test] 카테고리 예외처리 설계 고민
🤖 BE ✨ feature 🧪 test
## 📝 구현 목록 - [ ] 작업1 - [ ] 작업2 - [ ] 작업 2-1 - [ ] 작업 2-2 <br> ## 💡 참고자료 - (없다면 이 항목을 지워주세요.)
1.0
[test] 카테고리 예외처리 설계 고민 - ## 📝 구현 목록 - [ ] 작업1 - [ ] 작업2 - [ ] 작업 2-1 - [ ] 작업 2-2 <br> ## 💡 참고자료 - (없다면 이 항목을 지워주세요.)
non_infrastructure
카테고리 예외처리 설계 고민 📝 구현 목록 작업 작업 💡 참고자료 없다면 이 항목을 지워주세요
0
116,345
24,901,458,624
IssuesEvent
2022-10-28 21:26:11
apollographql/apollo-ios
https://api.github.com/repos/apollographql/apollo-ios
closed
Return error if no matches to schema or operation search paths
codegen
https://github.com/apollographql/apollo-ios/issues/2543#issuecomment-1272558850 > Error: Cannot query field "company" on type "undefined" This error is indicative of a schema that could not be loaded. I think we used to have this behaviour and it was removed when we changed the configuration validation. Clearly there weren't good enough tests around the behaviour, we'll fix that now.
1.0
Return error if no matches to schema or operation search paths - https://github.com/apollographql/apollo-ios/issues/2543#issuecomment-1272558850 > Error: Cannot query field "company" on type "undefined" This error is indicative of a schema that could not be loaded. I think we used to have this behaviour and it was removed when we changed the configuration validation. Clearly there weren't good enough tests around the behaviour, we'll fix that now.
non_infrastructure
return error if no matches to schema or operation search paths error cannot query field company on type undefined this error is indicative of a schema that could not be loaded i think we used to have this behaviour and it was removed when we changed the configuration validation clearly there weren t good enough tests around the behaviour we ll fix that now
0
471,847
13,611,538,700
IssuesEvent
2020-09-23 09:00:33
onaio/reveal-frontend
https://api.github.com/repos/onaio/reveal-frontend
closed
NTD Zambia web dashboards don't match in-app reporting
NTD Priority: High bug
Currently testing the NTD MDA dashboards in Zambia production (plan: Dynamic-MDA 2020-09-03 test vi) and the statistics are not matching up with the in-app reporting. I'm looking at three different operational areas and seeing different issues with each. Originally, we were just seeing an issue where the web wasn't matching up with the in-app indicators, but the in-app indicators looked correct. Now, I'm seeing an issue where the in-app indicators don't see correct either. I'm wondering if we're encountering an issue with stale data? Previously, we had the user we're testing with assigned to multiple plans and that had to be reset - not sure if that could impact anything here. ### Operational area: smpn_19 The registered children treated stat is not matching up. It is correct in the app because I registered one family of two children (both entered "2" to the question of how many SACs live here AND registered two) and dispensed drugs for just one of them. No testing had previously been done in this OA, so I'm confident on these numbers. Is it possible that it is somehow adding how many children are reporting to live there + how many children are registered? It seems to believe one of four children have received treatment. **In-app reporting:** Registered children treated: **50%** PZQ distributed: 2 Structures visited: 4% **Web reporting:** Registered children treated: **25%** PZQ distributed: 2 Structures visited: 4.76% I have since then, registered and dispensed drugs for one more child. Registered children treated: 66.67% PZQ distributed: 4 Structures visited: 9% ### Operational area: smpn_13 For this OA, none of the statistics seem to be matching up - even the PZQ dispensed. From looking into what data I can find via the app, it looks like only a total of 4 children were registered. Of those four children, all of them had drugs dispensed. (I confirmed registrations forms and the only households registered also reflect a total of 4 children to the question how many live here.) When CHAI reported this earlier, they said that the web was reflecting 50% for "Registered children treated" but I am now seeing 11.76%. **In-app reporting:** Registered children treated: 71.43% PZQ distributed: 5 Structures visited: 22% **Web reporting:** Registered children treated: 11.76% PZQ distributed: 4 Structures visited: 29.41% ### Operational area: smpn_1 For this OA, none of the statistics seem to be matching up either. It almost seems as though events are missing because the percentages are off and the PZQ count is less than half on the web. From what data I can see via the app, there are a total of 9 children registered. A total of 10 children were reported as living within those households. I also counted 7 completed MDA forms. So, the % of registered children treated should be closer to 70% - which obviously is very far off of either count below. **In-app reporting:** Registered children treated: 13.56% PZQ distributed: 60 Structures visited: 3% **Web reporting:** Registered children treated: 22.22% PZQ distributed: 12.5 Structures visited: 6.50% ### Operational area: smpn_30 No doses were recorded for the OA, but structures were visited and the "structures visited" = 9% on both the web and the in-app indicators. So, this is working fine.
1.0
NTD Zambia web dashboards don't match in-app reporting - Currently testing the NTD MDA dashboards in Zambia production (plan: Dynamic-MDA 2020-09-03 test vi) and the statistics are not matching up with the in-app reporting. I'm looking at three different operational areas and seeing different issues with each. Originally, we were just seeing an issue where the web wasn't matching up with the in-app indicators, but the in-app indicators looked correct. Now, I'm seeing an issue where the in-app indicators don't see correct either. I'm wondering if we're encountering an issue with stale data? Previously, we had the user we're testing with assigned to multiple plans and that had to be reset - not sure if that could impact anything here. ### Operational area: smpn_19 The registered children treated stat is not matching up. It is correct in the app because I registered one family of two children (both entered "2" to the question of how many SACs live here AND registered two) and dispensed drugs for just one of them. No testing had previously been done in this OA, so I'm confident on these numbers. Is it possible that it is somehow adding how many children are reporting to live there + how many children are registered? It seems to believe one of four children have received treatment. **In-app reporting:** Registered children treated: **50%** PZQ distributed: 2 Structures visited: 4% **Web reporting:** Registered children treated: **25%** PZQ distributed: 2 Structures visited: 4.76% I have since then, registered and dispensed drugs for one more child. Registered children treated: 66.67% PZQ distributed: 4 Structures visited: 9% ### Operational area: smpn_13 For this OA, none of the statistics seem to be matching up - even the PZQ dispensed. From looking into what data I can find via the app, it looks like only a total of 4 children were registered. Of those four children, all of them had drugs dispensed. (I confirmed registrations forms and the only households registered also reflect a total of 4 children to the question how many live here.) When CHAI reported this earlier, they said that the web was reflecting 50% for "Registered children treated" but I am now seeing 11.76%. **In-app reporting:** Registered children treated: 71.43% PZQ distributed: 5 Structures visited: 22% **Web reporting:** Registered children treated: 11.76% PZQ distributed: 4 Structures visited: 29.41% ### Operational area: smpn_1 For this OA, none of the statistics seem to be matching up either. It almost seems as though events are missing because the percentages are off and the PZQ count is less than half on the web. From what data I can see via the app, there are a total of 9 children registered. A total of 10 children were reported as living within those households. I also counted 7 completed MDA forms. So, the % of registered children treated should be closer to 70% - which obviously is very far off of either count below. **In-app reporting:** Registered children treated: 13.56% PZQ distributed: 60 Structures visited: 3% **Web reporting:** Registered children treated: 22.22% PZQ distributed: 12.5 Structures visited: 6.50% ### Operational area: smpn_30 No doses were recorded for the OA, but structures were visited and the "structures visited" = 9% on both the web and the in-app indicators. So, this is working fine.
non_infrastructure
ntd zambia web dashboards don t match in app reporting currently testing the ntd mda dashboards in zambia production plan dynamic mda test vi and the statistics are not matching up with the in app reporting i m looking at three different operational areas and seeing different issues with each originally we were just seeing an issue where the web wasn t matching up with the in app indicators but the in app indicators looked correct now i m seeing an issue where the in app indicators don t see correct either i m wondering if we re encountering an issue with stale data previously we had the user we re testing with assigned to multiple plans and that had to be reset not sure if that could impact anything here operational area smpn the registered children treated stat is not matching up it is correct in the app because i registered one family of two children both entered to the question of how many sacs live here and registered two and dispensed drugs for just one of them no testing had previously been done in this oa so i m confident on these numbers is it possible that it is somehow adding how many children are reporting to live there how many children are registered it seems to believe one of four children have received treatment in app reporting registered children treated pzq distributed structures visited web reporting registered children treated pzq distributed structures visited i have since then registered and dispensed drugs for one more child registered children treated pzq distributed structures visited operational area smpn for this oa none of the statistics seem to be matching up even the pzq dispensed from looking into what data i can find via the app it looks like only a total of children were registered of those four children all of them had drugs dispensed i confirmed registrations forms and the only households registered also reflect a total of children to the question how many live here when chai reported this earlier they said that the web was reflecting for registered children treated but i am now seeing in app reporting registered children treated pzq distributed structures visited web reporting registered children treated pzq distributed structures visited operational area smpn for this oa none of the statistics seem to be matching up either it almost seems as though events are missing because the percentages are off and the pzq count is less than half on the web from what data i can see via the app there are a total of children registered a total of children were reported as living within those households i also counted completed mda forms so the of registered children treated should be closer to which obviously is very far off of either count below in app reporting registered children treated pzq distributed structures visited web reporting registered children treated pzq distributed structures visited operational area smpn no doses were recorded for the oa but structures were visited and the structures visited on both the web and the in app indicators so this is working fine
0
25,037
18,061,225,231
IssuesEvent
2021-09-20 14:10:40
pulibrary/dspace-development
https://api.github.com/repos/pulibrary/dspace-development
closed
Consider whether or not CPanel access should remain enabled for the oawaiver server
security infrastructure oa-waiver
@jrgriffiniii commented on [Tue May 12 2020](https://github.com/pulibrary/dspace-cli/issues/29) This should probably not be enabled, as we have root privileges on the servers.
1.0
Consider whether or not CPanel access should remain enabled for the oawaiver server - @jrgriffiniii commented on [Tue May 12 2020](https://github.com/pulibrary/dspace-cli/issues/29) This should probably not be enabled, as we have root privileges on the servers.
infrastructure
consider whether or not cpanel access should remain enabled for the oawaiver server jrgriffiniii commented on this should probably not be enabled as we have root privileges on the servers
1
10,847
8,757,417,972
IssuesEvent
2018-12-14 21:11:16
briankoser/kodex
https://api.github.com/repos/briankoser/kodex
closed
Remove alter table permissions from kodex user
area-infrastructure
exec sp_droprolemember db_ddladmin, koserus_kodex
1.0
Remove alter table permissions from kodex user - exec sp_droprolemember db_ddladmin, koserus_kodex
infrastructure
remove alter table permissions from kodex user exec sp droprolemember db ddladmin koserus kodex
1
27,160
21,259,318,706
IssuesEvent
2022-04-13 01:08:53
APSIMInitiative/ApsimX
https://api.github.com/repos/APSIMInitiative/ApsimX
closed
Properties UI does not allocate enough vertical space for model description
bug interface/infrastructure
VariableReference is a good example. The model description area is often cut off due to lack of space. ![image](https://user-images.githubusercontent.com/36427516/161164434-a6c03f0d-c683-46cf-bef0-78670649b28c.png)
1.0
Properties UI does not allocate enough vertical space for model description - VariableReference is a good example. The model description area is often cut off due to lack of space. ![image](https://user-images.githubusercontent.com/36427516/161164434-a6c03f0d-c683-46cf-bef0-78670649b28c.png)
infrastructure
properties ui does not allocate enough vertical space for model description variablereference is a good example the model description area is often cut off due to lack of space
1
11,712
9,382,188,455
IssuesEvent
2019-04-04 21:37:10
OpenLiberty/open-liberty
https://api.github.com/repos/OpenLiberty/open-liberty
opened
Handle IOException in SSLMutualAuthTests20.testClientAuthNeedWithoutClientSideKeyStoreFor20
in:SpringBoot team:OSGi Infrastructure test bug
Modify test SSLMutualAuthTests20.testClientAuthNeedWithoutClientSideKeyStoreFor20 to handle the new exception type, IOException, which openJ9 throws when exercising an invalid HTTP connection.
1.0
Handle IOException in SSLMutualAuthTests20.testClientAuthNeedWithoutClientSideKeyStoreFor20 - Modify test SSLMutualAuthTests20.testClientAuthNeedWithoutClientSideKeyStoreFor20 to handle the new exception type, IOException, which openJ9 throws when exercising an invalid HTTP connection.
infrastructure
handle ioexception in modify test to handle the new exception type ioexception which throws when exercising an invalid http connection
1
318,890
27,329,843,925
IssuesEvent
2023-02-25 13:36:05
mattimaier/bnote
https://api.github.com/repos/mattimaier/bnote
closed
Scrollen im Menü nicht möglich
bug to test User Request
Hallo, hier ein kleiner Punkt der mir selbst nicht aufgefallen ist, aber einer Userin mit einem kleinen Laptop Bildschirm Menueeinträge die nicht mehr angezeigt werden lassen sich auch mit scrollen nicht zur Anzeige bringen. Auch in der optimierten Anzeige für Smarphons lässt sich das Menü selbst nicht scrollen. ![bnote scrollen im Menu fehlt](https://user-images.githubusercontent.com/48627455/183286463-f874e9a1-b1ec-4487-b04f-861e62906d05.jpg) Mit einer großen Auflösung ist das egal, weil einfach alles dargestellt wird. Bei kleineren Auflösung hielft erstmal nur die Zoomstufe zu verändern. Danke und Grüße vom Stefan
1.0
Scrollen im Menü nicht möglich - Hallo, hier ein kleiner Punkt der mir selbst nicht aufgefallen ist, aber einer Userin mit einem kleinen Laptop Bildschirm Menueeinträge die nicht mehr angezeigt werden lassen sich auch mit scrollen nicht zur Anzeige bringen. Auch in der optimierten Anzeige für Smarphons lässt sich das Menü selbst nicht scrollen. ![bnote scrollen im Menu fehlt](https://user-images.githubusercontent.com/48627455/183286463-f874e9a1-b1ec-4487-b04f-861e62906d05.jpg) Mit einer großen Auflösung ist das egal, weil einfach alles dargestellt wird. Bei kleineren Auflösung hielft erstmal nur die Zoomstufe zu verändern. Danke und Grüße vom Stefan
non_infrastructure
scrollen im menü nicht möglich hallo hier ein kleiner punkt der mir selbst nicht aufgefallen ist aber einer userin mit einem kleinen laptop bildschirm menueeinträge die nicht mehr angezeigt werden lassen sich auch mit scrollen nicht zur anzeige bringen auch in der optimierten anzeige für smarphons lässt sich das menü selbst nicht scrollen mit einer großen auflösung ist das egal weil einfach alles dargestellt wird bei kleineren auflösung hielft erstmal nur die zoomstufe zu verändern danke und grüße vom stefan
0
9,998
8,307,531,862
IssuesEvent
2018-09-23 10:32:15
martincostello/alexa-london-travel-site
https://api.github.com/repos/martincostello/alexa-london-travel-site
opened
Build for Windows in Azure Pipelines
infrastructure
Due to issues with Chrome not working for the UI tests, #224 disabled the Windows build for Azure Pipelines. This should be re-enabled once a solution to the issue with Chrome is found.
1.0
Build for Windows in Azure Pipelines - Due to issues with Chrome not working for the UI tests, #224 disabled the Windows build for Azure Pipelines. This should be re-enabled once a solution to the issue with Chrome is found.
infrastructure
build for windows in azure pipelines due to issues with chrome not working for the ui tests disabled the windows build for azure pipelines this should be re enabled once a solution to the issue with chrome is found
1
127,635
17,346,584,361
IssuesEvent
2021-07-29 00:16:17
CDCgov/prime-reportstream
https://api.github.com/repos/CDCgov/prime-reportstream
opened
Loading spinner component
Design front-end website
## Problem statement As we start working with new test types or advanced filtering, users may experience a beat or two of load time. Create a reusable loading spinner/indicator that can work across RS. ## What you need to know - As we're moving to React ... is there anything built in there that might be helpful with this? Theoretically things should be pretty swift with React anyway, right? - USWDS doesn't have a default spinner. We could use some of their default icons and animate with css or js? - Font Awesome has a default spinner class, but would invovlve adding some weight to the project and may duplicate some of the icons we already have with USWDS. - It also doesn't have to be a "spinner" either, investigate other loading indicators that may work. ## Acceptance criteria - [ ] Users are able to see an indicator that something is loading on the page ## To do - [ ] ...
1.0
Loading spinner component - ## Problem statement As we start working with new test types or advanced filtering, users may experience a beat or two of load time. Create a reusable loading spinner/indicator that can work across RS. ## What you need to know - As we're moving to React ... is there anything built in there that might be helpful with this? Theoretically things should be pretty swift with React anyway, right? - USWDS doesn't have a default spinner. We could use some of their default icons and animate with css or js? - Font Awesome has a default spinner class, but would invovlve adding some weight to the project and may duplicate some of the icons we already have with USWDS. - It also doesn't have to be a "spinner" either, investigate other loading indicators that may work. ## Acceptance criteria - [ ] Users are able to see an indicator that something is loading on the page ## To do - [ ] ...
non_infrastructure
loading spinner component problem statement as we start working with new test types or advanced filtering users may experience a beat or two of load time create a reusable loading spinner indicator that can work across rs what you need to know as we re moving to react is there anything built in there that might be helpful with this theoretically things should be pretty swift with react anyway right uswds doesn t have a default spinner we could use some of their default icons and animate with css or js font awesome has a default spinner class but would invovlve adding some weight to the project and may duplicate some of the icons we already have with uswds it also doesn t have to be a spinner either investigate other loading indicators that may work acceptance criteria users are able to see an indicator that something is loading on the page to do
0
250,750
27,111,295,255
IssuesEvent
2023-02-15 15:29:13
EliyaC/NodeGoat
https://api.github.com/repos/EliyaC/NodeGoat
closed
CVE-2018-21270 (Medium) detected in stringstream-0.0.5.tgz - autoclosed
security vulnerability
## CVE-2018-21270 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>stringstream-0.0.5.tgz</b></p></summary> <p>Encode and decode streams into string streams</p> <p>Library home page: <a href="https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz">https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/npm/node_modules/request/node_modules/stringstream/package.json</p> <p> Dependency Hierarchy: - grunt-npm-install-0.3.1.tgz (Root Library) - npm-3.10.10.tgz - request-2.75.0.tgz - :x: **stringstream-0.0.5.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/EliyaC/NodeGoat/commit/2f9ac315d9e05728b7ce26ce7cf1b4e684e54fde">2f9ac315d9e05728b7ce26ce7cf1b4e684e54fde</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> Versions less than 0.0.6 of the Node.js stringstream module are vulnerable to an out-of-bounds read because of allocation of uninitialized buffers when a number is passed in the input stream (when using Node.js 4.x). <p>Publish Date: 2020-12-03 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2018-21270>CVE-2018-21270</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: Low - 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-21270">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-21270</a></p> <p>Release Date: 2020-12-03</p> <p>Fix Resolution: 0.0.6</p> </p> </details> <p></p>
True
CVE-2018-21270 (Medium) detected in stringstream-0.0.5.tgz - autoclosed - ## CVE-2018-21270 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>stringstream-0.0.5.tgz</b></p></summary> <p>Encode and decode streams into string streams</p> <p>Library home page: <a href="https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz">https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/npm/node_modules/request/node_modules/stringstream/package.json</p> <p> Dependency Hierarchy: - grunt-npm-install-0.3.1.tgz (Root Library) - npm-3.10.10.tgz - request-2.75.0.tgz - :x: **stringstream-0.0.5.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/EliyaC/NodeGoat/commit/2f9ac315d9e05728b7ce26ce7cf1b4e684e54fde">2f9ac315d9e05728b7ce26ce7cf1b4e684e54fde</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> Versions less than 0.0.6 of the Node.js stringstream module are vulnerable to an out-of-bounds read because of allocation of uninitialized buffers when a number is passed in the input stream (when using Node.js 4.x). <p>Publish Date: 2020-12-03 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2018-21270>CVE-2018-21270</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: Low - 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-21270">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-21270</a></p> <p>Release Date: 2020-12-03</p> <p>Fix Resolution: 0.0.6</p> </p> </details> <p></p>
non_infrastructure
cve medium detected in stringstream tgz autoclosed cve medium severity vulnerability vulnerable library stringstream tgz encode and decode streams into string streams library home page a href path to dependency file package json path to vulnerable library node modules npm node modules request node modules stringstream package json dependency hierarchy grunt npm install tgz root library npm tgz request tgz x stringstream tgz vulnerable library found in head commit a href found in base branch master vulnerability details versions less than of the node js stringstream module are vulnerable to an out of bounds read because of allocation of uninitialized buffers when a number is passed in the input stream when using node js x publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required none user interaction none scope unchanged impact metrics confidentiality impact low integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution
0
20,915
14,237,398,579
IssuesEvent
2020-11-18 17:10:08
newrelic/opensource-website
https://api.github.com/repos/newrelic/opensource-website
closed
Query parameters lost w/o the trailing slash
bug infrastructure
This link works as expected. https://develop.d2pwh5nf8rvczf.amplifyapp.com/explore-projects/?tag=New%20Relic%20One%20Application This one does not. https://develop.d2pwh5nf8rvczf.amplifyapp.com/explore-projects?tag=New%20Relic%20One%20Application It appears to be an Amazon/S3/Amplify issue. Is there a resolution? https://github.com/jariz/gatsby-plugin-s3/issues/51
1.0
Query parameters lost w/o the trailing slash - This link works as expected. https://develop.d2pwh5nf8rvczf.amplifyapp.com/explore-projects/?tag=New%20Relic%20One%20Application This one does not. https://develop.d2pwh5nf8rvczf.amplifyapp.com/explore-projects?tag=New%20Relic%20One%20Application It appears to be an Amazon/S3/Amplify issue. Is there a resolution? https://github.com/jariz/gatsby-plugin-s3/issues/51
infrastructure
query parameters lost w o the trailing slash this link works as expected this one does not it appears to be an amazon amplify issue is there a resolution
1
18,581
13,055,934,942
IssuesEvent
2020-07-30 03:09:59
icecube-trac/tix2
https://api.github.com/repos/icecube-trac/tix2
opened
[steamshovel] [buildbots] Generate nightly/weekly .dmgs for steamshovel (Trac #1449)
Incomplete Migration Migrated from Trac infrastructure task
Migrated from https://code.icecube.wisc.edu/ticket/1449 ```json { "status": "closed", "changetime": "2019-09-18T05:20:19", "description": "It turns out that more than a few people really want to use the Steamshovel app on their Macs (four already just in Delaware). The app is heavy (300 MB), but comes with all non-standard libs included so that it runs on a virgin system without further set-up.\n\nI fixed and generalized the app generator script. It works on Yosemite now, and should also work on Maverick (needs to be tested). Since we have buildbots with these systems running, I think it would be great to use them to generate steamshovel apps on a nightly/weekly basis, and offer those for download. The script takes 10 to 20 seconds, so it is also acceptable to run it on every commit (if that's easier to implement).\n\nThe command \"make mac-steamshovel-dmg\" generates the steamshovel app and compresses it into a .dmg file, ready for installation by users.", "reporter": "hdembinski", "cc": "david.schultz, olivas", "resolution": "duplicate", "_ts": "1568784019550436", "component": "infrastructure", "summary": "[steamshovel] [buildbots] Generate nightly/weekly .dmgs for steamshovel", "priority": "critical", "keywords": "dmg steamshovel buildbot", "time": "2015-11-25T16:25:04", "milestone": "Long-Term Future", "owner": "nega", "type": "task" } ```
1.0
[steamshovel] [buildbots] Generate nightly/weekly .dmgs for steamshovel (Trac #1449) - Migrated from https://code.icecube.wisc.edu/ticket/1449 ```json { "status": "closed", "changetime": "2019-09-18T05:20:19", "description": "It turns out that more than a few people really want to use the Steamshovel app on their Macs (four already just in Delaware). The app is heavy (300 MB), but comes with all non-standard libs included so that it runs on a virgin system without further set-up.\n\nI fixed and generalized the app generator script. It works on Yosemite now, and should also work on Maverick (needs to be tested). Since we have buildbots with these systems running, I think it would be great to use them to generate steamshovel apps on a nightly/weekly basis, and offer those for download. The script takes 10 to 20 seconds, so it is also acceptable to run it on every commit (if that's easier to implement).\n\nThe command \"make mac-steamshovel-dmg\" generates the steamshovel app and compresses it into a .dmg file, ready for installation by users.", "reporter": "hdembinski", "cc": "david.schultz, olivas", "resolution": "duplicate", "_ts": "1568784019550436", "component": "infrastructure", "summary": "[steamshovel] [buildbots] Generate nightly/weekly .dmgs for steamshovel", "priority": "critical", "keywords": "dmg steamshovel buildbot", "time": "2015-11-25T16:25:04", "milestone": "Long-Term Future", "owner": "nega", "type": "task" } ```
infrastructure
generate nightly weekly dmgs for steamshovel trac migrated from json status closed changetime description it turns out that more than a few people really want to use the steamshovel app on their macs four already just in delaware the app is heavy mb but comes with all non standard libs included so that it runs on a virgin system without further set up n ni fixed and generalized the app generator script it works on yosemite now and should also work on maverick needs to be tested since we have buildbots with these systems running i think it would be great to use them to generate steamshovel apps on a nightly weekly basis and offer those for download the script takes to seconds so it is also acceptable to run it on every commit if that s easier to implement n nthe command make mac steamshovel dmg generates the steamshovel app and compresses it into a dmg file ready for installation by users reporter hdembinski cc david schultz olivas resolution duplicate ts component infrastructure summary generate nightly weekly dmgs for steamshovel priority critical keywords dmg steamshovel buildbot time milestone long term future owner nega type task
1
8,014
6,358,791,302
IssuesEvent
2017-07-31 03:58:10
fbpic/fbpic
https://api.github.com/repos/fbpic/fbpic
closed
Use prange and njit_parallel on more functions
cpu performance
In particular: - We could probably remove the gathering functions that use `weight`. - The ionization methods also need to switch to prange/njit_parallel
True
Use prange and njit_parallel on more functions - In particular: - We could probably remove the gathering functions that use `weight`. - The ionization methods also need to switch to prange/njit_parallel
non_infrastructure
use prange and njit parallel on more functions in particular we could probably remove the gathering functions that use weight the ionization methods also need to switch to prange njit parallel
0
14,745
11,100,291,080
IssuesEvent
2019-12-16 18:52:20
OregonDigital/OD2
https://api.github.com/repos/OregonDigital/OD2
closed
Compare Solr behavior against base Hyrax
Features Infrastructure Question
### Descriptive summary While reindexing everything in solr for the solr8 upgrade, @jechols discovered we have a lot of AccessControl and related objects indexed that don't seem to need to be searchable. We should check the behavior of base Hyrax when a work is ingested and a workflow is setup. ### Expected behavior Exploration ### Related work ### Accessibility Concerns N/A
1.0
Compare Solr behavior against base Hyrax - ### Descriptive summary While reindexing everything in solr for the solr8 upgrade, @jechols discovered we have a lot of AccessControl and related objects indexed that don't seem to need to be searchable. We should check the behavior of base Hyrax when a work is ingested and a workflow is setup. ### Expected behavior Exploration ### Related work ### Accessibility Concerns N/A
infrastructure
compare solr behavior against base hyrax descriptive summary while reindexing everything in solr for the upgrade jechols discovered we have a lot of accesscontrol and related objects indexed that don t seem to need to be searchable we should check the behavior of base hyrax when a work is ingested and a workflow is setup expected behavior exploration related work accessibility concerns n a
1
16,560
12,042,753,363
IssuesEvent
2020-04-14 11:10:02
teambit/bit
https://api.github.com/repos/teambit/bit
opened
fix split e2e tests on circle by timing on windows
area/infrastructure type/bug
Currently, if look at the windows_e2e tests on circle under the `write e2e files` step, you will see this warning: ``` Error autodetecting timing type, falling back to weighting by name. Autodetect no matching filename or classname. If file names are used, double check paths for absolute vs relative. Example input file: "e2e\\api\\add-many.e2e.1.ts" Example file from timings: "C:\\Users\\******ci\\project\\bit\\bit\\e2e\\commands\\eject.e2e.1.ts" ``` This might be a result of the next line of how we run them. We might try to make it the same as in the Linux e2e. This might require to run it under bash.exe instead of under powershell. It requires more investigation.
1.0
fix split e2e tests on circle by timing on windows - Currently, if look at the windows_e2e tests on circle under the `write e2e files` step, you will see this warning: ``` Error autodetecting timing type, falling back to weighting by name. Autodetect no matching filename or classname. If file names are used, double check paths for absolute vs relative. Example input file: "e2e\\api\\add-many.e2e.1.ts" Example file from timings: "C:\\Users\\******ci\\project\\bit\\bit\\e2e\\commands\\eject.e2e.1.ts" ``` This might be a result of the next line of how we run them. We might try to make it the same as in the Linux e2e. This might require to run it under bash.exe instead of under powershell. It requires more investigation.
infrastructure
fix split tests on circle by timing on windows currently if look at the windows tests on circle under the write files step you will see this warning error autodetecting timing type falling back to weighting by name autodetect no matching filename or classname if file names are used double check paths for absolute vs relative example input file api add many ts example file from timings c users ci project bit bit commands eject ts this might be a result of the next line of how we run them we might try to make it the same as in the linux this might require to run it under bash exe instead of under powershell it requires more investigation
1
560,990
16,608,484,427
IssuesEvent
2021-06-02 08:04:17
webcompat/web-bugs
https://api.github.com/repos/webcompat/web-bugs
closed
mail.yahoo.com - site is not usable
browser-firefox-ios os-ios priority-critical
<!-- @browser: Firefox iOS 33.1 --> <!-- @ua_header: Mozilla/5.0 (iPhone; CPU OS 13_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/33.1 Mobile/15E148 Safari/605.1.15 --> <!-- @reported_with: mobile-reporter --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/74591 --> **URL**: https://mail.yahoo.com/m/folders/1?.intl=uk **Browser / Version**: Firefox iOS 33.1 **Operating System**: iOS 13.2 **Tested Another Browser**: No **Problem type**: Site is not usable **Description**: Buttons or links not working **Steps to Reproduce**: Can't use buttons to move emails into folders or the button to switch to another account. <details> <summary>View the screenshot</summary> <img alt="Screenshot" src="https://webcompat.com/uploads/2021/5/b70b6382-5fbc-43b9-b4bc-5cc170e906ad.jpg"> </details> <details> <summary>Browser Configuration</summary> <ul> <li>None</li> </ul> </details> _From [webcompat.com](https://webcompat.com/) with ❤️_
1.0
mail.yahoo.com - site is not usable - <!-- @browser: Firefox iOS 33.1 --> <!-- @ua_header: Mozilla/5.0 (iPhone; CPU OS 13_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/33.1 Mobile/15E148 Safari/605.1.15 --> <!-- @reported_with: mobile-reporter --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/74591 --> **URL**: https://mail.yahoo.com/m/folders/1?.intl=uk **Browser / Version**: Firefox iOS 33.1 **Operating System**: iOS 13.2 **Tested Another Browser**: No **Problem type**: Site is not usable **Description**: Buttons or links not working **Steps to Reproduce**: Can't use buttons to move emails into folders or the button to switch to another account. <details> <summary>View the screenshot</summary> <img alt="Screenshot" src="https://webcompat.com/uploads/2021/5/b70b6382-5fbc-43b9-b4bc-5cc170e906ad.jpg"> </details> <details> <summary>Browser Configuration</summary> <ul> <li>None</li> </ul> </details> _From [webcompat.com](https://webcompat.com/) with ❤️_
non_infrastructure
mail yahoo com site is not usable url browser version firefox ios operating system ios tested another browser no problem type site is not usable description buttons or links not working steps to reproduce can t use buttons to move emails into folders or the button to switch to another account view the screenshot img alt screenshot src browser configuration none from with ❤️
0
24,823
17,797,150,678
IssuesEvent
2021-09-01 00:31:05
scala-js/scala-js-dom
https://api.github.com/repos/scala-js/scala-js-dom
closed
Document release process
docs infrastructure
We've had a few teething problems and I think a few implicit assumptions getting our first release out. Let's come up with a clear release process doc, nothing long, just a list of how all the pieces fit together, and the related tasks. * How to perform a release (just tag locally and go? or pr?) * Generate and publicise release notes * Register the release with GitHub's releases * List comms tasks & templates
1.0
Document release process - We've had a few teething problems and I think a few implicit assumptions getting our first release out. Let's come up with a clear release process doc, nothing long, just a list of how all the pieces fit together, and the related tasks. * How to perform a release (just tag locally and go? or pr?) * Generate and publicise release notes * Register the release with GitHub's releases * List comms tasks & templates
infrastructure
document release process we ve had a few teething problems and i think a few implicit assumptions getting our first release out let s come up with a clear release process doc nothing long just a list of how all the pieces fit together and the related tasks how to perform a release just tag locally and go or pr generate and publicise release notes register the release with github s releases list comms tasks templates
1
144,186
5,537,195,963
IssuesEvent
2017-03-21 21:28:22
Tour-de-Force/btc-app-server
https://api.github.com/repos/Tour-de-Force/btc-app-server
reopened
Flyout menu shows that I'm logged in, but publish attempt says otherwise.
bug Priority: High
From jsieber-aca: On my Android device, I ran into an issue where the Flyout menu shows that I'm logged in to the application but when I try to publish new or updated services I get an error message that I need to be logged in to publish points. It appears that at some point my session times out and I'm no longer logged into the app even though the fly out menu shows that I'm still logged in. These two areas should not contradict each other. How are sessions maintained in the app? Should we be keeping a user authenticated once they login until their credentials have changed? It seems that sessions end very frequently while most mobile apps keep you logged on for a long time.
1.0
Flyout menu shows that I'm logged in, but publish attempt says otherwise. - From jsieber-aca: On my Android device, I ran into an issue where the Flyout menu shows that I'm logged in to the application but when I try to publish new or updated services I get an error message that I need to be logged in to publish points. It appears that at some point my session times out and I'm no longer logged into the app even though the fly out menu shows that I'm still logged in. These two areas should not contradict each other. How are sessions maintained in the app? Should we be keeping a user authenticated once they login until their credentials have changed? It seems that sessions end very frequently while most mobile apps keep you logged on for a long time.
non_infrastructure
flyout menu shows that i m logged in but publish attempt says otherwise from jsieber aca on my android device i ran into an issue where the flyout menu shows that i m logged in to the application but when i try to publish new or updated services i get an error message that i need to be logged in to publish points it appears that at some point my session times out and i m no longer logged into the app even though the fly out menu shows that i m still logged in these two areas should not contradict each other how are sessions maintained in the app should we be keeping a user authenticated once they login until their credentials have changed it seems that sessions end very frequently while most mobile apps keep you logged on for a long time
0
317,111
9,660,968,529
IssuesEvent
2019-05-20 16:44:02
gama-platform/gama
https://api.github.com/repos/gama-platform/gama
closed
Model Comodel Example (Populations Mutated).gaml throws a warning
> Bug Concerns Co-Modeling Concerns Models Library Priority Medium Version Git
**Describe the bug** Run the model named: Comodel Example (Populations Mutated).gaml in Modeling / Model coupling / Co-Prey Predator. After few cycles (~100 steps), a warning is throwed: "Cannot evaluate location as the target agent is dead". <img width="557" alt="Capture d’écran 2019-05-20 à 15 17 25" src="https://user-images.githubusercontent.com/1555274/58006493-65db2800-7b12-11e9-9cd0-0cd61a380015.png"> **Desktop (please complete the following information):** - OS: macOS - GAMA version: git
1.0
Model Comodel Example (Populations Mutated).gaml throws a warning - **Describe the bug** Run the model named: Comodel Example (Populations Mutated).gaml in Modeling / Model coupling / Co-Prey Predator. After few cycles (~100 steps), a warning is throwed: "Cannot evaluate location as the target agent is dead". <img width="557" alt="Capture d’écran 2019-05-20 à 15 17 25" src="https://user-images.githubusercontent.com/1555274/58006493-65db2800-7b12-11e9-9cd0-0cd61a380015.png"> **Desktop (please complete the following information):** - OS: macOS - GAMA version: git
non_infrastructure
model comodel example populations mutated gaml throws a warning describe the bug run the model named comodel example populations mutated gaml in modeling model coupling co prey predator after few cycles steps a warning is throwed cannot evaluate location as the target agent is dead img width alt capture d’écran à src desktop please complete the following information os macos gama version git
0
7,497
6,972,546,594
IssuesEvent
2017-12-11 17:21:09
nyu-devops-customers/customers
https://api.github.com/repos/nyu-devops-customers/customers
closed
read configuration from environment variables
infrastructure tool chain
**According to the 12 factors ** **As a** developer **I need** store all my configuration in environment variables **Assumptions:** Update travis.yml and VagrantFile to ensure code work in 3 different enviroment (Vagrant / Travis / Bluemix) **Acceptance Criteria:** ``` Code would work in VirtualBox / Travis / Bluemix ```
1.0
read configuration from environment variables - **According to the 12 factors ** **As a** developer **I need** store all my configuration in environment variables **Assumptions:** Update travis.yml and VagrantFile to ensure code work in 3 different enviroment (Vagrant / Travis / Bluemix) **Acceptance Criteria:** ``` Code would work in VirtualBox / Travis / Bluemix ```
infrastructure
read configuration from environment variables according to the factors as a developer i need store all my configuration in environment variables assumptions update travis yml and vagrantfile to ensure code work in different enviroment vagrant travis bluemix acceptance criteria code would work in virtualbox travis bluemix
1
94,786
8,517,143,736
IssuesEvent
2018-11-01 06:38:34
kartoza/geosafe
https://api.github.com/repos/kartoza/geosafe
closed
Layer markers are not visible at all scales
REGRESSION! bug testing
# Problem Whilst fixing #404 there are bugs that were introduced * Default view is empty - No markers are visible * Zooming in - No markers are visible * Zooming out - Markers are visible at only one scale level # Solution Make it happy
1.0
Layer markers are not visible at all scales - # Problem Whilst fixing #404 there are bugs that were introduced * Default view is empty - No markers are visible * Zooming in - No markers are visible * Zooming out - Markers are visible at only one scale level # Solution Make it happy
non_infrastructure
layer markers are not visible at all scales problem whilst fixing there are bugs that were introduced default view is empty no markers are visible zooming in no markers are visible zooming out markers are visible at only one scale level solution make it happy
0
13,378
10,227,373,522
IssuesEvent
2019-08-16 20:34:56
celo-org/celo-monorepo
https://api.github.com/repos/celo-org/celo-monorepo
closed
VM-based testnets brought up by terraform should not leak secrets
infrastructure
### Expected Behavior All secrets are confidently hidden ### Current Behavior Terraform stores the state of previous deployments. When dealing with secrets (like mnemonics), we want to make sure those are hidden
1.0
VM-based testnets brought up by terraform should not leak secrets - ### Expected Behavior All secrets are confidently hidden ### Current Behavior Terraform stores the state of previous deployments. When dealing with secrets (like mnemonics), we want to make sure those are hidden
infrastructure
vm based testnets brought up by terraform should not leak secrets expected behavior all secrets are confidently hidden current behavior terraform stores the state of previous deployments when dealing with secrets like mnemonics we want to make sure those are hidden
1
3,897
4,700,933,752
IssuesEvent
2016-10-12 20:02:50
GuildCrafts/floworky
https://api.github.com/repos/GuildCrafts/floworky
closed
Automated deploy w/CI
Deployment Infrastructure
As a developer, I want to have any deployment I initiate to be cancelled if linting or tests fail, so that I can be certain that code that does not meet the project's quality standards does not make it into the production environment.
1.0
Automated deploy w/CI - As a developer, I want to have any deployment I initiate to be cancelled if linting or tests fail, so that I can be certain that code that does not meet the project's quality standards does not make it into the production environment.
infrastructure
automated deploy w ci as a developer i want to have any deployment i initiate to be cancelled if linting or tests fail so that i can be certain that code that does not meet the project s quality standards does not make it into the production environment
1
19,764
13,446,601,310
IssuesEvent
2020-09-08 13:11:28
MHRA/products
https://api.github.com/repos/MHRA/products
closed
Add DNS to terraform
App Support Team Tech Infrastructure
## User want As a business I want cloud resources, including DNS, to be captured in code So that I can tear down and recreate the environment from code and so that changes are tracked ## Acceptance Criteria - [ ] DNS zone definition and entries in terraform ## Testing - Go to Azure portal and inspect non-prod DNS zone - Observe entries for the doc-index-updater and medicines-api pointing to the public IP **Size** S **Value** M **Effort** ### Exit Criteria met - [ ] Backlog - [ ] Discovery - [ ] DUXD - [ ] Development - [ ] Quality Assurance - [ ] Release and Validate
1.0
Add DNS to terraform - ## User want As a business I want cloud resources, including DNS, to be captured in code So that I can tear down and recreate the environment from code and so that changes are tracked ## Acceptance Criteria - [ ] DNS zone definition and entries in terraform ## Testing - Go to Azure portal and inspect non-prod DNS zone - Observe entries for the doc-index-updater and medicines-api pointing to the public IP **Size** S **Value** M **Effort** ### Exit Criteria met - [ ] Backlog - [ ] Discovery - [ ] DUXD - [ ] Development - [ ] Quality Assurance - [ ] Release and Validate
infrastructure
add dns to terraform user want as a business i want cloud resources including dns to be captured in code so that i can tear down and recreate the environment from code and so that changes are tracked acceptance criteria dns zone definition and entries in terraform testing go to azure portal and inspect non prod dns zone observe entries for the doc index updater and medicines api pointing to the public ip size s value m effort exit criteria met backlog discovery duxd development quality assurance release and validate
1
64,395
15,880,382,123
IssuesEvent
2021-04-09 13:38:23
OpenFLUID/openfluid
https://api.github.com/repos/OpenFLUID/openfluid
closed
Replace TravisCI and AppVeyor by Github actions
build system
- [x] linux / devel - [x] linux / release - [x] macos / release - [x] windows / debug
1.0
Replace TravisCI and AppVeyor by Github actions - - [x] linux / devel - [x] linux / release - [x] macos / release - [x] windows / debug
non_infrastructure
replace travisci and appveyor by github actions linux devel linux release macos release windows debug
0
32,437
26,698,736,346
IssuesEvent
2023-01-27 12:41:16
happy-travel/agent-app-project
https://api.github.com/repos/happy-travel/agent-app-project
closed
After the validity of search result has expired, the agent sees an empty content area.
good first issue backend infrastructure
On http://dev.happytravel.com/ In Chrome, Safari. **Steps.** 1. Log in some agent who can search accommodations; 2. Do any search (so that there is a result) and then do nothing for about 10 minutes or more; 3. Try to choose someone options. **Result.** After the validity of search result has expired, the agent sees an empty content area (see pic. https://drive.google.com/file/d/16pTyoJczaq7XHqfbvbk764PN9rbaYDAH/view?usp=sharing ). **Expectations.** As hotel offers have an expiry date, you must either show the agent the page with the search form, or restart the search with the previously specified parameters OR just show agent a message saying that the offers have expired (I think there was some text already). --- - [x] #1451 - [x] #1464
1.0
After the validity of search result has expired, the agent sees an empty content area. - On http://dev.happytravel.com/ In Chrome, Safari. **Steps.** 1. Log in some agent who can search accommodations; 2. Do any search (so that there is a result) and then do nothing for about 10 minutes or more; 3. Try to choose someone options. **Result.** After the validity of search result has expired, the agent sees an empty content area (see pic. https://drive.google.com/file/d/16pTyoJczaq7XHqfbvbk764PN9rbaYDAH/view?usp=sharing ). **Expectations.** As hotel offers have an expiry date, you must either show the agent the page with the search form, or restart the search with the previously specified parameters OR just show agent a message saying that the offers have expired (I think there was some text already). --- - [x] #1451 - [x] #1464
infrastructure
after the validity of search result has expired the agent sees an empty content area on in chrome safari steps log in some agent who can search accommodations do any search so that there is a result and then do nothing for about minutes or more try to choose someone options result after the validity of search result has expired the agent sees an empty content area see pic expectations as hotel offers have an expiry date you must either show the agent the page with the search form or restart the search with the previously specified parameters or just show agent a message saying that the offers have expired i think there was some text already
1
13,472
10,271,753,802
IssuesEvent
2019-08-23 14:49:06
techlahoma/techlahoma
https://api.github.com/repos/techlahoma/techlahoma
closed
Write Access for Committee Chairs
Infrastructure
@JeffLowe has asked us to use this repo for committee issues, but board members/committee chairs need write access in order to be able to do things like assign people. https://github.com/techlahoma/board_meetings/blame/master/2019/05_may.md#L87
1.0
Write Access for Committee Chairs - @JeffLowe has asked us to use this repo for committee issues, but board members/committee chairs need write access in order to be able to do things like assign people. https://github.com/techlahoma/board_meetings/blame/master/2019/05_may.md#L87
infrastructure
write access for committee chairs jefflowe has asked us to use this repo for committee issues but board members committee chairs need write access in order to be able to do things like assign people
1
26,923
20,888,060,299
IssuesEvent
2022-03-23 08:08:56
GoogleForCreators/web-stories-wp
https://api.github.com/repos/GoogleForCreators/web-stories-wp
closed
Packages: Move `output` to its own package
Type: Infrastructure P3 Pod: WP
<!-- NOTE: For help requests, support questions, or general feedback, please use the WordPress.org forums instead: https://wordpress.org/support/plugin/web-stories/ --> ## Task Description <!-- A clear and concise description of what this task is about. --> The output package is responsible for creating AMP output for a story. This would help a lot for things like #8692 where story output needs to be generated outside of the actual editor. **To-do:** * [ ] The unit tests operate with certain element types which are not really known here. Move these to new Jest-based integration tests (as they involve multiple packages)
1.0
Packages: Move `output` to its own package - <!-- NOTE: For help requests, support questions, or general feedback, please use the WordPress.org forums instead: https://wordpress.org/support/plugin/web-stories/ --> ## Task Description <!-- A clear and concise description of what this task is about. --> The output package is responsible for creating AMP output for a story. This would help a lot for things like #8692 where story output needs to be generated outside of the actual editor. **To-do:** * [ ] The unit tests operate with certain element types which are not really known here. Move these to new Jest-based integration tests (as they involve multiple packages)
infrastructure
packages move output to its own package task description the output package is responsible for creating amp output for a story this would help a lot for things like where story output needs to be generated outside of the actual editor to do the unit tests operate with certain element types which are not really known here move these to new jest based integration tests as they involve multiple packages
1
27,525
21,881,831,568
IssuesEvent
2022-05-19 14:55:51
thewca/worldcubeassociation.org
https://api.github.com/repos/thewca/worldcubeassociation.org
closed
Server has security updates pending
security infrastructure
As can be seen when SSHing: > ssh cubing@worldcubeassociation.org Welcome to Ubuntu 14.04.5 LTS (GNU/Linux 3.13.0-116-generic x86_64) * Documentation: https://help.ubuntu.com/ System information as of Mon Aug 26 05:35:12 UTC 2019 System load: 0.66 Processes: 130 Usage of /: 54.7% of 31.36GB Users logged in: 0 Memory usage: 37% IP address for eth0: 172.31.33.143 Swap usage: 0% Graph this data and manage this system at: https://landscape.canonical.com/ Get cloud support with Ubuntu Advantage Cloud Guest: http://www.ubuntu.com/business/services/cloud 170 packages can be updated. 130 updates are security updates. New release '16.04.6 LTS' available. Run 'do-release-upgrade' to upgrade to it. *** System restart required *** I believe we recently started a new server, so we should have a process for updating. Perhaps we should also consider unattended upgrades?
1.0
Server has security updates pending - As can be seen when SSHing: > ssh cubing@worldcubeassociation.org Welcome to Ubuntu 14.04.5 LTS (GNU/Linux 3.13.0-116-generic x86_64) * Documentation: https://help.ubuntu.com/ System information as of Mon Aug 26 05:35:12 UTC 2019 System load: 0.66 Processes: 130 Usage of /: 54.7% of 31.36GB Users logged in: 0 Memory usage: 37% IP address for eth0: 172.31.33.143 Swap usage: 0% Graph this data and manage this system at: https://landscape.canonical.com/ Get cloud support with Ubuntu Advantage Cloud Guest: http://www.ubuntu.com/business/services/cloud 170 packages can be updated. 130 updates are security updates. New release '16.04.6 LTS' available. Run 'do-release-upgrade' to upgrade to it. *** System restart required *** I believe we recently started a new server, so we should have a process for updating. Perhaps we should also consider unattended upgrades?
infrastructure
server has security updates pending as can be seen when sshing ssh cubing worldcubeassociation org welcome to ubuntu lts gnu linux generic documentation system information as of mon aug utc system load processes usage of of users logged in memory usage ip address for swap usage graph this data and manage this system at get cloud support with ubuntu advantage cloud guest packages can be updated updates are security updates new release lts available run do release upgrade to upgrade to it system restart required i believe we recently started a new server so we should have a process for updating perhaps we should also consider unattended upgrades
1
804,232
29,480,401,189
IssuesEvent
2023-06-02 04:52:07
Fiserv/Support
https://api.github.com/repos/Fiserv/Support
closed
Activate version branches
enhancement Priority - Medium FirstVision Latam client verification
**Region** (optional) First Vision LATAM **Is your feature request related to a problem? Please describe.** I require to show Preview and Previous branches **Describe the solution you'd like** Activate Previous and Preview branches in DB **Describe alternatives you've considered** N/A **Additional context** I would like to have support for implementation because so far documentation it's not clear in how to proceed (implementation flow) **I have two scenarios of how version works, Can you clarify which scenario applies, please?** 1. Version works for documentation and APIs (Documentation it's not clear if this works for API's and documentation or only APIs) If this also works for documentation and I don't require to have "Previous" and "Preview" documentation, Do I have to maintain same documentation in preview, previous and develop branches? or Is it possible to only have my documentation in develop and APIs in preview, previous and develop branches? Is it necessary to add something in config files? 2. Version works only for APIs. Is it possible to only have my documentation in develop and APIs in preview, previous and develop branches? Is it necessary to add something in config files? <!-- ** Recommended ** - Assign a Feature On you right hand side, you can set an Assignees by Clicking setting button next to it. - Subscribe to a Team At the end of your Feature template, please mention team you would like to subscribe for this Issue for future updates. You can mention teams in Github Example: @Fiserv/fiserv-developer) -->
1.0
Activate version branches - **Region** (optional) First Vision LATAM **Is your feature request related to a problem? Please describe.** I require to show Preview and Previous branches **Describe the solution you'd like** Activate Previous and Preview branches in DB **Describe alternatives you've considered** N/A **Additional context** I would like to have support for implementation because so far documentation it's not clear in how to proceed (implementation flow) **I have two scenarios of how version works, Can you clarify which scenario applies, please?** 1. Version works for documentation and APIs (Documentation it's not clear if this works for API's and documentation or only APIs) If this also works for documentation and I don't require to have "Previous" and "Preview" documentation, Do I have to maintain same documentation in preview, previous and develop branches? or Is it possible to only have my documentation in develop and APIs in preview, previous and develop branches? Is it necessary to add something in config files? 2. Version works only for APIs. Is it possible to only have my documentation in develop and APIs in preview, previous and develop branches? Is it necessary to add something in config files? <!-- ** Recommended ** - Assign a Feature On you right hand side, you can set an Assignees by Clicking setting button next to it. - Subscribe to a Team At the end of your Feature template, please mention team you would like to subscribe for this Issue for future updates. You can mention teams in Github Example: @Fiserv/fiserv-developer) -->
non_infrastructure
activate version branches region optional first vision latam is your feature request related to a problem please describe i require to show preview and previous branches describe the solution you d like activate previous and preview branches in db describe alternatives you ve considered n a additional context i would like to have support for implementation because so far documentation it s not clear in how to proceed implementation flow i have two scenarios of how version works can you clarify which scenario applies please version works for documentation and apis documentation it s not clear if this works for api s and documentation or only apis if this also works for documentation and i don t require to have previous and preview documentation do i have to maintain same documentation in preview previous and develop branches or is it possible to only have my documentation in develop and apis in preview previous and develop branches is it necessary to add something in config files version works only for apis is it possible to only have my documentation in develop and apis in preview previous and develop branches is it necessary to add something in config files recommended assign a feature on you right hand side you can set an assignees by clicking setting button next to it subscribe to a team at the end of your feature template please mention team you would like to subscribe for this issue for future updates you can mention teams in github example fiserv fiserv developer
0
71,748
3,367,663,368
IssuesEvent
2015-11-22 11:17:05
aristath/kirki
https://api.github.com/repos/aristath/kirki
closed
color-alpha controls don't work unless there's another "color" control in the customizer
bug help wanted priority: low
If we don't have a simple "color" control in the customizer and we add a "color-alpha" control, then the control shows up as a simple text field.
1.0
color-alpha controls don't work unless there's another "color" control in the customizer - If we don't have a simple "color" control in the customizer and we add a "color-alpha" control, then the control shows up as a simple text field.
non_infrastructure
color alpha controls don t work unless there s another color control in the customizer if we don t have a simple color control in the customizer and we add a color alpha control then the control shows up as a simple text field
0
13,830
10,479,761,320
IssuesEvent
2019-09-24 05:33:00
APSIMInitiative/ApsimX
https://api.github.com/repos/APSIMInitiative/ApsimX
opened
Cut rotation automatic default?
bug interface/infrastructure
Hi - in the cut rotation manager when you choose "How much of harvested DM (and C) is removed from the simulation? ", if you click somewhere outside the manager (i.e. one the sim tree) the selection seems to revert back to "Remove All" (when you click back to the cut rotation manager). You have to click somewhere else in the cut rotation manager itself to "save" your selection. ![image](https://user-images.githubusercontent.com/32279744/65483519-9b44b780-def0-11e9-9608-21025f0588f2.png)
1.0
Cut rotation automatic default? - Hi - in the cut rotation manager when you choose "How much of harvested DM (and C) is removed from the simulation? ", if you click somewhere outside the manager (i.e. one the sim tree) the selection seems to revert back to "Remove All" (when you click back to the cut rotation manager). You have to click somewhere else in the cut rotation manager itself to "save" your selection. ![image](https://user-images.githubusercontent.com/32279744/65483519-9b44b780-def0-11e9-9608-21025f0588f2.png)
infrastructure
cut rotation automatic default hi in the cut rotation manager when you choose how much of harvested dm and c is removed from the simulation if you click somewhere outside the manager i e one the sim tree the selection seems to revert back to remove all when you click back to the cut rotation manager you have to click somewhere else in the cut rotation manager itself to save your selection
1
34,867
4,957,017,137
IssuesEvent
2016-12-02 02:03:21
kubernetes/kubernetes
https://api.github.com/repos/kubernetes/kubernetes
closed
ci-kubernetes-e2e-gce-enormous-deploy: broken test run
kind/flake priority/P2 team/test-infra
Failed: https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/ci-kubernetes-e2e-gce-enormous-deploy/-1/ Run so broken it didn't make JUnit output!
1.0
ci-kubernetes-e2e-gce-enormous-deploy: broken test run - Failed: https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/ci-kubernetes-e2e-gce-enormous-deploy/-1/ Run so broken it didn't make JUnit output!
non_infrastructure
ci kubernetes gce enormous deploy broken test run failed run so broken it didn t make junit output
0
129,301
17,770,995,992
IssuesEvent
2021-08-30 13:39:15
kawalcovid19/wargabantuwarga.com
https://api.github.com/repos/kawalcovid19/wargabantuwarga.com
closed
Website 2.0
enhancement epic ui ux design
## Overview We are revamping our website look and feel based on the new UI design reflected in this Figma file: https://www.figma.com/file/XNNtIoFEdFqaXOee83n0oN/WBW?node-id=485:2485 ## Current Tasks ### Home page - [x] #332 - [x] #352 - [x] #333 - [x] #322 - [x] #323 - [x] #324 - [x] #504 - [x] #598 - [x] #599 - [x] #642 - [x] #672 - [x] #673 - [x] #668 - [x] #710 ### Database-related pages - [x] #600 ### Stuff that's on a separate page - [x] #325 - [x] #326 - [x] #327 - [x] #328 - [x] #329 - [x] #330 - [x] #712 ### General structure - [x] #346 - [x] #391 - [x] #624 ### Minor tasks - [x] #385 - [x] #422 - [x] #453 ### Bugs - [x] #448 - [x] #498 - [x] #573 - [x] #723
1.0
Website 2.0 - ## Overview We are revamping our website look and feel based on the new UI design reflected in this Figma file: https://www.figma.com/file/XNNtIoFEdFqaXOee83n0oN/WBW?node-id=485:2485 ## Current Tasks ### Home page - [x] #332 - [x] #352 - [x] #333 - [x] #322 - [x] #323 - [x] #324 - [x] #504 - [x] #598 - [x] #599 - [x] #642 - [x] #672 - [x] #673 - [x] #668 - [x] #710 ### Database-related pages - [x] #600 ### Stuff that's on a separate page - [x] #325 - [x] #326 - [x] #327 - [x] #328 - [x] #329 - [x] #330 - [x] #712 ### General structure - [x] #346 - [x] #391 - [x] #624 ### Minor tasks - [x] #385 - [x] #422 - [x] #453 ### Bugs - [x] #448 - [x] #498 - [x] #573 - [x] #723
non_infrastructure
website overview we are revamping our website look and feel based on the new ui design reflected in this figma file current tasks home page database related pages stuff that s on a separate page general structure minor tasks bugs
0
7,021
6,715,911,349
IssuesEvent
2017-10-14 00:16:53
oppia/oppia
https://api.github.com/repos/oppia/oppia
closed
Measuring landing page performance
loc: frontend talk-to: @jaredsilver type: infrastructure
Here's [an issue](https://github.com/oppia/oppia/issues/3365) to create new landing pages for fractions. I've asked that 5 URLs be created: - one for each of 4 landing pages - one that takes people to a random one of the 4 We'd like to track the performance of each of the 4, so that we can: - Delete the 2 worst ones - Create new variations of the 2 best, to test again We want to end up with a couple of high-performing landing pages. We want to measure: - What % of users who land on the landing page, click one of the calls-to-action - What % of users who land on the landing page, complete at least 3 steps in the linked exploration (within the same session, or within an hour, or whatever... I mean we don't want to attribute that landing page with success if they do it a week later)
1.0
Measuring landing page performance - Here's [an issue](https://github.com/oppia/oppia/issues/3365) to create new landing pages for fractions. I've asked that 5 URLs be created: - one for each of 4 landing pages - one that takes people to a random one of the 4 We'd like to track the performance of each of the 4, so that we can: - Delete the 2 worst ones - Create new variations of the 2 best, to test again We want to end up with a couple of high-performing landing pages. We want to measure: - What % of users who land on the landing page, click one of the calls-to-action - What % of users who land on the landing page, complete at least 3 steps in the linked exploration (within the same session, or within an hour, or whatever... I mean we don't want to attribute that landing page with success if they do it a week later)
infrastructure
measuring landing page performance here s to create new landing pages for fractions i ve asked that urls be created one for each of landing pages one that takes people to a random one of the we d like to track the performance of each of the so that we can delete the worst ones create new variations of the best to test again we want to end up with a couple of high performing landing pages we want to measure what of users who land on the landing page click one of the calls to action what of users who land on the landing page complete at least steps in the linked exploration within the same session or within an hour or whatever i mean we don t want to attribute that landing page with success if they do it a week later
1
327,679
24,147,614,346
IssuesEvent
2022-09-21 20:19:41
neurobagel/concept_query
https://api.github.com/repos/neurobagel/concept_query
closed
Pushing Docker image to Docker hub
documentation deployment
Once the Dockerfile is in our repo and builds a local Docker image, let's - [x] Push the image to Dockerhub - [x] Write documentation for users of the repo to use `docker pull` the image instead of having to build it from the Dockerfile - [x] In building this image, ensure that versions of base image, python, and required packages are locked in for consistent behavior
1.0
Pushing Docker image to Docker hub - Once the Dockerfile is in our repo and builds a local Docker image, let's - [x] Push the image to Dockerhub - [x] Write documentation for users of the repo to use `docker pull` the image instead of having to build it from the Dockerfile - [x] In building this image, ensure that versions of base image, python, and required packages are locked in for consistent behavior
non_infrastructure
pushing docker image to docker hub once the dockerfile is in our repo and builds a local docker image let s push the image to dockerhub write documentation for users of the repo to use docker pull the image instead of having to build it from the dockerfile in building this image ensure that versions of base image python and required packages are locked in for consistent behavior
0
4,093
4,793,285,341
IssuesEvent
2016-10-31 17:44:57
GuildCrafts/floworky
https://api.github.com/repos/GuildCrafts/floworky
closed
Define CSS approach
8 hours Infrastructure
As a developer, I want guidelines for styling html in floworky, so that I can effectively contribute to the project. - Resources for research: http://getbem.com/introduction/ - Create a style guide in the project that displays the visual styles along with the classes and ids we will use
1.0
Define CSS approach - As a developer, I want guidelines for styling html in floworky, so that I can effectively contribute to the project. - Resources for research: http://getbem.com/introduction/ - Create a style guide in the project that displays the visual styles along with the classes and ids we will use
infrastructure
define css approach as a developer i want guidelines for styling html in floworky so that i can effectively contribute to the project resources for research create a style guide in the project that displays the visual styles along with the classes and ids we will use
1
322,096
9,812,861,475
IssuesEvent
2019-06-13 06:20:28
MolSnoo/Alter-Ego
https://api.github.com/repos/MolSnoo/Alter-Ego
closed
Remake drop command
feature high priority
- drop_player: Allows a player to drop an item on the floor or in a given object. - drop_moderator: Allows a moderator to drop an item on the floor or in a given object for a given player.
1.0
Remake drop command - - drop_player: Allows a player to drop an item on the floor or in a given object. - drop_moderator: Allows a moderator to drop an item on the floor or in a given object for a given player.
non_infrastructure
remake drop command drop player allows a player to drop an item on the floor or in a given object drop moderator allows a moderator to drop an item on the floor or in a given object for a given player
0
33,050
27,172,348,306
IssuesEvent
2023-02-17 20:42:05
microsoft/referencesource
https://api.github.com/repos/microsoft/referencesource
closed
Why there are 4 dashes in comments instead of words?
Infrastructure
I was wondered to see ---- instead some words in code's documentation. The dashes make it harder to understand the comments. For example: https://github.com/microsoft/referencesource/blob/e0bf122d0e52a42688b92bb4be2cfd66ca3c2f07/mscorlib/system/threading/Tasks/Task.cs#L273
1.0
Why there are 4 dashes in comments instead of words? - I was wondered to see ---- instead some words in code's documentation. The dashes make it harder to understand the comments. For example: https://github.com/microsoft/referencesource/blob/e0bf122d0e52a42688b92bb4be2cfd66ca3c2f07/mscorlib/system/threading/Tasks/Task.cs#L273
infrastructure
why there are dashes in comments instead of words i was wondered to see instead some words in code s documentation the dashes make it harder to understand the comments for example
1
29,261
23,861,606,796
IssuesEvent
2022-09-07 07:34:24
dotnet/roslyn
https://api.github.com/repos/dotnet/roslyn
closed
CI build fails due to Azure package feed error 503 (Service Unavailable)
Area-Infrastructure Test Flaky Infraswat
Restore failure seen in https://runfo.azurewebsites.net/view/build/?number=1451898. Example log: > C:\Program Files\Microsoft Visual Studio\2022\Preview\Common7\IDE\CommonExtensions\Microsoft\NuGet\NuGet.RestoreEx.targets(19,5): error : (NETCORE_ENGINEERING_TELEMETRY=Restore) Failed to retrieve information about 'Microsoft.VisualStudio.GraphModel' from remote source 'https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/825db618-e3eb-4426-ba54-b1d6e6c944d8/nuget/v3/flat2/microsoft.visualstudio.graphmodel/index.json'. at NuGet.Protocol.HttpFileSystemBasedFindPackageByIdResource.<FindPackagesByIdAsync>d__17.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Protocol.HttpFileSystemBasedFindPackageByIdResource.<EnsurePackagesAsync>d__16.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Protocol.HttpFileSystemBasedFindPackageByIdResource.<DoesPackageExistAsync>d__15.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Commands.SourceRepositoryDependencyProvider.<FindLibraryCoreAsync>d__20.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Commands.SourceRepositoryDependencyProvider.<>c__DisplayClass19_0.<<FindLibraryAsync>b__0>d.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Commands.SourceRepositoryDependencyProvider.<FindLibraryAsync>d__19.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.DependencyResolver.ResolverUtility.<>c__DisplayClass9_1.<<FindLibraryFromSourcesAsync>b__0>d.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at NuGet.DependencyResolver.ResolverUtility.<FindLibraryFromSourcesAsync>d__9.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.DependencyResolver.ResolverUtility.<FindLibraryByVersionAsync>d__8.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.DependencyResolver.ResolverUtility.<FindPackageLibraryMatchAsync>d__6.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.DependencyResolver.ResolverUtility.<FindLibraryMatchAsync>d__3.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at NuGet.DependencyResolver.ResolverUtility.<FindLibraryEntryAsync>d__1.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.DependencyResolver.RemoteDependencyWalker.<CreateGraphNode>d__3.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.DependencyResolver.RemoteDependencyWalker.<CreateGraphNode>d__3.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.DependencyResolver.RemoteDependencyWalker.<CreateGraphNode>d__3.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.DependencyResolver.RemoteDependencyWalker.<CreateGraphNode>d__3.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.DependencyResolver.RemoteDependencyWalker.<CreateGraphNode>d__3.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.DependencyResolver.RemoteDependencyWalker.<CreateGraphNode>d__3.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.DependencyResolver.RemoteDependencyWalker.<WalkAsync>d__2.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Commands.ProjectRestoreCommand.<WalkDependenciesAsync>d__13.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Commands.ProjectRestoreCommand.<TryRestoreAsync>d__9.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Commands.RestoreCommand.<ExecuteRestoreAsync>d__57.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Commands.RestoreCommand.<ExecuteAsync>d__40.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Commands.RestoreRunner.<ExecuteAsync>d__7.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Commands.RestoreRunner.<ExecuteAndCommitAsync>d__6.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Commands.RestoreRunner.<CompleteTaskAsync>d__9.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at NuGet.Commands.RestoreRunner.<RunAsync>d__2.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Commands.RestoreRunner.<RunAsync>d__0.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Build.Tasks.BuildTasksUtility.<RestoreAsync>d__12.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Build.Tasks.Console.MSBuildStaticGraphRestore.<RestoreAsync>d__14.MoveNext() <!-- runfo report start --> Runfo Tracking Issue: [Microsoft.VisualStudio.GraphModel restore failure](https://runfo.azurewebsites.net/tracking/issue/210) |Definition|Build|Kind|Job Name| |---|---|---|---| |[roslyn-CI](https://dnceng.visualstudio.com/public/_build?definitionId=15)|[1959283](https://dev.azure.com/dnceng/public/_build/results?buildId=1959283)|[PR 62924](https://github.com/dotnet/roslyn/pull/62924)|Build_Windows_Release| |[roslyn-CI](https://dnceng.visualstudio.com/public/_build?definitionId=15)|[1959283](https://dev.azure.com/dnceng/public/_build/results?buildId=1959283)|[PR 62924](https://github.com/dotnet/roslyn/pull/62924)|Correctness_Build_Artifacts| |[roslyn-CI](https://dnceng.visualstudio.com/public/_build?definitionId=15)|[1959283](https://dev.azure.com/dnceng/public/_build/results?buildId=1959283)|[PR 62924](https://github.com/dotnet/roslyn/pull/62924)|Correctness_Analyzers| |[roslyn-CI](https://dnceng.visualstudio.com/public/_build?definitionId=15)|[1959283](https://dev.azure.com/dnceng/public/_build/results?buildId=1959283)|[PR 62924](https://github.com/dotnet/roslyn/pull/62924)|Build_Windows_Release| |[roslyn-CI](https://dnceng.visualstudio.com/public/_build?definitionId=15)|[1959283](https://dev.azure.com/dnceng/public/_build/results?buildId=1959283)|[PR 62924](https://github.com/dotnet/roslyn/pull/62924)|Correctness_Build_Artifacts| |[roslyn-CI](https://dnceng.visualstudio.com/public/_build?definitionId=15)|[1959283](https://dev.azure.com/dnceng/public/_build/results?buildId=1959283)|[PR 62924](https://github.com/dotnet/roslyn/pull/62924)|Build_Windows_Debug| |[roslyn-CI](https://dnceng.visualstudio.com/public/_build?definitionId=15)|[1959283](https://dev.azure.com/dnceng/public/_build/results?buildId=1959283)|[PR 62924](https://github.com/dotnet/roslyn/pull/62924)|Build_Windows_Debug| Build Result Summary |Day Hit Count|Week Hit Count|Month Hit Count| |---|---|---| |0|0|1| <!-- runfo report end -->
1.0
CI build fails due to Azure package feed error 503 (Service Unavailable) - Restore failure seen in https://runfo.azurewebsites.net/view/build/?number=1451898. Example log: > C:\Program Files\Microsoft Visual Studio\2022\Preview\Common7\IDE\CommonExtensions\Microsoft\NuGet\NuGet.RestoreEx.targets(19,5): error : (NETCORE_ENGINEERING_TELEMETRY=Restore) Failed to retrieve information about 'Microsoft.VisualStudio.GraphModel' from remote source 'https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/825db618-e3eb-4426-ba54-b1d6e6c944d8/nuget/v3/flat2/microsoft.visualstudio.graphmodel/index.json'. at NuGet.Protocol.HttpFileSystemBasedFindPackageByIdResource.<FindPackagesByIdAsync>d__17.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Protocol.HttpFileSystemBasedFindPackageByIdResource.<EnsurePackagesAsync>d__16.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Protocol.HttpFileSystemBasedFindPackageByIdResource.<DoesPackageExistAsync>d__15.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Commands.SourceRepositoryDependencyProvider.<FindLibraryCoreAsync>d__20.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Commands.SourceRepositoryDependencyProvider.<>c__DisplayClass19_0.<<FindLibraryAsync>b__0>d.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Commands.SourceRepositoryDependencyProvider.<FindLibraryAsync>d__19.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.DependencyResolver.ResolverUtility.<>c__DisplayClass9_1.<<FindLibraryFromSourcesAsync>b__0>d.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at NuGet.DependencyResolver.ResolverUtility.<FindLibraryFromSourcesAsync>d__9.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.DependencyResolver.ResolverUtility.<FindLibraryByVersionAsync>d__8.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.DependencyResolver.ResolverUtility.<FindPackageLibraryMatchAsync>d__6.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.DependencyResolver.ResolverUtility.<FindLibraryMatchAsync>d__3.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at NuGet.DependencyResolver.ResolverUtility.<FindLibraryEntryAsync>d__1.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.DependencyResolver.RemoteDependencyWalker.<CreateGraphNode>d__3.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.DependencyResolver.RemoteDependencyWalker.<CreateGraphNode>d__3.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.DependencyResolver.RemoteDependencyWalker.<CreateGraphNode>d__3.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.DependencyResolver.RemoteDependencyWalker.<CreateGraphNode>d__3.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.DependencyResolver.RemoteDependencyWalker.<CreateGraphNode>d__3.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.DependencyResolver.RemoteDependencyWalker.<CreateGraphNode>d__3.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.DependencyResolver.RemoteDependencyWalker.<WalkAsync>d__2.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Commands.ProjectRestoreCommand.<WalkDependenciesAsync>d__13.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Commands.ProjectRestoreCommand.<TryRestoreAsync>d__9.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Commands.RestoreCommand.<ExecuteRestoreAsync>d__57.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Commands.RestoreCommand.<ExecuteAsync>d__40.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Commands.RestoreRunner.<ExecuteAsync>d__7.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Commands.RestoreRunner.<ExecuteAndCommitAsync>d__6.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Commands.RestoreRunner.<CompleteTaskAsync>d__9.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at NuGet.Commands.RestoreRunner.<RunAsync>d__2.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Commands.RestoreRunner.<RunAsync>d__0.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Build.Tasks.BuildTasksUtility.<RestoreAsync>d__12.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at NuGet.Build.Tasks.Console.MSBuildStaticGraphRestore.<RestoreAsync>d__14.MoveNext() <!-- runfo report start --> Runfo Tracking Issue: [Microsoft.VisualStudio.GraphModel restore failure](https://runfo.azurewebsites.net/tracking/issue/210) |Definition|Build|Kind|Job Name| |---|---|---|---| |[roslyn-CI](https://dnceng.visualstudio.com/public/_build?definitionId=15)|[1959283](https://dev.azure.com/dnceng/public/_build/results?buildId=1959283)|[PR 62924](https://github.com/dotnet/roslyn/pull/62924)|Build_Windows_Release| |[roslyn-CI](https://dnceng.visualstudio.com/public/_build?definitionId=15)|[1959283](https://dev.azure.com/dnceng/public/_build/results?buildId=1959283)|[PR 62924](https://github.com/dotnet/roslyn/pull/62924)|Correctness_Build_Artifacts| |[roslyn-CI](https://dnceng.visualstudio.com/public/_build?definitionId=15)|[1959283](https://dev.azure.com/dnceng/public/_build/results?buildId=1959283)|[PR 62924](https://github.com/dotnet/roslyn/pull/62924)|Correctness_Analyzers| |[roslyn-CI](https://dnceng.visualstudio.com/public/_build?definitionId=15)|[1959283](https://dev.azure.com/dnceng/public/_build/results?buildId=1959283)|[PR 62924](https://github.com/dotnet/roslyn/pull/62924)|Build_Windows_Release| |[roslyn-CI](https://dnceng.visualstudio.com/public/_build?definitionId=15)|[1959283](https://dev.azure.com/dnceng/public/_build/results?buildId=1959283)|[PR 62924](https://github.com/dotnet/roslyn/pull/62924)|Correctness_Build_Artifacts| |[roslyn-CI](https://dnceng.visualstudio.com/public/_build?definitionId=15)|[1959283](https://dev.azure.com/dnceng/public/_build/results?buildId=1959283)|[PR 62924](https://github.com/dotnet/roslyn/pull/62924)|Build_Windows_Debug| |[roslyn-CI](https://dnceng.visualstudio.com/public/_build?definitionId=15)|[1959283](https://dev.azure.com/dnceng/public/_build/results?buildId=1959283)|[PR 62924](https://github.com/dotnet/roslyn/pull/62924)|Build_Windows_Debug| Build Result Summary |Day Hit Count|Week Hit Count|Month Hit Count| |---|---|---| |0|0|1| <!-- runfo report end -->
infrastructure
ci build fails due to azure package feed error service unavailable restore failure seen in example log c program files microsoft visual studio preview ide commonextensions microsoft nuget nuget restoreex targets error netcore engineering telemetry restore failed to retrieve information about microsoft visualstudio graphmodel from remote source at nuget protocol httpfilesystembasedfindpackagebyidresource d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget protocol httpfilesystembasedfindpackagebyidresource d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget protocol httpfilesystembasedfindpackagebyidresource d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget commands sourcerepositorydependencyprovider d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget commands sourcerepositorydependencyprovider c b d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget commands sourcerepositorydependencyprovider d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget dependencyresolver resolverutility c b d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at nuget dependencyresolver resolverutility d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget dependencyresolver resolverutility d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget dependencyresolver resolverutility d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget dependencyresolver resolverutility d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at nuget dependencyresolver resolverutility d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget dependencyresolver remotedependencywalker d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget dependencyresolver remotedependencywalker d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget dependencyresolver remotedependencywalker d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget dependencyresolver remotedependencywalker d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget dependencyresolver remotedependencywalker d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget dependencyresolver remotedependencywalker d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget dependencyresolver remotedependencywalker d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget commands projectrestorecommand d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget commands projectrestorecommand d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget commands restorecommand d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget commands restorecommand d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget commands restorerunner d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget commands restorerunner d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget commands restorerunner d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at nuget commands restorerunner d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget commands restorerunner d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget build tasks buildtasksutility d movenext end of stack trace from previous location where exception was thrown at system runtime exceptionservices exceptiondispatchinfo throw at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at nuget build tasks console msbuildstaticgraphrestore d movenext runfo tracking issue definition build kind job name build result summary day hit count week hit count month hit count
1
8,883
7,718,461,694
IssuesEvent
2018-05-23 16:17:58
GoogleCloudPlatform/forseti-security
https://api.github.com/repos/GoogleCloudPlatform/forseti-security
closed
Missing Gsuite API Scopes in Local Environment
module: infrastructure priority: p1 release-testing: 2.0 RC3 triaged: yes
When running `forseti inventory create` in my dev environment, will end up having these 2 warnings, and no gsuite data is in inventory. ``` ('invalid_scope: Empty or missing scope not allowed.', u'{\n "error" : "invalid_scope",\n "error_description" : "Empty or missing scope not allowed.",\n "stack_trace" : "com.google.security.lso.protocol.oauth2.common.OAuth2ErrorException: invalid_scope: Empty or missing scope not allowed.\\n\\tat com.google.security.lso.protocol.oauth2.common.OAuth2ErrorException$Builder.build(OAuth2ErrorException.java:214)\\n\\tat com.google.security.lso.protocol.oauth2.common.ExceptionConversions.fromOAuth2Error(ExceptionConversions.java:55)\\n\\tat com.google.security.lso.auth.oauth2.token.GetTokenConverter.convertErrors(GetTokenConverter.java:232)\\n\\tat com.google.security.lso.auth.oauth2.token.GetTokenConverter.convertToBoqResponse(GetTokenConverter.java:199)\\n\\tat com.google.security.lso.auth.oauth2.token.GetTokenProducer.produceFinalResponse(GetTokenProducer.java:37)\\n\\tSuppressed: com.google.common.labs.concurrent.LabsFutures$10: GraphFuture{key=@com.google.security.lso.auth.oauth2.token.GetTokenGraph$GetResponse com.google.security.lso.protocol.oauth2.common.OAuth2DirectResponse} failed: com.google.security.lso.protocol.oauth2.common.OAuth2ErrorException: invalid_scope: Empty or missing scope not allowed.\\n"\n}') ('invalid_scope: Empty or missing scope not allowed.', u'{\n "error" : "invalid_scope",\n "error_description" : "Empty or missing scope not allowed.",\n "stack_trace" : "com.google.security.lso.protocol.oauth2.common.OAuth2ErrorException: invalid_scope: Empty or missing scope not allowed.\\n\\tat com.google.security.lso.protocol.oauth2.common.OAuth2ErrorException$Builder.build(OAuth2ErrorException.java:214)\\n\\tat com.google.security.lso.protocol.oauth2.common.ExceptionConversions.fromOAuth2Error(ExceptionConversions.java:55)\\n\\tat com.google.security.lso.auth.oauth2.token.GetTokenConverter.convertErrors(GetTokenConverter.java:232)\\n\\tat com.google.security.lso.auth.oauth2.token.GetTokenConverter.convertToBoqResponse(GetTokenConverter.java:199)\\n\\tat com.google.security.lso.auth.oauth2.token.GetTokenProducer.produceFinalResponse(GetTokenProducer.java:37)\\n\\tSuppressed: com.google.common.labs.concurrent.LabsFutures$10: GraphFuture{key=@com.google.security.lso.auth.oauth2.token.GetTokenGraph$GetResponse com.google.security.lso.protocol.oauth2.common.OAuth2DirectResponse} failed: com.google.security.lso.protocol.oauth2.common.OAuth2ErrorException: invalid_scope: Empty or missing scope not allowed.\\n"\n}') ``` On debugging, the scopes are indeed missing from the ```bootstrap_credentials```, generated by ```google.auth.default()```, which seems to be [confirmed to be issue here](https://github.com/dask/gcsfs/issues/83). ![image](https://user-images.githubusercontent.com/6977544/40323189-7ef4cb4a-5ce9-11e8-8fd3-e07abb69f430.png)
1.0
Missing Gsuite API Scopes in Local Environment - When running `forseti inventory create` in my dev environment, will end up having these 2 warnings, and no gsuite data is in inventory. ``` ('invalid_scope: Empty or missing scope not allowed.', u'{\n "error" : "invalid_scope",\n "error_description" : "Empty or missing scope not allowed.",\n "stack_trace" : "com.google.security.lso.protocol.oauth2.common.OAuth2ErrorException: invalid_scope: Empty or missing scope not allowed.\\n\\tat com.google.security.lso.protocol.oauth2.common.OAuth2ErrorException$Builder.build(OAuth2ErrorException.java:214)\\n\\tat com.google.security.lso.protocol.oauth2.common.ExceptionConversions.fromOAuth2Error(ExceptionConversions.java:55)\\n\\tat com.google.security.lso.auth.oauth2.token.GetTokenConverter.convertErrors(GetTokenConverter.java:232)\\n\\tat com.google.security.lso.auth.oauth2.token.GetTokenConverter.convertToBoqResponse(GetTokenConverter.java:199)\\n\\tat com.google.security.lso.auth.oauth2.token.GetTokenProducer.produceFinalResponse(GetTokenProducer.java:37)\\n\\tSuppressed: com.google.common.labs.concurrent.LabsFutures$10: GraphFuture{key=@com.google.security.lso.auth.oauth2.token.GetTokenGraph$GetResponse com.google.security.lso.protocol.oauth2.common.OAuth2DirectResponse} failed: com.google.security.lso.protocol.oauth2.common.OAuth2ErrorException: invalid_scope: Empty or missing scope not allowed.\\n"\n}') ('invalid_scope: Empty or missing scope not allowed.', u'{\n "error" : "invalid_scope",\n "error_description" : "Empty or missing scope not allowed.",\n "stack_trace" : "com.google.security.lso.protocol.oauth2.common.OAuth2ErrorException: invalid_scope: Empty or missing scope not allowed.\\n\\tat com.google.security.lso.protocol.oauth2.common.OAuth2ErrorException$Builder.build(OAuth2ErrorException.java:214)\\n\\tat com.google.security.lso.protocol.oauth2.common.ExceptionConversions.fromOAuth2Error(ExceptionConversions.java:55)\\n\\tat com.google.security.lso.auth.oauth2.token.GetTokenConverter.convertErrors(GetTokenConverter.java:232)\\n\\tat com.google.security.lso.auth.oauth2.token.GetTokenConverter.convertToBoqResponse(GetTokenConverter.java:199)\\n\\tat com.google.security.lso.auth.oauth2.token.GetTokenProducer.produceFinalResponse(GetTokenProducer.java:37)\\n\\tSuppressed: com.google.common.labs.concurrent.LabsFutures$10: GraphFuture{key=@com.google.security.lso.auth.oauth2.token.GetTokenGraph$GetResponse com.google.security.lso.protocol.oauth2.common.OAuth2DirectResponse} failed: com.google.security.lso.protocol.oauth2.common.OAuth2ErrorException: invalid_scope: Empty or missing scope not allowed.\\n"\n}') ``` On debugging, the scopes are indeed missing from the ```bootstrap_credentials```, generated by ```google.auth.default()```, which seems to be [confirmed to be issue here](https://github.com/dask/gcsfs/issues/83). ![image](https://user-images.githubusercontent.com/6977544/40323189-7ef4cb4a-5ce9-11e8-8fd3-e07abb69f430.png)
infrastructure
missing gsuite api scopes in local environment when running forseti inventory create in my dev environment will end up having these warnings and no gsuite data is in inventory invalid scope empty or missing scope not allowed u n error invalid scope n error description empty or missing scope not allowed n stack trace com google security lso protocol common invalid scope empty or missing scope not allowed n tat com google security lso protocol common builder build java n tat com google security lso protocol common exceptionconversions exceptionconversions java n tat com google security lso auth token gettokenconverter converterrors gettokenconverter java n tat com google security lso auth token gettokenconverter converttoboqresponse gettokenconverter java n tat com google security lso auth token gettokenproducer producefinalresponse gettokenproducer java n tsuppressed com google common labs concurrent labsfutures graphfuture key com google security lso auth token gettokengraph getresponse com google security lso protocol common failed com google security lso protocol common invalid scope empty or missing scope not allowed n n invalid scope empty or missing scope not allowed u n error invalid scope n error description empty or missing scope not allowed n stack trace com google security lso protocol common invalid scope empty or missing scope not allowed n tat com google security lso protocol common builder build java n tat com google security lso protocol common exceptionconversions exceptionconversions java n tat com google security lso auth token gettokenconverter converterrors gettokenconverter java n tat com google security lso auth token gettokenconverter converttoboqresponse gettokenconverter java n tat com google security lso auth token gettokenproducer producefinalresponse gettokenproducer java n tsuppressed com google common labs concurrent labsfutures graphfuture key com google security lso auth token gettokengraph getresponse com google security lso protocol common failed com google security lso protocol common invalid scope empty or missing scope not allowed n n on debugging the scopes are indeed missing from the bootstrap credentials generated by google auth default which seems to be
1
27,165
13,192,112,264
IssuesEvent
2020-08-13 13:17:19
matrix-org/synapse
https://api.github.com/repos/matrix-org/synapse
opened
The `pdu_process_time` metrics include time spent waiting on remote servers
performance
During processing of inbound events we sometimes need to go and request stuff from remote servers, and so `pdu_process_time` includes that time. This makes it hard to tell if inbound federation is slow because of Synapse being slow or because the remote is being slow. We should remove that time from the metric (or add a new metric).
True
The `pdu_process_time` metrics include time spent waiting on remote servers - During processing of inbound events we sometimes need to go and request stuff from remote servers, and so `pdu_process_time` includes that time. This makes it hard to tell if inbound federation is slow because of Synapse being slow or because the remote is being slow. We should remove that time from the metric (or add a new metric).
non_infrastructure
the pdu process time metrics include time spent waiting on remote servers during processing of inbound events we sometimes need to go and request stuff from remote servers and so pdu process time includes that time this makes it hard to tell if inbound federation is slow because of synapse being slow or because the remote is being slow we should remove that time from the metric or add a new metric
0
199,794
15,782,774,592
IssuesEvent
2021-04-01 13:13:11
dagster-io/dagster
https://api.github.com/repos/dagster-io/dagster
opened
[Content Gap] document pipeline termination mutation
documentation
### Dagster Documentation Gap document pipeline termination mutation This issue was generated from the slack conversation at: https://dagster.slack.com/archives/CCCR6P2UR/p1617271111360300?thread_ts=1617271111.360300&cid=CCCR6P2UR Conversation excerpt: ``` U01NC7QNSR5: Hi! Is there in dagster any possibility of terminate pipeline, if it execute more than some time? (something like timeout of pipeline execution) Thank you U016C4E5CP8: Hi Sasha - this isn't something dagster currently has built in. I could imagine building something like this using the GraphQL API though as there's a mutation you can call to terminate a running pipeline: <https://docs.dagster.io/concepts/dagit/graphql#graphql-api> U016C4E5CP8: <@U018K0G2Y85> docs document pipeline termination mutation ``` --- #### Message from the maintainers: Are you looking for the same documentation content? Give it a :thumbsup:. We factor engagement into prioritization.
1.0
[Content Gap] document pipeline termination mutation - ### Dagster Documentation Gap document pipeline termination mutation This issue was generated from the slack conversation at: https://dagster.slack.com/archives/CCCR6P2UR/p1617271111360300?thread_ts=1617271111.360300&cid=CCCR6P2UR Conversation excerpt: ``` U01NC7QNSR5: Hi! Is there in dagster any possibility of terminate pipeline, if it execute more than some time? (something like timeout of pipeline execution) Thank you U016C4E5CP8: Hi Sasha - this isn't something dagster currently has built in. I could imagine building something like this using the GraphQL API though as there's a mutation you can call to terminate a running pipeline: <https://docs.dagster.io/concepts/dagit/graphql#graphql-api> U016C4E5CP8: <@U018K0G2Y85> docs document pipeline termination mutation ``` --- #### Message from the maintainers: Are you looking for the same documentation content? Give it a :thumbsup:. We factor engagement into prioritization.
non_infrastructure
document pipeline termination mutation dagster documentation gap document pipeline termination mutation this issue was generated from the slack conversation at conversation excerpt hi is there in dagster any possibility of terminate pipeline if it execute more than some time something like timeout of pipeline execution thank you hi sasha this isn t something dagster currently has built in i could imagine building something like this using the graphql api though as there s a mutation you can call to terminate a running pipeline docs document pipeline termination mutation message from the maintainers are you looking for the same documentation content give it a thumbsup we factor engagement into prioritization
0
7,831
7,112,283,488
IssuesEvent
2018-01-17 16:34:26
dzhw/metadatamanagement
https://api.github.com/repos/dzhw/metadatamanagement
opened
linkage MDM - DLP
category:crosscutting prio:? scope:project infrastructure status:discussion
We need to define the linkage between the MDM and the DLP In the specification of the DLP it says > Ein Kunde wählt auf einer Website (Metadatensuchsystem) verschiedene Produkte aus, diese werden über eine Reminder-Funktion auf einen Merkzettel gesetzt. > Hat der Kunde seine Auswahl der Produkte abgeschlossen, kann er einen Button betätigen (z.B. "Produktauswahl abgeschlossen"), wodurch die Produkte über eine Schnittstelle an das CRM-System übergeben werden. > Anschließend muss der Kunde sich über das Kundenportal anmelden oder neu registrieren. >
1.0
linkage MDM - DLP - We need to define the linkage between the MDM and the DLP In the specification of the DLP it says > Ein Kunde wählt auf einer Website (Metadatensuchsystem) verschiedene Produkte aus, diese werden über eine Reminder-Funktion auf einen Merkzettel gesetzt. > Hat der Kunde seine Auswahl der Produkte abgeschlossen, kann er einen Button betätigen (z.B. "Produktauswahl abgeschlossen"), wodurch die Produkte über eine Schnittstelle an das CRM-System übergeben werden. > Anschließend muss der Kunde sich über das Kundenportal anmelden oder neu registrieren. >
infrastructure
linkage mdm dlp we need to define the linkage between the mdm and the dlp in the specification of the dlp it says ein kunde wählt auf einer website metadatensuchsystem verschiedene produkte aus diese werden über eine reminder funktion auf einen merkzettel gesetzt hat der kunde seine auswahl der produkte abgeschlossen kann er einen button betätigen z b produktauswahl abgeschlossen wodurch die produkte über eine schnittstelle an das crm system übergeben werden anschließend muss der kunde sich über das kundenportal anmelden oder neu registrieren
1
45,698
13,132,115,571
IssuesEvent
2020-08-06 18:17:18
gsylvie/orleans-clone
https://api.github.com/repos/gsylvie/orleans-clone
opened
CVE-2019-1010266 (Medium) detected in lodash-1.3.1.tgz
security vulnerability
## CVE-2019-1010266 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>lodash-1.3.1.tgz</b></p></summary> <p>A utility library delivering consistency, customization, performance, and extras.</p> <p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-1.3.1.tgz">https://registry.npmjs.org/lodash/-/lodash-1.3.1.tgz</a></p> <p>Path to dependency file: /tmp/ws-scm/orleans-clone/Samples/1.x/TwitterSentiment/TwitterClient/package.json</p> <p>Path to vulnerable library: /tmp/ws-scm/orleans-clone/Samples/1.x/TwitterSentiment/TwitterClient/node_modules/lodash/package.json</p> <p> Dependency Hierarchy: - sentiment-0.2.4.tgz (Root Library) - :x: **lodash-1.3.1.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/gsylvie/orleans-clone/commit/cf144063e843ed25837f8e5d4de46007a4c597c8">cf144063e843ed25837f8e5d4de46007a4c597c8</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> lodash prior to 4.17.11 is affected by: CWE-400: Uncontrolled Resource Consumption. The impact is: Denial of service. The component is: Date handler. The attack vector is: Attacker provides very long strings, which the library attempts to match using a regular expression. The fixed version is: 4.17.11. <p>Publish Date: 2019-07-17 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-1010266>CVE-2019-1010266</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1010266">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1010266</a></p> <p>Release Date: 2019-07-17</p> <p>Fix Resolution: 4.17.11</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2019-1010266 (Medium) detected in lodash-1.3.1.tgz - ## CVE-2019-1010266 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>lodash-1.3.1.tgz</b></p></summary> <p>A utility library delivering consistency, customization, performance, and extras.</p> <p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-1.3.1.tgz">https://registry.npmjs.org/lodash/-/lodash-1.3.1.tgz</a></p> <p>Path to dependency file: /tmp/ws-scm/orleans-clone/Samples/1.x/TwitterSentiment/TwitterClient/package.json</p> <p>Path to vulnerable library: /tmp/ws-scm/orleans-clone/Samples/1.x/TwitterSentiment/TwitterClient/node_modules/lodash/package.json</p> <p> Dependency Hierarchy: - sentiment-0.2.4.tgz (Root Library) - :x: **lodash-1.3.1.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/gsylvie/orleans-clone/commit/cf144063e843ed25837f8e5d4de46007a4c597c8">cf144063e843ed25837f8e5d4de46007a4c597c8</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> lodash prior to 4.17.11 is affected by: CWE-400: Uncontrolled Resource Consumption. The impact is: Denial of service. The component is: Date handler. The attack vector is: Attacker provides very long strings, which the library attempts to match using a regular expression. The fixed version is: 4.17.11. <p>Publish Date: 2019-07-17 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-1010266>CVE-2019-1010266</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1010266">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1010266</a></p> <p>Release Date: 2019-07-17</p> <p>Fix Resolution: 4.17.11</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_infrastructure
cve medium detected in lodash tgz cve medium severity vulnerability vulnerable library lodash tgz a utility library delivering consistency customization performance and extras library home page a href path to dependency file tmp ws scm orleans clone samples x twittersentiment twitterclient package json path to vulnerable library tmp ws scm orleans clone samples x twittersentiment twitterclient node modules lodash package json dependency hierarchy sentiment tgz root library x lodash tgz vulnerable library found in head commit a href vulnerability details lodash prior to is affected by cwe uncontrolled resource consumption the impact is denial of service the component is date handler the attack vector is attacker provides very long strings which the library attempts to match using a regular expression the fixed version is publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with whitesource
0
162,157
6,148,393,706
IssuesEvent
2017-06-27 17:44:16
vmware/vic
https://api.github.com/repos/vmware/vic
opened
Update robot tests to use envvar for registry
kind/quality priority/medium
Follow on from #5226 Looking at the log bundles in #5538 it's obvious that we're trying to resolve and connect to `harbor.ci.drone.local` during the nightly tests where that name will not resolve or be available. We should update the tests to use an environment variable to configure the insecure and secure registry sets as with $DOMAIN as an input for tls config. **Acceptance** Robot tests can easily be run outside of CI environment with custom registry FQDNs.
1.0
Update robot tests to use envvar for registry - Follow on from #5226 Looking at the log bundles in #5538 it's obvious that we're trying to resolve and connect to `harbor.ci.drone.local` during the nightly tests where that name will not resolve or be available. We should update the tests to use an environment variable to configure the insecure and secure registry sets as with $DOMAIN as an input for tls config. **Acceptance** Robot tests can easily be run outside of CI environment with custom registry FQDNs.
non_infrastructure
update robot tests to use envvar for registry follow on from looking at the log bundles in it s obvious that we re trying to resolve and connect to harbor ci drone local during the nightly tests where that name will not resolve or be available we should update the tests to use an environment variable to configure the insecure and secure registry sets as with domain as an input for tls config acceptance robot tests can easily be run outside of ci environment with custom registry fqdns
0
817,888
30,661,210,388
IssuesEvent
2023-07-25 15:06:49
Shelf-nu/shelf.nu
https://api.github.com/repos/Shelf-nu/shelf.nu
closed
[Enhance]: Server and Client locales are not in sync.
enhancement High Priority
### What happened? The locale of the server and the client are different(unless you are from a country that has the same), so doing stuff like `toLocaleDateString()` causes hydration issues. ### What is the expected behaviour? Don't get hydration issues when rendering dates. ### What browsers are you seeing the problem on? Firefox, Chrome, Safari, Microsoft Edge ## Solution Kent C. Dodds has figure out a way to manage this which is part of the epic stack: https://www.epicweb.dev/tips/use-client-hints-to-eliminate-content-layout-shift
1.0
[Enhance]: Server and Client locales are not in sync. - ### What happened? The locale of the server and the client are different(unless you are from a country that has the same), so doing stuff like `toLocaleDateString()` causes hydration issues. ### What is the expected behaviour? Don't get hydration issues when rendering dates. ### What browsers are you seeing the problem on? Firefox, Chrome, Safari, Microsoft Edge ## Solution Kent C. Dodds has figure out a way to manage this which is part of the epic stack: https://www.epicweb.dev/tips/use-client-hints-to-eliminate-content-layout-shift
non_infrastructure
server and client locales are not in sync what happened the locale of the server and the client are different unless you are from a country that has the same so doing stuff like tolocaledatestring causes hydration issues what is the expected behaviour don t get hydration issues when rendering dates what browsers are you seeing the problem on firefox chrome safari microsoft edge solution kent c dodds has figure out a way to manage this which is part of the epic stack
0
17,929
12,696,842,081
IssuesEvent
2020-06-22 10:44:57
gnosis/safe-ios
https://api.github.com/repos/gnosis/safe-ios
opened
Submit the apps to the TestFlight public beta review
infrastructure
Prepare the reviewer's notes Submit the existing builds
1.0
Submit the apps to the TestFlight public beta review - Prepare the reviewer's notes Submit the existing builds
infrastructure
submit the apps to the testflight public beta review prepare the reviewer s notes submit the existing builds
1
16,808
5,291,112,544
IssuesEvent
2017-02-08 21:39:38
medic/medic-webapp
https://api.github.com/repos/medic/medic-webapp
closed
Place ID is blank
3 - Code Review UI/UX
In people's tab, click on district. Place Id is blank....What should be this ID and is anyone using it from UI perspective @diannakane @sglangevin. ![image](https://cloud.githubusercontent.com/assets/6979995/21762134/f15e5ad0-d6bb-11e6-9964-470d7e5ad3bf.png)
1.0
Place ID is blank - In people's tab, click on district. Place Id is blank....What should be this ID and is anyone using it from UI perspective @diannakane @sglangevin. ![image](https://cloud.githubusercontent.com/assets/6979995/21762134/f15e5ad0-d6bb-11e6-9964-470d7e5ad3bf.png)
non_infrastructure
place id is blank in people s tab click on district place id is blank what should be this id and is anyone using it from ui perspective diannakane sglangevin
0
755,878
26,444,888,354
IssuesEvent
2023-01-16 06:04:34
gamefreedomgit/Maelstrom
https://api.github.com/repos/gamefreedomgit/Maelstrom
opened
[Quest][NPC][Cata] The Strength of Tortolla
NPC Quest - Cataclysm (80+) Priority: Low Status: Confirmed Hyjal
**How to reproduce:** NPC child of tortolla entry 41581 for quest [The Strength of Tortolla] does no damage his damage is basically between 1-2 ![image](https://user-images.githubusercontent.com/36106057/212608496-946c6ad1-7c95-4219-8a0f-171060c7ebdd.png) **How it should work:** he should do more damage like this video https://www.youtube.com/watch?v=ho0BfpfEgmQ
1.0
[Quest][NPC][Cata] The Strength of Tortolla - **How to reproduce:** NPC child of tortolla entry 41581 for quest [The Strength of Tortolla] does no damage his damage is basically between 1-2 ![image](https://user-images.githubusercontent.com/36106057/212608496-946c6ad1-7c95-4219-8a0f-171060c7ebdd.png) **How it should work:** he should do more damage like this video https://www.youtube.com/watch?v=ho0BfpfEgmQ
non_infrastructure
the strength of tortolla how to reproduce npc child of tortolla entry for quest does no damage his damage is basically between how it should work he should do more damage like this video
0
172,537
27,294,987,182
IssuesEvent
2023-02-23 19:32:33
flutter/flutter
https://api.github.com/repos/flutter/flutter
closed
DataCell overflows with column with multiple text widgets, row height doesn't adjust based on content height
framework f: material design a: quality customer: crowd has reproducible steps found in release: 3.3 found in release: 3.7
The heights of widgets in a DataTable DataCell can vary: ``` DataCell(Text('Professor\nProfessor\nProfessor\nProfessor\nProfessor\nProfessor\n')) ``` ![image](https://user-images.githubusercontent.com/7799980/99134284-e2e54180-25d1-11eb-94f5-bf1934705da3.png) But if you add the data as a Column, the cell overflows. Seems like a bug. ``` DataRow( cells: <DataCell>[ DataCell(Text('Janine')), DataCell(Text('43')), DataCell(Column(mainAxisSize: MainAxisSize.min, children: [ Text("Professor"), Text("Professor"), Text("Professor"), Text("Professor"), ])), // DataCell(Text('Professor\nProfessor\nProfessor\nProfessor\nProfessor\nProfessor\n')), ], ), ``` ![image](https://user-images.githubusercontent.com/7799980/99134315-0b6d3b80-25d2-11eb-8c48-6d3644a7fc41.png) ``` import 'package:flutter/material.dart'; void main() => runApp(MyApp()); /// This is the main application widget. class MyApp extends StatelessWidget { static const String _title = 'Flutter Code Sample'; @override Widget build(BuildContext context) { return MaterialApp( title: _title, home: Scaffold( appBar: AppBar(title: const Text(_title)), body: MyStatelessWidget(), ), ); } } /// This is the stateless widget that the main application instantiates. class MyStatelessWidget extends StatelessWidget { MyStatelessWidget({Key key}) : super(key: key); @override Widget build(BuildContext context) { return DataTable( columns: const <DataColumn>[ DataColumn( label: Text( 'Name', style: TextStyle(fontStyle: FontStyle.italic), ), ), DataColumn( label: Text( 'Age', style: TextStyle(fontStyle: FontStyle.italic), ), ), DataColumn( label: Text( 'Role', style: TextStyle(fontStyle: FontStyle.italic), ), ), ], rows: <DataRow>[ DataRow( cells: <DataCell>[ DataCell(Text('Sarah')), DataCell(Text('19')), DataCell(Text('Student')), ], ), DataRow( cells: <DataCell>[ DataCell(Text('Janine')), DataCell(Text('43')), DataCell(Column(mainAxisSize: MainAxisSize.min, children: [ Text("Professor"), Text("Professor"), Text("Professor"), Text("Professor"), ])), // DataCell(Text('Professor\nProfessor\nProfessor\nProfessor\nProfessor\nProfessor\n')), ], ), DataRow( cells: <DataCell>[ DataCell(Text('William')), DataCell(Text('27')), DataCell(Text('Associate Professor')), ], ), ], ); } } ``` Happens in the Android emulator. <!-- If possible, paste the output of running `flutter doctor -v` here. --> ``` /home/sir/development/flutter/bin/flutter doctor --verbose [✓] Flutter (Channel unknown, 1.22.0-12.2.pre, on Linux, locale en_US.UTF-8) • Flutter version 1.22.0-12.2.pre at /home/sir/development/flutter • Framework revision 2bafdc8226 (7 weeks ago), 2020-09-25 12:48:22 -0700 • Engine revision f763b5b9b9 • Dart version 2.10.0 (build 2.10.0-110.5.beta) [✓] Android toolchain - develop for Android devices (Android SDK version 29.0.2) • Android SDK at /home/sir/Android/Sdk • Platform android-29, build-tools 29.0.2 • Java binary at: /home/sir/soft/android-studio/jre/bin/java • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6222593) • All Android licenses accepted. [✓] Chrome - develop for the web • Chrome at google-chrome [✓] Android Studio (version 4.0) • Android Studio at /home/sir/soft/android-studio • Flutter plugin version 49.0.2 • Dart plugin version 193.7547 • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6222593) [✓] Connected device (3 available) • Android SDK built for x86 (mobile) • emulator-5554 • android-x86 • Android 10 (API 29) (emulator) • Web Server (web) • web-server • web-javascript • Flutter Tools • Chrome (web) • chrome • web-javascript • Google Chrome 86.0.4240.193 • No issues found! Process finished with exit code 0 ```
1.0
DataCell overflows with column with multiple text widgets, row height doesn't adjust based on content height - The heights of widgets in a DataTable DataCell can vary: ``` DataCell(Text('Professor\nProfessor\nProfessor\nProfessor\nProfessor\nProfessor\n')) ``` ![image](https://user-images.githubusercontent.com/7799980/99134284-e2e54180-25d1-11eb-94f5-bf1934705da3.png) But if you add the data as a Column, the cell overflows. Seems like a bug. ``` DataRow( cells: <DataCell>[ DataCell(Text('Janine')), DataCell(Text('43')), DataCell(Column(mainAxisSize: MainAxisSize.min, children: [ Text("Professor"), Text("Professor"), Text("Professor"), Text("Professor"), ])), // DataCell(Text('Professor\nProfessor\nProfessor\nProfessor\nProfessor\nProfessor\n')), ], ), ``` ![image](https://user-images.githubusercontent.com/7799980/99134315-0b6d3b80-25d2-11eb-8c48-6d3644a7fc41.png) ``` import 'package:flutter/material.dart'; void main() => runApp(MyApp()); /// This is the main application widget. class MyApp extends StatelessWidget { static const String _title = 'Flutter Code Sample'; @override Widget build(BuildContext context) { return MaterialApp( title: _title, home: Scaffold( appBar: AppBar(title: const Text(_title)), body: MyStatelessWidget(), ), ); } } /// This is the stateless widget that the main application instantiates. class MyStatelessWidget extends StatelessWidget { MyStatelessWidget({Key key}) : super(key: key); @override Widget build(BuildContext context) { return DataTable( columns: const <DataColumn>[ DataColumn( label: Text( 'Name', style: TextStyle(fontStyle: FontStyle.italic), ), ), DataColumn( label: Text( 'Age', style: TextStyle(fontStyle: FontStyle.italic), ), ), DataColumn( label: Text( 'Role', style: TextStyle(fontStyle: FontStyle.italic), ), ), ], rows: <DataRow>[ DataRow( cells: <DataCell>[ DataCell(Text('Sarah')), DataCell(Text('19')), DataCell(Text('Student')), ], ), DataRow( cells: <DataCell>[ DataCell(Text('Janine')), DataCell(Text('43')), DataCell(Column(mainAxisSize: MainAxisSize.min, children: [ Text("Professor"), Text("Professor"), Text("Professor"), Text("Professor"), ])), // DataCell(Text('Professor\nProfessor\nProfessor\nProfessor\nProfessor\nProfessor\n')), ], ), DataRow( cells: <DataCell>[ DataCell(Text('William')), DataCell(Text('27')), DataCell(Text('Associate Professor')), ], ), ], ); } } ``` Happens in the Android emulator. <!-- If possible, paste the output of running `flutter doctor -v` here. --> ``` /home/sir/development/flutter/bin/flutter doctor --verbose [✓] Flutter (Channel unknown, 1.22.0-12.2.pre, on Linux, locale en_US.UTF-8) • Flutter version 1.22.0-12.2.pre at /home/sir/development/flutter • Framework revision 2bafdc8226 (7 weeks ago), 2020-09-25 12:48:22 -0700 • Engine revision f763b5b9b9 • Dart version 2.10.0 (build 2.10.0-110.5.beta) [✓] Android toolchain - develop for Android devices (Android SDK version 29.0.2) • Android SDK at /home/sir/Android/Sdk • Platform android-29, build-tools 29.0.2 • Java binary at: /home/sir/soft/android-studio/jre/bin/java • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6222593) • All Android licenses accepted. [✓] Chrome - develop for the web • Chrome at google-chrome [✓] Android Studio (version 4.0) • Android Studio at /home/sir/soft/android-studio • Flutter plugin version 49.0.2 • Dart plugin version 193.7547 • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6222593) [✓] Connected device (3 available) • Android SDK built for x86 (mobile) • emulator-5554 • android-x86 • Android 10 (API 29) (emulator) • Web Server (web) • web-server • web-javascript • Flutter Tools • Chrome (web) • chrome • web-javascript • Google Chrome 86.0.4240.193 • No issues found! Process finished with exit code 0 ```
non_infrastructure
datacell overflows with column with multiple text widgets row height doesn t adjust based on content height the heights of widgets in a datatable datacell can vary datacell text professor nprofessor nprofessor nprofessor nprofessor nprofessor n but if you add the data as a column the cell overflows seems like a bug datarow cells datacell text janine datacell text datacell column mainaxissize mainaxissize min children text professor text professor text professor text professor datacell text professor nprofessor nprofessor nprofessor nprofessor nprofessor n import package flutter material dart void main runapp myapp this is the main application widget class myapp extends statelesswidget static const string title flutter code sample override widget build buildcontext context return materialapp title title home scaffold appbar appbar title const text title body mystatelesswidget this is the stateless widget that the main application instantiates class mystatelesswidget extends statelesswidget mystatelesswidget key key super key key override widget build buildcontext context return datatable columns const datacolumn label text name style textstyle fontstyle fontstyle italic datacolumn label text age style textstyle fontstyle fontstyle italic datacolumn label text role style textstyle fontstyle fontstyle italic rows datarow cells datacell text sarah datacell text datacell text student datarow cells datacell text janine datacell text datacell column mainaxissize mainaxissize min children text professor text professor text professor text professor datacell text professor nprofessor nprofessor nprofessor nprofessor nprofessor n datarow cells datacell text william datacell text datacell text associate professor happens in the android emulator home sir development flutter bin flutter doctor verbose flutter channel unknown pre on linux locale en us utf • flutter version pre at home sir development flutter • framework revision weeks ago • engine revision • dart version build beta android toolchain develop for android devices android sdk version • android sdk at home sir android sdk • platform android build tools • java binary at home sir soft android studio jre bin java • java version openjdk runtime environment build release • all android licenses accepted chrome develop for the web • chrome at google chrome android studio version • android studio at home sir soft android studio • flutter plugin version • dart plugin version • java version openjdk runtime environment build release connected device available • android sdk built for mobile • emulator • android • android api emulator • web server web • web server • web javascript • flutter tools • chrome web • chrome • web javascript • google chrome • no issues found process finished with exit code
0
15,458
11,520,021,157
IssuesEvent
2020-02-14 14:02:24
surge-synthesizer/surge
https://api.github.com/repos/surge-synthesizer/surge
closed
Surge++ GitHub and Azure Mechanics
Infrastructure Surge++
Right now, Surge++ exists entirely as a pile of half working mac only software in `baconpaul/expermental` branch of surge. Just some notes to myself about a path to relative sanity once it is working well enough 1. Make a `surge` branch called `surge-plus-plus/master` And this is where we PR from and branch from and stuff 2. Since it is a branch it has its own pipeline so do PR builds against there with the limited set of things that build 3. Don’t do the ‘release’ pipeline trick; rather do the surge-rack and surge-fx github release trick of something called ‘surge-fx-nightly’ or some such for at least the mac and win vst3 and au.
1.0
Surge++ GitHub and Azure Mechanics - Right now, Surge++ exists entirely as a pile of half working mac only software in `baconpaul/expermental` branch of surge. Just some notes to myself about a path to relative sanity once it is working well enough 1. Make a `surge` branch called `surge-plus-plus/master` And this is where we PR from and branch from and stuff 2. Since it is a branch it has its own pipeline so do PR builds against there with the limited set of things that build 3. Don’t do the ‘release’ pipeline trick; rather do the surge-rack and surge-fx github release trick of something called ‘surge-fx-nightly’ or some such for at least the mac and win vst3 and au.
infrastructure
surge github and azure mechanics right now surge exists entirely as a pile of half working mac only software in baconpaul expermental branch of surge just some notes to myself about a path to relative sanity once it is working well enough make a surge branch called surge plus plus master and this is where we pr from and branch from and stuff since it is a branch it has its own pipeline so do pr builds against there with the limited set of things that build don’t do the ‘release’ pipeline trick rather do the surge rack and surge fx github release trick of something called ‘surge fx nightly’ or some such for at least the mac and win and au
1
8,027
7,190,816,374
IssuesEvent
2018-02-02 18:37:48
dibikhin/acckeeper
https://api.github.com/repos/dibikhin/acckeeper
opened
Ubuntu VM with Docker inside
infrastructure
- Create VM image for Ubuntu - Create a Docker container inside Ubuntu that prints something to terminal when running Requirements: - Oracle VM VirtualBox (last version) - Ubuntu 64bit 16.04 LTS (Xenial Xerus) - Docker (last version)
1.0
Ubuntu VM with Docker inside - - Create VM image for Ubuntu - Create a Docker container inside Ubuntu that prints something to terminal when running Requirements: - Oracle VM VirtualBox (last version) - Ubuntu 64bit 16.04 LTS (Xenial Xerus) - Docker (last version)
infrastructure
ubuntu vm with docker inside create vm image for ubuntu create a docker container inside ubuntu that prints something to terminal when running requirements oracle vm virtualbox last version ubuntu lts xenial xerus docker last version
1
1,557
3,267,414,030
IssuesEvent
2015-10-23 03:19:43
elmsln/elmsln
https://api.github.com/repos/elmsln/elmsln
closed
authcache / theme layer
infrastructure theme / style
https://www.drupal.org/node/514776 review. currently the only theme-level, per-user customization that we do that is outside of a block delivering it is the little icon that has the user's name next to it indicating who they are. This can (in cache-able scenarios) get stored as user A even though user B is now accessing the page. They aren't actually logged in as user A, it's just delivering this cached variable for the theme. The issue above seems to suggest if we check for the page being delivered via authcache then we can print a different variable then the user's name
1.0
authcache / theme layer - https://www.drupal.org/node/514776 review. currently the only theme-level, per-user customization that we do that is outside of a block delivering it is the little icon that has the user's name next to it indicating who they are. This can (in cache-able scenarios) get stored as user A even though user B is now accessing the page. They aren't actually logged in as user A, it's just delivering this cached variable for the theme. The issue above seems to suggest if we check for the page being delivered via authcache then we can print a different variable then the user's name
infrastructure
authcache theme layer review currently the only theme level per user customization that we do that is outside of a block delivering it is the little icon that has the user s name next to it indicating who they are this can in cache able scenarios get stored as user a even though user b is now accessing the page they aren t actually logged in as user a it s just delivering this cached variable for the theme the issue above seems to suggest if we check for the page being delivered via authcache then we can print a different variable then the user s name
1