Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1 value | created_at stringlengths 19 19 | repo stringlengths 4 112 | repo_url stringlengths 33 141 | action stringclasses 3 values | title stringlengths 1 1.02k | labels stringlengths 4 1.54k | body stringlengths 1 262k | index stringclasses 17 values | text_combine stringlengths 95 262k | label stringclasses 2 values | text stringlengths 96 252k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
362,421 | 10,727,297,073 | IssuesEvent | 2019-10-28 11:20:41 | AY1920S1-CS2103T-W12-1/main | https://api.github.com/repos/AY1920S1-CS2103T-W12-1/main | closed | Keep track of transaction history | priority.High type.Task | Note down dates and times of claims, incomes as well as when it was resolved.
Keep a list of them and store in storage | 1.0 | Keep track of transaction history - Note down dates and times of claims, incomes as well as when it was resolved.
Keep a list of them and store in storage | non_test | keep track of transaction history note down dates and times of claims incomes as well as when it was resolved keep a list of them and store in storage | 0 |
55,163 | 6,444,533,733 | IssuesEvent | 2017-08-12 13:28:08 | dydrich/exams | https://api.github.com/repos/dydrich/exams | closed | assegnazione voti | js php teachers testing | _From @dydrich on December 26, 2016 10:14_
assegnazione dei voti agli alunni per ogni prova
_Copied from original issue: dydrich/e-school#192_ | 1.0 | assegnazione voti - _From @dydrich on December 26, 2016 10:14_
assegnazione dei voti agli alunni per ogni prova
_Copied from original issue: dydrich/e-school#192_ | test | assegnazione voti from dydrich on december assegnazione dei voti agli alunni per ogni prova copied from original issue dydrich e school | 1 |
265,683 | 23,190,265,015 | IssuesEvent | 2022-08-01 12:03:16 | Altinn/app-frontend-react | https://api.github.com/repos/Altinn/app-frontend-react | opened | Invalid test data for getUniqueNewElements causes react 18 typescript issues | area/test | ### Description
In pre-react 18, when using `React.ReactNode` as a type, you would basically accept anything as its type accepted `{}`. This has been fixed in the latest typings for React, which means passing a plain object to something that should be of type `React.ReactNode` is not allowed.
We have some tests for `getUniqueNewElements` that do this https://github.com/Altinn/app-frontend-react/blob/v3.47.0/src/altinn-app-frontend/src/utils/validation/validation.test.ts#L2119 and I'm not entirely sure what the idea was behind this. It may be that this should filter out any non-unique React elements which is why it was added, but the testdata is then not mirroring what would happen in a real scenario.
We should investigate what the underlying purpose is here, and fix the testdata to more closely mirror a real scenario.
### Additional Information
Related to React 18 upgrade task #357
### Tasks
_No response_
### Acceptance Criterias
_No response_ | 1.0 | Invalid test data for getUniqueNewElements causes react 18 typescript issues - ### Description
In pre-react 18, when using `React.ReactNode` as a type, you would basically accept anything as its type accepted `{}`. This has been fixed in the latest typings for React, which means passing a plain object to something that should be of type `React.ReactNode` is not allowed.
We have some tests for `getUniqueNewElements` that do this https://github.com/Altinn/app-frontend-react/blob/v3.47.0/src/altinn-app-frontend/src/utils/validation/validation.test.ts#L2119 and I'm not entirely sure what the idea was behind this. It may be that this should filter out any non-unique React elements which is why it was added, but the testdata is then not mirroring what would happen in a real scenario.
We should investigate what the underlying purpose is here, and fix the testdata to more closely mirror a real scenario.
### Additional Information
Related to React 18 upgrade task #357
### Tasks
_No response_
### Acceptance Criterias
_No response_ | test | invalid test data for getuniquenewelements causes react typescript issues description in pre react when using react reactnode as a type you would basically accept anything as its type accepted this has been fixed in the latest typings for react which means passing a plain object to something that should be of type react reactnode is not allowed we have some tests for getuniquenewelements that do this and i m not entirely sure what the idea was behind this it may be that this should filter out any non unique react elements which is why it was added but the testdata is then not mirroring what would happen in a real scenario we should investigate what the underlying purpose is here and fix the testdata to more closely mirror a real scenario additional information related to react upgrade task tasks no response acceptance criterias no response | 1 |
218,202 | 16,756,744,564 | IssuesEvent | 2021-06-13 00:03:14 | vlang/v | https://api.github.com/repos/vlang/v | closed | UDP Client Example | Type: Request Unit: Documentation | ```
import net
fn connect_server(ip string, port int) &net.Socket {
s := net.socket_udp() or { panic(err) }
_ = s.connect(ip, port) or { panic(err) }
return s
}
fn main() {
ip := "127.0.0.1"
s := connect_server(ip, 9876)
a := "1234"
s.send_string(a) or { panic(err) }
}
```
compiled fail. | 1.0 | UDP Client Example - ```
import net
fn connect_server(ip string, port int) &net.Socket {
s := net.socket_udp() or { panic(err) }
_ = s.connect(ip, port) or { panic(err) }
return s
}
fn main() {
ip := "127.0.0.1"
s := connect_server(ip, 9876)
a := "1234"
s.send_string(a) or { panic(err) }
}
```
compiled fail. | non_test | udp client example import net fn connect server ip string port int net socket s net socket udp or panic err s connect ip port or panic err return s fn main ip s connect server ip a s send string a or panic err compiled fail | 0 |
27,086 | 4,273,920,410 | IssuesEvent | 2016-07-13 18:49:35 | cockroachdb/cockroach | https://api.github.com/repos/cockroachdb/cockroach | closed | circleci: failed tests: TestEventLog | Robot test-failure | The following test appears to have failed:
[#17806](https://circleci.com/gh/cockroachdb/cockroach/17806):
```
E160513 21:00:41.789522 acceptance/cluster/localcluster.go:506 node=0 status=die
E160513 21:00:42.307131 acceptance/cluster/localcluster.go:506 node=0 status=restart
I160513 21:01:01.527353 acceptance/cluster/localcluster.go:658 stopping
I160513 21:01:01.527609 acceptance/cluster/localcluster.go:556 event stream done, resetting...: net/http: request canceled
I160513 21:01:01.527647 acceptance/cluster/localcluster.go:579 events monitor exits
--- FAIL: TestEventLog (24.75s)
testing.go:113: acceptance/event_log_test.go:171: condition failed to evaluate within 15s: acceptance/event_log_test.go:168: Expected only one node restart event, found 0
=== RUN TestDockerFinagle
--- SKIP: TestDockerFinagle (0.00s)
finagle_test.go:20: TODO(dt): #5951, #5928, and needs #5484
=== RUN TestGossipPeerings
I160513 21:01:03.718119 acceptance/cluster/localcluster.go:289 Initializing Cluster AdHoc 3x1:
{"name":"AdHoc 3x1","nodes":[{"count":3,"stores":[{"count":1,"max_ranges":0}]}],"duration":5000000000}
I160513 21:01:03.720013 acceptance/cluster/docker.go:105 ImagePull cockroachdb/builder:20160305-182433 already exists
I160513 21:01:04.759549 acceptance/cluster/localcluster.go:590 creating certs (1024bit) in: /home/ubuntu/cockroach/.localcluster.certs.097881836
I160513 21:01:04.824183 acceptance/cluster/localcluster.go:541 events monitor starts
--
I160513 21:03:27.698671 /go/src/google.golang.org/grpc/clientconn.go:351 Failed to dial 127.0.0.1:32891: grpc: the client connection is closing; please retry.
I160513 21:03:31.702257 acceptance/cluster/localcluster.go:658 stopping
I160513 21:03:31.702505 acceptance/cluster/localcluster.go:556 event stream done, resetting...: net/http: request canceled
I160513 21:03:31.702524 acceptance/cluster/localcluster.go:579 events monitor exits
--- PASS: TestRaftUpdate (23.29s)
FAIL
ok github.com/cockroachdb/cockroach/acceptance 1337s
```
Please assign, take a look and update the issue accordingly. | 1.0 | circleci: failed tests: TestEventLog - The following test appears to have failed:
[#17806](https://circleci.com/gh/cockroachdb/cockroach/17806):
```
E160513 21:00:41.789522 acceptance/cluster/localcluster.go:506 node=0 status=die
E160513 21:00:42.307131 acceptance/cluster/localcluster.go:506 node=0 status=restart
I160513 21:01:01.527353 acceptance/cluster/localcluster.go:658 stopping
I160513 21:01:01.527609 acceptance/cluster/localcluster.go:556 event stream done, resetting...: net/http: request canceled
I160513 21:01:01.527647 acceptance/cluster/localcluster.go:579 events monitor exits
--- FAIL: TestEventLog (24.75s)
testing.go:113: acceptance/event_log_test.go:171: condition failed to evaluate within 15s: acceptance/event_log_test.go:168: Expected only one node restart event, found 0
=== RUN TestDockerFinagle
--- SKIP: TestDockerFinagle (0.00s)
finagle_test.go:20: TODO(dt): #5951, #5928, and needs #5484
=== RUN TestGossipPeerings
I160513 21:01:03.718119 acceptance/cluster/localcluster.go:289 Initializing Cluster AdHoc 3x1:
{"name":"AdHoc 3x1","nodes":[{"count":3,"stores":[{"count":1,"max_ranges":0}]}],"duration":5000000000}
I160513 21:01:03.720013 acceptance/cluster/docker.go:105 ImagePull cockroachdb/builder:20160305-182433 already exists
I160513 21:01:04.759549 acceptance/cluster/localcluster.go:590 creating certs (1024bit) in: /home/ubuntu/cockroach/.localcluster.certs.097881836
I160513 21:01:04.824183 acceptance/cluster/localcluster.go:541 events monitor starts
--
I160513 21:03:27.698671 /go/src/google.golang.org/grpc/clientconn.go:351 Failed to dial 127.0.0.1:32891: grpc: the client connection is closing; please retry.
I160513 21:03:31.702257 acceptance/cluster/localcluster.go:658 stopping
I160513 21:03:31.702505 acceptance/cluster/localcluster.go:556 event stream done, resetting...: net/http: request canceled
I160513 21:03:31.702524 acceptance/cluster/localcluster.go:579 events monitor exits
--- PASS: TestRaftUpdate (23.29s)
FAIL
ok github.com/cockroachdb/cockroach/acceptance 1337s
```
Please assign, take a look and update the issue accordingly. | test | circleci failed tests testeventlog the following test appears to have failed acceptance cluster localcluster go node status die acceptance cluster localcluster go node status restart acceptance cluster localcluster go stopping acceptance cluster localcluster go event stream done resetting net http request canceled acceptance cluster localcluster go events monitor exits fail testeventlog testing go acceptance event log test go condition failed to evaluate within acceptance event log test go expected only one node restart event found run testdockerfinagle skip testdockerfinagle finagle test go todo dt and needs run testgossippeerings acceptance cluster localcluster go initializing cluster adhoc name adhoc nodes duration acceptance cluster docker go imagepull cockroachdb builder already exists acceptance cluster localcluster go creating certs in home ubuntu cockroach localcluster certs acceptance cluster localcluster go events monitor starts go src google golang org grpc clientconn go failed to dial grpc the client connection is closing please retry acceptance cluster localcluster go stopping acceptance cluster localcluster go event stream done resetting net http request canceled acceptance cluster localcluster go events monitor exits pass testraftupdate fail ok github com cockroachdb cockroach acceptance please assign take a look and update the issue accordingly | 1 |
79,705 | 7,723,804,314 | IssuesEvent | 2018-05-24 13:30:43 | Kademi/kademi-dev | https://api.github.com/repos/Kademi/kademi-dev | closed | Voucher preview on PDF doesn't display images | Ready to Test - Dev bug | preview as HTML

preview as PDF

Two pages as well
https://airnz.admin.kademi.com.au/voucher-type/test/VOUCH-a70a7 | 1.0 | Voucher preview on PDF doesn't display images - preview as HTML

preview as PDF

Two pages as well
https://airnz.admin.kademi.com.au/voucher-type/test/VOUCH-a70a7 | test | voucher preview on pdf doesn t display images preview as html preview as pdf two pages as well | 1 |
405,911 | 11,884,266,706 | IssuesEvent | 2020-03-27 17:20:28 | terraframe/geoprism-registry | https://api.github.com/repos/terraframe/geoprism-registry | closed | Manage GeoObject Type attributes: Confusing field names | community feedback demo priority | The label for the following attributes included by default in the list should be renamed for the user to understand they do not need to add specific attributes to capture this information
1. "Code" into "GeoObject Unique Identifier"
2. "Display label" into "GeoObject Name" | 1.0 | Manage GeoObject Type attributes: Confusing field names - The label for the following attributes included by default in the list should be renamed for the user to understand they do not need to add specific attributes to capture this information
1. "Code" into "GeoObject Unique Identifier"
2. "Display label" into "GeoObject Name" | non_test | manage geoobject type attributes confusing field names the label for the following attributes included by default in the list should be renamed for the user to understand they do not need to add specific attributes to capture this information code into geoobject unique identifier display label into geoobject name | 0 |
321,409 | 27,527,360,065 | IssuesEvent | 2023-03-06 19:07:15 | Azure/azure-sdk-for-js | https://api.github.com/repos/Azure/azure-sdk-for-js | closed | Azure Storage Blob Sample Issue | Client Storage test-manual-pass | 1.
Section [link1](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/storage/storage-blob/samples/v12/javascript/advancedRequestOptions.js#L48), [link2](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/storage/storage-blob/samples/v12/typescript/src/advancedRequestOptions.ts#L49):

**Reason:**
Policy `DisableKeepAlivePolicy` is added to pipeline repeatedly.

The trace error code is [here](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-http-compat/src/extendedClient.ts#L50)

@joheredi, @kyle-patterson, @kasobol-msft, @dw511214992 for notification.
| 1.0 | Azure Storage Blob Sample Issue - 1.
Section [link1](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/storage/storage-blob/samples/v12/javascript/advancedRequestOptions.js#L48), [link2](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/storage/storage-blob/samples/v12/typescript/src/advancedRequestOptions.ts#L49):

**Reason:**
Policy `DisableKeepAlivePolicy` is added to pipeline repeatedly.

The trace error code is [here](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-http-compat/src/extendedClient.ts#L50)

@joheredi, @kyle-patterson, @kasobol-msft, @dw511214992 for notification.
| test | azure storage blob sample issue section reason policy disablekeepalivepolicy is added to pipeline repeatedly the trace error code is joheredi kyle patterson kasobol msft for notification | 1 |
335,091 | 24,453,575,171 | IssuesEvent | 2022-10-07 03:15:18 | valkim55/VK-employee-generator | https://api.github.com/repos/valkim55/VK-employee-generator | closed | Pass the tesitng | documentation | - write passing code for employee, manager, engineer and intern classes
- write passing code for those classes' unique methods
- refactor where possible | 1.0 | Pass the tesitng - - write passing code for employee, manager, engineer and intern classes
- write passing code for those classes' unique methods
- refactor where possible | non_test | pass the tesitng write passing code for employee manager engineer and intern classes write passing code for those classes unique methods refactor where possible | 0 |
36,467 | 8,123,371,715 | IssuesEvent | 2018-08-16 14:26:23 | joomla/joomla-cms | https://api.github.com/repos/joomla/joomla-cms | closed | The security token did not match. Login Error | No Code Attached Yet | ### Steps to reproduce the issue
After updating to 3.8.11, the frontend login on our website just displays the warning:
The security token did not match. The request was aborted to prevent any security breach. Please try again.
when trying to login.
### Expected result
normal log in.
### Actual result
Error Message: The security token did not match. The request was aborted to prevent any security breach. Please try again.
### System information (as much as possible)
PHP Built On | Linux 3.13.0-042stab127.2 #1 SMP Thu Jan 4 16:41:44 MSK 2018 x86_64
-- | --
Database Type | mysql
Database Version | 5.5.61-0ubuntu0.14.04.1
Database Collation | utf8_general_ci
Database Connection Collation | utf8mb4_general_ci
PHP Version | 7.0.31
Web Server | Apache
WebServer to PHP Interface | cgi-fcgi
Joomla! Version | Joomla! 3.8.11 Stable [ Amani ] 31-July-2018 14:00 GMT
Joomla! Platform Version | Joomla Platform 13.1.0 Stable [ Curiosity ] 24-Apr-2013 00:00 GMT
Safe Mode | Off
-- | --
Open basedir | /var/www/vhosts/[...]/:/tmp/
Display Errors | Off
Short Open Tags | Off
File Uploads | On
Magic Quotes | Off
Register Globals | Off
Output Buffering | On
Session Save Path | /var/lib/php5
Session Auto Start | 0
XML Enabled | Yes
Zlib Enabled | Yes
Native ZIP Enabled | Yes
Disabled Functions | None
Multibyte String (mbstring) Enabled | Yes
Iconv Available | Yes
Maximum Input Variables | 1000
PHP Version 7.0.31
System | Linux 3.13.0-042stab127.2 #1 SMP Thu Jan 4 16:41:44 MSK 2018 x86_64
Build Date | Jul 20 2018 12:58:45
Configure Command | './configure' '--prefix=/opt/plesk/php/7.0' '--bindir=/opt/plesk/php/7.0/bin' '--sbindir=/opt/plesk/php/7.0/sbin' '--libexecdir=/opt/plesk/php/7.0/lib' '--datadir=/opt/plesk/php/7.0/share' '--sysconfdir=/opt/plesk/php/7.0/etc' '--sharedstatedir=/opt/plesk/php/7.0/com' '--localstatedir=/opt/plesk/php/7.0/var' '--libdir=/opt/plesk/php/7.0/lib/x86_64-linux-gnu' '--includedir=/opt/plesk/php/7.0/include' '--infodir=/opt/plesk/php/7.0/share/info' '--mandir=/opt/plesk/php/7.0/share/man' '--build=x86_64-linux-gnu' '--host=x86_64-linux-gnu' '--with-libdir=lib' '--cache-file=../config.cache' '--with-config-file-path=/opt/plesk/php/7.0/etc' '--with-config-file-scan-dir=/opt/plesk/php/7.0/etc/php.d' '--disable-debug' '--without-pear' '--with-pic' '--disable-rpath' '--with-bz2' '--with-freetype-dir=/usr' '--with-png-dir=/usr' '--with-xpm-dir=/usr' '--enable-gd-native-ttf' '--without-gdbm' '--with-gettext' '--with-gmp' '--with-iconv' '--with-jpeg-dir=/usr' '--with-openssl' '--with-pcre-regex' '--with-zlib' '--with-layout=GNU' '--enable-exif' '--enable-ftp' '--enable-sockets' '--enable-sysvsem' '--enable-sysvshm' '--enable-sysvmsg' '--with-kerberos' '--enable-calendar' '--with-libxml-dir=/usr' '--enable-xml' '--enable-phpdbg' '--with-enchant=shared,/usr' '--with-system-tzdata' '--with-litespeed' '--enable-pcntl' '--with-imap=shared' '--with-imap-ssl' '--enable-mbstring=shared' '--enable-mbregex' '--with-gd=shared' '--enable-bcmath=shared' '--enable-dba=shared' '--with-db4=/usr' '--with-xmlrpc=shared' '--with-ldap=shared' '--with-ldap-sasl' '--enable-mysqlnd=shared' '--with-mysqli=shared, mysqlnd' '--with-mysql-sock=/var/run/mysqld/mysqld.sock' '--enable-dom=shared' '--with-pgsql=shared' '--with-snmp=shared,/usr' '--enable-soap=shared' '--with-xsl=shared,/usr' '--enable-xmlreader=shared' '--enable-xmlwriter=shared' '--with-curl=shared,/usr' '--enable-pdo=shared' '--with-pdo-odbc=shared, unixODBC,/usr' '--with-pdo-mysql=shared, mysqlnd' '--with-pdo-pgsql=shared,/usr' '--with-pdo-sqlite=shared,/usr' '--with-sqlite3=shared' '--enable-json=shared' '--enable-zip=shared' '--without-readline' '--with-libedit' '--with-pspell=shared' '--enable-phar=shared' '--with-mcrypt=shared,/usr' '--with-tidy=shared,/usr' '--with-unixODBC=shared,/usr' '--enable-fileinfo=shared' '--enable-intl=shared' '--with-icu-dir=/usr' '--enable-sysvmsg=shared' '--enable-sysvshm=shared' '--enable-sysvsem=shared' '--enable-posix=shared' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-linux-gnu'
Server API | CGI/FastCGI
Virtual Directory Support | disabled
Configuration File (php.ini) Path | /opt/plesk/php/7.0/etc
Loaded Configuration File | /var/www/vhosts/system/spotteron.net/etc/php.ini
Scan this dir for additional .ini files | /opt/plesk/php/7.0/etc/php.d
Additional .ini files parsed | /opt/plesk/php/7.0/etc/php.d/00-ioncube-loader.ini, /opt/plesk/php/7.0/etc/php.d/10-opcache.ini, /opt/plesk/php/7.0/etc/php.d/20-mysqlnd.ini, /opt/plesk/php/7.0/etc/php.d/50-xdebug.ini, /opt/plesk/php/7.0/etc/php.d/bcmath.ini, /opt/plesk/php/7.0/etc/php.d/curl.ini, /opt/plesk/php/7.0/etc/php.d/dba.ini, /opt/plesk/php/7.0/etc/php.d/dom.ini, /opt/plesk/php/7.0/etc/php.d/enchant.ini, /opt/plesk/php/7.0/etc/php.d/fileinfo.ini, /opt/plesk/php/7.0/etc/php.d/gd.ini, /opt/plesk/php/7.0/etc/php.d/imagick.ini, /opt/plesk/php/7.0/etc/php.d/imap.ini, /opt/plesk/php/7.0/etc/php.d/intl.ini, /opt/plesk/php/7.0/etc/php.d/json.ini, /opt/plesk/php/7.0/etc/php.d/ldap.ini, /opt/plesk/php/7.0/etc/php.d/mbstring.ini, /opt/plesk/php/7.0/etc/php.d/mcrypt.ini, /opt/plesk/php/7.0/etc/php.d/mysqli.ini, /opt/plesk/php/7.0/etc/php.d/odbc.ini, /opt/plesk/php/7.0/etc/php.d/pdo.ini, /opt/plesk/php/7.0/etc/php.d/pdo_mysql.ini, /opt/plesk/php/7.0/etc/php.d/pdo_odbc.ini, /opt/plesk/php/7.0/etc/php.d/pdo_pgsql.ini, /opt/plesk/php/7.0/etc/php.d/pdo_sqlite.ini, /opt/plesk/php/7.0/etc/php.d/pgsql.ini, /opt/plesk/php/7.0/etc/php.d/phar.ini, /opt/plesk/php/7.0/etc/php.d/posix.ini, /opt/plesk/php/7.0/etc/php.d/pspell.ini, /opt/plesk/php/7.0/etc/php.d/redis.ini, /opt/plesk/php/7.0/etc/php.d/snmp.ini, /opt/plesk/php/7.0/etc/php.d/soap.ini, /opt/plesk/php/7.0/etc/php.d/sqlite3.ini, /opt/plesk/php/7.0/etc/php.d/sysvmsg.ini, /opt/plesk/php/7.0/etc/php.d/sysvsem.ini, /opt/plesk/php/7.0/etc/php.d/sysvshm.ini, /opt/plesk/php/7.0/etc/php.d/tidy.ini, /opt/plesk/php/7.0/etc/php.d/xmlreader.ini, /opt/plesk/php/7.0/etc/php.d/xmlrpc.ini, /opt/plesk/php/7.0/etc/php.d/xmlwriter.ini, /opt/plesk/php/7.0/etc/php.d/xsl.ini, /opt/plesk/php/7.0/etc/php.d/zip.ini
PHP API | 20151012
PHP Extension | 20151012
Zend Extension | 320151012
Zend Extension Build | API320151012, NTS
PHP Extension Build | API20151012, NTS
Debug Build | no
Thread Safety | disabled
Zend Signal Handling | disabled
Zend Memory Manager | enabled
Zend Multibyte Support | provided by mbstring
IPv6 Support | enabled
DTrace Support | disabled
Registered PHP Streams | https, ftps, compress.zlib, compress.bzip2, php, file, glob, data, http, ftp, phar, zip
Registered Stream Socket Transports | tcp, udp, unix, udg, ssl, sslv3, tls, tlsv1.0, tlsv1.1, tlsv1.2
Registered Stream Filters | zlib.*, bzip2.*, convert.iconv.*, string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed, dechunk, mcrypt.*, mdecrypt.*
### Additional comments
| 1.0 | The security token did not match. Login Error - ### Steps to reproduce the issue
After updating to 3.8.11, the frontend login on our website just displays the warning:
The security token did not match. The request was aborted to prevent any security breach. Please try again.
when trying to login.
### Expected result
normal log in.
### Actual result
Error Message: The security token did not match. The request was aborted to prevent any security breach. Please try again.
### System information (as much as possible)
PHP Built On | Linux 3.13.0-042stab127.2 #1 SMP Thu Jan 4 16:41:44 MSK 2018 x86_64
-- | --
Database Type | mysql
Database Version | 5.5.61-0ubuntu0.14.04.1
Database Collation | utf8_general_ci
Database Connection Collation | utf8mb4_general_ci
PHP Version | 7.0.31
Web Server | Apache
WebServer to PHP Interface | cgi-fcgi
Joomla! Version | Joomla! 3.8.11 Stable [ Amani ] 31-July-2018 14:00 GMT
Joomla! Platform Version | Joomla Platform 13.1.0 Stable [ Curiosity ] 24-Apr-2013 00:00 GMT
Safe Mode | Off
-- | --
Open basedir | /var/www/vhosts/[...]/:/tmp/
Display Errors | Off
Short Open Tags | Off
File Uploads | On
Magic Quotes | Off
Register Globals | Off
Output Buffering | On
Session Save Path | /var/lib/php5
Session Auto Start | 0
XML Enabled | Yes
Zlib Enabled | Yes
Native ZIP Enabled | Yes
Disabled Functions | None
Multibyte String (mbstring) Enabled | Yes
Iconv Available | Yes
Maximum Input Variables | 1000
PHP Version 7.0.31
System | Linux 3.13.0-042stab127.2 #1 SMP Thu Jan 4 16:41:44 MSK 2018 x86_64
Build Date | Jul 20 2018 12:58:45
Configure Command | './configure' '--prefix=/opt/plesk/php/7.0' '--bindir=/opt/plesk/php/7.0/bin' '--sbindir=/opt/plesk/php/7.0/sbin' '--libexecdir=/opt/plesk/php/7.0/lib' '--datadir=/opt/plesk/php/7.0/share' '--sysconfdir=/opt/plesk/php/7.0/etc' '--sharedstatedir=/opt/plesk/php/7.0/com' '--localstatedir=/opt/plesk/php/7.0/var' '--libdir=/opt/plesk/php/7.0/lib/x86_64-linux-gnu' '--includedir=/opt/plesk/php/7.0/include' '--infodir=/opt/plesk/php/7.0/share/info' '--mandir=/opt/plesk/php/7.0/share/man' '--build=x86_64-linux-gnu' '--host=x86_64-linux-gnu' '--with-libdir=lib' '--cache-file=../config.cache' '--with-config-file-path=/opt/plesk/php/7.0/etc' '--with-config-file-scan-dir=/opt/plesk/php/7.0/etc/php.d' '--disable-debug' '--without-pear' '--with-pic' '--disable-rpath' '--with-bz2' '--with-freetype-dir=/usr' '--with-png-dir=/usr' '--with-xpm-dir=/usr' '--enable-gd-native-ttf' '--without-gdbm' '--with-gettext' '--with-gmp' '--with-iconv' '--with-jpeg-dir=/usr' '--with-openssl' '--with-pcre-regex' '--with-zlib' '--with-layout=GNU' '--enable-exif' '--enable-ftp' '--enable-sockets' '--enable-sysvsem' '--enable-sysvshm' '--enable-sysvmsg' '--with-kerberos' '--enable-calendar' '--with-libxml-dir=/usr' '--enable-xml' '--enable-phpdbg' '--with-enchant=shared,/usr' '--with-system-tzdata' '--with-litespeed' '--enable-pcntl' '--with-imap=shared' '--with-imap-ssl' '--enable-mbstring=shared' '--enable-mbregex' '--with-gd=shared' '--enable-bcmath=shared' '--enable-dba=shared' '--with-db4=/usr' '--with-xmlrpc=shared' '--with-ldap=shared' '--with-ldap-sasl' '--enable-mysqlnd=shared' '--with-mysqli=shared, mysqlnd' '--with-mysql-sock=/var/run/mysqld/mysqld.sock' '--enable-dom=shared' '--with-pgsql=shared' '--with-snmp=shared,/usr' '--enable-soap=shared' '--with-xsl=shared,/usr' '--enable-xmlreader=shared' '--enable-xmlwriter=shared' '--with-curl=shared,/usr' '--enable-pdo=shared' '--with-pdo-odbc=shared, unixODBC,/usr' '--with-pdo-mysql=shared, mysqlnd' '--with-pdo-pgsql=shared,/usr' '--with-pdo-sqlite=shared,/usr' '--with-sqlite3=shared' '--enable-json=shared' '--enable-zip=shared' '--without-readline' '--with-libedit' '--with-pspell=shared' '--enable-phar=shared' '--with-mcrypt=shared,/usr' '--with-tidy=shared,/usr' '--with-unixODBC=shared,/usr' '--enable-fileinfo=shared' '--enable-intl=shared' '--with-icu-dir=/usr' '--enable-sysvmsg=shared' '--enable-sysvshm=shared' '--enable-sysvsem=shared' '--enable-posix=shared' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-linux-gnu'
Server API | CGI/FastCGI
Virtual Directory Support | disabled
Configuration File (php.ini) Path | /opt/plesk/php/7.0/etc
Loaded Configuration File | /var/www/vhosts/system/spotteron.net/etc/php.ini
Scan this dir for additional .ini files | /opt/plesk/php/7.0/etc/php.d
Additional .ini files parsed | /opt/plesk/php/7.0/etc/php.d/00-ioncube-loader.ini, /opt/plesk/php/7.0/etc/php.d/10-opcache.ini, /opt/plesk/php/7.0/etc/php.d/20-mysqlnd.ini, /opt/plesk/php/7.0/etc/php.d/50-xdebug.ini, /opt/plesk/php/7.0/etc/php.d/bcmath.ini, /opt/plesk/php/7.0/etc/php.d/curl.ini, /opt/plesk/php/7.0/etc/php.d/dba.ini, /opt/plesk/php/7.0/etc/php.d/dom.ini, /opt/plesk/php/7.0/etc/php.d/enchant.ini, /opt/plesk/php/7.0/etc/php.d/fileinfo.ini, /opt/plesk/php/7.0/etc/php.d/gd.ini, /opt/plesk/php/7.0/etc/php.d/imagick.ini, /opt/plesk/php/7.0/etc/php.d/imap.ini, /opt/plesk/php/7.0/etc/php.d/intl.ini, /opt/plesk/php/7.0/etc/php.d/json.ini, /opt/plesk/php/7.0/etc/php.d/ldap.ini, /opt/plesk/php/7.0/etc/php.d/mbstring.ini, /opt/plesk/php/7.0/etc/php.d/mcrypt.ini, /opt/plesk/php/7.0/etc/php.d/mysqli.ini, /opt/plesk/php/7.0/etc/php.d/odbc.ini, /opt/plesk/php/7.0/etc/php.d/pdo.ini, /opt/plesk/php/7.0/etc/php.d/pdo_mysql.ini, /opt/plesk/php/7.0/etc/php.d/pdo_odbc.ini, /opt/plesk/php/7.0/etc/php.d/pdo_pgsql.ini, /opt/plesk/php/7.0/etc/php.d/pdo_sqlite.ini, /opt/plesk/php/7.0/etc/php.d/pgsql.ini, /opt/plesk/php/7.0/etc/php.d/phar.ini, /opt/plesk/php/7.0/etc/php.d/posix.ini, /opt/plesk/php/7.0/etc/php.d/pspell.ini, /opt/plesk/php/7.0/etc/php.d/redis.ini, /opt/plesk/php/7.0/etc/php.d/snmp.ini, /opt/plesk/php/7.0/etc/php.d/soap.ini, /opt/plesk/php/7.0/etc/php.d/sqlite3.ini, /opt/plesk/php/7.0/etc/php.d/sysvmsg.ini, /opt/plesk/php/7.0/etc/php.d/sysvsem.ini, /opt/plesk/php/7.0/etc/php.d/sysvshm.ini, /opt/plesk/php/7.0/etc/php.d/tidy.ini, /opt/plesk/php/7.0/etc/php.d/xmlreader.ini, /opt/plesk/php/7.0/etc/php.d/xmlrpc.ini, /opt/plesk/php/7.0/etc/php.d/xmlwriter.ini, /opt/plesk/php/7.0/etc/php.d/xsl.ini, /opt/plesk/php/7.0/etc/php.d/zip.ini
PHP API | 20151012
PHP Extension | 20151012
Zend Extension | 320151012
Zend Extension Build | API320151012, NTS
PHP Extension Build | API20151012, NTS
Debug Build | no
Thread Safety | disabled
Zend Signal Handling | disabled
Zend Memory Manager | enabled
Zend Multibyte Support | provided by mbstring
IPv6 Support | enabled
DTrace Support | disabled
Registered PHP Streams | https, ftps, compress.zlib, compress.bzip2, php, file, glob, data, http, ftp, phar, zip
Registered Stream Socket Transports | tcp, udp, unix, udg, ssl, sslv3, tls, tlsv1.0, tlsv1.1, tlsv1.2
Registered Stream Filters | zlib.*, bzip2.*, convert.iconv.*, string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed, dechunk, mcrypt.*, mdecrypt.*
### Additional comments
| non_test | the security token did not match login error steps to reproduce the issue after updating to the frontend login on our website just displays the warning the security token did not match the request was aborted to prevent any security breach please try again when trying to login expected result normal log in actual result error message the security token did not match the request was aborted to prevent any security breach please try again system information as much as possible php built on linux smp thu jan msk database type mysql database version database collation general ci database connection collation general ci php version web server apache webserver to php interface cgi fcgi joomla version joomla stable july gmt joomla platform version joomla platform stable apr gmt safe mode off open basedir var www vhosts tmp display errors off short open tags off file uploads on magic quotes off register globals off output buffering on session save path var lib session auto start xml enabled yes zlib enabled yes native zip enabled yes disabled functions none multibyte string mbstring enabled yes iconv available yes maximum input variables php version system linux smp thu jan msk build date jul configure command configure prefix opt plesk php bindir opt plesk php bin sbindir opt plesk php sbin libexecdir opt plesk php lib datadir opt plesk php share sysconfdir opt plesk php etc sharedstatedir opt plesk php com localstatedir opt plesk php var libdir opt plesk php lib linux gnu includedir opt plesk php include infodir opt plesk php share info mandir opt plesk php share man build linux gnu host linux gnu with libdir lib cache file config cache with config file path opt plesk php etc with config file scan dir opt plesk php etc php d disable debug without pear with pic disable rpath with with freetype dir usr with png dir usr with xpm dir usr enable gd native ttf without gdbm with gettext with gmp with iconv with jpeg dir usr with openssl with pcre regex with zlib with layout gnu enable exif enable ftp enable sockets enable sysvsem enable sysvshm enable sysvmsg with kerberos enable calendar with libxml dir usr enable xml enable phpdbg with enchant shared usr with system tzdata with litespeed enable pcntl with imap shared with imap ssl enable mbstring shared enable mbregex with gd shared enable bcmath shared enable dba shared with usr with xmlrpc shared with ldap shared with ldap sasl enable mysqlnd shared with mysqli shared mysqlnd with mysql sock var run mysqld mysqld sock enable dom shared with pgsql shared with snmp shared usr enable soap shared with xsl shared usr enable xmlreader shared enable xmlwriter shared with curl shared usr enable pdo shared with pdo odbc shared unixodbc usr with pdo mysql shared mysqlnd with pdo pgsql shared usr with pdo sqlite shared usr with shared enable json shared enable zip shared without readline with libedit with pspell shared enable phar shared with mcrypt shared usr with tidy shared usr with unixodbc shared usr enable fileinfo shared enable intl shared with icu dir usr enable sysvmsg shared enable sysvshm shared enable sysvsem shared enable posix shared build alias linux gnu host alias linux gnu server api cgi fastcgi virtual directory support disabled configuration file php ini path opt plesk php etc loaded configuration file var www vhosts system spotteron net etc php ini scan this dir for additional ini files opt plesk php etc php d additional ini files parsed opt plesk php etc php d ioncube loader ini opt plesk php etc php d opcache ini opt plesk php etc php d mysqlnd ini opt plesk php etc php d xdebug ini opt plesk php etc php d bcmath ini opt plesk php etc php d curl ini opt plesk php etc php d dba ini opt plesk php etc php d dom ini opt plesk php etc php d enchant ini opt plesk php etc php d fileinfo ini opt plesk php etc php d gd ini opt plesk php etc php d imagick ini opt plesk php etc php d imap ini opt plesk php etc php d intl ini opt plesk php etc php d json ini opt plesk php etc php d ldap ini opt plesk php etc php d mbstring ini opt plesk php etc php d mcrypt ini opt plesk php etc php d mysqli ini opt plesk php etc php d odbc ini opt plesk php etc php d pdo ini opt plesk php etc php d pdo mysql ini opt plesk php etc php d pdo odbc ini opt plesk php etc php d pdo pgsql ini opt plesk php etc php d pdo sqlite ini opt plesk php etc php d pgsql ini opt plesk php etc php d phar ini opt plesk php etc php d posix ini opt plesk php etc php d pspell ini opt plesk php etc php d redis ini opt plesk php etc php d snmp ini opt plesk php etc php d soap ini opt plesk php etc php d ini opt plesk php etc php d sysvmsg ini opt plesk php etc php d sysvsem ini opt plesk php etc php d sysvshm ini opt plesk php etc php d tidy ini opt plesk php etc php d xmlreader ini opt plesk php etc php d xmlrpc ini opt plesk php etc php d xmlwriter ini opt plesk php etc php d xsl ini opt plesk php etc php d zip ini php api php extension zend extension zend extension build nts php extension build nts debug build no thread safety disabled zend signal handling disabled zend memory manager enabled zend multibyte support provided by mbstring support enabled dtrace support disabled registered php streams https ftps compress zlib compress php file glob data http ftp phar zip registered stream socket transports tcp udp unix udg ssl tls registered stream filters zlib convert iconv string string toupper string tolower string strip tags convert consumed dechunk mcrypt mdecrypt additional comments | 0 |
25,627 | 4,163,908,993 | IssuesEvent | 2016-06-18 12:22:00 | futurice/android-best-practices | https://api.github.com/repos/futurice/android-best-practices | closed | The Robolectric Gradle plugin is deprecated | help wanted testing todo | The new [getting started instructions for Robolectric](http://robolectric.org/getting-started/) have the details. The template project still uses the plugin. | 1.0 | The Robolectric Gradle plugin is deprecated - The new [getting started instructions for Robolectric](http://robolectric.org/getting-started/) have the details. The template project still uses the plugin. | test | the robolectric gradle plugin is deprecated the new have the details the template project still uses the plugin | 1 |
44,756 | 12,372,655,048 | IssuesEvent | 2020-05-18 20:49:24 | cliffparnitzky/FormDependentMandatoryField | https://api.github.com/repos/cliffparnitzky/FormDependentMandatoryField | closed | Compatibility Issues with php 7.3? | Defect ⚙ - Processed | Hi,
not sure if this is really a issue but I ran into problems with php 7.3 in combination with contao-mpforms from terminal42:
> Fatal error: Uncaught exception TypeError with message Argument 1 passed to FormDependentMandatoryField::loadDependentMandatoryField() must be an instance of FormFieldErrorMsg\Widget, instance of FormMPFormPageSwitch given, called in /usr/local/apache2/htdocs/system/modules/mp_forms/MPFormsFormManager.php on line 416 thrown in system/modules/zFormDependentMandatoryField/forms/FormDependentMandatoryField.php on line 53
after changing the Typehint in Class "FormDependentMandatroyField" from "Widget" to "Contao\Widget" in Line 53 and 64 it worked again
Edit: Missed that: Running on Contao 3.5.40 (way too old, i know) | 1.0 | Compatibility Issues with php 7.3? - Hi,
not sure if this is really a issue but I ran into problems with php 7.3 in combination with contao-mpforms from terminal42:
> Fatal error: Uncaught exception TypeError with message Argument 1 passed to FormDependentMandatoryField::loadDependentMandatoryField() must be an instance of FormFieldErrorMsg\Widget, instance of FormMPFormPageSwitch given, called in /usr/local/apache2/htdocs/system/modules/mp_forms/MPFormsFormManager.php on line 416 thrown in system/modules/zFormDependentMandatoryField/forms/FormDependentMandatoryField.php on line 53
after changing the Typehint in Class "FormDependentMandatroyField" from "Widget" to "Contao\Widget" in Line 53 and 64 it worked again
Edit: Missed that: Running on Contao 3.5.40 (way too old, i know) | non_test | compatibility issues with php hi not sure if this is really a issue but i ran into problems with php in combination with contao mpforms from fatal error uncaught exception typeerror with message argument passed to formdependentmandatoryfield loaddependentmandatoryfield must be an instance of formfielderrormsg widget instance of formmpformpageswitch given called in usr local htdocs system modules mp forms mpformsformmanager php on line thrown in system modules zformdependentmandatoryfield forms formdependentmandatoryfield php on line after changing the typehint in class formdependentmandatroyfield from widget to contao widget in line and it worked again edit missed that running on contao way too old i know | 0 |
795 | 2,515,171,796 | IssuesEvent | 2015-01-15 16:52:36 | slmessier/eGIS---ASSET-DATA-WAREHOUSE | https://api.github.com/repos/slmessier/eGIS---ASSET-DATA-WAREHOUSE | closed | GAMS Editor - Add Bamboo as New Species Type | Confirmed as Resolved by KCI/ECO Confirmed as Resolved by SHA Data Update GAMS In Testing Staged for Production Push | From: Laurie Goudy
Sent: 12/29/2014 10:47 AM
To: Brad Spittel; Joseph Benedetta
Subject: invasive species: add Bamboo as a species name
Brad and Joe,
OED, Kevin, would like to **add ‘Bamboo’ to the list of species in the table ‘LU_IS_SPECIES_NAME’**? They’ve been going a lot of work trying to control bamboo and it would be good to get it captured in eGIS. What are the impacts to adding this to the LU table? Any widget updates needed?
Thank you,
| 1.0 | GAMS Editor - Add Bamboo as New Species Type - From: Laurie Goudy
Sent: 12/29/2014 10:47 AM
To: Brad Spittel; Joseph Benedetta
Subject: invasive species: add Bamboo as a species name
Brad and Joe,
OED, Kevin, would like to **add ‘Bamboo’ to the list of species in the table ‘LU_IS_SPECIES_NAME’**? They’ve been going a lot of work trying to control bamboo and it would be good to get it captured in eGIS. What are the impacts to adding this to the LU table? Any widget updates needed?
Thank you,
| test | gams editor add bamboo as new species type from laurie goudy sent am to brad spittel joseph benedetta subject invasive species add bamboo as a species name brad and joe oed kevin would like to add ‘bamboo’ to the list of species in the table ‘lu is species name’ they’ve been going a lot of work trying to control bamboo and it would be good to get it captured in egis what are the impacts to adding this to the lu table any widget updates needed thank you | 1 |
64,476 | 7,807,534,310 | IssuesEvent | 2018-06-11 17:10:44 | malenazp/lim-2018-05-bc-core-am-datadashboard | https://api.github.com/repos/malenazp/lim-2018-05-bc-core-am-datadashboard | opened | Estructura básica HTML | DESIGN HTML5 | Crear la estructura básica del HTML en base a las respuestas dadas por el usuario en la entrevista. | 1.0 | Estructura básica HTML - Crear la estructura básica del HTML en base a las respuestas dadas por el usuario en la entrevista. | non_test | estructura básica html crear la estructura básica del html en base a las respuestas dadas por el usuario en la entrevista | 0 |
232,014 | 18,840,082,572 | IssuesEvent | 2021-11-11 08:29:56 | lokka30/LevelledMobs | https://api.github.com/repos/lokka30/LevelledMobs | closed | Add a placeholder that updates when you look at an enemy | enhancement needs testing 3.3.X | I'm trying to use ActionHealth and LevelledMobs together and have the mobs name / level displayed on ActionHealth so players can see the level of mobs easily from a distance. (Sometimes nametags can be too small / hidden to read easily.) and it works great using PlaceholderAPI and **%levelledmobs_displayname%** however it only updates when a mob was killed / has killed a player. It would be really nice if yall could add a placeholder thats set to update automatically and not only when mobs are interacted with otherwise players will look at a mob and see the incorrect info on screen.
I understand this might be more resource intensive than not having it, however you could just add a toggle and put a note next to it saying its more resource intensive and have it off by default.
Thank you for your time and amazing plugin, been using it since early 1.15 and I'm amazed with how many features yall have added that I was wanting already. As of now this is the only thing that's missing for me personally. :) <3
[
Screenshot of what I'm doing](https://cdn.discordapp.com/attachments/760051505067458590/905569826926366730/2021-11-03_16_30_33-Microsoft_Store.png) | 1.0 | Add a placeholder that updates when you look at an enemy - I'm trying to use ActionHealth and LevelledMobs together and have the mobs name / level displayed on ActionHealth so players can see the level of mobs easily from a distance. (Sometimes nametags can be too small / hidden to read easily.) and it works great using PlaceholderAPI and **%levelledmobs_displayname%** however it only updates when a mob was killed / has killed a player. It would be really nice if yall could add a placeholder thats set to update automatically and not only when mobs are interacted with otherwise players will look at a mob and see the incorrect info on screen.
I understand this might be more resource intensive than not having it, however you could just add a toggle and put a note next to it saying its more resource intensive and have it off by default.
Thank you for your time and amazing plugin, been using it since early 1.15 and I'm amazed with how many features yall have added that I was wanting already. As of now this is the only thing that's missing for me personally. :) <3
[
Screenshot of what I'm doing](https://cdn.discordapp.com/attachments/760051505067458590/905569826926366730/2021-11-03_16_30_33-Microsoft_Store.png) | test | add a placeholder that updates when you look at an enemy i m trying to use actionhealth and levelledmobs together and have the mobs name level displayed on actionhealth so players can see the level of mobs easily from a distance sometimes nametags can be too small hidden to read easily and it works great using placeholderapi and levelledmobs displayname however it only updates when a mob was killed has killed a player it would be really nice if yall could add a placeholder thats set to update automatically and not only when mobs are interacted with otherwise players will look at a mob and see the incorrect info on screen i understand this might be more resource intensive than not having it however you could just add a toggle and put a note next to it saying its more resource intensive and have it off by default thank you for your time and amazing plugin been using it since early and i m amazed with how many features yall have added that i was wanting already as of now this is the only thing that s missing for me personally screenshot of what i m doing | 1 |
251,547 | 8,017,038,902 | IssuesEvent | 2018-07-25 14:55:02 | edenlabllc/ehealth.api | https://api.github.com/repos/edenlabllc/ehealth.api | closed | Error: "Invalid User, User not found" after employee email address change PROD | kind/support priority/low | Steps to reproduce:
Відбулась зміна email адреси, після чого лікар почав отримувати дану помилку
employee_id: 7cdedd3f-da6a-4978-8a15-b68832cbdac2
Expected results:
Успішна авторизація
Error:
Invalid User, User not found
email адреси лікаря - item 13 https://docs.google.com/spreadsheets/d/1jZyK1mWHtxyfxGoWy04oWQyLcUETgvn1hPm0lGqePNI/edit#gid=0
-120 | 1.0 | Error: "Invalid User, User not found" after employee email address change PROD - Steps to reproduce:
Відбулась зміна email адреси, після чого лікар почав отримувати дану помилку
employee_id: 7cdedd3f-da6a-4978-8a15-b68832cbdac2
Expected results:
Успішна авторизація
Error:
Invalid User, User not found
email адреси лікаря - item 13 https://docs.google.com/spreadsheets/d/1jZyK1mWHtxyfxGoWy04oWQyLcUETgvn1hPm0lGqePNI/edit#gid=0
-120 | non_test | error invalid user user not found after employee email address change prod steps to reproduce відбулась зміна email адреси після чого лікар почав отримувати дану помилку employee id expected results успішна авторизація error invalid user user not found email адреси лікаря item | 0 |
100,401 | 8,738,597,562 | IssuesEvent | 2018-12-12 04:01:39 | equella/Equella | https://api.github.com/repos/equella/Equella | closed | Custom links can't open in new tab - New UI - 6.6r5 | Ready for Testing bug | Currently, custom links can't be opened in new tab. | 1.0 | Custom links can't open in new tab - New UI - 6.6r5 - Currently, custom links can't be opened in new tab. | test | custom links can t open in new tab new ui currently custom links can t be opened in new tab | 1 |
131,086 | 10,680,198,600 | IssuesEvent | 2019-10-21 20:51:55 | RaRe-Technologies/gensim | https://api.github.com/repos/RaRe-Technologies/gensim | opened | Speed up word2vec / fasttext model loading | High severity Medium priority help wanted performance testing | Loading a large word2vec model with `load_word_format(binary=True)` is slow. Users complain that loading the "standard" models published by Facebook is too slow, plus it also affects the speed of our own tests and tutorial generation.
Some numbers:
```python
time gensim.models.keyedvectors.KeyedVectors.load_word2vec_format('./word2vec-google-news-300.gz', binary=True)
2019-10-21 22:24:08,326 : INFO : loading projection weights from ./word2vec-google-news-300.gz
2019-10-21 22:26:54,620 : INFO : loaded (3000000, 300) matrix from ./word2vec-google-news-300.gz
CPU times: user 2min 42s, sys: 3.64 s, total: 2min 46s
Wall time: 2min 46s
```
The I/O part itself = only loading the bytes without any interpretation, takes about 30 seconds:
```python
time full = io.BytesIO(smart_open.open('./word2vec-google-news-300.gz', 'rb').read())
CPU times: user 20.9 s, sys: 8.13 s, total: 29.1 s
Wall time: 31.9 s
```
…which means our parsing code is taking up the majority of the `load_word2vec_format` time.
**Task**: Optimize `load_word2vec_format`, especially the `binary=True` branch. The code seems to live here:
https://github.com/RaRe-Technologies/gensim/blob/develop/gensim/models/utils_any2vec.py#L369 | 1.0 | Speed up word2vec / fasttext model loading - Loading a large word2vec model with `load_word_format(binary=True)` is slow. Users complain that loading the "standard" models published by Facebook is too slow, plus it also affects the speed of our own tests and tutorial generation.
Some numbers:
```python
time gensim.models.keyedvectors.KeyedVectors.load_word2vec_format('./word2vec-google-news-300.gz', binary=True)
2019-10-21 22:24:08,326 : INFO : loading projection weights from ./word2vec-google-news-300.gz
2019-10-21 22:26:54,620 : INFO : loaded (3000000, 300) matrix from ./word2vec-google-news-300.gz
CPU times: user 2min 42s, sys: 3.64 s, total: 2min 46s
Wall time: 2min 46s
```
The I/O part itself = only loading the bytes without any interpretation, takes about 30 seconds:
```python
time full = io.BytesIO(smart_open.open('./word2vec-google-news-300.gz', 'rb').read())
CPU times: user 20.9 s, sys: 8.13 s, total: 29.1 s
Wall time: 31.9 s
```
…which means our parsing code is taking up the majority of the `load_word2vec_format` time.
**Task**: Optimize `load_word2vec_format`, especially the `binary=True` branch. The code seems to live here:
https://github.com/RaRe-Technologies/gensim/blob/develop/gensim/models/utils_any2vec.py#L369 | test | speed up fasttext model loading loading a large model with load word format binary true is slow users complain that loading the standard models published by facebook is too slow plus it also affects the speed of our own tests and tutorial generation some numbers python time gensim models keyedvectors keyedvectors load format google news gz binary true info loading projection weights from google news gz info loaded matrix from google news gz cpu times user sys s total wall time the i o part itself only loading the bytes without any interpretation takes about seconds python time full io bytesio smart open open google news gz rb read cpu times user s sys s total s wall time s …which means our parsing code is taking up the majority of the load format time task optimize load format especially the binary true branch the code seems to live here | 1 |
155,538 | 12,259,987,701 | IssuesEvent | 2020-05-06 17:31:01 | grpc/grpc | https://api.github.com/repos/grpc/grpc | reopened | Run Python distribtests on Windows and macOS | area/test disposition/never stale kind/enhancement lang/Python priority/P2 | Python distribtests currently run only on Linux (https://github.com/grpc/grpc/blob/master/tools/run_tests/artifacts/distribtest_targets.py#L165)
We should run them on Windows and macOS to ensure we don't accidentally break the users on those platforms by publishing a corrupt `pip` package on PyPI. | 1.0 | Run Python distribtests on Windows and macOS - Python distribtests currently run only on Linux (https://github.com/grpc/grpc/blob/master/tools/run_tests/artifacts/distribtest_targets.py#L165)
We should run them on Windows and macOS to ensure we don't accidentally break the users on those platforms by publishing a corrupt `pip` package on PyPI. | test | run python distribtests on windows and macos python distribtests currently run only on linux we should run them on windows and macos to ensure we don t accidentally break the users on those platforms by publishing a corrupt pip package on pypi | 1 |
133,376 | 29,088,274,736 | IssuesEvent | 2023-05-16 03:06:13 | dotnet/runtime | https://api.github.com/repos/dotnet/runtime | closed | Gradual regression of System.Buffers.Tests.ReadOnlySequenceTests<Char>.IterateGetPositionArray from net6.0 to net7.0-rc2 | tenet-performance tenet-performance-benchmarks area-CodeGen-coreclr | This benchmark has been jumping up and down throughout the whole net7.0 cycle but looking at the 6.0 data point seems like it gradually regressed.
Link to the chart:
https://pvscmdupload.blob.core.windows.net/reports/allTestHistory/refs/heads/main_x64_ubuntu%2018.04/System.Buffers.Tests.ReadOnlySequenceTests(Char).IterateGetPositionSingleSegment.html
Screenshot:

Benchmark results from 7.0-RC2 vs 6.0:
<details>
## System.Buffers.Tests.ReadOnlySequenceTests<Char>.IterateGetPositionArray
| Result | Ratio | Alloc Delta | Operating System | Bit | Processor Name | Modality|
| ------ | ----- | -----------:| ------------------- | ----- | --------------------------------------------- | -------- |
| Slower | 0.77 | +0 | ubuntu 18.04 | Arm64 | Unknown processor | |
| Noise | - | +0 | Windows 11 | Arm64 | Unknown processor | |
| Slower | 0.86 | +0 | Windows 11 | Arm64 | Microsoft SQ1 3.0 GHz | |
| Slower | 0.90 | +0 | Windows 11 | Arm64 | Microsoft SQ1 3.0 GHz | |
| Same | 0.92 | +0 | macOS Monterey 12.6 | Arm64 | Apple M1 | |
| Same | 0.94 | +0 | macOS Monterey 12.6 | Arm64 | Apple M1 Max | |
| Slower | 0.67 | +0 | Windows 10 | X64 | Intel Core i7-8650U CPU 1.90GHz (Kaby Lake R) | bimodal |
| Noise | - | +0 | Windows 11 | X64 | AMD Ryzen Threadripper PRO 3945WX 12-Cores | |
| Same | 0.98 | +0 | Windows 11 | X64 | AMD Ryzen 9 5900X | |
| Same | 0.95 | +0 | Windows 11 | X64 | AMD Ryzen 9 7950X | |
| Slower | 0.84 | +0 | Windows 11 | X64 | Intel Core i7-8700 CPU 3.20GHz (Coffee Lake) | |
| Slower | 0.73 | +0 | debian 11 | X64 | Intel Core i7-8700 CPU 3.20GHz (Coffee Lake) | |
| Same | 1.07 | +0 | ubuntu 18.04 | X64 | AMD Ryzen 9 5900X | |
| Slower | 0.84 | +0 | ubuntu 18.04 | X64 | Intel Xeon CPU E5-1650 v4 3.60GHz | |
| Same | 0.88 | +0 | ubuntu 20.04 | X64 | AMD Ryzen 9 5900X | several?|
| Same | 0.94 | +0 | ubuntu 20.04 | X64 | Intel Core i7-8650U CPU 1.90GHz (Kaby Lake R) | |
| Same | 0.93 | +0 | ubuntu 20.04 | X64 | Intel Core i7-8700 CPU 3.20GHz (Coffee Lake) | |
| Slower | 0.87 | +0 | macOS Big Sur 11.7 | X64 | Intel Core i5-4278U CPU 2.60GHz (Haswell) | |
| Slower | 0.85 | +0 | macOS Monterey 12.6 | X64 | Intel Core i7-4870HQ CPU 2.50GHz (Haswell) | |
</details> | 1.0 | Gradual regression of System.Buffers.Tests.ReadOnlySequenceTests<Char>.IterateGetPositionArray from net6.0 to net7.0-rc2 - This benchmark has been jumping up and down throughout the whole net7.0 cycle but looking at the 6.0 data point seems like it gradually regressed.
Link to the chart:
https://pvscmdupload.blob.core.windows.net/reports/allTestHistory/refs/heads/main_x64_ubuntu%2018.04/System.Buffers.Tests.ReadOnlySequenceTests(Char).IterateGetPositionSingleSegment.html
Screenshot:

Benchmark results from 7.0-RC2 vs 6.0:
<details>
## System.Buffers.Tests.ReadOnlySequenceTests<Char>.IterateGetPositionArray
| Result | Ratio | Alloc Delta | Operating System | Bit | Processor Name | Modality|
| ------ | ----- | -----------:| ------------------- | ----- | --------------------------------------------- | -------- |
| Slower | 0.77 | +0 | ubuntu 18.04 | Arm64 | Unknown processor | |
| Noise | - | +0 | Windows 11 | Arm64 | Unknown processor | |
| Slower | 0.86 | +0 | Windows 11 | Arm64 | Microsoft SQ1 3.0 GHz | |
| Slower | 0.90 | +0 | Windows 11 | Arm64 | Microsoft SQ1 3.0 GHz | |
| Same | 0.92 | +0 | macOS Monterey 12.6 | Arm64 | Apple M1 | |
| Same | 0.94 | +0 | macOS Monterey 12.6 | Arm64 | Apple M1 Max | |
| Slower | 0.67 | +0 | Windows 10 | X64 | Intel Core i7-8650U CPU 1.90GHz (Kaby Lake R) | bimodal |
| Noise | - | +0 | Windows 11 | X64 | AMD Ryzen Threadripper PRO 3945WX 12-Cores | |
| Same | 0.98 | +0 | Windows 11 | X64 | AMD Ryzen 9 5900X | |
| Same | 0.95 | +0 | Windows 11 | X64 | AMD Ryzen 9 7950X | |
| Slower | 0.84 | +0 | Windows 11 | X64 | Intel Core i7-8700 CPU 3.20GHz (Coffee Lake) | |
| Slower | 0.73 | +0 | debian 11 | X64 | Intel Core i7-8700 CPU 3.20GHz (Coffee Lake) | |
| Same | 1.07 | +0 | ubuntu 18.04 | X64 | AMD Ryzen 9 5900X | |
| Slower | 0.84 | +0 | ubuntu 18.04 | X64 | Intel Xeon CPU E5-1650 v4 3.60GHz | |
| Same | 0.88 | +0 | ubuntu 20.04 | X64 | AMD Ryzen 9 5900X | several?|
| Same | 0.94 | +0 | ubuntu 20.04 | X64 | Intel Core i7-8650U CPU 1.90GHz (Kaby Lake R) | |
| Same | 0.93 | +0 | ubuntu 20.04 | X64 | Intel Core i7-8700 CPU 3.20GHz (Coffee Lake) | |
| Slower | 0.87 | +0 | macOS Big Sur 11.7 | X64 | Intel Core i5-4278U CPU 2.60GHz (Haswell) | |
| Slower | 0.85 | +0 | macOS Monterey 12.6 | X64 | Intel Core i7-4870HQ CPU 2.50GHz (Haswell) | |
</details> | non_test | gradual regression of system buffers tests readonlysequencetests iterategetpositionarray from to this benchmark has been jumping up and down throughout the whole cycle but looking at the data point seems like it gradually regressed link to the chart screenshot benchmark results from vs system buffers tests readonlysequencetests iterategetpositionarray result ratio alloc delta operating system bit processor name modality slower ubuntu unknown processor noise windows unknown processor slower windows microsoft ghz slower windows microsoft ghz same macos monterey apple same macos monterey apple max slower windows intel core cpu kaby lake r bimodal noise windows amd ryzen threadripper pro cores same windows amd ryzen same windows amd ryzen slower windows intel core cpu coffee lake slower debian intel core cpu coffee lake same ubuntu amd ryzen slower ubuntu intel xeon cpu same ubuntu amd ryzen several same ubuntu intel core cpu kaby lake r same ubuntu intel core cpu coffee lake slower macos big sur intel core cpu haswell slower macos monterey intel core cpu haswell | 0 |
280,896 | 21,315,258,349 | IssuesEvent | 2022-04-16 06:47:42 | iztanpy/pe | https://api.github.com/repos/iztanpy/pe | opened | Inconsistent formatting in user guide | severity.VeryLow type.DocumentationBug | Some commands provide examples, while examples are missing for 2 of the commands -- archive and unarchive

<!--session: 1650089738784-97c07b4d-abc9-474f-a752-8ecfef146036-->
<!--Version: Web v3.4.2--> | 1.0 | Inconsistent formatting in user guide - Some commands provide examples, while examples are missing for 2 of the commands -- archive and unarchive

<!--session: 1650089738784-97c07b4d-abc9-474f-a752-8ecfef146036-->
<!--Version: Web v3.4.2--> | non_test | inconsistent formatting in user guide some commands provide examples while examples are missing for of the commands archive and unarchive | 0 |
263,453 | 23,059,349,162 | IssuesEvent | 2022-07-25 08:31:11 | ialopezc/upptime | https://api.github.com/repos/ialopezc/upptime | closed | 🛑 Vales de Gasolina TEST is down | status vales-de-gasolina-test | In [`1d1f9f0`](https://github.com/ialopezc/upptime/commit/1d1f9f0568f10332dd57f4be55444ebb3615f2c3
), Vales de Gasolina TEST (http://$SITE_VDD_TEST) was **down**:
- HTTP code: 0
- Response time: 0 ms
| 1.0 | 🛑 Vales de Gasolina TEST is down - In [`1d1f9f0`](https://github.com/ialopezc/upptime/commit/1d1f9f0568f10332dd57f4be55444ebb3615f2c3
), Vales de Gasolina TEST (http://$SITE_VDD_TEST) was **down**:
- HTTP code: 0
- Response time: 0 ms
| test | 🛑 vales de gasolina test is down in vales de gasolina test was down http code response time ms | 1 |
325,974 | 27,971,724,813 | IssuesEvent | 2023-03-25 04:40:18 | ALTA-LapakUMKM-Group-2/LapakUMKM-APITesting | https://api.github.com/repos/ALTA-LapakUMKM-Group-2/LapakUMKM-APITesting | closed | [Products-A001] Get list all product with valid parameter | Manual Api Testing | - [x] Given Get list all product with valid parameter
- [x] When Send get list all product parameter
- [x] Then Status code should be 200 OK
- [x] And Validate get list all valid parameter product resources json schema | 1.0 | [Products-A001] Get list all product with valid parameter - - [x] Given Get list all product with valid parameter
- [x] When Send get list all product parameter
- [x] Then Status code should be 200 OK
- [x] And Validate get list all valid parameter product resources json schema | test | get list all product with valid parameter given get list all product with valid parameter when send get list all product parameter then status code should be ok and validate get list all valid parameter product resources json schema | 1 |
273,953 | 23,797,920,141 | IssuesEvent | 2022-09-02 22:46:52 | dotnet/aspnetcore | https://api.github.com/repos/dotnet/aspnetcore | closed | Quarantine Listen_Http3AndSocketsCoexistOnSameEndpoint_AltSvcEnabled_Upgrade | area-runtime test-fixed | <!--
Note this issue template is specifically for failing tests within the dotnet/aspnetcore repo.
-->
## Failing Test(s)
- Listen_Http3AndSocketsCoexistOnSameEndpoint_AltSvcEnabled_Upgrade
- Listen_Http3AndSocketsCoexistOnSameEndpoint_AltSvcDisabled_NoUpgrade
## Error Message
<!--
Provide the error message associated with the test failure, if applicable.
-->
```text
System.Net.Quic.QuicException : The local address is already in use.
```
## Stacktrace
<details>
<!--
Provide the stack trace associated with the test failure, if applicable.
-->
```text
at System.Net.Quic.ThrowHelper.ThrowIfMsQuicError(Int32 status, String message)
at System.Net.Quic.QuicListener..ctor(QuicListenerOptions options)
at System.Net.Quic.QuicListener.ListenAsync(QuicListenerOptions options, CancellationToken cancellationToken)
at Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal.QuicConnectionListener.CreateListenerAsync() in /_/src/Servers/Kestrel/Transport.Quic/src/Internal/QuicConnectionListener.cs:line 72
at Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportFactory.BindAsync(EndPoint endpoint, IFeatureCollection features, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Transport.Quic/src/QuicTransportFactory.cs:line 69
at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TransportManager.BindAsync(EndPoint endPoint, MultiplexedConnectionDelegate multiplexedConnectionDelegate, ListenOptions listenOptions, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/Infrastructure/TransportManager.cs:line 63
at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.<>c__DisplayClass30_0`1.<<StartAsync>g__OnBind|0>d.MoveNext() in /_/src/Servers/Kestrel/Core/src/Internal/KestrelServerImpl.cs:line 225
--- End of stack trace from previous location ---
at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindEndpointAsync(ListenOptions endpoint, AddressBindContext context, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/AddressBinder.cs:line 89
at Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions.BindAsync(AddressBindContext context, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/ListenOptions.cs:line 189
at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.EndpointsStrategy.BindAsync(AddressBindContext context, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/AddressBinder.cs:line 206
at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindAsync(IEnumerable`1 listenOptions, AddressBindContext context, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/AddressBinder.cs:line 31
at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.BindAsync(CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/KestrelServerImpl.cs:line 311
at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.StartAsync[TContext](IHttpApplication`1 application, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/KestrelServerImpl.cs:line 231
at Microsoft.AspNetCore.Hosting.GenericWebHostService.StartAsync(CancellationToken cancellationToken) in /_/src/Hosting/Hosting/src/GenericHost/GenericWebHostService.cs:line 137
at Microsoft.Extensions.Hosting.Internal.Host.StartAsync(CancellationToken cancellationToken)
at Microsoft.AspNetCore.Testing.TaskExtensions.TimeoutAfter(Task task, TimeSpan timeout, String filePath, Int32 lineNumber) in /_/src/Shared/TaskExtensions.cs:line 141
at Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests.WebHostTests.Listen_Http3AndSocketsCoexistOnSameEndpoint_AltSvcEnabled_Upgrade() in /_/src/Servers/Kestrel/Transport.Quic/test/WebHostTests.cs:line 177
--- End of stack trace from previous location ---
```
</details>
## Logs
<details>
<!--
Provide the (helix) logs associated with the test failure, if applicable.
-->
```text
[0.005s] [TestLifetime] [Information] Starting test Listen_Http3AndSocketsCoexistOnSameEndpoint_AltSvcDisabled_NoUpgrade at 2022-07-28T00:56:55
[0.010s] [Microsoft.Extensions.Hosting.Internal.Host] [Debug] Hosting starting
[0.055s] [Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests.WebHostTests] [Error] Test threw an exception.
System.Net.Quic.QuicException: The local address is already in use.
at System.Net.Quic.ThrowHelper.ThrowIfMsQuicError(Int32 status, String message)
at System.Net.Quic.QuicListener..ctor(QuicListenerOptions options)
at System.Net.Quic.QuicListener.ListenAsync(QuicListenerOptions options, CancellationToken cancellationToken)
at Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal.QuicConnectionListener.CreateListenerAsync() in /_/src/Servers/Kestrel/Transport.Quic/src/Internal/QuicConnectionListener.cs:line 72
at Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportFactory.BindAsync(EndPoint endpoint, IFeatureCollection features, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Transport.Quic/src/QuicTransportFactory.cs:line 69
at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TransportManager.BindAsync(EndPoint endPoint, MultiplexedConnectionDelegate multiplexedConnectionDelegate, ListenOptions listenOptions, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/Infrastructure/TransportManager.cs:line 63
at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.<>c__DisplayClass30_0`1.<<StartAsync>g__OnBind|0>d.MoveNext() in /_/src/Servers/Kestrel/Core/src/Internal/KestrelServerImpl.cs:line 225
--- End of stack trace from previous location ---
at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindEndpointAsync(ListenOptions endpoint, AddressBindContext context, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/AddressBinder.cs:line 89
at Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions.BindAsync(AddressBindContext context, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/ListenOptions.cs:line 189
at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.EndpointsStrategy.BindAsync(AddressBindContext context, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/AddressBinder.cs:line 206
at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindAsync(IEnumerable`1 listenOptions, AddressBindContext context, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/AddressBinder.cs:line 31
at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.BindAsync(CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/KestrelServerImpl.cs:line 311
at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.StartAsync[TContext](IHttpApplication`1 application, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/KestrelServerImpl.cs:line 231
at Microsoft.AspNetCore.Hosting.GenericWebHostService.StartAsync(CancellationToken cancellationToken) in /_/src/Hosting/Hosting/src/GenericHost/GenericWebHostService.cs:line 137
at Microsoft.Extensions.Hosting.Internal.Host.StartAsync(CancellationToken cancellationToken)
at Microsoft.AspNetCore.Testing.TaskExtensions.TimeoutAfter(Task task, TimeSpan timeout, String filePath, Int32 lineNumber) in /_/src/Shared/TaskExtensions.cs:line 141
at Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests.WebHostTests.Listen_Http3AndSocketsCoexistOnSameEndpoint_AltSvcDisabled_NoUpgrade() in /_/src/Servers/Kestrel/Transport.Quic/test/WebHostTests.cs:line 245
at Xunit.Sdk.TestInvoker`1.<>c__DisplayClass48_1.<<InvokeTestMethodAsync>b__1>d.MoveNext() in C:\Dev\xunit\xunit\src\xunit.execution\Sdk\Frameworks\Runners\TestInvoker.cs:line 264
--- End of stack trace from previous location ---
at Xunit.Sdk.ExecutionTimer.AggregateAsync(Func`1 asyncAction) in C:\Dev\xunit\xunit\src\xunit.execution\Sdk\Frameworks\ExecutionTimer.cs:line 48
at Xunit.Sdk.ExceptionAggregator.RunAsync(Func`1 code) in C:\Dev\xunit\xunit\src\xunit.core\Sdk\ExceptionAggregator.cs:line 96
[0.059s] [TestLifetime] [Information] Finished test Listen_Http3AndSocketsCoexistOnSameEndpoint_AltSvcDisabled_NoUpgrade in 0.0546952s
```
</details>
## Build
<!--
Provide a link to the build where the test failure occurred.
-->
https://dev.azure.com/dnceng/public/_build/results?buildId=1908015&view=ms.vss-test-web.build-test-results-tab&runId=49558196&resultId=108887&paneView=debug
| 1.0 | Quarantine Listen_Http3AndSocketsCoexistOnSameEndpoint_AltSvcEnabled_Upgrade - <!--
Note this issue template is specifically for failing tests within the dotnet/aspnetcore repo.
-->
## Failing Test(s)
- Listen_Http3AndSocketsCoexistOnSameEndpoint_AltSvcEnabled_Upgrade
- Listen_Http3AndSocketsCoexistOnSameEndpoint_AltSvcDisabled_NoUpgrade
## Error Message
<!--
Provide the error message associated with the test failure, if applicable.
-->
```text
System.Net.Quic.QuicException : The local address is already in use.
```
## Stacktrace
<details>
<!--
Provide the stack trace associated with the test failure, if applicable.
-->
```text
at System.Net.Quic.ThrowHelper.ThrowIfMsQuicError(Int32 status, String message)
at System.Net.Quic.QuicListener..ctor(QuicListenerOptions options)
at System.Net.Quic.QuicListener.ListenAsync(QuicListenerOptions options, CancellationToken cancellationToken)
at Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal.QuicConnectionListener.CreateListenerAsync() in /_/src/Servers/Kestrel/Transport.Quic/src/Internal/QuicConnectionListener.cs:line 72
at Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportFactory.BindAsync(EndPoint endpoint, IFeatureCollection features, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Transport.Quic/src/QuicTransportFactory.cs:line 69
at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TransportManager.BindAsync(EndPoint endPoint, MultiplexedConnectionDelegate multiplexedConnectionDelegate, ListenOptions listenOptions, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/Infrastructure/TransportManager.cs:line 63
at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.<>c__DisplayClass30_0`1.<<StartAsync>g__OnBind|0>d.MoveNext() in /_/src/Servers/Kestrel/Core/src/Internal/KestrelServerImpl.cs:line 225
--- End of stack trace from previous location ---
at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindEndpointAsync(ListenOptions endpoint, AddressBindContext context, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/AddressBinder.cs:line 89
at Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions.BindAsync(AddressBindContext context, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/ListenOptions.cs:line 189
at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.EndpointsStrategy.BindAsync(AddressBindContext context, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/AddressBinder.cs:line 206
at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindAsync(IEnumerable`1 listenOptions, AddressBindContext context, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/AddressBinder.cs:line 31
at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.BindAsync(CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/KestrelServerImpl.cs:line 311
at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.StartAsync[TContext](IHttpApplication`1 application, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/KestrelServerImpl.cs:line 231
at Microsoft.AspNetCore.Hosting.GenericWebHostService.StartAsync(CancellationToken cancellationToken) in /_/src/Hosting/Hosting/src/GenericHost/GenericWebHostService.cs:line 137
at Microsoft.Extensions.Hosting.Internal.Host.StartAsync(CancellationToken cancellationToken)
at Microsoft.AspNetCore.Testing.TaskExtensions.TimeoutAfter(Task task, TimeSpan timeout, String filePath, Int32 lineNumber) in /_/src/Shared/TaskExtensions.cs:line 141
at Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests.WebHostTests.Listen_Http3AndSocketsCoexistOnSameEndpoint_AltSvcEnabled_Upgrade() in /_/src/Servers/Kestrel/Transport.Quic/test/WebHostTests.cs:line 177
--- End of stack trace from previous location ---
```
</details>
## Logs
<details>
<!--
Provide the (helix) logs associated with the test failure, if applicable.
-->
```text
[0.005s] [TestLifetime] [Information] Starting test Listen_Http3AndSocketsCoexistOnSameEndpoint_AltSvcDisabled_NoUpgrade at 2022-07-28T00:56:55
[0.010s] [Microsoft.Extensions.Hosting.Internal.Host] [Debug] Hosting starting
[0.055s] [Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests.WebHostTests] [Error] Test threw an exception.
System.Net.Quic.QuicException: The local address is already in use.
at System.Net.Quic.ThrowHelper.ThrowIfMsQuicError(Int32 status, String message)
at System.Net.Quic.QuicListener..ctor(QuicListenerOptions options)
at System.Net.Quic.QuicListener.ListenAsync(QuicListenerOptions options, CancellationToken cancellationToken)
at Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal.QuicConnectionListener.CreateListenerAsync() in /_/src/Servers/Kestrel/Transport.Quic/src/Internal/QuicConnectionListener.cs:line 72
at Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportFactory.BindAsync(EndPoint endpoint, IFeatureCollection features, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Transport.Quic/src/QuicTransportFactory.cs:line 69
at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TransportManager.BindAsync(EndPoint endPoint, MultiplexedConnectionDelegate multiplexedConnectionDelegate, ListenOptions listenOptions, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/Infrastructure/TransportManager.cs:line 63
at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.<>c__DisplayClass30_0`1.<<StartAsync>g__OnBind|0>d.MoveNext() in /_/src/Servers/Kestrel/Core/src/Internal/KestrelServerImpl.cs:line 225
--- End of stack trace from previous location ---
at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindEndpointAsync(ListenOptions endpoint, AddressBindContext context, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/AddressBinder.cs:line 89
at Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions.BindAsync(AddressBindContext context, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/ListenOptions.cs:line 189
at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.EndpointsStrategy.BindAsync(AddressBindContext context, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/AddressBinder.cs:line 206
at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.AddressBinder.BindAsync(IEnumerable`1 listenOptions, AddressBindContext context, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/AddressBinder.cs:line 31
at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.BindAsync(CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/KestrelServerImpl.cs:line 311
at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerImpl.StartAsync[TContext](IHttpApplication`1 application, CancellationToken cancellationToken) in /_/src/Servers/Kestrel/Core/src/Internal/KestrelServerImpl.cs:line 231
at Microsoft.AspNetCore.Hosting.GenericWebHostService.StartAsync(CancellationToken cancellationToken) in /_/src/Hosting/Hosting/src/GenericHost/GenericWebHostService.cs:line 137
at Microsoft.Extensions.Hosting.Internal.Host.StartAsync(CancellationToken cancellationToken)
at Microsoft.AspNetCore.Testing.TaskExtensions.TimeoutAfter(Task task, TimeSpan timeout, String filePath, Int32 lineNumber) in /_/src/Shared/TaskExtensions.cs:line 141
at Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests.WebHostTests.Listen_Http3AndSocketsCoexistOnSameEndpoint_AltSvcDisabled_NoUpgrade() in /_/src/Servers/Kestrel/Transport.Quic/test/WebHostTests.cs:line 245
at Xunit.Sdk.TestInvoker`1.<>c__DisplayClass48_1.<<InvokeTestMethodAsync>b__1>d.MoveNext() in C:\Dev\xunit\xunit\src\xunit.execution\Sdk\Frameworks\Runners\TestInvoker.cs:line 264
--- End of stack trace from previous location ---
at Xunit.Sdk.ExecutionTimer.AggregateAsync(Func`1 asyncAction) in C:\Dev\xunit\xunit\src\xunit.execution\Sdk\Frameworks\ExecutionTimer.cs:line 48
at Xunit.Sdk.ExceptionAggregator.RunAsync(Func`1 code) in C:\Dev\xunit\xunit\src\xunit.core\Sdk\ExceptionAggregator.cs:line 96
[0.059s] [TestLifetime] [Information] Finished test Listen_Http3AndSocketsCoexistOnSameEndpoint_AltSvcDisabled_NoUpgrade in 0.0546952s
```
</details>
## Build
<!--
Provide a link to the build where the test failure occurred.
-->
https://dev.azure.com/dnceng/public/_build/results?buildId=1908015&view=ms.vss-test-web.build-test-results-tab&runId=49558196&resultId=108887&paneView=debug
| test | quarantine listen altsvcenabled upgrade note this issue template is specifically for failing tests within the dotnet aspnetcore repo failing test s listen altsvcenabled upgrade listen altsvcdisabled noupgrade error message provide the error message associated with the test failure if applicable text system net quic quicexception the local address is already in use stacktrace provide the stack trace associated with the test failure if applicable text at system net quic throwhelper throwifmsquicerror status string message at system net quic quiclistener ctor quiclisteneroptions options at system net quic quiclistener listenasync quiclisteneroptions options cancellationtoken cancellationtoken at microsoft aspnetcore server kestrel transport quic internal quicconnectionlistener createlistenerasync in src servers kestrel transport quic src internal quicconnectionlistener cs line at microsoft aspnetcore server kestrel transport quic quictransportfactory bindasync endpoint endpoint ifeaturecollection features cancellationtoken cancellationtoken in src servers kestrel transport quic src quictransportfactory cs line at microsoft aspnetcore server kestrel core internal infrastructure transportmanager bindasync endpoint endpoint multiplexedconnectiondelegate multiplexedconnectiondelegate listenoptions listenoptions cancellationtoken cancellationtoken in src servers kestrel core src internal infrastructure transportmanager cs line at microsoft aspnetcore server kestrel core kestrelserverimpl c g onbind d movenext in src servers kestrel core src internal kestrelserverimpl cs line end of stack trace from previous location at microsoft aspnetcore server kestrel core internal addressbinder bindendpointasync listenoptions endpoint addressbindcontext context cancellationtoken cancellationtoken in src servers kestrel core src internal addressbinder cs line at microsoft aspnetcore server kestrel core listenoptions bindasync addressbindcontext context cancellationtoken cancellationtoken in src servers kestrel core src listenoptions cs line at microsoft aspnetcore server kestrel core internal addressbinder endpointsstrategy bindasync addressbindcontext context cancellationtoken cancellationtoken in src servers kestrel core src internal addressbinder cs line at microsoft aspnetcore server kestrel core internal addressbinder bindasync ienumerable listenoptions addressbindcontext context cancellationtoken cancellationtoken in src servers kestrel core src internal addressbinder cs line at microsoft aspnetcore server kestrel core kestrelserverimpl bindasync cancellationtoken cancellationtoken in src servers kestrel core src internal kestrelserverimpl cs line at microsoft aspnetcore server kestrel core kestrelserverimpl startasync ihttpapplication application cancellationtoken cancellationtoken in src servers kestrel core src internal kestrelserverimpl cs line at microsoft aspnetcore hosting genericwebhostservice startasync cancellationtoken cancellationtoken in src hosting hosting src generichost genericwebhostservice cs line at microsoft extensions hosting internal host startasync cancellationtoken cancellationtoken at microsoft aspnetcore testing taskextensions timeoutafter task task timespan timeout string filepath linenumber in src shared taskextensions cs line at microsoft aspnetcore server kestrel transport quic tests webhosttests listen altsvcenabled upgrade in src servers kestrel transport quic test webhosttests cs line end of stack trace from previous location logs provide the helix logs associated with the test failure if applicable text starting test listen altsvcdisabled noupgrade at hosting starting test threw an exception system net quic quicexception the local address is already in use at system net quic throwhelper throwifmsquicerror status string message at system net quic quiclistener ctor quiclisteneroptions options at system net quic quiclistener listenasync quiclisteneroptions options cancellationtoken cancellationtoken at microsoft aspnetcore server kestrel transport quic internal quicconnectionlistener createlistenerasync in src servers kestrel transport quic src internal quicconnectionlistener cs line at microsoft aspnetcore server kestrel transport quic quictransportfactory bindasync endpoint endpoint ifeaturecollection features cancellationtoken cancellationtoken in src servers kestrel transport quic src quictransportfactory cs line at microsoft aspnetcore server kestrel core internal infrastructure transportmanager bindasync endpoint endpoint multiplexedconnectiondelegate multiplexedconnectiondelegate listenoptions listenoptions cancellationtoken cancellationtoken in src servers kestrel core src internal infrastructure transportmanager cs line at microsoft aspnetcore server kestrel core kestrelserverimpl c g onbind d movenext in src servers kestrel core src internal kestrelserverimpl cs line end of stack trace from previous location at microsoft aspnetcore server kestrel core internal addressbinder bindendpointasync listenoptions endpoint addressbindcontext context cancellationtoken cancellationtoken in src servers kestrel core src internal addressbinder cs line at microsoft aspnetcore server kestrel core listenoptions bindasync addressbindcontext context cancellationtoken cancellationtoken in src servers kestrel core src listenoptions cs line at microsoft aspnetcore server kestrel core internal addressbinder endpointsstrategy bindasync addressbindcontext context cancellationtoken cancellationtoken in src servers kestrel core src internal addressbinder cs line at microsoft aspnetcore server kestrel core internal addressbinder bindasync ienumerable listenoptions addressbindcontext context cancellationtoken cancellationtoken in src servers kestrel core src internal addressbinder cs line at microsoft aspnetcore server kestrel core kestrelserverimpl bindasync cancellationtoken cancellationtoken in src servers kestrel core src internal kestrelserverimpl cs line at microsoft aspnetcore server kestrel core kestrelserverimpl startasync ihttpapplication application cancellationtoken cancellationtoken in src servers kestrel core src internal kestrelserverimpl cs line at microsoft aspnetcore hosting genericwebhostservice startasync cancellationtoken cancellationtoken in src hosting hosting src generichost genericwebhostservice cs line at microsoft extensions hosting internal host startasync cancellationtoken cancellationtoken at microsoft aspnetcore testing taskextensions timeoutafter task task timespan timeout string filepath linenumber in src shared taskextensions cs line at microsoft aspnetcore server kestrel transport quic tests webhosttests listen altsvcdisabled noupgrade in src servers kestrel transport quic test webhosttests cs line at xunit sdk testinvoker c b d movenext in c dev xunit xunit src xunit execution sdk frameworks runners testinvoker cs line end of stack trace from previous location at xunit sdk executiontimer aggregateasync func asyncaction in c dev xunit xunit src xunit execution sdk frameworks executiontimer cs line at xunit sdk exceptionaggregator runasync func code in c dev xunit xunit src xunit core sdk exceptionaggregator cs line finished test listen altsvcdisabled noupgrade in build provide a link to the build where the test failure occurred | 1 |
46,505 | 11,848,759,741 | IssuesEvent | 2020-03-24 14:16:18 | awslabs/aws-sam-cli | https://api.github.com/repos/awslabs/aws-sam-cli | closed | S3 TemplateURLs transformed to local file path | area/build priority/1-critical stage/waiting-for-release type/bug | <!-- Make sure we don't have an existing Issue that reports the bug you are seeing (both open and closed).
If you do find an existing Issue, re-open or add a comment to that Issue instead of creating a new one. -->
### Description
`sam build` transforms TemplateURL from S3 https link to local file path. The example provided is a basic CFN template to show the output but have seen this on full SAM templates with SAM resources as well.
### Steps to reproduce
Run `sam build` with the following example template:
```
---
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: A test CFN template
Resources:
ExampleNestedStack:
Type: AWS::CloudFormation::Stack
Properties:
TemplateURL: https://s3.amazonaws.com/examplebucket/exampletemplate.yml
```
### Observed result
```
$ sam build --debug
Telemetry endpoint configured to be https://aws-serverless-tools-telemetry.us-west-2.amazonaws.com/metrics
'build' command is called
No Parameters detected in the template
1 resources found in the template
Build Succeeded
Built Artifacts : .aws-sam/build
Built Template : .aws-sam/build/template.yaml
Commands you can use next
=========================
[*] Invoke Function: sam local invoke
[*] Deploy: sam deploy --guided
Sending Telemetry: {'metrics': [{'commandRun': {'awsProfileProvided': False, 'debugFlagProvided': True, 'region': '', 'commandName': 'sam build', 'duration': 141, 'exitReason': 'success', 'exitCode': 0, 'requestId': 'a878c824-f550-4eae-8528-56d1d0595c2d', 'installationId': '320f3374-6b5d-450f-9735-ce91d16a517f', 'sessionId': '787a2613-5ee8-4d71-9ba5-0520625027b6', 'executionEnvironment': 'CLI', 'pyversion': '3.7.6', 'samcliVersion': '0.43.0'}}]}
```
Note that template URL is transformed to `TemplateURL: ../../https:/s3.amazonaws.com/examplebucket/exampletemplate.yml` in the output template in `.aws-sam/build/template.yaml`
```
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: A test CFN template
Resources:
ExampleNestedStack:
Type: AWS::CloudFormation::Stack
Properties:
TemplateURL: ../../https:/s3.amazonaws.com/examplebucket/exampletemplate.yml
```
### Expected result
Expect TemplateURL for S3 paths remains untouched. Example:
```
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: A test CFN template
Resources:
ExampleNestedStack:
Type: AWS::CloudFormation::Stack
Properties:
TemplateURL: https://s3.amazonaws.com/examplebucket/exampletemplate.yml
```
### Additional environment details (Ex: Windows, Mac, Amazon Linux etc)
1. OS: Amazon Linux 2 `Linux ip-10-255-156-170.ec2.internal 4.14.165-131.185.amzn2.x86_64 #1 SMP Wed Jan 15 14:19:56 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux`
2. `sam --version`: SAM CLI, version 0.43.0 Installed via https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-cli-install-linux.html instructions | 1.0 | S3 TemplateURLs transformed to local file path - <!-- Make sure we don't have an existing Issue that reports the bug you are seeing (both open and closed).
If you do find an existing Issue, re-open or add a comment to that Issue instead of creating a new one. -->
### Description
`sam build` transforms TemplateURL from S3 https link to local file path. The example provided is a basic CFN template to show the output but have seen this on full SAM templates with SAM resources as well.
### Steps to reproduce
Run `sam build` with the following example template:
```
---
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: A test CFN template
Resources:
ExampleNestedStack:
Type: AWS::CloudFormation::Stack
Properties:
TemplateURL: https://s3.amazonaws.com/examplebucket/exampletemplate.yml
```
### Observed result
```
$ sam build --debug
Telemetry endpoint configured to be https://aws-serverless-tools-telemetry.us-west-2.amazonaws.com/metrics
'build' command is called
No Parameters detected in the template
1 resources found in the template
Build Succeeded
Built Artifacts : .aws-sam/build
Built Template : .aws-sam/build/template.yaml
Commands you can use next
=========================
[*] Invoke Function: sam local invoke
[*] Deploy: sam deploy --guided
Sending Telemetry: {'metrics': [{'commandRun': {'awsProfileProvided': False, 'debugFlagProvided': True, 'region': '', 'commandName': 'sam build', 'duration': 141, 'exitReason': 'success', 'exitCode': 0, 'requestId': 'a878c824-f550-4eae-8528-56d1d0595c2d', 'installationId': '320f3374-6b5d-450f-9735-ce91d16a517f', 'sessionId': '787a2613-5ee8-4d71-9ba5-0520625027b6', 'executionEnvironment': 'CLI', 'pyversion': '3.7.6', 'samcliVersion': '0.43.0'}}]}
```
Note that template URL is transformed to `TemplateURL: ../../https:/s3.amazonaws.com/examplebucket/exampletemplate.yml` in the output template in `.aws-sam/build/template.yaml`
```
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: A test CFN template
Resources:
ExampleNestedStack:
Type: AWS::CloudFormation::Stack
Properties:
TemplateURL: ../../https:/s3.amazonaws.com/examplebucket/exampletemplate.yml
```
### Expected result
Expect TemplateURL for S3 paths remains untouched. Example:
```
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: A test CFN template
Resources:
ExampleNestedStack:
Type: AWS::CloudFormation::Stack
Properties:
TemplateURL: https://s3.amazonaws.com/examplebucket/exampletemplate.yml
```
### Additional environment details (Ex: Windows, Mac, Amazon Linux etc)
1. OS: Amazon Linux 2 `Linux ip-10-255-156-170.ec2.internal 4.14.165-131.185.amzn2.x86_64 #1 SMP Wed Jan 15 14:19:56 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux`
2. `sam --version`: SAM CLI, version 0.43.0 Installed via https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-cli-install-linux.html instructions | non_test | templateurls transformed to local file path make sure we don t have an existing issue that reports the bug you are seeing both open and closed if you do find an existing issue re open or add a comment to that issue instead of creating a new one description sam build transforms templateurl from https link to local file path the example provided is a basic cfn template to show the output but have seen this on full sam templates with sam resources as well steps to reproduce run sam build with the following example template awstemplateformatversion transform aws serverless description a test cfn template resources examplenestedstack type aws cloudformation stack properties templateurl observed result sam build debug telemetry endpoint configured to be build command is called no parameters detected in the template resources found in the template build succeeded built artifacts aws sam build built template aws sam build template yaml commands you can use next invoke function sam local invoke deploy sam deploy guided sending telemetry metrics note that template url is transformed to templateurl https amazonaws com examplebucket exampletemplate yml in the output template in aws sam build template yaml awstemplateformatversion transform aws serverless description a test cfn template resources examplenestedstack type aws cloudformation stack properties templateurl https amazonaws com examplebucket exampletemplate yml expected result expect templateurl for paths remains untouched example awstemplateformatversion transform aws serverless description a test cfn template resources examplenestedstack type aws cloudformation stack properties templateurl additional environment details ex windows mac amazon linux etc os amazon linux linux ip internal smp wed jan utc gnu linux sam version sam cli version installed via instructions | 0 |
684,086 | 23,406,468,624 | IssuesEvent | 2022-08-12 13:19:12 | inverse-inc/packetfence | https://api.github.com/repos/inverse-inc/packetfence | closed | PF12: sync issue during cluster sync | Type: Bug Priority: High Priority: Critical | ````
ERROR : Failed to sync file : /usr/local/pf/var/config_version . Config file /usr/local/pf/var/config_version doesn't exist at /usr/local/pf/lib/pf/api.pm line 717.
```` | 2.0 | PF12: sync issue during cluster sync - ````
ERROR : Failed to sync file : /usr/local/pf/var/config_version . Config file /usr/local/pf/var/config_version doesn't exist at /usr/local/pf/lib/pf/api.pm line 717.
```` | non_test | sync issue during cluster sync error failed to sync file usr local pf var config version config file usr local pf var config version doesn t exist at usr local pf lib pf api pm line | 0 |
197,921 | 6,966,059,399 | IssuesEvent | 2017-12-09 14:23:32 | FranklinDM/TGS | https://api.github.com/repos/FranklinDM/TGS | closed | Improve toolbar icons | Category: Enhancement Component: Themes Priority: Low | ## Description
Our toolbar icons at the moment have the not so smooth outline on the it when using a dark persona.
I also plan on removing some of the Mac OS toolbar images since the PM's Mac version uses the same toolbar images and styles (somewhat) with the Windows version. If you would want to help/contribute, feel free to comment down.
- [x] Remove Mac images and CSS styles
- [x] Properly align image regions
- [x] Improve shadow/shading of inverted toolbar images | 1.0 | Improve toolbar icons - ## Description
Our toolbar icons at the moment have the not so smooth outline on the it when using a dark persona.
I also plan on removing some of the Mac OS toolbar images since the PM's Mac version uses the same toolbar images and styles (somewhat) with the Windows version. If you would want to help/contribute, feel free to comment down.
- [x] Remove Mac images and CSS styles
- [x] Properly align image regions
- [x] Improve shadow/shading of inverted toolbar images | non_test | improve toolbar icons description our toolbar icons at the moment have the not so smooth outline on the it when using a dark persona i also plan on removing some of the mac os toolbar images since the pm s mac version uses the same toolbar images and styles somewhat with the windows version if you would want to help contribute feel free to comment down remove mac images and css styles properly align image regions improve shadow shading of inverted toolbar images | 0 |
388,886 | 11,494,261,144 | IssuesEvent | 2020-02-12 01:03:38 | cuappdev/pollo-android | https://api.github.com/repos/cuappdev/pollo-android | opened | Improve the directory structure | Priority: Medium Refactor | Much of the Kotlin and xml files are relatively unorganized (all residing in one folder). Let's clean this up and organize them (maybe by screen?).
**speak with other devs on the pod before doing this, as this could create some nasty merge conflicts** | 1.0 | Improve the directory structure - Much of the Kotlin and xml files are relatively unorganized (all residing in one folder). Let's clean this up and organize them (maybe by screen?).
**speak with other devs on the pod before doing this, as this could create some nasty merge conflicts** | non_test | improve the directory structure much of the kotlin and xml files are relatively unorganized all residing in one folder let s clean this up and organize them maybe by screen speak with other devs on the pod before doing this as this could create some nasty merge conflicts | 0 |
792,136 | 27,947,843,834 | IssuesEvent | 2023-03-24 05:47:14 | NetEase/arctic | https://api.github.com/repos/NetEase/arctic | closed | [Bug]: hive data sync to arctic error | type:bug priority:critical | ### What happened?
1. Synchronization of hive data to arctic occurs when hive data has not changed
2. Multiple triggers for hive sync to arctic at the same time may cause duplicate commits
### Affects Versions
0.4.0
### What engines are you seeing the problem on?
Core
### How to reproduce
Changing the arctic table's transient-time property, but not changing hive's transient_lastDdlTime, will trigger synchronization
### Relevant log output
_No response_
### Anything else
_No response_
### Code of Conduct
- [X] I agree to follow this project's Code of Conduct | 1.0 | [Bug]: hive data sync to arctic error - ### What happened?
1. Synchronization of hive data to arctic occurs when hive data has not changed
2. Multiple triggers for hive sync to arctic at the same time may cause duplicate commits
### Affects Versions
0.4.0
### What engines are you seeing the problem on?
Core
### How to reproduce
Changing the arctic table's transient-time property, but not changing hive's transient_lastDdlTime, will trigger synchronization
### Relevant log output
_No response_
### Anything else
_No response_
### Code of Conduct
- [X] I agree to follow this project's Code of Conduct | non_test | hive data sync to arctic error what happened synchronization of hive data to arctic occurs when hive data has not changed multiple triggers for hive sync to arctic at the same time may cause duplicate commits affects versions what engines are you seeing the problem on core how to reproduce changing the arctic table s transient time property but not changing hive s transient lastddltime will trigger synchronization relevant log output no response anything else no response code of conduct i agree to follow this project s code of conduct | 0 |
608,314 | 18,835,719,364 | IssuesEvent | 2021-11-11 00:28:40 | OfficeMomsandDads/scheduler | https://api.github.com/repos/OfficeMomsandDads/scheduler | reopened | Add volunteer status to UI | enhancement medium Priority 2 | User Story:
As an admin/volunteer coordinator, I need to indicate whether volunteers are pending, active, or inactive so that I can store valuable information in the system but shift requests are only delivered to active volunteers.
Background:
The ideal time to set up a user profile is at the volunteer training. However, we do not want volunteers to receive shift notifications until their background check has cleared. Therefore, we need a "pending" state so all details can be set up under the guidance of the Volunteer Coordinator at training. Once the background check clears, the VC can change the volunteer's status from "pending" to "active."
If a volunteer decides to no longer serve OMD, we need to change the volunteer's status to "inactive" so we have visibility into volunteer retention over time.
Acceptance Criteria:
- [ ] A social worker/volunteer coordinator/admin can select a volunteer status from a multiselect menu: "active," "inactive," or "pending."
- [ ] Request logic works as follows:
- "Active" volunteers receive all eligible requests, as determined by their personal scheduler
- "Inactive" and "Pending" volunteers receive no requests | 1.0 | Add volunteer status to UI - User Story:
As an admin/volunteer coordinator, I need to indicate whether volunteers are pending, active, or inactive so that I can store valuable information in the system but shift requests are only delivered to active volunteers.
Background:
The ideal time to set up a user profile is at the volunteer training. However, we do not want volunteers to receive shift notifications until their background check has cleared. Therefore, we need a "pending" state so all details can be set up under the guidance of the Volunteer Coordinator at training. Once the background check clears, the VC can change the volunteer's status from "pending" to "active."
If a volunteer decides to no longer serve OMD, we need to change the volunteer's status to "inactive" so we have visibility into volunteer retention over time.
Acceptance Criteria:
- [ ] A social worker/volunteer coordinator/admin can select a volunteer status from a multiselect menu: "active," "inactive," or "pending."
- [ ] Request logic works as follows:
- "Active" volunteers receive all eligible requests, as determined by their personal scheduler
- "Inactive" and "Pending" volunteers receive no requests | non_test | add volunteer status to ui user story as an admin volunteer coordinator i need to indicate whether volunteers are pending active or inactive so that i can store valuable information in the system but shift requests are only delivered to active volunteers background the ideal time to set up a user profile is at the volunteer training however we do not want volunteers to receive shift notifications until their background check has cleared therefore we need a pending state so all details can be set up under the guidance of the volunteer coordinator at training once the background check clears the vc can change the volunteer s status from pending to active if a volunteer decides to no longer serve omd we need to change the volunteer s status to inactive so we have visibility into volunteer retention over time acceptance criteria a social worker volunteer coordinator admin can select a volunteer status from a multiselect menu active inactive or pending request logic works as follows active volunteers receive all eligible requests as determined by their personal scheduler inactive and pending volunteers receive no requests | 0 |
16,962 | 12,152,163,455 | IssuesEvent | 2020-04-24 21:33:27 | BCDevOps/developer-experience | https://api.github.com/repos/BCDevOps/developer-experience | closed | Legend for this board | Infrastructure | https://trello.com/c/pLmU3RgN/17-legend-for-this-board
We may want a legend column to help team members navigate the board and associated labels. | 1.0 | Legend for this board - https://trello.com/c/pLmU3RgN/17-legend-for-this-board
We may want a legend column to help team members navigate the board and associated labels. | non_test | legend for this board we may want a legend column to help team members navigate the board and associated labels | 0 |
53,310 | 22,719,172,671 | IssuesEvent | 2022-07-06 06:38:44 | jhipster/jhipster-lite | https://api.github.com/repos/jhipster/jhipster-lite | closed | Convert Consul to module | server: spring boot area: refactoring theme: microservices area: good first issue | Convert consul (src/main/java/tech/jhipster/lite/generator/server/springboot/springcloud/consul) to module (this is a good first issue) | 1.0 | Convert Consul to module - Convert consul (src/main/java/tech/jhipster/lite/generator/server/springboot/springcloud/consul) to module (this is a good first issue) | non_test | convert consul to module convert consul src main java tech jhipster lite generator server springboot springcloud consul to module this is a good first issue | 0 |
260,063 | 19,655,945,604 | IssuesEvent | 2022-01-10 12:31:40 | ioos/ioos_code_lab | https://api.github.com/repos/ioos/ioos_code_lab | closed | Add a date to each notebook | documentation enhancement | The new JupyterBook-based IOOS Code Lab looks great!
But one thing that I suggest should be added to each notebook (which was present in the previous IOOS Code Gallery, I think) is a date, making it clear to users when the notebook was developed. That's a useful piece of information to help decide if the code used in the notebook might be old and the packages used may have newer, better features.
Currently, a sharp user will notice that the date is in the notebook file name, in the url. But it'd be better to make that information less subtle. It could go right below the title or at the end next to the Author line. | 1.0 | Add a date to each notebook - The new JupyterBook-based IOOS Code Lab looks great!
But one thing that I suggest should be added to each notebook (which was present in the previous IOOS Code Gallery, I think) is a date, making it clear to users when the notebook was developed. That's a useful piece of information to help decide if the code used in the notebook might be old and the packages used may have newer, better features.
Currently, a sharp user will notice that the date is in the notebook file name, in the url. But it'd be better to make that information less subtle. It could go right below the title or at the end next to the Author line. | non_test | add a date to each notebook the new jupyterbook based ioos code lab looks great but one thing that i suggest should be added to each notebook which was present in the previous ioos code gallery i think is a date making it clear to users when the notebook was developed that s a useful piece of information to help decide if the code used in the notebook might be old and the packages used may have newer better features currently a sharp user will notice that the date is in the notebook file name in the url but it d be better to make that information less subtle it could go right below the title or at the end next to the author line | 0 |
42,407 | 9,213,075,121 | IssuesEvent | 2019-03-10 08:26:57 | 2sic/2sxc | https://api.github.com/repos/2sic/2sxc | closed | Update Razor Snippets to prefer Edit.TagToolbar | part:code-editor part:toolbar | **I'm submitting a ...** <!-- remove lines which don't apply -->
[x] feature request
**...about** <!-- remove lines which don't apply -->
[x] Razor templating
| 1.0 | Update Razor Snippets to prefer Edit.TagToolbar - **I'm submitting a ...** <!-- remove lines which don't apply -->
[x] feature request
**...about** <!-- remove lines which don't apply -->
[x] Razor templating
| non_test | update razor snippets to prefer edit tagtoolbar i m submitting a feature request about razor templating | 0 |
142,869 | 11,497,982,881 | IssuesEvent | 2020-02-12 11:02:53 | bookingcom/shipper | https://api.github.com/repos/bookingcom/shipper | closed | Replace microk8s with kind for running end-to-end tests | testing | microk8s tends to sneak in breaking changes for the same version, and that's caused a lot of miscellaneous heartbreak for us over time (f18b24d7414e66995e8b1805374ffa86681a9f35 and 46d74feb7a215526ad4b98218745b8ffca076679, for example, on top of a lot of stuff during development). It also doesn't allow us to run several separate clusters in the same environment, which would be useful to us as shipper is a multi-cluster piece of software.
Do note that without microk8s we'll lose its built-in image registry, so addressing #197 is a must before we can do this move. | 1.0 | Replace microk8s with kind for running end-to-end tests - microk8s tends to sneak in breaking changes for the same version, and that's caused a lot of miscellaneous heartbreak for us over time (f18b24d7414e66995e8b1805374ffa86681a9f35 and 46d74feb7a215526ad4b98218745b8ffca076679, for example, on top of a lot of stuff during development). It also doesn't allow us to run several separate clusters in the same environment, which would be useful to us as shipper is a multi-cluster piece of software.
Do note that without microk8s we'll lose its built-in image registry, so addressing #197 is a must before we can do this move. | test | replace with kind for running end to end tests tends to sneak in breaking changes for the same version and that s caused a lot of miscellaneous heartbreak for us over time and for example on top of a lot of stuff during development it also doesn t allow us to run several separate clusters in the same environment which would be useful to us as shipper is a multi cluster piece of software do note that without we ll lose its built in image registry so addressing is a must before we can do this move | 1 |
106,611 | 13,326,574,348 | IssuesEvent | 2020-08-27 11:52:27 | codebuddies/frontend | https://api.github.com/repos/codebuddies/frontend | closed | Refactor styles to be consistent | design javascript stale | Since this project is intended to use Material ui with styled components, let’s also replace the css files with styled components. | 1.0 | Refactor styles to be consistent - Since this project is intended to use Material ui with styled components, let’s also replace the css files with styled components. | non_test | refactor styles to be consistent since this project is intended to use material ui with styled components let’s also replace the css files with styled components | 0 |
164,429 | 12,805,965,964 | IssuesEvent | 2020-07-03 08:34:15 | fairgenomes/information | https://api.github.com/repos/fairgenomes/information | closed | Data quality in terms of compulsory and optional | Testcase2:RUMC | Can we assign a level of quality based on optional information
Star Rating | 1.0 | Data quality in terms of compulsory and optional - Can we assign a level of quality based on optional information
Star Rating | test | data quality in terms of compulsory and optional can we assign a level of quality based on optional information star rating | 1 |
77,294 | 3,506,338,545 | IssuesEvent | 2016-01-08 05:53:14 | antang/NewCapstoneProject | https://api.github.com/repos/antang/NewCapstoneProject | closed | Don't catch space characters in username field | Bug Low priority | Don't catch space characters in username field
Related Test case:
TC.ADD.ACCOUNT.04 | 1.0 | Don't catch space characters in username field - Don't catch space characters in username field
Related Test case:
TC.ADD.ACCOUNT.04 | non_test | don t catch space characters in username field don t catch space characters in username field related test case tc add account | 0 |
17,156 | 5,342,901,651 | IssuesEvent | 2017-02-17 09:43:23 | TypeCobolTeam/TypeCobol | https://api.github.com/repos/TypeCobolTeam/TypeCobol | closed | Empty call to a procedure must be generated without `USING` | Codegen Functions To Test | **CHILD OF 336**
An empty call to a procedure must be generated without `USING`.
Implementation note: Class ProcedureStyleCall generate the code. | 1.0 | Empty call to a procedure must be generated without `USING` - **CHILD OF 336**
An empty call to a procedure must be generated without `USING`.
Implementation note: Class ProcedureStyleCall generate the code. | non_test | empty call to a procedure must be generated without using child of an empty call to a procedure must be generated without using implementation note class procedurestylecall generate the code | 0 |
780,813 | 27,409,332,930 | IssuesEvent | 2023-03-01 09:27:51 | sygmaprotocol/sygma-sdk | https://api.github.com/repos/sygmaprotocol/sygma-sdk | closed | Add substrate deposit data construction logic | Priority: P2 Type: Feature | <!--- Provide a general summary of the issue in the Title above -->
Substrate chain might have different deposit data, so SDK needs to construct it accordingly
## Implementation details
<!-- Enter description of implementation that may help dev team -->
Phala Sygma pallet requires `MultiLocation` data, and this data should be embedded into the depositData
some useful link:
https://wiki.phala.network/en-us/general/subbridge/technical-details/#multiasset-and-multilocation
The first time it was introduced from XCM protocol: https://github.com/paritytech/xcm-format#7-universal-consensus-location-identifiers
Gavin Wood's explanation: https://medium.com/polkadot-network/xcm-the-cross-consensus-message-format-3b77b1373392#1330
The source code declaration: https://github.com/paritytech/polkadot/blob/master/xcm/src/v1/multilocation.rs#L51
## Testing details
<!-- Enter description of special test-cases-->
Unit test
## Acceptance Criteria
<!-- Enter the conditions of satisfaction here. That is, the conditions that will satisfy the user/persona that the goal/benefit/value has been achieved -->
SDK consumes necessary params and construct a depositData in bytes that embedded `MultiLocation` data | 1.0 | Add substrate deposit data construction logic - <!--- Provide a general summary of the issue in the Title above -->
Substrate chain might have different deposit data, so SDK needs to construct it accordingly
## Implementation details
<!-- Enter description of implementation that may help dev team -->
Phala Sygma pallet requires `MultiLocation` data, and this data should be embedded into the depositData
some useful link:
https://wiki.phala.network/en-us/general/subbridge/technical-details/#multiasset-and-multilocation
The first time it was introduced from XCM protocol: https://github.com/paritytech/xcm-format#7-universal-consensus-location-identifiers
Gavin Wood's explanation: https://medium.com/polkadot-network/xcm-the-cross-consensus-message-format-3b77b1373392#1330
The source code declaration: https://github.com/paritytech/polkadot/blob/master/xcm/src/v1/multilocation.rs#L51
## Testing details
<!-- Enter description of special test-cases-->
Unit test
## Acceptance Criteria
<!-- Enter the conditions of satisfaction here. That is, the conditions that will satisfy the user/persona that the goal/benefit/value has been achieved -->
SDK consumes necessary params and construct a depositData in bytes that embedded `MultiLocation` data | non_test | add substrate deposit data construction logic substrate chain might have different deposit data so sdk needs to construct it accordingly implementation details phala sygma pallet requires multilocation data and this data should be embedded into the depositdata some useful link the first time it was introduced from xcm protocol gavin wood s explanation the source code declaration testing details unit test acceptance criteria sdk consumes necessary params and construct a depositdata in bytes that embedded multilocation data | 0 |
101,166 | 16,493,349,445 | IssuesEvent | 2021-05-25 07:37:47 | benchmarkdebricked/angular | https://api.github.com/repos/benchmarkdebricked/angular | opened | CVE-2020-28481 (Medium) detected in socket.io-1.7.3.tgz | security vulnerability | ## CVE-2020-28481 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>socket.io-1.7.3.tgz</b></p></summary>
<p>node.js realtime framework server</p>
<p>Library home page: <a href="https://registry.npmjs.org/socket.io/-/socket.io-1.7.3.tgz">https://registry.npmjs.org/socket.io/-/socket.io-1.7.3.tgz</a></p>
<p>Path to dependency file: angular/aio/package.json</p>
<p>Path to vulnerable library: angular/aio/node_modules/socket.io</p>
<p>
Dependency Hierarchy:
- karma-1.7.1.tgz (Root Library)
- :x: **socket.io-1.7.3.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/benchmarkdebricked/angular/commit/69ad0ced6b2b3ebe8f9d4d3b9dda14051592bbdf">69ad0ced6b2b3ebe8f9d4d3b9dda14051592bbdf</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>
The package socket.io before 2.4.0 are vulnerable to Insecure Defaults due to CORS Misconfiguration. All domains are whitelisted by default.
<p>Publish Date: 2021-01-19
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-28481>CVE-2020-28481</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>4.3</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: Low
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28481">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28481</a></p>
<p>Release Date: 2021-01-19</p>
<p>Fix Resolution: 2.4.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 | CVE-2020-28481 (Medium) detected in socket.io-1.7.3.tgz - ## CVE-2020-28481 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>socket.io-1.7.3.tgz</b></p></summary>
<p>node.js realtime framework server</p>
<p>Library home page: <a href="https://registry.npmjs.org/socket.io/-/socket.io-1.7.3.tgz">https://registry.npmjs.org/socket.io/-/socket.io-1.7.3.tgz</a></p>
<p>Path to dependency file: angular/aio/package.json</p>
<p>Path to vulnerable library: angular/aio/node_modules/socket.io</p>
<p>
Dependency Hierarchy:
- karma-1.7.1.tgz (Root Library)
- :x: **socket.io-1.7.3.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/benchmarkdebricked/angular/commit/69ad0ced6b2b3ebe8f9d4d3b9dda14051592bbdf">69ad0ced6b2b3ebe8f9d4d3b9dda14051592bbdf</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>
The package socket.io before 2.4.0 are vulnerable to Insecure Defaults due to CORS Misconfiguration. All domains are whitelisted by default.
<p>Publish Date: 2021-01-19
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-28481>CVE-2020-28481</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>4.3</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: Low
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28481">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28481</a></p>
<p>Release Date: 2021-01-19</p>
<p>Fix Resolution: 2.4.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_test | cve medium detected in socket io tgz cve medium severity vulnerability vulnerable library socket io tgz node js realtime framework server library home page a href path to dependency file angular aio package json path to vulnerable library angular aio node modules socket io dependency hierarchy karma tgz root library x socket io tgz vulnerable library found in head commit a href vulnerability details the package socket io before are vulnerable to insecure defaults due to cors misconfiguration all domains are whitelisted by default 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 low integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with whitesource | 0 |
273,873 | 23,790,704,134 | IssuesEvent | 2022-09-02 14:17:58 | jajm/koha-staff-interface-redesign | https://api.github.com/repos/jajm/koha-staff-interface-redesign | closed | Left padding of sidebar doesn't match proposals | type: bug status: needs testing | In the screenshots on the proposal presentation the sidebar menu's were not left padded at all.. I think this was a positive change, but the padding appears to have crept back in somehow.

| 1.0 | Left padding of sidebar doesn't match proposals - In the screenshots on the proposal presentation the sidebar menu's were not left padded at all.. I think this was a positive change, but the padding appears to have crept back in somehow.

| test | left padding of sidebar doesn t match proposals in the screenshots on the proposal presentation the sidebar menu s were not left padded at all i think this was a positive change but the padding appears to have crept back in somehow | 1 |
243,648 | 20,512,687,376 | IssuesEvent | 2022-03-01 08:35:11 | cockroachdb/cockroach | https://api.github.com/repos/cockroachdb/cockroach | opened | kv/kvserver/liveness: TestNodeLivenessAppearsAtStart failed | C-test-failure O-robot branch-master | kv/kvserver/liveness.TestNodeLivenessAppearsAtStart [failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=4480690&tab=buildLog) with [artifacts](https://teamcity.cockroachdb.com/viewLog.html?buildId=4480690&tab=artifacts#/) on master @ [bf13dc6061ab080c8c4306ebabb5065331877508](https://github.com/cockroachdb/cockroach/commits/bf13dc6061ab080c8c4306ebabb5065331877508):
```
=== RUN TestNodeLivenessAppearsAtStart
test_log_scope.go:79: test logs captured to: /artifacts/tmp/_tmp/ffaa8c3d4fd0bc4081abd07ee31dfb0a/logTestNodeLivenessAppearsAtStart1279692938
test_log_scope.go:80: use -show-logs to present logs inline
```
<details><summary>Help</summary>
<p>
See also: [How To Investigate a Go Test Failure \(internal\)](https://cockroachlabs.atlassian.net/l/c/HgfXfJgM)
Parameters in this failure:
- TAGS=bazel,gss
</p>
</details>
/cc @cockroachdb/kv
<sub>
[This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*TestNodeLivenessAppearsAtStart.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)
</sub>
| 1.0 | kv/kvserver/liveness: TestNodeLivenessAppearsAtStart failed - kv/kvserver/liveness.TestNodeLivenessAppearsAtStart [failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=4480690&tab=buildLog) with [artifacts](https://teamcity.cockroachdb.com/viewLog.html?buildId=4480690&tab=artifacts#/) on master @ [bf13dc6061ab080c8c4306ebabb5065331877508](https://github.com/cockroachdb/cockroach/commits/bf13dc6061ab080c8c4306ebabb5065331877508):
```
=== RUN TestNodeLivenessAppearsAtStart
test_log_scope.go:79: test logs captured to: /artifacts/tmp/_tmp/ffaa8c3d4fd0bc4081abd07ee31dfb0a/logTestNodeLivenessAppearsAtStart1279692938
test_log_scope.go:80: use -show-logs to present logs inline
```
<details><summary>Help</summary>
<p>
See also: [How To Investigate a Go Test Failure \(internal\)](https://cockroachlabs.atlassian.net/l/c/HgfXfJgM)
Parameters in this failure:
- TAGS=bazel,gss
</p>
</details>
/cc @cockroachdb/kv
<sub>
[This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*TestNodeLivenessAppearsAtStart.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)
</sub>
| test | kv kvserver liveness testnodelivenessappearsatstart failed kv kvserver liveness testnodelivenessappearsatstart with on master run testnodelivenessappearsatstart test log scope go test logs captured to artifacts tmp tmp test log scope go use show logs to present logs inline help see also parameters in this failure tags bazel gss cc cockroachdb kv | 1 |
13,872 | 3,783,862,314 | IssuesEvent | 2016-03-19 12:18:15 | osiam/osiam | https://api.github.com/repos/osiam/osiam | closed | Adjust migration notes after merge | documentation | We have to describe the merge and how to migrate from OSIAM 2.x in the respective documents. | 1.0 | Adjust migration notes after merge - We have to describe the merge and how to migrate from OSIAM 2.x in the respective documents. | non_test | adjust migration notes after merge we have to describe the merge and how to migrate from osiam x in the respective documents | 0 |
335 | 2,495,657,654 | IssuesEvent | 2015-01-06 13:34:55 | olga-jane/prizm | https://api.github.com/repos/olga-jane/prizm | closed | Reports for inspection and construction | Coding Construction Incoming inspection MEDIUM priority | Please create report template, repository/viewmodel, other necessary classes and basic functionality for Inspection and Construction reports.
There is no need to code "tracing" at this time. | 1.0 | Reports for inspection and construction - Please create report template, repository/viewmodel, other necessary classes and basic functionality for Inspection and Construction reports.
There is no need to code "tracing" at this time. | non_test | reports for inspection and construction please create report template repository viewmodel other necessary classes and basic functionality for inspection and construction reports there is no need to code tracing at this time | 0 |
134,340 | 10,894,930,181 | IssuesEvent | 2019-11-19 09:40:56 | mozilla/iris_firefox | https://api.github.com/repos/mozilla/iris_firefox | opened | "Search using Google" text not appearing on hovering search bar - Iris issue | regression test case | After modifying "browser.search.widget.inNavBar" as true and navigating to new tab -> search (using "CTRL+K" command) when automation script hovering mouse on search bar "Search using Google" text should appear, but it's not appearing. I have tried this with hover and Mouse().move commands, "Search using Google" text is not appearing. Even I have tried manually in a browser that was launched by Iris, but the next never appeared.
It's working absolutely fine in the Firefox browser and only creating an issue when the browser is being launched by Iris. Hence it looks like Iris is doing something incorrectly not Firefox.
When hovering on manual browser:

When hovering on browser launched by Iris:

Test case "keyboard_shortcuts_work_in_search_bar.py" ( test_case_id="4278", test_suite_id="83") is failing due to this issue.
| 1.0 | "Search using Google" text not appearing on hovering search bar - Iris issue - After modifying "browser.search.widget.inNavBar" as true and navigating to new tab -> search (using "CTRL+K" command) when automation script hovering mouse on search bar "Search using Google" text should appear, but it's not appearing. I have tried this with hover and Mouse().move commands, "Search using Google" text is not appearing. Even I have tried manually in a browser that was launched by Iris, but the next never appeared.
It's working absolutely fine in the Firefox browser and only creating an issue when the browser is being launched by Iris. Hence it looks like Iris is doing something incorrectly not Firefox.
When hovering on manual browser:

When hovering on browser launched by Iris:

Test case "keyboard_shortcuts_work_in_search_bar.py" ( test_case_id="4278", test_suite_id="83") is failing due to this issue.
| test | search using google text not appearing on hovering search bar iris issue after modifying browser search widget innavbar as true and navigating to new tab search using ctrl k command when automation script hovering mouse on search bar search using google text should appear but it s not appearing i have tried this with hover and mouse move commands search using google text is not appearing even i have tried manually in a browser that was launched by iris but the next never appeared it s working absolutely fine in the firefox browser and only creating an issue when the browser is being launched by iris hence it looks like iris is doing something incorrectly not firefox when hovering on manual browser when hovering on browser launched by iris test case keyboard shortcuts work in search bar py test case id test suite id is failing due to this issue | 1 |
427,050 | 12,392,153,262 | IssuesEvent | 2020-05-20 13:36:36 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | www.google.com - site is not usable | browser-focus-geckoview engine-gecko priority-critical | <!-- @browser: chrome -->
<!-- @ua_header: Mozilla/5.0 (Android 8.0.0; Mobile; rv:76.0) Gecko/76.0 Firefox/76.0 -->
<!-- @reported_with: -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/53139 -->
<!-- @extra_labels: browser-focus-geckoview -->
**URL**: https://www.google.com/search?q=sworkout.club/en/uncategorized/at-home-workouts-for-beginners/
**Browser / Version**: chrome
**Operating System**: Android 8.0.0
**Tested Another Browser**: Yes Chrome
**Problem type**: Site is not usable
**Description**: Browser unsupported
**Steps to Reproduce**:
Website is showing even blocked
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
Submitted in the name of `@KrisChrome`
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | www.google.com - site is not usable - <!-- @browser: chrome -->
<!-- @ua_header: Mozilla/5.0 (Android 8.0.0; Mobile; rv:76.0) Gecko/76.0 Firefox/76.0 -->
<!-- @reported_with: -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/53139 -->
<!-- @extra_labels: browser-focus-geckoview -->
**URL**: https://www.google.com/search?q=sworkout.club/en/uncategorized/at-home-workouts-for-beginners/
**Browser / Version**: chrome
**Operating System**: Android 8.0.0
**Tested Another Browser**: Yes Chrome
**Problem type**: Site is not usable
**Description**: Browser unsupported
**Steps to Reproduce**:
Website is showing even blocked
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
Submitted in the name of `@KrisChrome`
_From [webcompat.com](https://webcompat.com/) with ❤️_ | non_test | site is not usable url browser version chrome operating system android tested another browser yes chrome problem type site is not usable description browser unsupported steps to reproduce website is showing even blocked browser configuration none submitted in the name of krischrome from with ❤️ | 0 |
128,764 | 12,391,075,807 | IssuesEvent | 2020-05-20 11:51:39 | jhipster/generator-jhipster | https://api.github.com/repos/jhipster/generator-jhipster | closed | Can I contribute my JHipster tutorial to the web site? | area: documentation:books: | ##### **Overview of the feature request**
Last year, I published a three-part tutorial on JHipster on my blog:
- [Part 1](https://betterprojectsfaster.com/learn/tutorial-jhipster-docker-01/) explained how it saved my project. It's a motivation for why you should use JHipster.
- [Part 2](https://betterprojectsfaster.com/learn/tutorial-jhipster-docker-02/) explains how you install JHipster and generate your first application with it. The JDL for the application (a simple online shop) is included. Then it takes you through all the screens of the JHipster application.
- [Part 3](https://betterprojectsfaster.com/learn/tutorial-jhipster-docker-03/) first explains how to set up IntelliJ or Eclipse and then import the project into these two IDEs.
So is there a way that some of that content could become part of the JHipster web site?
##### **Motivation for or Use Case**
Here's the value that I think my tutorials add:
- [Part 1](https://betterprojectsfaster.com/learn/tutorial-jhipster-docker-01/) gives motivation for using JHipster from a different perspective than the official web page. First of all, I wrap it int the story of my first JHipster project. I also point out three problems that I believe are common for Java developers (see below) and then show how JHipster solves them. I also list reasons why JHipster may not be right for you and how you can use JHipster "piecemeal".
- Are you or your team struggling with Angular, React, NoSQL, or microservices?
- Uncertainty about how DevOps, containers, and the cloud impact Java?
- Can't find the results-oriented online training for these new technologies?
- [Part 2](https://betterprojectsfaster.com/learn/tutorial-jhipster-docker-02/) has a bit more detail on installing JHipster and includes a walkthrough of all the admin screens. I think these aren't well documented on the JHipster web site.
- [Part 3](https://betterprojectsfaster.com/learn/tutorial-jhipster-docker-03/) provides detailed instructions on how to set up IntelliJ or Eclipse and which settings to tweak to import it. It then walks through the build files and the source. It has more than 100 screenshots.
| 1.0 | Can I contribute my JHipster tutorial to the web site? - ##### **Overview of the feature request**
Last year, I published a three-part tutorial on JHipster on my blog:
- [Part 1](https://betterprojectsfaster.com/learn/tutorial-jhipster-docker-01/) explained how it saved my project. It's a motivation for why you should use JHipster.
- [Part 2](https://betterprojectsfaster.com/learn/tutorial-jhipster-docker-02/) explains how you install JHipster and generate your first application with it. The JDL for the application (a simple online shop) is included. Then it takes you through all the screens of the JHipster application.
- [Part 3](https://betterprojectsfaster.com/learn/tutorial-jhipster-docker-03/) first explains how to set up IntelliJ or Eclipse and then import the project into these two IDEs.
So is there a way that some of that content could become part of the JHipster web site?
##### **Motivation for or Use Case**
Here's the value that I think my tutorials add:
- [Part 1](https://betterprojectsfaster.com/learn/tutorial-jhipster-docker-01/) gives motivation for using JHipster from a different perspective than the official web page. First of all, I wrap it int the story of my first JHipster project. I also point out three problems that I believe are common for Java developers (see below) and then show how JHipster solves them. I also list reasons why JHipster may not be right for you and how you can use JHipster "piecemeal".
- Are you or your team struggling with Angular, React, NoSQL, or microservices?
- Uncertainty about how DevOps, containers, and the cloud impact Java?
- Can't find the results-oriented online training for these new technologies?
- [Part 2](https://betterprojectsfaster.com/learn/tutorial-jhipster-docker-02/) has a bit more detail on installing JHipster and includes a walkthrough of all the admin screens. I think these aren't well documented on the JHipster web site.
- [Part 3](https://betterprojectsfaster.com/learn/tutorial-jhipster-docker-03/) provides detailed instructions on how to set up IntelliJ or Eclipse and which settings to tweak to import it. It then walks through the build files and the source. It has more than 100 screenshots.
| non_test | can i contribute my jhipster tutorial to the web site overview of the feature request last year i published a three part tutorial on jhipster on my blog explained how it saved my project it s a motivation for why you should use jhipster explains how you install jhipster and generate your first application with it the jdl for the application a simple online shop is included then it takes you through all the screens of the jhipster application first explains how to set up intellij or eclipse and then import the project into these two ides so is there a way that some of that content could become part of the jhipster web site motivation for or use case here s the value that i think my tutorials add gives motivation for using jhipster from a different perspective than the official web page first of all i wrap it int the story of my first jhipster project i also point out three problems that i believe are common for java developers see below and then show how jhipster solves them i also list reasons why jhipster may not be right for you and how you can use jhipster piecemeal are you or your team struggling with angular react nosql or microservices uncertainty about how devops containers and the cloud impact java can t find the results oriented online training for these new technologies has a bit more detail on installing jhipster and includes a walkthrough of all the admin screens i think these aren t well documented on the jhipster web site provides detailed instructions on how to set up intellij or eclipse and which settings to tweak to import it it then walks through the build files and the source it has more than screenshots | 0 |
200,594 | 22,820,320,419 | IssuesEvent | 2022-07-12 01:07:56 | ebubeaso/IT-coding-work | https://api.github.com/repos/ebubeaso/IT-coding-work | opened | CVE-2022-31129 (High) detected in moment-2.29.1.tgz | security vulnerability | ## CVE-2022-31129 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>moment-2.29.1.tgz</b></p></summary>
<p>Parse, validate, manipulate, and display dates</p>
<p>Library home page: <a href="https://registry.npmjs.org/moment/-/moment-2.29.1.tgz">https://registry.npmjs.org/moment/-/moment-2.29.1.tgz</a></p>
<p>Path to dependency file: /nodejs-work/Usage/backend/package.json</p>
<p>Path to vulnerable library: /nodejs-work/Usage/backend/node_modules/moment/package.json</p>
<p>
Dependency Hierarchy:
- mariadb-2.5.3.tgz (Root Library)
- moment-timezone-0.5.33.tgz
- :x: **moment-2.29.1.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/ebubeaso/IT-coding-work/commit/6d107a6688bc22c52eeb62e12abbb00206f7105f">6d107a6688bc22c52eeb62e12abbb00206f7105f</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>
moment is a JavaScript date library for parsing, validating, manipulating, and formatting dates. Affected versions of moment were found to use an inefficient parsing algorithm. Specifically using string-to-date parsing in moment (more specifically rfc2822 parsing, which is tried by default) has quadratic (N^2) complexity on specific inputs. Users may notice a noticeable slowdown is observed with inputs above 10k characters. Users who pass user-provided strings without sanity length checks to moment constructor are vulnerable to (Re)DoS attacks. The problem is patched in 2.29.4, the patch can be applied to all affected versions with minimal tweaking. Users are advised to upgrade. Users unable to upgrade should consider limiting date lengths accepted from user input.
<p>Publish Date: 2022-07-06
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-31129>CVE-2022-31129</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://github.com/moment/moment/security/advisories/GHSA-wc69-rhjr-hc9g">https://github.com/moment/moment/security/advisories/GHSA-wc69-rhjr-hc9g</a></p>
<p>Release Date: 2022-07-06</p>
<p>Fix Resolution: moment - 2.29.4</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2022-31129 (High) detected in moment-2.29.1.tgz - ## CVE-2022-31129 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>moment-2.29.1.tgz</b></p></summary>
<p>Parse, validate, manipulate, and display dates</p>
<p>Library home page: <a href="https://registry.npmjs.org/moment/-/moment-2.29.1.tgz">https://registry.npmjs.org/moment/-/moment-2.29.1.tgz</a></p>
<p>Path to dependency file: /nodejs-work/Usage/backend/package.json</p>
<p>Path to vulnerable library: /nodejs-work/Usage/backend/node_modules/moment/package.json</p>
<p>
Dependency Hierarchy:
- mariadb-2.5.3.tgz (Root Library)
- moment-timezone-0.5.33.tgz
- :x: **moment-2.29.1.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/ebubeaso/IT-coding-work/commit/6d107a6688bc22c52eeb62e12abbb00206f7105f">6d107a6688bc22c52eeb62e12abbb00206f7105f</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>
moment is a JavaScript date library for parsing, validating, manipulating, and formatting dates. Affected versions of moment were found to use an inefficient parsing algorithm. Specifically using string-to-date parsing in moment (more specifically rfc2822 parsing, which is tried by default) has quadratic (N^2) complexity on specific inputs. Users may notice a noticeable slowdown is observed with inputs above 10k characters. Users who pass user-provided strings without sanity length checks to moment constructor are vulnerable to (Re)DoS attacks. The problem is patched in 2.29.4, the patch can be applied to all affected versions with minimal tweaking. Users are advised to upgrade. Users unable to upgrade should consider limiting date lengths accepted from user input.
<p>Publish Date: 2022-07-06
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-31129>CVE-2022-31129</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://github.com/moment/moment/security/advisories/GHSA-wc69-rhjr-hc9g">https://github.com/moment/moment/security/advisories/GHSA-wc69-rhjr-hc9g</a></p>
<p>Release Date: 2022-07-06</p>
<p>Fix Resolution: moment - 2.29.4</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_test | cve high detected in moment tgz cve high severity vulnerability vulnerable library moment tgz parse validate manipulate and display dates library home page a href path to dependency file nodejs work usage backend package json path to vulnerable library nodejs work usage backend node modules moment package json dependency hierarchy mariadb tgz root library moment timezone tgz x moment tgz vulnerable library found in head commit a href found in base branch master vulnerability details moment is a javascript date library for parsing validating manipulating and formatting dates affected versions of moment were found to use an inefficient parsing algorithm specifically using string to date parsing in moment more specifically parsing which is tried by default has quadratic n complexity on specific inputs users may notice a noticeable slowdown is observed with inputs above characters users who pass user provided strings without sanity length checks to moment constructor are vulnerable to re dos attacks the problem is patched in the patch can be applied to all affected versions with minimal tweaking users are advised to upgrade users unable to upgrade should consider limiting date lengths accepted from user input 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 moment step up your open source security game with mend | 0 |
444,392 | 31,047,178,631 | IssuesEvent | 2023-08-11 01:36:03 | codestates-seb/seb45_pre_016 | https://api.github.com/repos/codestates-seb/seb45_pre_016 | opened | [FE] doc - 화면 정의서 작성 및 user flow 설계 | documentation [FE]현아 [FE]인승 [FE]선혜 FrontEnd | ### 📝 issue 설명
---
프로젝트 시작 전 client 폴더 초기 세팅을 진행합니다.
### ✅ 할 일 체크
---
- [ ] 화면 정의서 작성
- [ ] user flow 설계
🕰️ 예상 작업 시간
---
2H | 1.0 | [FE] doc - 화면 정의서 작성 및 user flow 설계 - ### 📝 issue 설명
---
프로젝트 시작 전 client 폴더 초기 세팅을 진행합니다.
### ✅ 할 일 체크
---
- [ ] 화면 정의서 작성
- [ ] user flow 설계
🕰️ 예상 작업 시간
---
2H | non_test | doc 화면 정의서 작성 및 user flow 설계 📝 issue 설명 프로젝트 시작 전 client 폴더 초기 세팅을 진행합니다 ✅ 할 일 체크 화면 정의서 작성 user flow 설계 🕰️ 예상 작업 시간 | 0 |
230,841 | 18,719,026,243 | IssuesEvent | 2021-11-03 09:38:08 | mennaelkashef/eShop | https://api.github.com/repos/mennaelkashef/eShop | opened | Ahmedhatemsayed@gmail.com | Hello! RULE-GOT-APPLIED DOES-NOT-CONTAIN-STRING Rule-works-on-convert-to-bug test instabug | # :clipboard: Bug Details
>Ahmedhatemsayed@gmail.com
key | value
--|--
Reported At | 2021-11-02 19:21:30 UTC
Email | Ahmedhatemsayed@gmail.com
Categories | Report a bug, Cat 2
Tags | test, Hello!, RULE-GOT-APPLIED, DOES-NOT-CONTAIN-STRING, Rule-works-on-convert-to-bug, instabug
App Version | 1.1 (1)
Session Duration | 36
Device | Google sdk_gphone_x86, OS Level 30
Display | 1080x2280 (xhdpi)
Location | Cairo, Egypt (en)
## :point_right: [View Full Bug Report on Instabug](https://dashboard.instabug.com/applications/android-sample/beta/bugs/8129?utm_source=github&utm_medium=integrations) :point_left:
___
# :iphone: View Hierarchy
This bug was reported from **com.instabug.sdkdoctor.presentation.networkinterception.NetworkRequestsFragment**
Find its interactive view hierarchy with all its subviews here: :point_right: **[Check View Hierarchy](https://dashboard.instabug.com/applications/android-sample/beta/bugs/8129?show-hierarchy-view=true&utm_source=github&utm_medium=integrations)** :point_left:
___
# :chart_with_downwards_trend: Session Profiler
Here is what the app was doing right before the bug was reported:
Key | Value
--|--
Used Memory | 55.3% - 1.07/1.93 GB
Used Storage | 10.2% - 0.98/9.66 GB
Connectivity | WiFi
Battery | 100% - unplugged
Orientation | portrait
Find all the changes that happened in the parameters mentioned above during the last 60 seconds before the bug was reported here: :point_right: **[View Full Session Profiler](https://dashboard.instabug.com/applications/android-sample/beta/bugs/8129?show-session-profiler=true&utm_source=github&utm_medium=integrations)** :point_left:
___
# :bust_in_silhouette: User Info
### User Attributes
```
key_name 1398898897: key value bla bla bla la
```
___
# :mag_right: Logs
### User Steps
Here are the last 10 steps done by the user right before the bug was reported:
```
19:21:25 In activity com.instabug.sdkdoctor.presentation.DoctorActivity: fragment com.instabug.sdkdoctor.presentation.networkinterception.NetworkRequestsFragment was created.
19:21:25 In activity com.instabug.sdkdoctor.presentation.DoctorActivity: fragment com.instabug.sdkdoctor.presentation.networkinterception.NetworkRequestsFragment was started.
19:21:25 In activity com.instabug.sdkdoctor.presentation.DoctorActivity: fragment com.instabug.sdkdoctor.presentation.networkinterception.NetworkRequestDetailsFragment was detached.
19:21:26 In activity com.instabug.sdkdoctor.presentation.DoctorActivity: fragment com.instabug.sdkdoctor.presentation.networkinterception.NetworkRequestsFragment was resumed.
19:21:26 Scroll in "networkRequestsList" of type "androidx.recyclerview.widget.RecyclerView" in "com.instabug.sdkdoctor.presentation.DoctorActivity"
19:21:27 Tap in "androidx.constraintlayout.widget.ConstraintLayout" in "com.instabug.sdkdoctor.presentation.DoctorActivity"
19:21:27 com.instabug.sdkdoctor.presentation.DoctorActivity was paused.
19:21:27 In activity com.instabug.sdkdoctor.presentation.DoctorActivity: fragment com.instabug.sdkdoctor.presentation.networkinterception.NetworkRequestsFragment was paused.
19:21:29 Tap in "11/2/21 9:20 PM" of type "com.google.android.material.textview.MaterialTextView" in "com.instabug.sdkdoctor.presentation.DoctorActivity"
19:21:29 Tap in "androidx.constraintlayout.widget.ConstraintLayout" in "com.instabug.sdkdoctor.presentation.DoctorActivity"
```
Find all the user steps done by the user throughout the session here: :point_right: **[View All User Steps](https://dashboard.instabug.com/applications/android-sample/beta/bugs/8129?show-logs=user_steps&utm_source=github&utm_medium=integrations)** :point_left:
### Console Log
Here are the last 10 console logs logged right before the bug was reported:
```
19:21:33 D/IB-BaseReportingPresenter(11143): onEmailChanged set live bug with email:Ahmedhatemsayed@gmail.
19:21:33 D/IB-BaseReportingPresenter(11143): onEmailChanged set live bug with email:Ahmedhatemsayed@gmail.c
19:21:33 D/IB-BaseReportingPresenter(11143): onEmailChanged set live bug with email:Ahmedhatemsayed@gmail.co
19:21:33 D/IB-BaseReportingPresenter(11143): onEmailChanged set live bug with email:Ahmedhatemsayed@gmail.com
19:21:33 W/IInputConnectionWrapper(11143): beginBatchEdit on inactive InputConnection
19:21:33 W/IInputConnectionWrapper(11143): endBatchEdit on inactive InputConnection
19:21:34 D/IB-BaseReportingPresenter(11143): checkUserEmailValid :Ahmedhatemsayed@gmail.com
19:21:34 D/IB-ActionsOrchestrator(11143): runAction
19:21:34 I/com.example.ap(11143): Explicit concurrent copying GC freed 91074(5678KB) AllocSpace objects, 22(1640KB) LOS objects, 49% free, 17MB/35MB, paused 96us total 78.946ms
19:21:34 D/IB-AttachmentsUtility(11143): encryptAttachments
```
Find all the logged console logs throughout the session here: :point_right: **[View All Console Log](https://dashboard.instabug.com/applications/android-sample/beta/bugs/8129?show-logs=console_log&utm_source=github&utm_medium=integrations)** :point_left:
___
# :camera: Images
[](https://d38gnqwzxziyyy.cloudfront.net/attachments/bugs/17173244/1f37d819690273b4e3a45f5f1e96bb0f_original/23578610/bug_1635880887912_.jpg?Expires=4791605884&Signature=opAsYa0dXLyw1cjGaw7nwSxCHzy3nphwVkkikaPPfV8uNMjvSm0AkVOeIMB6cRjy9v3eKV4lnaI38rDgXnd0drLphQMhNM1WsiBolhBjnaSL9N1myHTJ9mus3OpzBEgVnwEc8c7hmc4mDYwWZvfqfoHXsmRpSDdNOINZRbSyz35FaMXCcCe1dS7yGES5qxYBPjdmxt1mkcklygx7IP2GJxMYS~kzsA5kU1hKXmCXLeXBNMti21Fd~UXG-YIgIUNaJjYn1PztTDNtYs9t1Y~qsJddAGKb1QGh-mVtUiYYrujdrFZSq8JpIa4edqKDY7NRmWnJ59xRjJYQpGSsTjnixw__&Key-Pair-Id=APKAIXAG65U6UUX7JAQQ)
[](https://d38gnqwzxziyyy.cloudfront.net/attachments/bugs/17173244/09017c47c87d3841ac05ed881dad5639_original/23578616/bug_1635880887912_.jpg?Expires=4791605884&Signature=X7vUya~5lkZDB~H8j1Rv0huxX9AmmI2zmM65sQ2BL6w-zRVVyowMdTAx3tjopJG4NnpQJoJoyB5EdkHugS2xlCiMh~QrrEyaRL7vYlFQ5cvwNigd8SzsTj7RyRCboF656ZBRFgE-InJIdMPxSrUbZu2orE5g4ZjnIQWxKdLddtz8F0JmCHmZenWF3GunSzfLLGNkzgOW2bTieYOH9zF9Clhzj8kYwbyE-R7lZBMhq~3DtnQ2HlW6qILDerlTif14F-MJSizLWziJwB7aAjxYwQUoGZM7DTGT7TMCHmWi-0~eW8DkL~4kQa~ctVsqYloUpJrI5Qgu2xPOOeQR-aRvgA__&Key-Pair-Id=APKAIXAG65U6UUX7JAQQ)
___
# :warning: Looking for More Details?
1. **Network Log**: we are unable to capture your network requests automatically. If you are using HttpUrlConnection or Okhttp requests, [**check the details mentioned here**](https://docs.instabug.com/docs/android-logging?utm_source=github&utm_medium=integrations#section-network-logs).
2. **User Events**: start capturing custom User Events to send them along with each report. [**Find all the details in the docs**](https://docs.instabug.com/docs/android-logging?utm_source=github&utm_medium=integrations).
3. **Instabug Log**: start adding Instabug logs to see them right inside each report you receive. [**Find all the details in the docs**](https://docs.instabug.com/docs/android-logging?utm_source=github&utm_medium=integrations). | 1.0 | Ahmedhatemsayed@gmail.com - # :clipboard: Bug Details
>Ahmedhatemsayed@gmail.com
key | value
--|--
Reported At | 2021-11-02 19:21:30 UTC
Email | Ahmedhatemsayed@gmail.com
Categories | Report a bug, Cat 2
Tags | test, Hello!, RULE-GOT-APPLIED, DOES-NOT-CONTAIN-STRING, Rule-works-on-convert-to-bug, instabug
App Version | 1.1 (1)
Session Duration | 36
Device | Google sdk_gphone_x86, OS Level 30
Display | 1080x2280 (xhdpi)
Location | Cairo, Egypt (en)
## :point_right: [View Full Bug Report on Instabug](https://dashboard.instabug.com/applications/android-sample/beta/bugs/8129?utm_source=github&utm_medium=integrations) :point_left:
___
# :iphone: View Hierarchy
This bug was reported from **com.instabug.sdkdoctor.presentation.networkinterception.NetworkRequestsFragment**
Find its interactive view hierarchy with all its subviews here: :point_right: **[Check View Hierarchy](https://dashboard.instabug.com/applications/android-sample/beta/bugs/8129?show-hierarchy-view=true&utm_source=github&utm_medium=integrations)** :point_left:
___
# :chart_with_downwards_trend: Session Profiler
Here is what the app was doing right before the bug was reported:
Key | Value
--|--
Used Memory | 55.3% - 1.07/1.93 GB
Used Storage | 10.2% - 0.98/9.66 GB
Connectivity | WiFi
Battery | 100% - unplugged
Orientation | portrait
Find all the changes that happened in the parameters mentioned above during the last 60 seconds before the bug was reported here: :point_right: **[View Full Session Profiler](https://dashboard.instabug.com/applications/android-sample/beta/bugs/8129?show-session-profiler=true&utm_source=github&utm_medium=integrations)** :point_left:
___
# :bust_in_silhouette: User Info
### User Attributes
```
key_name 1398898897: key value bla bla bla la
```
___
# :mag_right: Logs
### User Steps
Here are the last 10 steps done by the user right before the bug was reported:
```
19:21:25 In activity com.instabug.sdkdoctor.presentation.DoctorActivity: fragment com.instabug.sdkdoctor.presentation.networkinterception.NetworkRequestsFragment was created.
19:21:25 In activity com.instabug.sdkdoctor.presentation.DoctorActivity: fragment com.instabug.sdkdoctor.presentation.networkinterception.NetworkRequestsFragment was started.
19:21:25 In activity com.instabug.sdkdoctor.presentation.DoctorActivity: fragment com.instabug.sdkdoctor.presentation.networkinterception.NetworkRequestDetailsFragment was detached.
19:21:26 In activity com.instabug.sdkdoctor.presentation.DoctorActivity: fragment com.instabug.sdkdoctor.presentation.networkinterception.NetworkRequestsFragment was resumed.
19:21:26 Scroll in "networkRequestsList" of type "androidx.recyclerview.widget.RecyclerView" in "com.instabug.sdkdoctor.presentation.DoctorActivity"
19:21:27 Tap in "androidx.constraintlayout.widget.ConstraintLayout" in "com.instabug.sdkdoctor.presentation.DoctorActivity"
19:21:27 com.instabug.sdkdoctor.presentation.DoctorActivity was paused.
19:21:27 In activity com.instabug.sdkdoctor.presentation.DoctorActivity: fragment com.instabug.sdkdoctor.presentation.networkinterception.NetworkRequestsFragment was paused.
19:21:29 Tap in "11/2/21 9:20 PM" of type "com.google.android.material.textview.MaterialTextView" in "com.instabug.sdkdoctor.presentation.DoctorActivity"
19:21:29 Tap in "androidx.constraintlayout.widget.ConstraintLayout" in "com.instabug.sdkdoctor.presentation.DoctorActivity"
```
Find all the user steps done by the user throughout the session here: :point_right: **[View All User Steps](https://dashboard.instabug.com/applications/android-sample/beta/bugs/8129?show-logs=user_steps&utm_source=github&utm_medium=integrations)** :point_left:
### Console Log
Here are the last 10 console logs logged right before the bug was reported:
```
19:21:33 D/IB-BaseReportingPresenter(11143): onEmailChanged set live bug with email:Ahmedhatemsayed@gmail.
19:21:33 D/IB-BaseReportingPresenter(11143): onEmailChanged set live bug with email:Ahmedhatemsayed@gmail.c
19:21:33 D/IB-BaseReportingPresenter(11143): onEmailChanged set live bug with email:Ahmedhatemsayed@gmail.co
19:21:33 D/IB-BaseReportingPresenter(11143): onEmailChanged set live bug with email:Ahmedhatemsayed@gmail.com
19:21:33 W/IInputConnectionWrapper(11143): beginBatchEdit on inactive InputConnection
19:21:33 W/IInputConnectionWrapper(11143): endBatchEdit on inactive InputConnection
19:21:34 D/IB-BaseReportingPresenter(11143): checkUserEmailValid :Ahmedhatemsayed@gmail.com
19:21:34 D/IB-ActionsOrchestrator(11143): runAction
19:21:34 I/com.example.ap(11143): Explicit concurrent copying GC freed 91074(5678KB) AllocSpace objects, 22(1640KB) LOS objects, 49% free, 17MB/35MB, paused 96us total 78.946ms
19:21:34 D/IB-AttachmentsUtility(11143): encryptAttachments
```
Find all the logged console logs throughout the session here: :point_right: **[View All Console Log](https://dashboard.instabug.com/applications/android-sample/beta/bugs/8129?show-logs=console_log&utm_source=github&utm_medium=integrations)** :point_left:
___
# :camera: Images
[](https://d38gnqwzxziyyy.cloudfront.net/attachments/bugs/17173244/1f37d819690273b4e3a45f5f1e96bb0f_original/23578610/bug_1635880887912_.jpg?Expires=4791605884&Signature=opAsYa0dXLyw1cjGaw7nwSxCHzy3nphwVkkikaPPfV8uNMjvSm0AkVOeIMB6cRjy9v3eKV4lnaI38rDgXnd0drLphQMhNM1WsiBolhBjnaSL9N1myHTJ9mus3OpzBEgVnwEc8c7hmc4mDYwWZvfqfoHXsmRpSDdNOINZRbSyz35FaMXCcCe1dS7yGES5qxYBPjdmxt1mkcklygx7IP2GJxMYS~kzsA5kU1hKXmCXLeXBNMti21Fd~UXG-YIgIUNaJjYn1PztTDNtYs9t1Y~qsJddAGKb1QGh-mVtUiYYrujdrFZSq8JpIa4edqKDY7NRmWnJ59xRjJYQpGSsTjnixw__&Key-Pair-Id=APKAIXAG65U6UUX7JAQQ)
[](https://d38gnqwzxziyyy.cloudfront.net/attachments/bugs/17173244/09017c47c87d3841ac05ed881dad5639_original/23578616/bug_1635880887912_.jpg?Expires=4791605884&Signature=X7vUya~5lkZDB~H8j1Rv0huxX9AmmI2zmM65sQ2BL6w-zRVVyowMdTAx3tjopJG4NnpQJoJoyB5EdkHugS2xlCiMh~QrrEyaRL7vYlFQ5cvwNigd8SzsTj7RyRCboF656ZBRFgE-InJIdMPxSrUbZu2orE5g4ZjnIQWxKdLddtz8F0JmCHmZenWF3GunSzfLLGNkzgOW2bTieYOH9zF9Clhzj8kYwbyE-R7lZBMhq~3DtnQ2HlW6qILDerlTif14F-MJSizLWziJwB7aAjxYwQUoGZM7DTGT7TMCHmWi-0~eW8DkL~4kQa~ctVsqYloUpJrI5Qgu2xPOOeQR-aRvgA__&Key-Pair-Id=APKAIXAG65U6UUX7JAQQ)
___
# :warning: Looking for More Details?
1. **Network Log**: we are unable to capture your network requests automatically. If you are using HttpUrlConnection or Okhttp requests, [**check the details mentioned here**](https://docs.instabug.com/docs/android-logging?utm_source=github&utm_medium=integrations#section-network-logs).
2. **User Events**: start capturing custom User Events to send them along with each report. [**Find all the details in the docs**](https://docs.instabug.com/docs/android-logging?utm_source=github&utm_medium=integrations).
3. **Instabug Log**: start adding Instabug logs to see them right inside each report you receive. [**Find all the details in the docs**](https://docs.instabug.com/docs/android-logging?utm_source=github&utm_medium=integrations). | test | ahmedhatemsayed gmail com clipboard bug details ahmedhatemsayed gmail com key value reported at utc email ahmedhatemsayed gmail com categories report a bug cat tags test hello rule got applied does not contain string rule works on convert to bug instabug app version session duration device google sdk gphone os level display xhdpi location cairo egypt en point right point left iphone view hierarchy this bug was reported from com instabug sdkdoctor presentation networkinterception networkrequestsfragment find its interactive view hierarchy with all its subviews here point right point left chart with downwards trend session profiler here is what the app was doing right before the bug was reported key value used memory gb used storage gb connectivity wifi battery unplugged orientation portrait find all the changes that happened in the parameters mentioned above during the last seconds before the bug was reported here point right point left bust in silhouette user info user attributes key name key value bla bla bla la mag right logs user steps here are the last steps done by the user right before the bug was reported in activity com instabug sdkdoctor presentation doctoractivity fragment com instabug sdkdoctor presentation networkinterception networkrequestsfragment was created in activity com instabug sdkdoctor presentation doctoractivity fragment com instabug sdkdoctor presentation networkinterception networkrequestsfragment was started in activity com instabug sdkdoctor presentation doctoractivity fragment com instabug sdkdoctor presentation networkinterception networkrequestdetailsfragment was detached in activity com instabug sdkdoctor presentation doctoractivity fragment com instabug sdkdoctor presentation networkinterception networkrequestsfragment was resumed scroll in networkrequestslist of type androidx recyclerview widget recyclerview in com instabug sdkdoctor presentation doctoractivity tap in androidx constraintlayout widget constraintlayout in com instabug sdkdoctor presentation doctoractivity com instabug sdkdoctor presentation doctoractivity was paused in activity com instabug sdkdoctor presentation doctoractivity fragment com instabug sdkdoctor presentation networkinterception networkrequestsfragment was paused tap in pm of type com google android material textview materialtextview in com instabug sdkdoctor presentation doctoractivity tap in androidx constraintlayout widget constraintlayout in com instabug sdkdoctor presentation doctoractivity find all the user steps done by the user throughout the session here point right point left console log here are the last console logs logged right before the bug was reported d ib basereportingpresenter onemailchanged set live bug with email ahmedhatemsayed gmail d ib basereportingpresenter onemailchanged set live bug with email ahmedhatemsayed gmail c d ib basereportingpresenter onemailchanged set live bug with email ahmedhatemsayed gmail co d ib basereportingpresenter onemailchanged set live bug with email ahmedhatemsayed gmail com w iinputconnectionwrapper beginbatchedit on inactive inputconnection w iinputconnectionwrapper endbatchedit on inactive inputconnection d ib basereportingpresenter checkuseremailvalid ahmedhatemsayed gmail com d ib actionsorchestrator runaction i com example ap explicit concurrent copying gc freed allocspace objects los objects free paused total d ib attachmentsutility encryptattachments find all the logged console logs throughout the session here point right point left camera images warning looking for more details network log we are unable to capture your network requests automatically if you are using httpurlconnection or okhttp requests user events start capturing custom user events to send them along with each report instabug log start adding instabug logs to see them right inside each report you receive | 1 |
60,213 | 6,676,120,738 | IssuesEvent | 2017-10-05 03:06:08 | DestructHub/ProjectEuler | https://api.github.com/repos/DestructHub/ProjectEuler | closed | [travis] Build error because of Elixir script | bug tests | The Elixir `solution_1` in `Problem001` seems to be wrong and the scripts return with a build error, hence the build error status. The error can be seen below and maybe @lubien could give us a hint in how to solve it:
```
Builded Problem001/Elixir/solution_1.exs: Answer: =INFO REPORT==== 1-Sep-2017::20:14:24 ===
application: logger
exited: {{shutdown,
{failed_to_start_child,'Elixir.GenEvent',
{undef,
[{gen,debug_options,[[]],[]},
{'Elixir.GenEvent',init_it,6,
[{file,"lib/gen_event.ex"},{line,535}]},
{proc_lib,init_p_do_apply,3,
[{file,"proc_lib.erl"},{line,247}]}]}}},
{'Elixir.Logger.App',start,[normal,[]]}}
type: temporary
233168: 0.47s
@Building next Problem002/Elixir/solution_1.ex: ** (UndefinedFunctionError) undefined function: Enum.reduce_while/3
(elixir) Enum.reduce_while(#Stream<[enum: #Function<43.95910526/2 in Stream.unfold/2>, funs: [#Function<31.95910526/1 in Stream.filter/2>]]>, 0, #Function<2.106859709 in file:solution_1.ex>)
(elixir) lib/code.ex:307: Code.require_file/2
```
| 1.0 | [travis] Build error because of Elixir script - The Elixir `solution_1` in `Problem001` seems to be wrong and the scripts return with a build error, hence the build error status. The error can be seen below and maybe @lubien could give us a hint in how to solve it:
```
Builded Problem001/Elixir/solution_1.exs: Answer: =INFO REPORT==== 1-Sep-2017::20:14:24 ===
application: logger
exited: {{shutdown,
{failed_to_start_child,'Elixir.GenEvent',
{undef,
[{gen,debug_options,[[]],[]},
{'Elixir.GenEvent',init_it,6,
[{file,"lib/gen_event.ex"},{line,535}]},
{proc_lib,init_p_do_apply,3,
[{file,"proc_lib.erl"},{line,247}]}]}}},
{'Elixir.Logger.App',start,[normal,[]]}}
type: temporary
233168: 0.47s
@Building next Problem002/Elixir/solution_1.ex: ** (UndefinedFunctionError) undefined function: Enum.reduce_while/3
(elixir) Enum.reduce_while(#Stream<[enum: #Function<43.95910526/2 in Stream.unfold/2>, funs: [#Function<31.95910526/1 in Stream.filter/2>]]>, 0, #Function<2.106859709 in file:solution_1.ex>)
(elixir) lib/code.ex:307: Code.require_file/2
```
| test | build error because of elixir script the elixir solution in seems to be wrong and the scripts return with a build error hence the build error status the error can be seen below and maybe lubien could give us a hint in how to solve it builded elixir solution exs answer info report sep application logger exited shutdown failed to start child elixir genevent undef elixir genevent init it proc lib init p do apply elixir logger app start type temporary building next elixir solution ex undefinedfunctionerror undefined function enum reduce while elixir enum reduce while stream function elixir lib code ex code require file | 1 |
317,776 | 27,266,210,633 | IssuesEvent | 2023-02-22 18:14:46 | PalisadoesFoundation/talawa | https://api.github.com/repos/PalisadoesFoundation/talawa | closed | Test splash_screen.dart | test | The Talawa code base needs to be 100% reliable. This means we need to have 100% test code coverage.
Tests need to be written for file:
[lib/splash_screen.dart](https://github.com/PalisadoesFoundation/talawa/blob/develop/lib/splash_screen.dart)
I could not find any existing issue for this I can write test cases for this file.
| 1.0 | Test splash_screen.dart - The Talawa code base needs to be 100% reliable. This means we need to have 100% test code coverage.
Tests need to be written for file:
[lib/splash_screen.dart](https://github.com/PalisadoesFoundation/talawa/blob/develop/lib/splash_screen.dart)
I could not find any existing issue for this I can write test cases for this file.
| test | test splash screen dart the talawa code base needs to be reliable this means we need to have test code coverage tests need to be written for file i could not find any existing issue for this i can write test cases for this file | 1 |
122,453 | 16,129,423,114 | IssuesEvent | 2021-04-29 00:35:08 | RinUeyama/peregre | https://api.github.com/repos/RinUeyama/peregre | closed | プロトタイピング | design | iPad に書いたラクガキからfigmaに書き起こす。
- [ ] トップページ
- [ ] キャラクターページ
- [ ] シナリオページ
- [ ] ニュースページ
- [ ] コンフィグ | 1.0 | プロトタイピング - iPad に書いたラクガキからfigmaに書き起こす。
- [ ] トップページ
- [ ] キャラクターページ
- [ ] シナリオページ
- [ ] ニュースページ
- [ ] コンフィグ | non_test | プロトタイピング ipad に書いたラクガキからfigmaに書き起こす。 トップページ キャラクターページ シナリオページ ニュースページ コンフィグ | 0 |
646,310 | 21,044,029,908 | IssuesEvent | 2022-03-31 14:35:28 | ufs-community/ufs-srweather-app | https://api.github.com/repos/ufs-community/ufs-srweather-app | closed | staging location of WE2E data on tier 1 platforms | medium priority Work in Progress | Update paths in run_experiments.sh to point to data in the group space rather than personal directories.
For example, consider changing:
extrn_mdl_source_basedir="/scratch2/BMC/det/Gerard.Ketefian/UFS_CAM/staged_extrn_mdl_files"
to
extrn_mdl_source_basedir="/scratch2/BMC/det/UFS_SRW_app/v1p0/model_data"
This will require ensuring all necessary data is copied to the group space.
This is not time sensitive (i.e., not required for the release) but wanted to mention it as a way to consolidate where files live. | 1.0 | staging location of WE2E data on tier 1 platforms - Update paths in run_experiments.sh to point to data in the group space rather than personal directories.
For example, consider changing:
extrn_mdl_source_basedir="/scratch2/BMC/det/Gerard.Ketefian/UFS_CAM/staged_extrn_mdl_files"
to
extrn_mdl_source_basedir="/scratch2/BMC/det/UFS_SRW_app/v1p0/model_data"
This will require ensuring all necessary data is copied to the group space.
This is not time sensitive (i.e., not required for the release) but wanted to mention it as a way to consolidate where files live. | non_test | staging location of data on tier platforms update paths in run experiments sh to point to data in the group space rather than personal directories for example consider changing extrn mdl source basedir bmc det gerard ketefian ufs cam staged extrn mdl files to extrn mdl source basedir bmc det ufs srw app model data this will require ensuring all necessary data is copied to the group space this is not time sensitive i e not required for the release but wanted to mention it as a way to consolidate where files live | 0 |
212,046 | 16,471,987,245 | IssuesEvent | 2021-05-23 15:48:39 | shabegom/buttons | https://api.github.com/repos/shabegom/buttons | closed | links not working | bug documentation | Your example:
```button
name To the Forum Batman!
type link
command: https://forum.obsidian.md/
```
It doesn't perform any action.
Dev tools:
```
Uncaught (in promise) TypeError: Cannot read property 'trim' of undefined
at link (eval at <anonymous> (app.js:1), <anonymous>:1040:25)
at clickHandler (eval at <anonymous> (app.js:1), <anonymous>:1112:25)
at HTMLButtonElement.eval (eval at <anonymous> (app.js:1), <anonymous>:1143:21)
at HTMLButtonElement.s (app.js:1)
link @ buttonTypes.ts:115
clickHandler @ index.ts:55
eval @ index.ts:86
s @ app.js:1
```
An extra question: Is there a command to open another file?
Thanks | 1.0 | links not working - Your example:
```button
name To the Forum Batman!
type link
command: https://forum.obsidian.md/
```
It doesn't perform any action.
Dev tools:
```
Uncaught (in promise) TypeError: Cannot read property 'trim' of undefined
at link (eval at <anonymous> (app.js:1), <anonymous>:1040:25)
at clickHandler (eval at <anonymous> (app.js:1), <anonymous>:1112:25)
at HTMLButtonElement.eval (eval at <anonymous> (app.js:1), <anonymous>:1143:21)
at HTMLButtonElement.s (app.js:1)
link @ buttonTypes.ts:115
clickHandler @ index.ts:55
eval @ index.ts:86
s @ app.js:1
```
An extra question: Is there a command to open another file?
Thanks | non_test | links not working your example button name to the forum batman type link command it doesn t perform any action dev tools uncaught in promise typeerror cannot read property trim of undefined at link eval at app js at clickhandler eval at app js at htmlbuttonelement eval eval at app js at htmlbuttonelement s app js link buttontypes ts clickhandler index ts eval index ts s app js an extra question is there a command to open another file thanks | 0 |
320,941 | 27,494,031,403 | IssuesEvent | 2023-03-05 00:10:46 | unifyai/ivy | https://api.github.com/repos/unifyai/ivy | closed | Fix array.test_array_property_data | Sub Task Failing Test | | | |
|---|---|
|tensorflow|<a href="https://github.com/unifyai/ivy/actions/" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a>
|torch|<a href="https://github.com/unifyai/ivy/actions/" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a>
|numpy|<a href="https://github.com/unifyai/ivy/actions/" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a>
|jax|<a href="https://github.com/unifyai/ivy/actions/runs/4332331159/jobs/7564746124" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a>
| 1.0 | Fix array.test_array_property_data - | | |
|---|---|
|tensorflow|<a href="https://github.com/unifyai/ivy/actions/" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a>
|torch|<a href="https://github.com/unifyai/ivy/actions/" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a>
|numpy|<a href="https://github.com/unifyai/ivy/actions/" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a>
|jax|<a href="https://github.com/unifyai/ivy/actions/runs/4332331159/jobs/7564746124" rel="noopener noreferrer" target="_blank"><img src=https://img.shields.io/badge/-success-success></a>
| test | fix array test array property data tensorflow img src torch img src numpy img src jax img src | 1 |
104,776 | 9,009,222,313 | IssuesEvent | 2019-02-05 08:18:19 | psychopy/psychopy | https://api.github.com/repos/psychopy/psychopy | closed | Travis currently not building | needs upstream fix tests | I believe the problem we're having with Travis right now is the one mentioned here: https://github.com/pypa/pip/issues/6165
It's related to a recent `pip` update to 19.0:
> pip 18.1 was a lot kinder, but would generate invalid RECORD files and fail to properly handle uninstalls.
| 1.0 | Travis currently not building - I believe the problem we're having with Travis right now is the one mentioned here: https://github.com/pypa/pip/issues/6165
It's related to a recent `pip` update to 19.0:
> pip 18.1 was a lot kinder, but would generate invalid RECORD files and fail to properly handle uninstalls.
| test | travis currently not building i believe the problem we re having with travis right now is the one mentioned here it s related to a recent pip update to pip was a lot kinder but would generate invalid record files and fail to properly handle uninstalls | 1 |
44,299 | 5,621,855,970 | IssuesEvent | 2017-04-04 11:10:27 | realm/realm-js | https://api.github.com/repos/realm/realm-js | opened | Random failure in SessionTests | T:Test | We keep seeing this test fail from time to time on CI:
```
SessionTests : testProperties
Error: Timeout - Async callback was not invoked within timeout specified by jasmine.DEFAULT_TIMEOUT_INTERVAL.
at ontimeout timers.js:380:14
at tryOnTimeout timers.js:244:5
at Timer.listOnTimeout timers.js:214:5
```
cc @fealebenpae | 1.0 | Random failure in SessionTests - We keep seeing this test fail from time to time on CI:
```
SessionTests : testProperties
Error: Timeout - Async callback was not invoked within timeout specified by jasmine.DEFAULT_TIMEOUT_INTERVAL.
at ontimeout timers.js:380:14
at tryOnTimeout timers.js:244:5
at Timer.listOnTimeout timers.js:214:5
```
cc @fealebenpae | test | random failure in sessiontests we keep seeing this test fail from time to time on ci sessiontests testproperties error timeout async callback was not invoked within timeout specified by jasmine default timeout interval at ontimeout timers js at tryontimeout timers js at timer listontimeout timers js cc fealebenpae | 1 |
296,946 | 25,585,496,004 | IssuesEvent | 2022-12-01 09:01:33 | harvester/harvester | https://api.github.com/repos/harvester/harvester | closed | [BUG] Backup and Restore UI and network option not showing properly in Rancher integrated Harvester UI | kind/bug area/ui severity/4 area/rancher-related reproduce/always not-require/test-plan | **Describe the bug**
<!-- A clear and concise description of what the bug is. -->
The backup and restore menu option and the network option (it looks like a camelCase class and doesn't match the capitalization so it's probably the same issue) isn't showing correctly.
**To Reproduce**
Steps to reproduce the behavior:
1. Import Harvester into Rancher
2. Open up Harvester UI from Rancher virtualization management
**Expected behavior**
<!-- A clear and concise description of what you expected to happen. -->
It should show the same as it does in the Harvester UI
**Support bundle**
<!--
You can generate a support bundle in the bottom of Harvester UI (https://docs.harvesterhci.io/v1.0/troubleshooting/harvester/#generate-a-support-bundle). It includes logs and configurations that help diagnose the issue.
Tokens, passwords, and secrets are automatically removed from support bundles. If you feel it's not appropriate to share the bundle files publicly, please consider:
- Wait for a developer to reach you and provide the bundle file by any secure methods.
- Join our Slack community (https://rancher-users.slack.com/archives/C01GKHKAG0K) to provide the bundle.
- Send the bundle to harvester-support-bundle@suse.com with the correct issue ID. -->
[supportbundle_81fc1123-53e0-4f03-9f4b-305735bd9969_2022-11-29T00-42-08Z.zip](https://github.com/harvester/harvester/files/10108729/supportbundle_81fc1123-53e0-4f03-9f4b-305735bd9969_2022-11-29T00-42-08Z.zip)
**Environment**
- Harvester ISO version: v1.1.1-rc2
- Underlying Infrastructure (e.g. Baremetal with Dell PowerEdge R630): Single node Harvester vagrant environment 12c 24g
- Rancher version: v2.7.0 (single node docker instance)
**Additional context**
Add any other context about the problem here.
This is showing properly in the Harvester UI. I tested this and it's showing incorrectly in both admin and restricted admin users.


| 1.0 | [BUG] Backup and Restore UI and network option not showing properly in Rancher integrated Harvester UI - **Describe the bug**
<!-- A clear and concise description of what the bug is. -->
The backup and restore menu option and the network option (it looks like a camelCase class and doesn't match the capitalization so it's probably the same issue) isn't showing correctly.
**To Reproduce**
Steps to reproduce the behavior:
1. Import Harvester into Rancher
2. Open up Harvester UI from Rancher virtualization management
**Expected behavior**
<!-- A clear and concise description of what you expected to happen. -->
It should show the same as it does in the Harvester UI
**Support bundle**
<!--
You can generate a support bundle in the bottom of Harvester UI (https://docs.harvesterhci.io/v1.0/troubleshooting/harvester/#generate-a-support-bundle). It includes logs and configurations that help diagnose the issue.
Tokens, passwords, and secrets are automatically removed from support bundles. If you feel it's not appropriate to share the bundle files publicly, please consider:
- Wait for a developer to reach you and provide the bundle file by any secure methods.
- Join our Slack community (https://rancher-users.slack.com/archives/C01GKHKAG0K) to provide the bundle.
- Send the bundle to harvester-support-bundle@suse.com with the correct issue ID. -->
[supportbundle_81fc1123-53e0-4f03-9f4b-305735bd9969_2022-11-29T00-42-08Z.zip](https://github.com/harvester/harvester/files/10108729/supportbundle_81fc1123-53e0-4f03-9f4b-305735bd9969_2022-11-29T00-42-08Z.zip)
**Environment**
- Harvester ISO version: v1.1.1-rc2
- Underlying Infrastructure (e.g. Baremetal with Dell PowerEdge R630): Single node Harvester vagrant environment 12c 24g
- Rancher version: v2.7.0 (single node docker instance)
**Additional context**
Add any other context about the problem here.
This is showing properly in the Harvester UI. I tested this and it's showing incorrectly in both admin and restricted admin users.


| test | backup and restore ui and network option not showing properly in rancher integrated harvester ui describe the bug the backup and restore menu option and the network option it looks like a camelcase class and doesn t match the capitalization so it s probably the same issue isn t showing correctly to reproduce steps to reproduce the behavior import harvester into rancher open up harvester ui from rancher virtualization management expected behavior it should show the same as it does in the harvester ui support bundle you can generate a support bundle in the bottom of harvester ui it includes logs and configurations that help diagnose the issue tokens passwords and secrets are automatically removed from support bundles if you feel it s not appropriate to share the bundle files publicly please consider wait for a developer to reach you and provide the bundle file by any secure methods join our slack community to provide the bundle send the bundle to harvester support bundle suse com with the correct issue id environment harvester iso version underlying infrastructure e g baremetal with dell poweredge single node harvester vagrant environment rancher version single node docker instance additional context add any other context about the problem here this is showing properly in the harvester ui i tested this and it s showing incorrectly in both admin and restricted admin users | 1 |
38,007 | 10,129,330,760 | IssuesEvent | 2019-08-01 14:35:41 | Automattic/wp-calypso | https://api.github.com/repos/Automattic/wp-calypso | closed | Building calypso on Windows 10 fails | Build Windows [Type] Help Request | <!-- Thanks for contributing to Calypso! Pick a clear title ("Editor: add spell check") and proceed. -->
#### Steps to reproduce
Run the several step outlined at https://github.com/Automattic/wp-calypso#getting-started
#### What I expected
Successful build
#### What happened instead
#### Browser / OS version
Chrome Version 75.0.3770.100 (Official Build) (64-bit)
#### Screenshot / Video
Way too many error messages like
```
Child mini-css-extract-plugin node_modules/css-loader/dist/cjs.js??ref--6-1!node_modules/postcss-loader/src/index.js??ref--6-2!node_modules/sass-loader/lib/loader.js??ref--6-3!client/post-editor/editor-sharing/style.scss:
```
with the explanation:
```
File to import not found or unreadable: c:workÊlypsowp-calypso
ssetsstylesheetsshared_utils.scss.
```
Note the 'Ê' character in the path above
#### Context / Source
<!-- Optional: share your unique context to help us understand your perspective. You can add context tags such as: #journey #anecdote #narrative #context #empathy #perspective #reallife #dogfooding #livesharing #flowsharing #anxiety #anxiety-flow #stresscase #painpoint.
We'd also love to know how you found the bug: #dogfooding, #manual-testing, #automated-testing, or #user-report if applicable.
If requesting a new feature, explain why you'd like to see it added.
-->
<!--
PLEASE NOTE
- These comments won't show up when you submit the issue.
- Everything is optional, but try to add as many details as possible.
Docs & troubleshooting:
https://github.com/Automattic/wp-calypso/blob/master/.github/CONTRIBUTING.md
https://github.com/Automattic/wp-calypso/blob/master/docs/troubleshooting.md
Helpful tips for screenshots:
https://en.support.wordpress.com/make-a-screenshot/
-->
| 1.0 | Building calypso on Windows 10 fails - <!-- Thanks for contributing to Calypso! Pick a clear title ("Editor: add spell check") and proceed. -->
#### Steps to reproduce
Run the several step outlined at https://github.com/Automattic/wp-calypso#getting-started
#### What I expected
Successful build
#### What happened instead
#### Browser / OS version
Chrome Version 75.0.3770.100 (Official Build) (64-bit)
#### Screenshot / Video
Way too many error messages like
```
Child mini-css-extract-plugin node_modules/css-loader/dist/cjs.js??ref--6-1!node_modules/postcss-loader/src/index.js??ref--6-2!node_modules/sass-loader/lib/loader.js??ref--6-3!client/post-editor/editor-sharing/style.scss:
```
with the explanation:
```
File to import not found or unreadable: c:workÊlypsowp-calypso
ssetsstylesheetsshared_utils.scss.
```
Note the 'Ê' character in the path above
#### Context / Source
<!-- Optional: share your unique context to help us understand your perspective. You can add context tags such as: #journey #anecdote #narrative #context #empathy #perspective #reallife #dogfooding #livesharing #flowsharing #anxiety #anxiety-flow #stresscase #painpoint.
We'd also love to know how you found the bug: #dogfooding, #manual-testing, #automated-testing, or #user-report if applicable.
If requesting a new feature, explain why you'd like to see it added.
-->
<!--
PLEASE NOTE
- These comments won't show up when you submit the issue.
- Everything is optional, but try to add as many details as possible.
Docs & troubleshooting:
https://github.com/Automattic/wp-calypso/blob/master/.github/CONTRIBUTING.md
https://github.com/Automattic/wp-calypso/blob/master/docs/troubleshooting.md
Helpful tips for screenshots:
https://en.support.wordpress.com/make-a-screenshot/
-->
| non_test | building calypso on windows fails steps to reproduce run the several step outlined at what i expected successful build what happened instead browser os version chrome version official build bit screenshot video way too many error messages like child mini css extract plugin node modules css loader dist cjs js ref node modules postcss loader src index js ref node modules sass loader lib loader js ref client post editor editor sharing style scss with the explanation file to import not found or unreadable c workêlypsowp calypso ssetsstylesheetsshared utils scss note the ê character in the path above context source optional share your unique context to help us understand your perspective you can add context tags such as journey anecdote narrative context empathy perspective reallife dogfooding livesharing flowsharing anxiety anxiety flow stresscase painpoint we d also love to know how you found the bug dogfooding manual testing automated testing or user report if applicable if requesting a new feature explain why you d like to see it added please note these comments won t show up when you submit the issue everything is optional but try to add as many details as possible docs troubleshooting helpful tips for screenshots | 0 |
229,256 | 18,286,676,233 | IssuesEvent | 2021-10-05 11:05:21 | DILCISBoard/eark-ip-test-corpus | https://api.github.com/repos/DILCISBoard/eark-ip-test-corpus | closed | CSIP104 Test Case Description | test case corpus package | **Specification:**
- **Name:** E-ARK CSIP
- **Version:** 2.0-DRAFT
- **URL:** http://earkcsip.dilcis.eu/
**Requirement:**
- **Id:** CSIP104
- **Link:** http://earkcsip.dilcis.eu/#CSIP104
**Error Level:** ERROR
**Description:**
CSIP104 | File division file referencing structMap/div/div/@CONTENTID | The file group containing the files described in the package are referenced via the relevant file group identifier. | 1..1 MUST
-- | -- | -- | --
| 1.0 | CSIP104 Test Case Description - **Specification:**
- **Name:** E-ARK CSIP
- **Version:** 2.0-DRAFT
- **URL:** http://earkcsip.dilcis.eu/
**Requirement:**
- **Id:** CSIP104
- **Link:** http://earkcsip.dilcis.eu/#CSIP104
**Error Level:** ERROR
**Description:**
CSIP104 | File division file referencing structMap/div/div/@CONTENTID | The file group containing the files described in the package are referenced via the relevant file group identifier. | 1..1 MUST
-- | -- | -- | --
| test | test case description specification name e ark csip version draft url requirement id link error level error description file division file referencing structmap div div contentid the file group containing the files described in the package are referenced via the relevant file group identifier must | 1 |
15,824 | 3,342,982,275 | IssuesEvent | 2015-11-15 03:33:06 | dotnet/roslyn | https://api.github.com/repos/dotnet/roslyn | closed | VB incorrectly reports overflow for negative integer literals | Area-Compilers Resolution-By Design | 
VB is incorrectly reporting overflow for negative integer literals. This happens in both VS2013 and VS2015. I took the screenshot below from VS2015. Looks like the literal is being treated as positive for the diagnostic to return an overflow.
| 1.0 | VB incorrectly reports overflow for negative integer literals - 
VB is incorrectly reporting overflow for negative integer literals. This happens in both VS2013 and VS2015. I took the screenshot below from VS2015. Looks like the literal is being treated as positive for the diagnostic to return an overflow.
| non_test | vb incorrectly reports overflow for negative integer literals vb is incorrectly reporting overflow for negative integer literals this happens in both and i took the screenshot below from looks like the literal is being treated as positive for the diagnostic to return an overflow | 0 |
173,665 | 13,436,240,524 | IssuesEvent | 2020-09-07 14:06:06 | Burhan-Q/MakerMask | https://api.github.com/repos/Burhan-Q/MakerMask | opened | Fluid penetration testing results | Blog write up Material Testing | - [ ] Jocelyn to do DIY tests fabrics
- [ ] curate test result photos for sharing
- [ ] plot out write up
- [ ] write out post
- [ ] figure out social media statement
- [ ] share PDF of testing results (perhaps redact private details?) | 1.0 | Fluid penetration testing results - - [ ] Jocelyn to do DIY tests fabrics
- [ ] curate test result photos for sharing
- [ ] plot out write up
- [ ] write out post
- [ ] figure out social media statement
- [ ] share PDF of testing results (perhaps redact private details?) | test | fluid penetration testing results jocelyn to do diy tests fabrics curate test result photos for sharing plot out write up write out post figure out social media statement share pdf of testing results perhaps redact private details | 1 |
90,915 | 15,856,327,309 | IssuesEvent | 2021-04-08 02:04:47 | rvvergara/node-notes | https://api.github.com/repos/rvvergara/node-notes | opened | CVE-2020-28500 (Medium) detected in lodash-4.17.15.tgz | security vulnerability | ## CVE-2020-28500 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <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: node-notes/package.json</p>
<p>Path to vulnerable library: node-notes/node_modules/lodash/package.json</p>
<p>
Dependency Hierarchy:
- eslint-6.5.1.tgz (Root Library)
- :x: **lodash-4.17.15.tgz** (Vulnerable Library)
</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 versions prior to 4.17.21 are vulnerable to Regular Expression Denial of Service (ReDoS) via the toNumber, trim and trimEnd functions.
WhiteSource Note: After conducting further research, WhiteSource has determined that CVE-2020-28500 only affects environments with versions 4.0.0 to 4.17.20 of Lodash.
<p>Publish Date: 2021-02-15
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-28500>CVE-2020-28500</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</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: Low
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28500">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28500</a></p>
<p>Release Date: 2021-02-15</p>
<p>Fix Resolution: lodash-4.17.21</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2020-28500 (Medium) detected in lodash-4.17.15.tgz - ## CVE-2020-28500 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <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: node-notes/package.json</p>
<p>Path to vulnerable library: node-notes/node_modules/lodash/package.json</p>
<p>
Dependency Hierarchy:
- eslint-6.5.1.tgz (Root Library)
- :x: **lodash-4.17.15.tgz** (Vulnerable Library)
</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 versions prior to 4.17.21 are vulnerable to Regular Expression Denial of Service (ReDoS) via the toNumber, trim and trimEnd functions.
WhiteSource Note: After conducting further research, WhiteSource has determined that CVE-2020-28500 only affects environments with versions 4.0.0 to 4.17.20 of Lodash.
<p>Publish Date: 2021-02-15
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-28500>CVE-2020-28500</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</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: Low
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28500">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28500</a></p>
<p>Release Date: 2021-02-15</p>
<p>Fix Resolution: lodash-4.17.21</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_test | cve medium detected in lodash tgz cve medium severity vulnerability vulnerable library lodash tgz lodash modular utilities library home page a href path to dependency file node notes package json path to vulnerable library node notes node modules lodash package json dependency hierarchy eslint tgz root library x lodash tgz vulnerable library vulnerability details lodash versions prior to are vulnerable to regular expression denial of service redos via the tonumber trim and trimend functions whitesource note after conducting further research whitesource has determined that cve only affects environments with versions to of lodash 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 low for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution lodash step up your open source security game with whitesource | 0 |
156,438 | 12,310,265,814 | IssuesEvent | 2020-05-12 10:18:55 | input-output-hk/ouroboros-network | https://api.github.com/repos/input-output-hk/ouroboros-network | closed | Test with different epoch sizes | consensus protocol testing shelley mainnet testing transition | We already have the infrastructure (`EpochInfo`) in place to have epochs with varying sizes, but we are currently only testing with fixed epoch sizes. | 2.0 | Test with different epoch sizes - We already have the infrastructure (`EpochInfo`) in place to have epochs with varying sizes, but we are currently only testing with fixed epoch sizes. | test | test with different epoch sizes we already have the infrastructure epochinfo in place to have epochs with varying sizes but we are currently only testing with fixed epoch sizes | 1 |
223,438 | 7,456,865,360 | IssuesEvent | 2018-03-30 00:07:09 | ld4l-labs/vitrolib | https://api.github.com/repos/ld4l-labs/vitrolib | opened | VitroLib build broken on develop | priority: blocker | In LCNAFImpl.createConcept():
HashMap<String, Object> additionalInfo = getRWOInfo(termResult);
concept.setAdditionalInformation(additionalInfo);
In class Concept:
public void setAdditionalInformation(HashMap<String, String> info) {
this.additionalInformation = info;
}
The maps are of non-matching types.
| 1.0 | VitroLib build broken on develop - In LCNAFImpl.createConcept():
HashMap<String, Object> additionalInfo = getRWOInfo(termResult);
concept.setAdditionalInformation(additionalInfo);
In class Concept:
public void setAdditionalInformation(HashMap<String, String> info) {
this.additionalInformation = info;
}
The maps are of non-matching types.
| non_test | vitrolib build broken on develop in lcnafimpl createconcept hashmap additionalinfo getrwoinfo termresult concept setadditionalinformation additionalinfo in class concept public void setadditionalinformation hashmap info this additionalinformation info the maps are of non matching types | 0 |
140,851 | 12,950,062,315 | IssuesEvent | 2020-07-19 11:43:55 | RolandJansen/intermix | https://api.github.com/repos/RolandJansen/intermix | closed | Think about a blog | documentation website | A blog about the project would be the most interesting and fun part of the webpage. There are different options:
- tumblr
- wordpress
- md pages and jekyll
- a real blog with jekyll imports
Not shure whats best. There should probably be a media strategy... | 1.0 | Think about a blog - A blog about the project would be the most interesting and fun part of the webpage. There are different options:
- tumblr
- wordpress
- md pages and jekyll
- a real blog with jekyll imports
Not shure whats best. There should probably be a media strategy... | non_test | think about a blog a blog about the project would be the most interesting and fun part of the webpage there are different options tumblr wordpress md pages and jekyll a real blog with jekyll imports not shure whats best there should probably be a media strategy | 0 |
118,417 | 9,986,781,667 | IssuesEvent | 2019-07-10 20:00:51 | mili-technologies/mili-shit-app | https://api.github.com/repos/mili-technologies/mili-shit-app | closed | Crashing on Gray Add button | bug ready for test | In order page - some items have different add button with quantity increase & decrease button. When click on a plus button to icrease the quantity app gets crashed. | 1.0 | Crashing on Gray Add button - In order page - some items have different add button with quantity increase & decrease button. When click on a plus button to icrease the quantity app gets crashed. | test | crashing on gray add button in order page some items have different add button with quantity increase decrease button when click on a plus button to icrease the quantity app gets crashed | 1 |
67,190 | 7,041,973,743 | IssuesEvent | 2017-12-30 04:04:39 | jspenguin2017/uBlockProtector | https://api.github.com/repos/jspenguin2017/uBlockProtector | closed | liquipedia.net | Test In Progress | <!--
For hard anti-adblock (allow ads or leave type), open issue in uAssets instead (unless they do not have a solution):
https://github.com/uBlockOrigin/uAssets
If you are using Nano Adblocker, your uBlock Origin version is in About section of Nano Dashboard.
-->
### Test link (required):
http://liquipedia.net/dota2/Main_Page
### Screenshot of the web page (including address bar and extension icons) (required):
<!--
Your screenshot should look something like this: https://i.imgur.com/UiKwWc7.png
You are required to show all extension icons, you can disable unrelated extensions if you want to keep them private
-->

### Screenshot of the console (press `F12` to bring up the console) (required):
<!--
Your screenshot should look something like this: https://i.imgur.com/qnVB0K7.png
-->

### Environment (Required):
- Operating System and Version:
- Browser and Version: 64.0.3282.39 (Official Build) beta (64-bit) (cohort: Beta)
- Adblocker and Version: Nano Adblocker 1.0.0.21
### Explain what was not right (optional if obvious):
Open the site, wait until it fully loads. It will then redirect to the page showed above
### Reproduction steps (optional if trivial):
Use all default filters came with Nano Adblocker **BUT UNcheck `uBlock filters – Privacy`**
### Add everything else that you believe to be useful below (optional):
The MINIMUM filter set to break it from my observation is either:
* `Nano Defender Integration` + `EasyList`
* `Nano Defender Integration` + `Peter Lowe’s Ad and tracking server list`
And `uBlock filters – Privacy` will always _UNbreak_ it.
| 1.0 | liquipedia.net - <!--
For hard anti-adblock (allow ads or leave type), open issue in uAssets instead (unless they do not have a solution):
https://github.com/uBlockOrigin/uAssets
If you are using Nano Adblocker, your uBlock Origin version is in About section of Nano Dashboard.
-->
### Test link (required):
http://liquipedia.net/dota2/Main_Page
### Screenshot of the web page (including address bar and extension icons) (required):
<!--
Your screenshot should look something like this: https://i.imgur.com/UiKwWc7.png
You are required to show all extension icons, you can disable unrelated extensions if you want to keep them private
-->

### Screenshot of the console (press `F12` to bring up the console) (required):
<!--
Your screenshot should look something like this: https://i.imgur.com/qnVB0K7.png
-->

### Environment (Required):
- Operating System and Version:
- Browser and Version: 64.0.3282.39 (Official Build) beta (64-bit) (cohort: Beta)
- Adblocker and Version: Nano Adblocker 1.0.0.21
### Explain what was not right (optional if obvious):
Open the site, wait until it fully loads. It will then redirect to the page showed above
### Reproduction steps (optional if trivial):
Use all default filters came with Nano Adblocker **BUT UNcheck `uBlock filters – Privacy`**
### Add everything else that you believe to be useful below (optional):
The MINIMUM filter set to break it from my observation is either:
* `Nano Defender Integration` + `EasyList`
* `Nano Defender Integration` + `Peter Lowe’s Ad and tracking server list`
And `uBlock filters – Privacy` will always _UNbreak_ it.
| test | liquipedia net for hard anti adblock allow ads or leave type open issue in uassets instead unless they do not have a solution if you are using nano adblocker your ublock origin version is in about section of nano dashboard test link required screenshot of the web page including address bar and extension icons required your screenshot should look something like this you are required to show all extension icons you can disable unrelated extensions if you want to keep them private screenshot of the console press to bring up the console required your screenshot should look something like this environment required operating system and version browser and version official build beta bit cohort beta adblocker and version nano adblocker explain what was not right optional if obvious open the site wait until it fully loads it will then redirect to the page showed above reproduction steps optional if trivial use all default filters came with nano adblocker but uncheck ublock filters – privacy add everything else that you believe to be useful below optional the minimum filter set to break it from my observation is either nano defender integration easylist nano defender integration peter lowe’s ad and tracking server list and ublock filters – privacy will always unbreak it | 1 |
41,575 | 5,375,514,184 | IssuesEvent | 2017-02-23 05:13:45 | matplotlib/matplotlib | https://api.github.com/repos/matplotlib/matplotlib | closed | Deprecate assert_str_equal | Testing | Judging by codecov, `assert_str_equal` in `tests/__init__.py` is never used (https://codecov.io/gh/matplotlib/matplotlib/src/master/lib/matplotlib/tests/__init__.py#L22), and grep agrees:
```
$ grep -r 'assert_str_equal' lib/
lib//matplotlib/tests/__init__.py:def assert_str_equal(reference_str, test_str,
```
So I don't see why it shouldn't be deprecated and then removed. | 1.0 | Deprecate assert_str_equal - Judging by codecov, `assert_str_equal` in `tests/__init__.py` is never used (https://codecov.io/gh/matplotlib/matplotlib/src/master/lib/matplotlib/tests/__init__.py#L22), and grep agrees:
```
$ grep -r 'assert_str_equal' lib/
lib//matplotlib/tests/__init__.py:def assert_str_equal(reference_str, test_str,
```
So I don't see why it shouldn't be deprecated and then removed. | test | deprecate assert str equal judging by codecov assert str equal in tests init py is never used and grep agrees grep r assert str equal lib lib matplotlib tests init py def assert str equal reference str test str so i don t see why it shouldn t be deprecated and then removed | 1 |
317,889 | 27,273,527,013 | IssuesEvent | 2023-02-23 01:32:29 | MPMG-DCC-UFMG/F01 | https://api.github.com/repos/MPMG-DCC-UFMG/F01 | closed | Teste de generalizacao para a tag Contratos - Dados dos Contratos - Lagoa Dourada | generalization test development | DoD: Realizar o teste de Generalização do validador da tag Contratos - Dados dos Contratos para o Município de Lagoa Dourada. | 1.0 | Teste de generalizacao para a tag Contratos - Dados dos Contratos - Lagoa Dourada - DoD: Realizar o teste de Generalização do validador da tag Contratos - Dados dos Contratos para o Município de Lagoa Dourada. | test | teste de generalizacao para a tag contratos dados dos contratos lagoa dourada dod realizar o teste de generalização do validador da tag contratos dados dos contratos para o município de lagoa dourada | 1 |
1,922 | 3,025,329,327 | IssuesEvent | 2015-08-03 07:45:40 | lionheart/openradar-mirror | https://api.github.com/repos/lionheart/openradar-mirror | opened | 21388651: VPN Menu Bar Clock Stuck | classification:ui/usability reproducible:always status:open | #### Description
Summary:
The VPN count up clock in OS X menu bar when using VPN doesn’t count up.
Steps to Reproduce:
1. Click VPN icon in Menu bar
2. Click Connect on VPN.
3. VPN connects.
Expected Results:
Once the VPN is connected the clock starts counting up showing how long the VPN client has been connected.
Actual Results:
Clock is stuck at 00:00:00
Regression:
Describe circumstances where the problem occurs or does not occur, such as software versions and/or hardware configurations.
Notes:
Provide additional information, such as references to related problems, workarounds and relevant attachments.
-
Product Version: Mac OS X 10.11 (15A178w)
Created: 2015-06-15T20:21:53.173680
Originated: 2015-06-15T21:21:00
Open Radar Link: http://www.openradar.me/21388651 | True | 21388651: VPN Menu Bar Clock Stuck - #### Description
Summary:
The VPN count up clock in OS X menu bar when using VPN doesn’t count up.
Steps to Reproduce:
1. Click VPN icon in Menu bar
2. Click Connect on VPN.
3. VPN connects.
Expected Results:
Once the VPN is connected the clock starts counting up showing how long the VPN client has been connected.
Actual Results:
Clock is stuck at 00:00:00
Regression:
Describe circumstances where the problem occurs or does not occur, such as software versions and/or hardware configurations.
Notes:
Provide additional information, such as references to related problems, workarounds and relevant attachments.
-
Product Version: Mac OS X 10.11 (15A178w)
Created: 2015-06-15T20:21:53.173680
Originated: 2015-06-15T21:21:00
Open Radar Link: http://www.openradar.me/21388651 | non_test | vpn menu bar clock stuck description summary the vpn count up clock in os x menu bar when using vpn doesn’t count up steps to reproduce click vpn icon in menu bar click connect on vpn vpn connects expected results once the vpn is connected the clock starts counting up showing how long the vpn client has been connected actual results clock is stuck at regression describe circumstances where the problem occurs or does not occur such as software versions and or hardware configurations notes provide additional information such as references to related problems workarounds and relevant attachments product version mac os x created originated open radar link | 0 |
700,096 | 24,045,851,222 | IssuesEvent | 2022-09-16 08:15:43 | pravega/pravega | https://api.github.com/repos/pravega/pravega | closed | Revert Bookkeeper 4.15 upgrade in master | kind/bug area/segmentstore priority/P1 area/bookkeeper version/0.13.0 | **Describe the bug**
It seems unlikely that issue https://github.com/apache/bookkeeper/issues/3466 in Bookkeeper 4.15 can be solve within Pravega 0.13 time frame. For this reason, we need to revert PR #6676 in `master` as well and upgrade to Bookkeeper 4.15 when that issue is solved.
**To Reproduce**
See https://github.com/apache/bookkeeper/issues/3466.
**Screenshots**
n/a
**Additional information**
n/a | 1.0 | Revert Bookkeeper 4.15 upgrade in master - **Describe the bug**
It seems unlikely that issue https://github.com/apache/bookkeeper/issues/3466 in Bookkeeper 4.15 can be solve within Pravega 0.13 time frame. For this reason, we need to revert PR #6676 in `master` as well and upgrade to Bookkeeper 4.15 when that issue is solved.
**To Reproduce**
See https://github.com/apache/bookkeeper/issues/3466.
**Screenshots**
n/a
**Additional information**
n/a | non_test | revert bookkeeper upgrade in master describe the bug it seems unlikely that issue in bookkeeper can be solve within pravega time frame for this reason we need to revert pr in master as well and upgrade to bookkeeper when that issue is solved to reproduce see screenshots n a additional information n a | 0 |
236,134 | 19,516,172,089 | IssuesEvent | 2021-12-29 10:35:52 | pingcap/tidb | https://api.github.com/repos/pingcap/tidb | closed | mockstore: panic happens for test TestMvccTxnRead | type/bug component/test sig/transaction component/unistore severity/moderate | ## Bug Report
### 1. Minimal reproduce step (Required)
Test `TestMvccTxnRead` failed with following stack:
```
[2021-12-06T09:50:51.934Z] --- FAIL: TestMvccTxnRead (1.51s)
[2021-12-06T09:50:51.934Z] panic: runtime error: invalid memory address or nil pointer dereference [recovered]
[2021-12-06T09:50:51.934Z] panic: runtime error: invalid memory address or nil pointer dereference
[2021-12-06T09:50:51.934Z] [signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0x1490ffc]
[2021-12-06T09:50:51.934Z]
[2021-12-06T09:50:51.934Z] goroutine 116 [running]:
[2021-12-06T09:50:51.934Z] testing.tRunner.func1.2(0x15d0640, 0x2bf3be0)
[2021-12-06T09:50:51.934Z] /usr/local/go/src/testing/testing.go:1143 +0x332
[2021-12-06T09:50:51.934Z] testing.tRunner.func1(0xc0005ebe00)
[2021-12-06T09:50:51.934Z] /usr/local/go/src/testing/testing.go:1146 +0x4b6
[2021-12-06T09:50:51.934Z] panic(0x15d0640, 0x2bf3be0)
[2021-12-06T09:50:51.934Z] /usr/local/go/src/runtime/panic.go:965 +0x1b9
[2021-12-06T09:50:51.934Z] github.com/pingcap/tidb/store/mockstore/unistore/tikv.(*regionCtx).AcquireLatches(0xc0004d1a40, 0xc000922068, 0x1, 0x1)
[2021-12-06T09:50:51.934Z] /home/jenkins/agent/workspace/tidb_ghpr_check_2/go/src/github.com/pingcap/tidb/store/mockstore/unistore/tikv/region.go:251 +0x1bc
[2021-12-06T09:50:51.934Z] github.com/pingcap/tidb/store/mockstore/unistore/tikv.(*MVCCStore).Commit(0xc010166080, 0xc129192500, 0xc00fd22198, 0x1, 0x1, 0x5, 0xa, 0x0, 0x0)
[2021-12-06T09:50:51.934Z] /home/jenkins/agent/workspace/tidb_ghpr_check_2/go/src/github.com/pingcap/tidb/store/mockstore/unistore/tikv/mvcc.go:913 +0x219
[2021-12-06T09:50:51.934Z] github.com/pingcap/tidb/store/mockstore/unistore/tikv.MustCommit(0xc036f1e1b7, 0x3, 0x3, 0x5, 0xa, 0xc0008526c0)
[2021-12-06T09:50:51.934Z] /home/jenkins/agent/workspace/tidb_ghpr_check_2/go/src/github.com/pingcap/tidb/store/mockstore/unistore/tikv/mvcc_test.go:390 +0x12f
[2021-12-06T09:50:51.934Z] github.com/pingcap/tidb/store/mockstore/unistore/tikv.TestMvccTxnRead(0xc0005ebe00)
[2021-12-06T09:50:51.934Z] /home/jenkins/agent/workspace/tidb_ghpr_check_2/go/src/github.com/pingcap/tidb/store/mockstore/unistore/tikv/mvcc_test.go:967 +0x5da
[2021-12-06T09:50:51.934Z] testing.tRunner(0xc0005ebe00, 0x187ec60)
[2021-12-06T09:50:51.934Z] /usr/local/go/src/testing/testing.go:1193 +0xef
[2021-12-06T09:50:51.934Z] created by testing.(*T).Run
[2021-12-06T09:50:51.934Z] /usr/local/go/src/testing/testing.go:1238 +0x2b3
```
From https://ci.pingcap.net/blue/organizations/jenkins/tidb_ghpr_check_2/detail/tidb_ghpr_check_2/50372/pipeline, PR https://github.com/pingcap/tidb/pull/30306. I don't think it is related to #30306.
### 4. What is your TiDB version? (Required)
It happens in the CI of the `master` branch. | 1.0 | mockstore: panic happens for test TestMvccTxnRead - ## Bug Report
### 1. Minimal reproduce step (Required)
Test `TestMvccTxnRead` failed with following stack:
```
[2021-12-06T09:50:51.934Z] --- FAIL: TestMvccTxnRead (1.51s)
[2021-12-06T09:50:51.934Z] panic: runtime error: invalid memory address or nil pointer dereference [recovered]
[2021-12-06T09:50:51.934Z] panic: runtime error: invalid memory address or nil pointer dereference
[2021-12-06T09:50:51.934Z] [signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0x1490ffc]
[2021-12-06T09:50:51.934Z]
[2021-12-06T09:50:51.934Z] goroutine 116 [running]:
[2021-12-06T09:50:51.934Z] testing.tRunner.func1.2(0x15d0640, 0x2bf3be0)
[2021-12-06T09:50:51.934Z] /usr/local/go/src/testing/testing.go:1143 +0x332
[2021-12-06T09:50:51.934Z] testing.tRunner.func1(0xc0005ebe00)
[2021-12-06T09:50:51.934Z] /usr/local/go/src/testing/testing.go:1146 +0x4b6
[2021-12-06T09:50:51.934Z] panic(0x15d0640, 0x2bf3be0)
[2021-12-06T09:50:51.934Z] /usr/local/go/src/runtime/panic.go:965 +0x1b9
[2021-12-06T09:50:51.934Z] github.com/pingcap/tidb/store/mockstore/unistore/tikv.(*regionCtx).AcquireLatches(0xc0004d1a40, 0xc000922068, 0x1, 0x1)
[2021-12-06T09:50:51.934Z] /home/jenkins/agent/workspace/tidb_ghpr_check_2/go/src/github.com/pingcap/tidb/store/mockstore/unistore/tikv/region.go:251 +0x1bc
[2021-12-06T09:50:51.934Z] github.com/pingcap/tidb/store/mockstore/unistore/tikv.(*MVCCStore).Commit(0xc010166080, 0xc129192500, 0xc00fd22198, 0x1, 0x1, 0x5, 0xa, 0x0, 0x0)
[2021-12-06T09:50:51.934Z] /home/jenkins/agent/workspace/tidb_ghpr_check_2/go/src/github.com/pingcap/tidb/store/mockstore/unistore/tikv/mvcc.go:913 +0x219
[2021-12-06T09:50:51.934Z] github.com/pingcap/tidb/store/mockstore/unistore/tikv.MustCommit(0xc036f1e1b7, 0x3, 0x3, 0x5, 0xa, 0xc0008526c0)
[2021-12-06T09:50:51.934Z] /home/jenkins/agent/workspace/tidb_ghpr_check_2/go/src/github.com/pingcap/tidb/store/mockstore/unistore/tikv/mvcc_test.go:390 +0x12f
[2021-12-06T09:50:51.934Z] github.com/pingcap/tidb/store/mockstore/unistore/tikv.TestMvccTxnRead(0xc0005ebe00)
[2021-12-06T09:50:51.934Z] /home/jenkins/agent/workspace/tidb_ghpr_check_2/go/src/github.com/pingcap/tidb/store/mockstore/unistore/tikv/mvcc_test.go:967 +0x5da
[2021-12-06T09:50:51.934Z] testing.tRunner(0xc0005ebe00, 0x187ec60)
[2021-12-06T09:50:51.934Z] /usr/local/go/src/testing/testing.go:1193 +0xef
[2021-12-06T09:50:51.934Z] created by testing.(*T).Run
[2021-12-06T09:50:51.934Z] /usr/local/go/src/testing/testing.go:1238 +0x2b3
```
From https://ci.pingcap.net/blue/organizations/jenkins/tidb_ghpr_check_2/detail/tidb_ghpr_check_2/50372/pipeline, PR https://github.com/pingcap/tidb/pull/30306. I don't think it is related to #30306.
### 4. What is your TiDB version? (Required)
It happens in the CI of the `master` branch. | test | mockstore panic happens for test testmvcctxnread bug report minimal reproduce step required test testmvcctxnread failed with following stack fail testmvcctxnread panic runtime error invalid memory address or nil pointer dereference panic runtime error invalid memory address or nil pointer dereference goroutine testing trunner usr local go src testing testing go testing trunner usr local go src testing testing go panic usr local go src runtime panic go github com pingcap tidb store mockstore unistore tikv regionctx acquirelatches home jenkins agent workspace tidb ghpr check go src github com pingcap tidb store mockstore unistore tikv region go github com pingcap tidb store mockstore unistore tikv mvccstore commit home jenkins agent workspace tidb ghpr check go src github com pingcap tidb store mockstore unistore tikv mvcc go github com pingcap tidb store mockstore unistore tikv mustcommit home jenkins agent workspace tidb ghpr check go src github com pingcap tidb store mockstore unistore tikv mvcc test go github com pingcap tidb store mockstore unistore tikv testmvcctxnread home jenkins agent workspace tidb ghpr check go src github com pingcap tidb store mockstore unistore tikv mvcc test go testing trunner usr local go src testing testing go created by testing t run usr local go src testing testing go from pr i don t think it is related to what is your tidb version required it happens in the ci of the master branch | 1 |
52,061 | 6,217,359,785 | IssuesEvent | 2017-07-08 14:18:58 | publiclab/plots2 | https://api.github.com/repos/publiclab/plots2 | closed | Some recently edited methods pages don't sort to the top of /methods | bug fto-candidate help-wanted Ruby testing |
This has been marked as a good candidate for becoming a [first-timers-only issue](http://www.firsttimersonly.com) like [these](https://github.com/publiclab/plots2/labels/first-timers-only), meaning that it's simple, self-contained, and with some extra formatting, could be a great entry point for a new contributor. If you're familiar enough with this code, please consider [reformatting or reposting it as a first-timers-only issue](https://publiclab.org/notes/warren/10-31-2016/create-a-welcoming-first-timers-only-issue-to-invite-new-software-contributors), and then ping @jywarren to get it labelled. Or, if this is not your first time, try to solve it yourself!
****
### Problem
Some edits were made to https://publiclab.org/wiki/balloon-mapping, but it's still listed at the bottom of https://publiclab.org/methods
But that page is supposed to sort by last updated, descending, according to this code: https://github.com/publiclab/plots2/blob/master/app/controllers/notes_controller.rb#L14-L18
We can see that the latest revisions have reasonable timestamps, here: https://publiclab.org/wiki/revisions/balloon-mapping
Not sure why this is happening, but we should be able to narrow in on this error using a functional test, in this document:
https://github.com/publiclab/plots2/blob/master/test/functional/notes_controller_test.rb#L189-L201 (which can also use some indentation formatting help 😄 )
We ought to be able to test if `assigns(:notes)` is actually sorted by timestamp, maybe using Ruby's `sort_by` method. | 1.0 | Some recently edited methods pages don't sort to the top of /methods -
This has been marked as a good candidate for becoming a [first-timers-only issue](http://www.firsttimersonly.com) like [these](https://github.com/publiclab/plots2/labels/first-timers-only), meaning that it's simple, self-contained, and with some extra formatting, could be a great entry point for a new contributor. If you're familiar enough with this code, please consider [reformatting or reposting it as a first-timers-only issue](https://publiclab.org/notes/warren/10-31-2016/create-a-welcoming-first-timers-only-issue-to-invite-new-software-contributors), and then ping @jywarren to get it labelled. Or, if this is not your first time, try to solve it yourself!
****
### Problem
Some edits were made to https://publiclab.org/wiki/balloon-mapping, but it's still listed at the bottom of https://publiclab.org/methods
But that page is supposed to sort by last updated, descending, according to this code: https://github.com/publiclab/plots2/blob/master/app/controllers/notes_controller.rb#L14-L18
We can see that the latest revisions have reasonable timestamps, here: https://publiclab.org/wiki/revisions/balloon-mapping
Not sure why this is happening, but we should be able to narrow in on this error using a functional test, in this document:
https://github.com/publiclab/plots2/blob/master/test/functional/notes_controller_test.rb#L189-L201 (which can also use some indentation formatting help 😄 )
We ought to be able to test if `assigns(:notes)` is actually sorted by timestamp, maybe using Ruby's `sort_by` method. | test | some recently edited methods pages don t sort to the top of methods this has been marked as a good candidate for becoming a like meaning that it s simple self contained and with some extra formatting could be a great entry point for a new contributor if you re familiar enough with this code please consider and then ping jywarren to get it labelled or if this is not your first time try to solve it yourself problem some edits were made to but it s still listed at the bottom of but that page is supposed to sort by last updated descending according to this code we can see that the latest revisions have reasonable timestamps here not sure why this is happening but we should be able to narrow in on this error using a functional test in this document which can also use some indentation formatting help 😄 we ought to be able to test if assigns notes is actually sorted by timestamp maybe using ruby s sort by method | 1 |
345,869 | 24,877,904,492 | IssuesEvent | 2022-10-27 20:55:49 | pytorch/data | https://api.github.com/repos/pytorch/data | closed | [RFC] Verify that the docs contain working code and self-contained examples using doctest | documentation Better Engineering | ### 🚀 The feature
Currently there does not seem to be an automatic way to verify that the examples in the documentation are actually working. This leads to issues like (https://github.com/pytorch/data/issues/433).
An example should also be complete enough so that developers can easily try out the code.
A solution could be to use the sphinx doctest extension to test the documentation before building it. Docstrings can be continuously migrated from standard reST doctests to test code that runs using the sphinx doctest extension.
### Motivation, pitch
Working examples that are up-to-date boost adoption of the library and make it easier for developers to become proficient in using the library.
Therefore one could consider using doctest in order to be forced to write self-contained examples that execute without error.
### Alternatives
Doctests can be executed in different ways:
- Invoking plain python to execute the doctests as described [here](https://docs.python.org/3/library/doctest.html)
- Using [pytest --doctest](https://docs.pytest.org/en/7.1.x/how-to/doctest.html) to execute the tests
- Run within the documentation build process as `cd docs && make doctest`
I would recommend running the doctests while building the documentation using sphinx because it is easy to continuously
migrate the existing non-tested example code to code being tested.
### Additional context
A minimal example of the RFC can be found
[here](https://github.com/pytorch/data/pull/850). Please
note that the code is only meant as an example for discussion and might not (yet) meet the quality criteria of a PR.
The example implementation consists of the following parts:
- An updated `docs/Makefile` with a `doctest` target
- Enabling the sphinx extension `sphinx.ext.doctest` in `docs/source/conf.py`
- A minimal example of an updated docstring in `torchdata/dataloader2/adapter.py`
- Adding the `doctest` step to the CI in `.github/workflows/_build_test_upload.yml`
The tests can be executed like this: `cd docs && make doctest`.
| 1.0 | [RFC] Verify that the docs contain working code and self-contained examples using doctest - ### 🚀 The feature
Currently there does not seem to be an automatic way to verify that the examples in the documentation are actually working. This leads to issues like (https://github.com/pytorch/data/issues/433).
An example should also be complete enough so that developers can easily try out the code.
A solution could be to use the sphinx doctest extension to test the documentation before building it. Docstrings can be continuously migrated from standard reST doctests to test code that runs using the sphinx doctest extension.
### Motivation, pitch
Working examples that are up-to-date boost adoption of the library and make it easier for developers to become proficient in using the library.
Therefore one could consider using doctest in order to be forced to write self-contained examples that execute without error.
### Alternatives
Doctests can be executed in different ways:
- Invoking plain python to execute the doctests as described [here](https://docs.python.org/3/library/doctest.html)
- Using [pytest --doctest](https://docs.pytest.org/en/7.1.x/how-to/doctest.html) to execute the tests
- Run within the documentation build process as `cd docs && make doctest`
I would recommend running the doctests while building the documentation using sphinx because it is easy to continuously
migrate the existing non-tested example code to code being tested.
### Additional context
A minimal example of the RFC can be found
[here](https://github.com/pytorch/data/pull/850). Please
note that the code is only meant as an example for discussion and might not (yet) meet the quality criteria of a PR.
The example implementation consists of the following parts:
- An updated `docs/Makefile` with a `doctest` target
- Enabling the sphinx extension `sphinx.ext.doctest` in `docs/source/conf.py`
- A minimal example of an updated docstring in `torchdata/dataloader2/adapter.py`
- Adding the `doctest` step to the CI in `.github/workflows/_build_test_upload.yml`
The tests can be executed like this: `cd docs && make doctest`.
| non_test | verify that the docs contain working code and self contained examples using doctest 🚀 the feature currently there does not seem to be an automatic way to verify that the examples in the documentation are actually working this leads to issues like an example should also be complete enough so that developers can easily try out the code a solution could be to use the sphinx doctest extension to test the documentation before building it docstrings can be continuously migrated from standard rest doctests to test code that runs using the sphinx doctest extension motivation pitch working examples that are up to date boost adoption of the library and make it easier for developers to become proficient in using the library therefore one could consider using doctest in order to be forced to write self contained examples that execute without error alternatives doctests can be executed in different ways invoking plain python to execute the doctests as described using to execute the tests run within the documentation build process as cd docs make doctest i would recommend running the doctests while building the documentation using sphinx because it is easy to continuously migrate the existing non tested example code to code being tested additional context a minimal example of the rfc can be found please note that the code is only meant as an example for discussion and might not yet meet the quality criteria of a pr the example implementation consists of the following parts an updated docs makefile with a doctest target enabling the sphinx extension sphinx ext doctest in docs source conf py a minimal example of an updated docstring in torchdata adapter py adding the doctest step to the ci in github workflows build test upload yml the tests can be executed like this cd docs make doctest | 0 |
269,330 | 23,437,946,952 | IssuesEvent | 2022-08-15 12:06:51 | cockroachdb/cockroach | https://api.github.com/repos/cockroachdb/cockroach | opened | roachtest: rebalance/by-load/replicas failed | C-test-failure O-robot O-roachtest release-blocker branch-release-22.1 | roachtest.rebalance/by-load/replicas [failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=6094293&tab=buildLog) with [artifacts](https://teamcity.cockroachdb.com/viewLog.html?buildId=6094293&tab=artifacts#/rebalance/by-load/replicas) on release-22.1 @ [4ec3e89f4065e78285afbd5261e36ffc6b551274](https://github.com/cockroachdb/cockroach/commits/4ec3e89f4065e78285afbd5261e36ffc6b551274):
```
The test failed on branch=release-22.1, cloud=gce:
test artifacts and logs in: /artifacts/rebalance/by-load/replicas/run_1
rebalance_load.go:149,rebalance_load.go:193,test_runner.go:883: timed out before leases were evenly spread
```
<details><summary>Help</summary>
<p>
See: [roachtest README](https://github.com/cockroachdb/cockroach/blob/master/pkg/cmd/roachtest/README.md)
See: [How To Investigate \(internal\)](https://cockroachlabs.atlassian.net/l/c/SSSBr8c7)
</p>
</details>
<details><summary>Same failure on other branches</summary>
<p>
- #85317 roachtest: rebalance/by-load/replicas/mixed-version failed [C-test-failure O-roachtest O-robot T-kv branch-master release-blocker]
- #82991 roachtest: rebalance/by-load/replicas/ssds=2 failed [C-test-failure O-roachtest O-robot T-kv branch-master release-blocker]
</p>
</details>
/cc @cockroachdb/kv-triage
<sub>
[This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*rebalance/by-load/replicas.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)
</sub>
| 2.0 | roachtest: rebalance/by-load/replicas failed - roachtest.rebalance/by-load/replicas [failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=6094293&tab=buildLog) with [artifacts](https://teamcity.cockroachdb.com/viewLog.html?buildId=6094293&tab=artifacts#/rebalance/by-load/replicas) on release-22.1 @ [4ec3e89f4065e78285afbd5261e36ffc6b551274](https://github.com/cockroachdb/cockroach/commits/4ec3e89f4065e78285afbd5261e36ffc6b551274):
```
The test failed on branch=release-22.1, cloud=gce:
test artifacts and logs in: /artifacts/rebalance/by-load/replicas/run_1
rebalance_load.go:149,rebalance_load.go:193,test_runner.go:883: timed out before leases were evenly spread
```
<details><summary>Help</summary>
<p>
See: [roachtest README](https://github.com/cockroachdb/cockroach/blob/master/pkg/cmd/roachtest/README.md)
See: [How To Investigate \(internal\)](https://cockroachlabs.atlassian.net/l/c/SSSBr8c7)
</p>
</details>
<details><summary>Same failure on other branches</summary>
<p>
- #85317 roachtest: rebalance/by-load/replicas/mixed-version failed [C-test-failure O-roachtest O-robot T-kv branch-master release-blocker]
- #82991 roachtest: rebalance/by-load/replicas/ssds=2 failed [C-test-failure O-roachtest O-robot T-kv branch-master release-blocker]
</p>
</details>
/cc @cockroachdb/kv-triage
<sub>
[This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*rebalance/by-load/replicas.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)
</sub>
| test | roachtest rebalance by load replicas failed roachtest rebalance by load replicas with on release the test failed on branch release cloud gce test artifacts and logs in artifacts rebalance by load replicas run rebalance load go rebalance load go test runner go timed out before leases were evenly spread help see see same failure on other branches roachtest rebalance by load replicas mixed version failed roachtest rebalance by load replicas ssds failed cc cockroachdb kv triage | 1 |
168,324 | 13,079,603,344 | IssuesEvent | 2020-08-01 04:01:54 | kubernetes/test-infra | https://api.github.com/repos/kubernetes/test-infra | opened | Kubernetes CI Policy: create and enforce policy of removing continuously unhealthy jobs | sig/testing | Part of https://github.com/kubernetes/test-infra/issues/18551
Once we have:
- https://github.com/kubernetes/test-infra/issues/18599 - contact info for all jobs
- https://github.com/kubernetes/test-infra/issues/18600 - removed jobs that were obvious candidates for unhealthy
It's time to craft a policy to maintain a reasonable state of job health going forward!
A rough suggestion is: "continuously failing for O(weeks) means removal"
Perhaps there is more room for nuance here:
- maybe infrequently scheduled jobs are permissible for longer?
- do we care about continuously failing jobs not run on prow.k8s.io?
- what are the logistics of outreach, deadlines, "hang on we can't fix it now" etc. | 1.0 | Kubernetes CI Policy: create and enforce policy of removing continuously unhealthy jobs - Part of https://github.com/kubernetes/test-infra/issues/18551
Once we have:
- https://github.com/kubernetes/test-infra/issues/18599 - contact info for all jobs
- https://github.com/kubernetes/test-infra/issues/18600 - removed jobs that were obvious candidates for unhealthy
It's time to craft a policy to maintain a reasonable state of job health going forward!
A rough suggestion is: "continuously failing for O(weeks) means removal"
Perhaps there is more room for nuance here:
- maybe infrequently scheduled jobs are permissible for longer?
- do we care about continuously failing jobs not run on prow.k8s.io?
- what are the logistics of outreach, deadlines, "hang on we can't fix it now" etc. | test | kubernetes ci policy create and enforce policy of removing continuously unhealthy jobs part of once we have contact info for all jobs removed jobs that were obvious candidates for unhealthy it s time to craft a policy to maintain a reasonable state of job health going forward a rough suggestion is continuously failing for o weeks means removal perhaps there is more room for nuance here maybe infrequently scheduled jobs are permissible for longer do we care about continuously failing jobs not run on prow io what are the logistics of outreach deadlines hang on we can t fix it now etc | 1 |
92,454 | 8,364,379,885 | IssuesEvent | 2018-10-03 22:46:33 | learn-co-curriculum/moving-things-with-javascript | https://api.github.com/repos/learn-co-curriculum/moving-things-with-javascript | closed | unmet dependency `jsdom/lib/old-api` | Curriculum Test | getting the following error when i run `learn test`:
```
1) index "before all" hook:
Error: Cannot find module 'jsdom/lib/old-api'
at require (internal/module.js:11:18)
at Context.<anonymous> (node_modules/mocha-jsdom/index.js:53:5)
``` | 1.0 | unmet dependency `jsdom/lib/old-api` - getting the following error when i run `learn test`:
```
1) index "before all" hook:
Error: Cannot find module 'jsdom/lib/old-api'
at require (internal/module.js:11:18)
at Context.<anonymous> (node_modules/mocha-jsdom/index.js:53:5)
``` | test | unmet dependency jsdom lib old api getting the following error when i run learn test index before all hook error cannot find module jsdom lib old api at require internal module js at context node modules mocha jsdom index js | 1 |
67,277 | 16,857,778,151 | IssuesEvent | 2021-06-21 09:03:51 | dotnet/sdk | https://api.github.com/repos/dotnet/sdk | closed | MSBuild Service - using MSBULDNOINPROCNODE env var | build performance untriaged | Part of .NET 6.0 user story dotnet/msbuild#5873 as issue dotnet/msbuild#6392
Use existing MSBULDNOINPROCNODE escape hatch to improve consequent and incremental build scenarios.
Entry node will not compile any projects and will use reusable msbuild node(s) for it.
This way recompile or incremental compile might happen with hot caches resulting in considerably faster build time.
| 1.0 | MSBuild Service - using MSBULDNOINPROCNODE env var - Part of .NET 6.0 user story dotnet/msbuild#5873 as issue dotnet/msbuild#6392
Use existing MSBULDNOINPROCNODE escape hatch to improve consequent and incremental build scenarios.
Entry node will not compile any projects and will use reusable msbuild node(s) for it.
This way recompile or incremental compile might happen with hot caches resulting in considerably faster build time.
| non_test | msbuild service using msbuldnoinprocnode env var part of net user story dotnet msbuild as issue dotnet msbuild use existing msbuldnoinprocnode escape hatch to improve consequent and incremental build scenarios entry node will not compile any projects and will use reusable msbuild node s for it this way recompile or incremental compile might happen with hot caches resulting in considerably faster build time | 0 |
336,530 | 30,199,950,077 | IssuesEvent | 2023-07-05 04:06:32 | marcpage/libernet | https://api.github.com/repos/marcpage/libernet | closed | Add test code to Hash_test.cpp for SpecificHash::base64(std::string &,text::Base64Style) and assignFromBase64(const std::string&) | good first issue test | These methods are not tested in the test code | 1.0 | Add test code to Hash_test.cpp for SpecificHash::base64(std::string &,text::Base64Style) and assignFromBase64(const std::string&) - These methods are not tested in the test code | test | add test code to hash test cpp for specifichash std string text and const std string these methods are not tested in the test code | 1 |
606,011 | 18,753,561,669 | IssuesEvent | 2021-11-05 07:35:58 | status-im/status-desktop | https://api.github.com/repos/status-im/status-desktop | opened | Closing the very last tab in browser reopens it again | bug Browser priority 4: minor | 1. enable browser in settings
2. open browser
3. click cross button for the very last tab
https://user-images.githubusercontent.com/82375995/140474673-41bd63a4-1f7e-482b-9daf-d4120b36b8b6.mov
| 1.0 | Closing the very last tab in browser reopens it again - 1. enable browser in settings
2. open browser
3. click cross button for the very last tab
https://user-images.githubusercontent.com/82375995/140474673-41bd63a4-1f7e-482b-9daf-d4120b36b8b6.mov
| non_test | closing the very last tab in browser reopens it again enable browser in settings open browser click cross button for the very last tab | 0 |
129,657 | 17,858,081,200 | IssuesEvent | 2021-09-05 12:30:58 | xezon/GeneralsGamePatch | https://api.github.com/repos/xezon/GeneralsGamePatch | opened | Hijacking the China Overlord Tank + Bunker Upgrade with Infantry inside will leave enemy infantry inside tank | design | Hijacking the China Overlord Tank + Bunker Upgrade with Infantry inside will leave enemy infantry inside tank. | 1.0 | Hijacking the China Overlord Tank + Bunker Upgrade with Infantry inside will leave enemy infantry inside tank - Hijacking the China Overlord Tank + Bunker Upgrade with Infantry inside will leave enemy infantry inside tank. | non_test | hijacking the china overlord tank bunker upgrade with infantry inside will leave enemy infantry inside tank hijacking the china overlord tank bunker upgrade with infantry inside will leave enemy infantry inside tank | 0 |
422,312 | 12,269,791,635 | IssuesEvent | 2020-05-07 14:34:40 | ProductBoat/Registry2.0 | https://api.github.com/repos/ProductBoat/Registry2.0 | opened | Transplant registry --> pre transplant clinical info --> procedure | High Priority bug | * Open chrome browser -->enter URL: http://qa.aprenalregistry.com
--> login page should be displaying.
Enter valid user name, and password
click on the login button.
* Test steps
1. After login to the page dashboard page is displaying, and click on the registry select the Transplant registry, respective page is displaying. then click on the pre transplant clinical info --> select the procedure --> click on kidney biopsy --> **click on the field customization icon, "kidney biopsy" field is not showing in Kidney Biopsy Field Customization.
-->in kidney biopsy, hied the fields click on cancel but that time tab will be change the dialysis information.
--> hied the fields in fields customization but fields are not hide.**
https://www.screencast.com/t/uO2wKCzj >> https://www.screencast.com/t/WTEEizjg | 1.0 | Transplant registry --> pre transplant clinical info --> procedure - * Open chrome browser -->enter URL: http://qa.aprenalregistry.com
--> login page should be displaying.
Enter valid user name, and password
click on the login button.
* Test steps
1. After login to the page dashboard page is displaying, and click on the registry select the Transplant registry, respective page is displaying. then click on the pre transplant clinical info --> select the procedure --> click on kidney biopsy --> **click on the field customization icon, "kidney biopsy" field is not showing in Kidney Biopsy Field Customization.
-->in kidney biopsy, hied the fields click on cancel but that time tab will be change the dialysis information.
--> hied the fields in fields customization but fields are not hide.**
https://www.screencast.com/t/uO2wKCzj >> https://www.screencast.com/t/WTEEizjg | non_test | transplant registry pre transplant clinical info procedure open chrome browser enter url login page should be displaying enter valid user name and password click on the login button test steps after login to the page dashboard page is displaying and click on the registry select the transplant registry respective page is displaying then click on the pre transplant clinical info select the procedure click on kidney biopsy click on the field customization icon kidney biopsy field is not showing in kidney biopsy field customization in kidney biopsy hied the fields click on cancel but that time tab will be change the dialysis information hied the fields in fields customization but fields are not hide | 0 |
30,331 | 6,109,079,860 | IssuesEvent | 2017-06-21 12:15:03 | primefaces/primeng | https://api.github.com/repos/primefaces/primeng | closed | p-gmap in p-tabView doesn't work | defect | In one of my tabs I have to show a gmap component.
but whatever I have tried hasn't worked. Here is my snippet:
```
<p-tabView>
<p-tabPanel header="div1" [selected]="true">
<div></div>
</p-tabPanel>
<p-tabPanel header="gmap">
<p-gmap.....
</p-tabPanel>
<p-tabPanel header="div3">
<div></div>
</p-tabPanel>
</p-tabView>
```
How to overcome the problem? Thanks in advance. | 1.0 | p-gmap in p-tabView doesn't work - In one of my tabs I have to show a gmap component.
but whatever I have tried hasn't worked. Here is my snippet:
```
<p-tabView>
<p-tabPanel header="div1" [selected]="true">
<div></div>
</p-tabPanel>
<p-tabPanel header="gmap">
<p-gmap.....
</p-tabPanel>
<p-tabPanel header="div3">
<div></div>
</p-tabPanel>
</p-tabView>
```
How to overcome the problem? Thanks in advance. | non_test | p gmap in p tabview doesn t work in one of my tabs i have to show a gmap component but whatever i have tried hasn t worked here is my snippet p gmap how to overcome the problem thanks in advance | 0 |
355,354 | 10,579,822,950 | IssuesEvent | 2019-10-08 04:18:27 | AY1920S1-CS2103T-T12-3/main | https://api.github.com/repos/AY1920S1-CS2103T-T12-3/main | opened | As a coach of male and female teams | priority.Medium type.Story | I want to filter players according to their gender in the team to be able to plan for team/trainings more efficiently. | 1.0 | As a coach of male and female teams - I want to filter players according to their gender in the team to be able to plan for team/trainings more efficiently. | non_test | as a coach of male and female teams i want to filter players according to their gender in the team to be able to plan for team trainings more efficiently | 0 |
54,712 | 30,322,159,421 | IssuesEvent | 2023-07-10 20:08:45 | ispc/ispc | https://api.github.com/repos/ispc/ispc | closed | #pragma unroll produces different code than unrolling by hand | Performance Bugs | After reading the latest release notes, I tried the code in issue #1320 again, hoping for it to get optimized:
```ispc
int32 gang_scan(int32 v) {
#pragma unroll
for (uniform int s = 1; s < programCount; s *= 2) {
v += shift(v, -s);
}
return v;
}
int32 gang_scan_manual_unroll(int32 v) {
v += shift(v, -1);
v += shift(v, -2);
v += shift(v, -4);
return v;
}
```
The asm produced by `#pragma unroll` couldn't optimize the shift the way it did when unrolled by hand.
Output: https://godbolt.org/z/j9o7oq
| True | #pragma unroll produces different code than unrolling by hand - After reading the latest release notes, I tried the code in issue #1320 again, hoping for it to get optimized:
```ispc
int32 gang_scan(int32 v) {
#pragma unroll
for (uniform int s = 1; s < programCount; s *= 2) {
v += shift(v, -s);
}
return v;
}
int32 gang_scan_manual_unroll(int32 v) {
v += shift(v, -1);
v += shift(v, -2);
v += shift(v, -4);
return v;
}
```
The asm produced by `#pragma unroll` couldn't optimize the shift the way it did when unrolled by hand.
Output: https://godbolt.org/z/j9o7oq
| non_test | pragma unroll produces different code than unrolling by hand after reading the latest release notes i tried the code in issue again hoping for it to get optimized ispc gang scan v pragma unroll for uniform int s s programcount s v shift v s return v gang scan manual unroll v v shift v v shift v v shift v return v the asm produced by pragma unroll couldn t optimize the shift the way it did when unrolled by hand output | 0 |
166,630 | 12,965,115,053 | IssuesEvent | 2020-07-20 21:43:02 | rancher/rancher | https://api.github.com/repos/rancher/rancher | closed | CIS scan tool support for cis v 1.5 | [zube]: To Test area/scan-tool kind/bug-qa | **What kind of request is this (question/bug/enhancement/feature request):** enhancement
CIS Scan tool must support scan for CIS benchmark v 1.5 | 1.0 | CIS scan tool support for cis v 1.5 - **What kind of request is this (question/bug/enhancement/feature request):** enhancement
CIS Scan tool must support scan for CIS benchmark v 1.5 | test | cis scan tool support for cis v what kind of request is this question bug enhancement feature request enhancement cis scan tool must support scan for cis benchmark v | 1 |
176,038 | 13,624,563,786 | IssuesEvent | 2020-09-24 08:15:06 | ls1intum/Artemis | https://api.github.com/repos/ls1intum/Artemis | closed | Add server integration tests for getAllExercisesOnPage(...) REST calls | chore good first issue tests | Those methods related to import functionality implemented (or refined) by @anditurdiu for programming, text and modeling exercises, we should cover those in server integration tests:
* ModelingExerciseResource:151
* TextExerciseResource:473
* ProgrammingExerciseResource:945
| 1.0 | Add server integration tests for getAllExercisesOnPage(...) REST calls - Those methods related to import functionality implemented (or refined) by @anditurdiu for programming, text and modeling exercises, we should cover those in server integration tests:
* ModelingExerciseResource:151
* TextExerciseResource:473
* ProgrammingExerciseResource:945
| test | add server integration tests for getallexercisesonpage rest calls those methods related to import functionality implemented or refined by anditurdiu for programming text and modeling exercises we should cover those in server integration tests modelingexerciseresource textexerciseresource programmingexerciseresource | 1 |
74,472 | 7,431,002,000 | IssuesEvent | 2018-03-25 10:02:05 | red/red | https://api.github.com/repos/red/red | closed | Radio widget turned off does not generate any event | GUI status.built status.tested type.review | ### Expected behavior
There are two radio button - one checked and another unchecked. For the first button `on-change` event is determined. If click on the second button, the status of the first button will change (become unchecked) and `on-change` event will occur.
### Actual behavior
`On-change` event doesn't occur. But if click on the first button, the event will occur, so it's not `on-change` event - it is `on-click` event!
### Steps to reproduce the problem
Example:
```
show-label: func [f e] [txt/text: "Hello world!"]
act: make object! [on-change: :show-label]
rb1: make face! [type: 'radio size: 60x20 offset: 10x10 text: "Radio1"
data: true actors: act]
rb2: make face! [type: 'radio size: 60x20 offset: 10x30 text: "Radio2"]
txt: make face! [type: 'text size: 60x20 offset: 10x60]
repend p: [] [rb1 rb2 txt]
view make face! [type: 'window size: 100x80 pane: p]
```
1) Click on "Radio2" - text label doesn't appear. It's wrong!
2) Click on "Radio1" - text label appears.
### Red version and build date, operating system with version.
Windows7 Ultimate 64bit, Red - version 0.6.3 built 3-Mar-2018/2:02:48+03:00 | 1.0 | Radio widget turned off does not generate any event - ### Expected behavior
There are two radio button - one checked and another unchecked. For the first button `on-change` event is determined. If click on the second button, the status of the first button will change (become unchecked) and `on-change` event will occur.
### Actual behavior
`On-change` event doesn't occur. But if click on the first button, the event will occur, so it's not `on-change` event - it is `on-click` event!
### Steps to reproduce the problem
Example:
```
show-label: func [f e] [txt/text: "Hello world!"]
act: make object! [on-change: :show-label]
rb1: make face! [type: 'radio size: 60x20 offset: 10x10 text: "Radio1"
data: true actors: act]
rb2: make face! [type: 'radio size: 60x20 offset: 10x30 text: "Radio2"]
txt: make face! [type: 'text size: 60x20 offset: 10x60]
repend p: [] [rb1 rb2 txt]
view make face! [type: 'window size: 100x80 pane: p]
```
1) Click on "Radio2" - text label doesn't appear. It's wrong!
2) Click on "Radio1" - text label appears.
### Red version and build date, operating system with version.
Windows7 Ultimate 64bit, Red - version 0.6.3 built 3-Mar-2018/2:02:48+03:00 | test | radio widget turned off does not generate any event expected behavior there are two radio button one checked and another unchecked for the first button on change event is determined if click on the second button the status of the first button will change become unchecked and on change event will occur actual behavior on change event doesn t occur but if click on the first button the event will occur so it s not on change event it is on click event steps to reproduce the problem example show label func act make object make face type radio size offset text data true actors act make face txt make face repend p view make face click on text label doesn t appear it s wrong click on text label appears red version and build date operating system with version ultimate red version built mar | 1 |
79,253 | 7,700,827,594 | IssuesEvent | 2018-05-20 07:41:05 | metafetish/buttplug-csharp | https://api.github.com/repos/metafetish/buttplug-csharp | closed | Simplify creation of generic messages | enhancement library testing | VibrateCmd/LinearCmd/RotateCmd suck to build by hand. Build a function that does the dirty work for you. | 1.0 | Simplify creation of generic messages - VibrateCmd/LinearCmd/RotateCmd suck to build by hand. Build a function that does the dirty work for you. | test | simplify creation of generic messages vibratecmd linearcmd rotatecmd suck to build by hand build a function that does the dirty work for you | 1 |
104,784 | 13,112,489,238 | IssuesEvent | 2020-08-05 02:21:52 | department-of-veterans-affairs/caseflow | https://api.github.com/repos/department-of-veterans-affairs/caseflow | opened | Design for Veteran self-services request on va.gov | Priority: Medium Product: caseflow-hearings Stakeholder: BVA Team: Tango 💃 Type: design 💅 | ## User story
As a Veteran I should have an option to self-service my virtual hearing request/opt-in on va.gov, understand if I have the necessary equipment, and how to test my connectivity.
## Problem statement
TKTK
## What is out of scope?
TKTK
## Open questions
TKTK
## Success criteria
From a user experience perspective, these designs will be successful if Veterans can quickly and easily... We'll know the designs are working if we observe that Veterans ... in usability tests.
Quantitative metrics will focus on...
## Related tickets
#14881
## Checklist
- [ ] TBD
## Designs
### Acceptance Criteria
`Written description of copy / design changes TBD` | 1.0 | Design for Veteran self-services request on va.gov - ## User story
As a Veteran I should have an option to self-service my virtual hearing request/opt-in on va.gov, understand if I have the necessary equipment, and how to test my connectivity.
## Problem statement
TKTK
## What is out of scope?
TKTK
## Open questions
TKTK
## Success criteria
From a user experience perspective, these designs will be successful if Veterans can quickly and easily... We'll know the designs are working if we observe that Veterans ... in usability tests.
Quantitative metrics will focus on...
## Related tickets
#14881
## Checklist
- [ ] TBD
## Designs
### Acceptance Criteria
`Written description of copy / design changes TBD` | non_test | design for veteran self services request on va gov user story as a veteran i should have an option to self service my virtual hearing request opt in on va gov understand if i have the necessary equipment and how to test my connectivity problem statement tktk what is out of scope tktk open questions tktk success criteria from a user experience perspective these designs will be successful if veterans can quickly and easily we ll know the designs are working if we observe that veterans in usability tests quantitative metrics will focus on related tickets checklist tbd designs acceptance criteria written description of copy design changes tbd | 0 |
39,326 | 12,663,368,101 | IssuesEvent | 2020-06-18 01:07:43 | TIBCOSoftware/js-bikeshare-demo | https://api.github.com/repos/TIBCOSoftware/js-bikeshare-demo | opened | CVE-2018-19837 (Medium) detected in node-sass-4.11.0.tgz | security vulnerability | ## CVE-2018-19837 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>node-sass-4.11.0.tgz</b></p></summary>
<p>Wrapper around libsass</p>
<p>Library home page: <a href="https://registry.npmjs.org/node-sass/-/node-sass-4.11.0.tgz">https://registry.npmjs.org/node-sass/-/node-sass-4.11.0.tgz</a></p>
<p>Path to dependency file: /js-bikeshare-demo/UI/package.json</p>
<p>Path to vulnerable library: /js-bikeshare-demo/UI/node_modules/node-sass/package.json</p>
<p>
Dependency Hierarchy:
- :x: **node-sass-4.11.0.tgz** (Vulnerable Library)
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In LibSass prior to 3.5.5, Sass::Eval::operator()(Sass::Binary_Expression*) inside eval.cpp allows attackers to cause a denial-of-service resulting from stack consumption via a crafted sass file, because of certain incorrect parsing of '%' as a modulo operator in parser.cpp.
<p>Publish Date: 2018-12-04
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-19837>CVE-2018-19837</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: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-19837">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-19837</a></p>
<p>Fix Resolution: 3.5.5</p>
</p>
</details>
<p></p>
***
<!-- REMEDIATE-OPEN-PR-START -->
- [ ] Check this box to open an automated fix PR
<!-- REMEDIATE-OPEN-PR-END -->
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"node-sass","packageVersion":"4.11.0","isTransitiveDependency":false,"dependencyTree":"node-sass:4.11.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"3.5.5"}],"vulnerabilityIdentifier":"CVE-2018-19837","vulnerabilityDetails":"In LibSass prior to 3.5.5, Sass::Eval::operator()(Sass::Binary_Expression*) inside eval.cpp allows attackers to cause a denial-of-service resulting from stack consumption via a crafted sass file, because of certain incorrect parsing of \u0027%\u0027 as a modulo operator in parser.cpp.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-19837","cvss3Severity":"medium","cvss3Score":"6.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"Required","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> --> | True | CVE-2018-19837 (Medium) detected in node-sass-4.11.0.tgz - ## CVE-2018-19837 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>node-sass-4.11.0.tgz</b></p></summary>
<p>Wrapper around libsass</p>
<p>Library home page: <a href="https://registry.npmjs.org/node-sass/-/node-sass-4.11.0.tgz">https://registry.npmjs.org/node-sass/-/node-sass-4.11.0.tgz</a></p>
<p>Path to dependency file: /js-bikeshare-demo/UI/package.json</p>
<p>Path to vulnerable library: /js-bikeshare-demo/UI/node_modules/node-sass/package.json</p>
<p>
Dependency Hierarchy:
- :x: **node-sass-4.11.0.tgz** (Vulnerable Library)
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In LibSass prior to 3.5.5, Sass::Eval::operator()(Sass::Binary_Expression*) inside eval.cpp allows attackers to cause a denial-of-service resulting from stack consumption via a crafted sass file, because of certain incorrect parsing of '%' as a modulo operator in parser.cpp.
<p>Publish Date: 2018-12-04
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-19837>CVE-2018-19837</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: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-19837">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-19837</a></p>
<p>Fix Resolution: 3.5.5</p>
</p>
</details>
<p></p>
***
<!-- REMEDIATE-OPEN-PR-START -->
- [ ] Check this box to open an automated fix PR
<!-- REMEDIATE-OPEN-PR-END -->
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"node-sass","packageVersion":"4.11.0","isTransitiveDependency":false,"dependencyTree":"node-sass:4.11.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"3.5.5"}],"vulnerabilityIdentifier":"CVE-2018-19837","vulnerabilityDetails":"In LibSass prior to 3.5.5, Sass::Eval::operator()(Sass::Binary_Expression*) inside eval.cpp allows attackers to cause a denial-of-service resulting from stack consumption via a crafted sass file, because of certain incorrect parsing of \u0027%\u0027 as a modulo operator in parser.cpp.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-19837","cvss3Severity":"medium","cvss3Score":"6.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"Required","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> --> | non_test | cve medium detected in node sass tgz cve medium severity vulnerability vulnerable library node sass tgz wrapper around libsass library home page a href path to dependency file js bikeshare demo ui package json path to vulnerable library js bikeshare demo ui node modules node sass package json dependency hierarchy x node sass tgz vulnerable library vulnerability details in libsass prior to sass eval operator sass binary expression inside eval cpp allows attackers to cause a denial of service resulting from stack consumption via a crafted sass file because of certain incorrect parsing of as a modulo operator in parser cpp publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href fix resolution check this box to open an automated fix pr isopenpronvulnerability false ispackagebased true isdefaultbranch true packages vulnerabilityidentifier cve vulnerabilitydetails in libsass prior to sass eval operator sass binary expression inside eval cpp allows attackers to cause a denial of service resulting from stack consumption via a crafted sass file because of certain incorrect parsing of as a modulo operator in parser cpp vulnerabilityurl | 0 |
66,704 | 7,010,752,834 | IssuesEvent | 2017-12-20 01:09:41 | doctrine/doctrine2 | https://api.github.com/repos/doctrine/doctrine2 | closed | EntityGenerator do not see columnPrefix mapping | Bug Missing Tests | ### doctrine/orm v2.5.6
Problem is here (wrong variable name):
http://www.doctrine-project.org/api/orm/2.5/source-class-Doctrine.ORM.Tools.EntityGenerator.html#1731
```php
protected function generateEmbeddedPropertyDocBlock(array $embeddedClass)
{
// ...
if (isset($fieldMapping['columnPrefix'])) {
$embedded[] = 'columnPrefix=' . var_export($embeddedClass['columnPrefix'], true);
}
// ...
}
```
Inside method do not exist variable `$fieldMapping`, should be used `$embeddedClass` instead. | 1.0 | EntityGenerator do not see columnPrefix mapping - ### doctrine/orm v2.5.6
Problem is here (wrong variable name):
http://www.doctrine-project.org/api/orm/2.5/source-class-Doctrine.ORM.Tools.EntityGenerator.html#1731
```php
protected function generateEmbeddedPropertyDocBlock(array $embeddedClass)
{
// ...
if (isset($fieldMapping['columnPrefix'])) {
$embedded[] = 'columnPrefix=' . var_export($embeddedClass['columnPrefix'], true);
}
// ...
}
```
Inside method do not exist variable `$fieldMapping`, should be used `$embeddedClass` instead. | test | entitygenerator do not see columnprefix mapping doctrine orm problem is here wrong variable name php protected function generateembeddedpropertydocblock array embeddedclass if isset fieldmapping embedded columnprefix var export embeddedclass true inside method do not exist variable fieldmapping should be used embeddedclass instead | 1 |
45,473 | 13,124,143,972 | IssuesEvent | 2020-08-06 02:50:12 | Pr0methean/HackCoronavirusStream | https://api.github.com/repos/Pr0methean/HackCoronavirusStream | closed | CVE-2020-11023 (Medium) detected in jquery-1.11.2.min.js | security vulnerability | ## CVE-2020-11023 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jquery-1.11.2.min.js</b></p></summary>
<p>JavaScript library for DOM operations</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js</a></p>
<p>Path to vulnerable library: /HackCoronavirusStream/assets/web/assets/jquery/jquery.min.js,/HackCoronavirusStream/assets/web/assets/jquery/jquery.min.js</p>
<p>
Dependency Hierarchy:
- :x: **jquery-1.11.2.min.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/Pr0methean/HackCoronavirusStream/commit/7b9f0323e53fee27ce7ac8871bd15ce1c90ab591">7b9f0323e53fee27ce7ac8871bd15ce1c90ab591</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>
In jQuery versions greater than or equal to 1.0.3 and before 3.5.0, passing HTML containing <option> elements from untrusted sources - even after sanitizing it - to one of jQuery's DOM manipulation methods (i.e. .html(), .append(), and others) may execute untrusted code. This problem is patched in jQuery 3.5.0.
<p>Publish Date: 2020-04-29
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-11023>CVE-2020-11023</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11023">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11023</a></p>
<p>Release Date: 2020-04-29</p>
<p>Fix Resolution: jquery - 3.5.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 | CVE-2020-11023 (Medium) detected in jquery-1.11.2.min.js - ## CVE-2020-11023 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jquery-1.11.2.min.js</b></p></summary>
<p>JavaScript library for DOM operations</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js</a></p>
<p>Path to vulnerable library: /HackCoronavirusStream/assets/web/assets/jquery/jquery.min.js,/HackCoronavirusStream/assets/web/assets/jquery/jquery.min.js</p>
<p>
Dependency Hierarchy:
- :x: **jquery-1.11.2.min.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/Pr0methean/HackCoronavirusStream/commit/7b9f0323e53fee27ce7ac8871bd15ce1c90ab591">7b9f0323e53fee27ce7ac8871bd15ce1c90ab591</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>
In jQuery versions greater than or equal to 1.0.3 and before 3.5.0, passing HTML containing <option> elements from untrusted sources - even after sanitizing it - to one of jQuery's DOM manipulation methods (i.e. .html(), .append(), and others) may execute untrusted code. This problem is patched in jQuery 3.5.0.
<p>Publish Date: 2020-04-29
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-11023>CVE-2020-11023</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11023">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11023</a></p>
<p>Release Date: 2020-04-29</p>
<p>Fix Resolution: jquery - 3.5.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_test | cve medium detected in jquery min js cve medium severity vulnerability vulnerable library jquery min js javascript library for dom operations library home page a href path to vulnerable library hackcoronavirusstream assets web assets jquery jquery min js hackcoronavirusstream assets web assets jquery jquery min js dependency hierarchy x jquery min js vulnerable library found in head commit a href vulnerability details in jquery versions greater than or equal to and before passing html containing elements from untrusted sources even after sanitizing it to one of jquery s dom manipulation methods i e html append and others may execute untrusted code this problem is patched in jquery publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution jquery step up your open source security game with whitesource | 0 |
38,372 | 5,184,041,081 | IssuesEvent | 2017-01-20 03:47:57 | dotnet/roslyn-project-system | https://api.github.com/repos/dotnet/roslyn-project-system | closed | MSTest: Constructor runs for every test (rather than once for the class) during Debug | External-VSTest | If you Debug an MSTest with one or more test methods, the constructor runs once for every test (rather than once for the entire class). This does not seem to occur when running (not debugging). The following code demonstrates the issue - failing when debugging (successful when not debugging):
`using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace UnitTestProject1
{
[TestClass]
public class TestBase
{
}
[TestClass]
public class UnitTestSample
{
static public int ConstructorCount { get; set; }
public UnitTestSample()
{
ConstructorCount++;
}
[TestMethod]
public void TestMethod1()
{
}
[TestMethod]
public void TestMethod2()
{
}
[ClassCleanup]
static public void ClassCleanup()
{
Assert.AreEqual<int>(1, ConstructorCount);
}
}
}
`
@jinujoseph @GrantErickson @morrisjoe | 1.0 | MSTest: Constructor runs for every test (rather than once for the class) during Debug - If you Debug an MSTest with one or more test methods, the constructor runs once for every test (rather than once for the entire class). This does not seem to occur when running (not debugging). The following code demonstrates the issue - failing when debugging (successful when not debugging):
`using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace UnitTestProject1
{
[TestClass]
public class TestBase
{
}
[TestClass]
public class UnitTestSample
{
static public int ConstructorCount { get; set; }
public UnitTestSample()
{
ConstructorCount++;
}
[TestMethod]
public void TestMethod1()
{
}
[TestMethod]
public void TestMethod2()
{
}
[ClassCleanup]
static public void ClassCleanup()
{
Assert.AreEqual<int>(1, ConstructorCount);
}
}
}
`
@jinujoseph @GrantErickson @morrisjoe | test | mstest constructor runs for every test rather than once for the class during debug if you debug an mstest with one or more test methods the constructor runs once for every test rather than once for the entire class this does not seem to occur when running not debugging the following code demonstrates the issue failing when debugging successful when not debugging using system using microsoft visualstudio testtools unittesting namespace public class testbase public class unittestsample static public int constructorcount get set public unittestsample constructorcount public void public void static public void classcleanup assert areequal constructorcount jinujoseph granterickson morrisjoe | 1 |
101,884 | 4,147,470,382 | IssuesEvent | 2016-06-15 07:10:57 | geosolutions-it/MapStore2 | https://api.github.com/repos/geosolutions-it/MapStore2 | closed | Move toolbar, scalebox and scalebar, update logos | enhancement pending review Priority: Medium | Move toolbar, scalebox and scalebar to bottom-right corner.
Update mapstore logo and move to bottom-left, update made with love logo | 1.0 | Move toolbar, scalebox and scalebar, update logos - Move toolbar, scalebox and scalebar to bottom-right corner.
Update mapstore logo and move to bottom-left, update made with love logo | non_test | move toolbar scalebox and scalebar update logos move toolbar scalebox and scalebar to bottom right corner update mapstore logo and move to bottom left update made with love logo | 0 |
126,010 | 10,373,294,866 | IssuesEvent | 2019-09-09 06:51:25 | maidsafe/safe-mobile-browser | https://api.github.com/repos/maidsafe/safe-mobile-browser | opened | Test: authenticating and add/remove bookmark | UI Test | Authenticating the SAFE Mobile Browser and opening bookmarks and add/remove them.
Checking whether clicking on the bookmark icon without authenticating causes issue.
Checking if authentication button is disabled after authentication.
Checking whether authentication denied causes any issue. | 1.0 | Test: authenticating and add/remove bookmark - Authenticating the SAFE Mobile Browser and opening bookmarks and add/remove them.
Checking whether clicking on the bookmark icon without authenticating causes issue.
Checking if authentication button is disabled after authentication.
Checking whether authentication denied causes any issue. | test | test authenticating and add remove bookmark authenticating the safe mobile browser and opening bookmarks and add remove them checking whether clicking on the bookmark icon without authenticating causes issue checking if authentication button is disabled after authentication checking whether authentication denied causes any issue | 1 |
313,938 | 26,963,488,578 | IssuesEvent | 2023-02-08 20:10:07 | MetaMask/metamask-extension | https://api.github.com/repos/MetaMask/metamask-extension | closed | Write comprehensive unit tests for the network controller | type-enhancement area-testSuite team-devex | We should write comprehensive unit tests for the network controller prior to merging it with the mobile network controller. This would help reduce the risk of regressions.
The network controller already has many tests, but they are incomplete and they don't follow our latest best practices for writing unit tests. We should ensure the unit tests follow the best practices outlined here: https://github.com/MetaMask/controllers/issues/413 | 1.0 | Write comprehensive unit tests for the network controller - We should write comprehensive unit tests for the network controller prior to merging it with the mobile network controller. This would help reduce the risk of regressions.
The network controller already has many tests, but they are incomplete and they don't follow our latest best practices for writing unit tests. We should ensure the unit tests follow the best practices outlined here: https://github.com/MetaMask/controllers/issues/413 | test | write comprehensive unit tests for the network controller we should write comprehensive unit tests for the network controller prior to merging it with the mobile network controller this would help reduce the risk of regressions the network controller already has many tests but they are incomplete and they don t follow our latest best practices for writing unit tests we should ensure the unit tests follow the best practices outlined here | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.