Unnamed: 0
int64 0
832k
| id
float64 2.49B
32.1B
| type
stringclasses 1
value | created_at
stringlengths 19
19
| repo
stringlengths 5
112
| repo_url
stringlengths 34
141
| action
stringclasses 3
values | title
stringlengths 1
757
| labels
stringlengths 4
664
| body
stringlengths 3
261k
| index
stringclasses 10
values | text_combine
stringlengths 96
261k
| label
stringclasses 2
values | text
stringlengths 96
232k
| binary_label
int64 0
1
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
25,276
| 4,274,296,678
|
IssuesEvent
|
2016-07-13 20:03:57
|
schuel/hmmm
|
https://api.github.com/repos/schuel/hmmm
|
opened
|
Exception when saving event
|
defect
|
Console output when saving an event (which still works however):
```
Exception while simulating the effect of invoking 'saveEvent' ReferenceError: logAsyncErrors is not defined(…) ReferenceError: logAsyncErrors is not defined
at saveEvent (http://localhost:3000/app/collections/events.js?hash=7615b77daad362e16bea69f659fe5fb2054e802d:292:53)
at http://localhost:3000/packages/ddp-client.js?hash=27502404fad7fc072e57e8b0b6719f40d92709c7:3973:25
at withValue (http://localhost:3000/packages/meteor.js?hash=ae8b8affa9680bf9720bd8f7fa112f13a62f71c3:1077:17)
at Connection.apply (http://localhost:3000/packages/ddp-client.js?hash=27502404fad7fc072e57e8b0b6719f40d92709c7:3964:54)
at Connection.call (http://localhost:3000/packages/ddp-client.js?hash=27502404fad7fc072e57e8b0b6719f40d92709c7:3840:17)
at OEvent.submit (http://localhost:3000/app/client/views/events/edit/event.edit.js?hash=a231e02494b688318c8aef1dfee3f8acb01d077a:289:10)
at http://localhost:3000/packages/blaze.js?hash=ef41aed769a8945fc99ac4954e8c9ec157a88cea:3718:20
at Function.Template._withTemplateInstanceFunc (http://localhost:3000/packages/blaze.js?hash=ef41aed769a8945fc99ac4954e8c9ec157a88cea:3687:12)
at .<anonymous> (http://localhost:3000/packages/blaze.js?hash=ef41aed769a8945fc99ac4954e8c9ec157a88cea:3717:25)
at http://localhost:3000/packages/blaze.js?hash=ef41aed769a8945fc99ac4954e8c9ec157a88cea:2560:30
```
|
1.0
|
Exception when saving event - Console output when saving an event (which still works however):
```
Exception while simulating the effect of invoking 'saveEvent' ReferenceError: logAsyncErrors is not defined(…) ReferenceError: logAsyncErrors is not defined
at saveEvent (http://localhost:3000/app/collections/events.js?hash=7615b77daad362e16bea69f659fe5fb2054e802d:292:53)
at http://localhost:3000/packages/ddp-client.js?hash=27502404fad7fc072e57e8b0b6719f40d92709c7:3973:25
at withValue (http://localhost:3000/packages/meteor.js?hash=ae8b8affa9680bf9720bd8f7fa112f13a62f71c3:1077:17)
at Connection.apply (http://localhost:3000/packages/ddp-client.js?hash=27502404fad7fc072e57e8b0b6719f40d92709c7:3964:54)
at Connection.call (http://localhost:3000/packages/ddp-client.js?hash=27502404fad7fc072e57e8b0b6719f40d92709c7:3840:17)
at OEvent.submit (http://localhost:3000/app/client/views/events/edit/event.edit.js?hash=a231e02494b688318c8aef1dfee3f8acb01d077a:289:10)
at http://localhost:3000/packages/blaze.js?hash=ef41aed769a8945fc99ac4954e8c9ec157a88cea:3718:20
at Function.Template._withTemplateInstanceFunc (http://localhost:3000/packages/blaze.js?hash=ef41aed769a8945fc99ac4954e8c9ec157a88cea:3687:12)
at .<anonymous> (http://localhost:3000/packages/blaze.js?hash=ef41aed769a8945fc99ac4954e8c9ec157a88cea:3717:25)
at http://localhost:3000/packages/blaze.js?hash=ef41aed769a8945fc99ac4954e8c9ec157a88cea:2560:30
```
|
defect
|
exception when saving event console output when saving an event which still works however exception while simulating the effect of invoking saveevent referenceerror logasyncerrors is not defined … referenceerror logasyncerrors is not defined at saveevent at at withvalue at connection apply at connection call at oevent submit at at function template withtemplateinstancefunc at at
| 1
|
243,728
| 18,723,479,273
|
IssuesEvent
|
2021-11-03 14:12:19
|
simdjson/simdjson
|
https://api.github.com/repos/simdjson/simdjson
|
closed
|
JSON document ended early in the middle of an object or array
|
documentation
|
updating to any version of simdjson after 0.9.6(0.9.6 works perfectly) breaks my code and give the following error:
**terminate called after throwing an instance of 'simdjson::simdjson_error'
what(): JSON document ended early in the middle of an object or array.
Aborted (core dumped)**
CODE:
` std::string_view l_result_holder;
simdjson::ondemand::parser parser;
simdjson::padded_string l_padded_jwk { jwk };
simdjson::ondemand::document l_document;
auto error = parser.iterate(l_padded_jwk).get(l_document);
if (unlikely(error)) {
return false;
}
for (auto items : l_document["keys"]) {
if (unlikely(items["kty"].get_string() != "RSA" && items["use"].get_string() != "sig")) { // GDB bt implies error triggers here
continue;
}
l_result_holder = items["alg"].get_string();
std::cout << l_result_holder << std::endl;
l_result_holder = items["use"].get_string();
std::cout << l_result_holder << std::endl;
l_result_holder = items["kty"].get_string();
std::cout << l_result_holder << std::endl;
l_result_holder = items["n"].get_string();
std::cout << l_result_holder << std::endl;
l_result_holder = items["e"].get_string();
std::cout << l_result_holder << std::endl;
}
`
JSON:
https://www.googleapis.com/oauth2/v3/certs
Compiler:
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --with-isl --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-install-libiberty --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-libunwind-exceptions --disable-werror gdc_include_dir=/usr/include/dlang/gdc
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 11.1.0 (GCC)
Tyvm for your time
|
1.0
|
JSON document ended early in the middle of an object or array - updating to any version of simdjson after 0.9.6(0.9.6 works perfectly) breaks my code and give the following error:
**terminate called after throwing an instance of 'simdjson::simdjson_error'
what(): JSON document ended early in the middle of an object or array.
Aborted (core dumped)**
CODE:
` std::string_view l_result_holder;
simdjson::ondemand::parser parser;
simdjson::padded_string l_padded_jwk { jwk };
simdjson::ondemand::document l_document;
auto error = parser.iterate(l_padded_jwk).get(l_document);
if (unlikely(error)) {
return false;
}
for (auto items : l_document["keys"]) {
if (unlikely(items["kty"].get_string() != "RSA" && items["use"].get_string() != "sig")) { // GDB bt implies error triggers here
continue;
}
l_result_holder = items["alg"].get_string();
std::cout << l_result_holder << std::endl;
l_result_holder = items["use"].get_string();
std::cout << l_result_holder << std::endl;
l_result_holder = items["kty"].get_string();
std::cout << l_result_holder << std::endl;
l_result_holder = items["n"].get_string();
std::cout << l_result_holder << std::endl;
l_result_holder = items["e"].get_string();
std::cout << l_result_holder << std::endl;
}
`
JSON:
https://www.googleapis.com/oauth2/v3/certs
Compiler:
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --with-isl --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-install-libiberty --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-libunwind-exceptions --disable-werror gdc_include_dir=/usr/include/dlang/gdc
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 11.1.0 (GCC)
Tyvm for your time
|
non_defect
|
json document ended early in the middle of an object or array updating to any version of simdjson after works perfectly breaks my code and give the following error terminate called after throwing an instance of simdjson simdjson error what json document ended early in the middle of an object or array aborted core dumped code std string view l result holder simdjson ondemand parser parser simdjson padded string l padded jwk jwk simdjson ondemand document l document auto error parser iterate l padded jwk get l document if unlikely error return false for auto items l document if unlikely items get string rsa items get string sig gdb bt implies error triggers here continue l result holder items get string std cout l result holder std endl l result holder items get string std cout l result holder std endl l result holder items get string std cout l result holder std endl l result holder items get string std cout l result holder std endl l result holder items get string std cout l result holder std endl json compiler using built in specs collect gcc gcc collect lto wrapper usr lib gcc pc linux gnu lto wrapper target pc linux gnu configured with build gcc src gcc configure prefix usr libdir usr lib libexecdir usr lib mandir usr share man infodir usr share info with bugurl enable languages c c ada fortran go lto objc obj c d with isl with linker hash style gnu with system zlib enable cxa atexit enable cet auto enable checking release enable clocale gnu enable default pie enable default ssp enable gnu indirect function enable gnu unique object enable install libiberty enable linker build id enable lto enable multilib enable plugin enable shared enable threads posix disable libssp disable libstdcxx pch disable libunwind exceptions disable werror gdc include dir usr include dlang gdc thread model posix supported lto compression algorithms zlib zstd gcc version gcc tyvm for your time
| 0
|
71,410
| 23,612,826,247
|
IssuesEvent
|
2022-08-24 13:43:11
|
department-of-veterans-affairs/va.gov-cms
|
https://api.github.com/repos/department-of-veterans-affairs/va.gov-cms
|
closed
|
FE Skipped Headings on Billing and Insurance Top Task Template
|
Defect VA.gov frontend ⭐️ Facilities Needs refining 508/Accessibility 508-defect-2
|
## Describe the defect
The current template for the content type Billing and Insurance is structured in such a way that the content does not have properly nested headings.
## To Reproduce
Steps to reproduce the behavior:
1. Go to [Walla Walla Billing and Insurance](https://www.va.gov/walla-walla-health-care/billing-and-insurance/)
2. View all headings on the page (you can do this using the inspector, WAVE extension, ANDI, etc.)
3. Note that headings jump from H2 > H4 skipping the H3 level heading
## AC / Expected behavior
- [ ] Phone and Hours under "Questions about copay and balance should both be H3
- [ ] Facility names should be H3
## Screenshots

### CMS Team
Please check the team(s) that will do this work.
- [ ] `Program`
- [ ] `Platform CMS Team`
- [ ] `Sitewide Crew`
- [ ] `⭐️ Sitewide CMS`
- [ ] `⭐️ Public Websites`
- [x] `⭐️ Facilities`
- [ ] `⭐️ User support`
|
2.0
|
FE Skipped Headings on Billing and Insurance Top Task Template - ## Describe the defect
The current template for the content type Billing and Insurance is structured in such a way that the content does not have properly nested headings.
## To Reproduce
Steps to reproduce the behavior:
1. Go to [Walla Walla Billing and Insurance](https://www.va.gov/walla-walla-health-care/billing-and-insurance/)
2. View all headings on the page (you can do this using the inspector, WAVE extension, ANDI, etc.)
3. Note that headings jump from H2 > H4 skipping the H3 level heading
## AC / Expected behavior
- [ ] Phone and Hours under "Questions about copay and balance should both be H3
- [ ] Facility names should be H3
## Screenshots

### CMS Team
Please check the team(s) that will do this work.
- [ ] `Program`
- [ ] `Platform CMS Team`
- [ ] `Sitewide Crew`
- [ ] `⭐️ Sitewide CMS`
- [ ] `⭐️ Public Websites`
- [x] `⭐️ Facilities`
- [ ] `⭐️ User support`
|
defect
|
fe skipped headings on billing and insurance top task template describe the defect the current template for the content type billing and insurance is structured in such a way that the content does not have properly nested headings to reproduce steps to reproduce the behavior go to view all headings on the page you can do this using the inspector wave extension andi etc note that headings jump from skipping the level heading ac expected behavior phone and hours under questions about copay and balance should both be facility names should be screenshots cms team please check the team s that will do this work program platform cms team sitewide crew ⭐️ sitewide cms ⭐️ public websites ⭐️ facilities ⭐️ user support
| 1
|
451,378
| 13,034,440,394
|
IssuesEvent
|
2020-07-28 08:42:52
|
webcompat/web-bugs
|
https://api.github.com/repos/webcompat/web-bugs
|
closed
|
www.ertflix.gr - Unable to set video in full screen
|
browser-firefox-mobile browser-focus-geckoview engine-gecko priority-normal severity-important
|
<!-- @browser: Firefox Mobile 78.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 10; Mobile; rv:78.0) Gecko/78.0 Firefox/78.0 -->
<!-- @reported_with: -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/55402 -->
<!-- @extra_labels: browser-focus-geckoview -->
**URL**: https://www.ertflix.gr/docs/san-simera/12iol2020-san-simera-ton-20o-aiona/
**Browser / Version**: Firefox Mobile 78.0
**Operating System**: Android
**Tested Another Browser**: Yes Chrome
**Problem type**: Something else
**Description**: No full screen
**Steps to Reproduce**:
Not switching on full screen mode
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_
|
1.0
|
www.ertflix.gr - Unable to set video in full screen - <!-- @browser: Firefox Mobile 78.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 10; Mobile; rv:78.0) Gecko/78.0 Firefox/78.0 -->
<!-- @reported_with: -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/55402 -->
<!-- @extra_labels: browser-focus-geckoview -->
**URL**: https://www.ertflix.gr/docs/san-simera/12iol2020-san-simera-ton-20o-aiona/
**Browser / Version**: Firefox Mobile 78.0
**Operating System**: Android
**Tested Another Browser**: Yes Chrome
**Problem type**: Something else
**Description**: No full screen
**Steps to Reproduce**:
Not switching on full screen mode
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_
|
non_defect
|
unable to set video in full screen url browser version firefox mobile operating system android tested another browser yes chrome problem type something else description no full screen steps to reproduce not switching on full screen mode browser configuration none from with ❤️
| 0
|
32,138
| 6,719,988,472
|
IssuesEvent
|
2017-10-16 05:08:36
|
metal3d/bashsimplecurses
|
https://api.github.com/repos/metal3d/bashsimplecurses
|
closed
|
progress bar
|
auto-migrated enhancement Priority-Medium Type-Defect
|
```
Hi,
Can you create a progress bar ( to copy a file or monitoring memory for
example ) ?
Best regard
David aka hvad
```
Original issue reported on code.google.com by `david.ha...@gmail.com` on 12 Jun 2009 at 8:01
|
1.0
|
progress bar - ```
Hi,
Can you create a progress bar ( to copy a file or monitoring memory for
example ) ?
Best regard
David aka hvad
```
Original issue reported on code.google.com by `david.ha...@gmail.com` on 12 Jun 2009 at 8:01
|
defect
|
progress bar hi can you create a progress bar to copy a file or monitoring memory for example best regard david aka hvad original issue reported on code google com by david ha gmail com on jun at
| 1
|
43,982
| 11,889,390,870
|
IssuesEvent
|
2020-03-28 13:39:20
|
primefaces/primeng
|
https://api.github.com/repos/primefaces/primeng
|
closed
|
p-dialog tabbing problem: focus always in the first elemets if two dialogs are opened
|
defect
|
**I'm submitting a ...** (check one with "x")
```
[x] bug report => Search github for a similar issue or PR before submitting
[ ] feature request => Please check if request is not on the roadmap already https://github.com/primefaces/primeng/wiki/Roadmap
[ ] support request => Please do not submit support request here, instead see http://forum.primefaces.org/viewforum.php?f=35
```
**Current behavior**
show p-dialog B with [focusTrap]="true" over another p-dialog A with [focusTrap]="true", all focusable elements have different tabIndexes
press Tab batton in dialog B -> focus doesn't go to second element in dialog B but to the fiers element
**Expected behavior**
focus has to go to second element in dialog B
**Minimal reproduction of the problem with instructions**
Precondition: We have 2 opened visible dialogs: A was opened first and then open dialog B from dialog A.
Important: dialog B not inside of dialog A, in html it should be `<p-dialog A>...</p-dialog><p-dialog B>...</p-dialog>`
Behaviour: After pressing Tab button in dialog B onKeydown's listener is executed from dialog A first.
Listaner A can't find document.activeElement in focusableElements (line 441) because now activeElement in dialog B and sets focus in his first element focusableElements[0].focus() (line 451).
Then onKeydown's listener is executed from dialog B and the same: can't find activeElement in focusableElements because it was moved to dialog A and sets focus to his first element.
As result doesn't matter how many time you press Tab button - focus always in first element of the last opened dialog.
* **Angular version:** 7.2.15
<!-- Check whether this is still an issue in the most recent Angular version -->
* **PrimeNG version:** 7.1.3
* **Browser:** [Chrome 73 | Firefox 67]
* **Language:** [TypeScript 3.2.4]
* **Node (for AoT issues):** `node --version` = v10.15.3
|
1.0
|
p-dialog tabbing problem: focus always in the first elemets if two dialogs are opened - **I'm submitting a ...** (check one with "x")
```
[x] bug report => Search github for a similar issue or PR before submitting
[ ] feature request => Please check if request is not on the roadmap already https://github.com/primefaces/primeng/wiki/Roadmap
[ ] support request => Please do not submit support request here, instead see http://forum.primefaces.org/viewforum.php?f=35
```
**Current behavior**
show p-dialog B with [focusTrap]="true" over another p-dialog A with [focusTrap]="true", all focusable elements have different tabIndexes
press Tab batton in dialog B -> focus doesn't go to second element in dialog B but to the fiers element
**Expected behavior**
focus has to go to second element in dialog B
**Minimal reproduction of the problem with instructions**
Precondition: We have 2 opened visible dialogs: A was opened first and then open dialog B from dialog A.
Important: dialog B not inside of dialog A, in html it should be `<p-dialog A>...</p-dialog><p-dialog B>...</p-dialog>`
Behaviour: After pressing Tab button in dialog B onKeydown's listener is executed from dialog A first.
Listaner A can't find document.activeElement in focusableElements (line 441) because now activeElement in dialog B and sets focus in his first element focusableElements[0].focus() (line 451).
Then onKeydown's listener is executed from dialog B and the same: can't find activeElement in focusableElements because it was moved to dialog A and sets focus to his first element.
As result doesn't matter how many time you press Tab button - focus always in first element of the last opened dialog.
* **Angular version:** 7.2.15
<!-- Check whether this is still an issue in the most recent Angular version -->
* **PrimeNG version:** 7.1.3
* **Browser:** [Chrome 73 | Firefox 67]
* **Language:** [TypeScript 3.2.4]
* **Node (for AoT issues):** `node --version` = v10.15.3
|
defect
|
p dialog tabbing problem focus always in the first elemets if two dialogs are opened i m submitting a check one with x bug report search github for a similar issue or pr before submitting feature request please check if request is not on the roadmap already support request please do not submit support request here instead see current behavior show p dialog b with true over another p dialog a with true all focusable elements have different tabindexes press tab batton in dialog b focus doesn t go to second element in dialog b but to the fiers element expected behavior focus has to go to second element in dialog b minimal reproduction of the problem with instructions precondition we have opened visible dialogs a was opened first and then open dialog b from dialog a important dialog b not inside of dialog a in html it should be behaviour after pressing tab button in dialog b onkeydown s listener is executed from dialog a first listaner a can t find document activeelement in focusableelements line because now activeelement in dialog b and sets focus in his first element focusableelements focus line then onkeydown s listener is executed from dialog b and the same can t find activeelement in focusableelements because it was moved to dialog a and sets focus to his first element as result doesn t matter how many time you press tab button focus always in first element of the last opened dialog angular version primeng version browser language node for aot issues node version
| 1
|
51,521
| 13,207,507,640
|
IssuesEvent
|
2020-08-14 23:22:30
|
icecube-trac/tix4
|
https://api.github.com/repos/icecube-trac/tix4
|
opened
|
Mac linker is getting repeated boost libraries during build (Trac #570)
|
Incomplete Migration Migrated from Trac cmake defect
|
<details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/570">https://code.icecube.wisc.edu/projects/icecube/ticket/570</a>, reported by blaufussand owned by troy</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2014-11-23T03:37:56",
"_ts": "1416713876862109",
"description": "On Mac OS X targets (including teufel), building libraries you'll see:\n\n\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_python-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_system-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_signals-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_thread-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_date_time-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_serialization-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_filesystem-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_program_options-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_regex-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_iostreams-mt.dylib\nld warning: duplicate dylib /usr/lib/libpthread.dylib\n\n\nA VERBOSE link looks like:\nLinking CXX shared library ../lib/libI3Db.dylib\ncd /Users/blaufuss/icework/offline-software/trunk/build_release/I3Db && mkdir -p /Users/blaufuss/icework/offline-software/trunk/build_release/lib\ncd /Users/blaufuss/icework/offline-software/trunk/build_release/I3Db && /Users/blaufuss/icework/i3tools/bin/cmake -E cmake_link_script CMakeFiles/I3Db.dir/link.txt --verbose=1\n/usr/bin/env MACOSX_DEPLOYMENT_TARGET=10.4 /usr/bin/c++ -O3 -Wno-unused-variable -DNDEBUG -DI3_OPTIMIZE -dynamiclib -headerpad_max_install_names -single_module -undefined dynamic_lookup -flat_namespace -o ../lib/libI3Db.dylib -install_name /Users/blaufuss/icework/offline-software/trunk/build_release/lib/libI3Db.dylib CMakeFiles/I3Db.dir/private/I3Db/AmandaTWRGlobalConstants_t.cxx.o CMakeFiles/I3Db.dir/private/I3Db/AmandaTWRTrigger_t.cxx.o CMakeFiles/I3Db.dir/private/I3Db/I3Db.cxx.o CMakeFiles/I3Db.dir/private/I3Db/I3DbCalibrationService.cxx.o CMakeFiles/I3Db.dir/private/I3Db/I3DbCalibrationServiceFactory.cxx.o CMakeFiles/I3Db.dir/private/I3Db/I3DbDetectorStatusService.cxx.o CMakeFiles/I3Db.dir/private/I3Db/I3DbDetectorStatusServiceFactory.cxx.o CMakeFiles/I3Db.dir/private/I3Db/I3DbGeometryService.cxx.o CMakeFiles/I3Db.dir/private/I3Db/I3DbGeometryServiceFactory.cxx.o CMakeFiles/I3Db.dir/private/I3Db/I3DbOMKey2ChannelID.cxx.o CMakeFiles/I3Db.dir/private/I3Db/I3DbOMKey2ChannelIDFactory.cxx.o CMakeFiles/I3Db.dir/private/I3Db/I3DbOMKey2MBID.cxx.o CMakeFiles/I3Db.dir/private/I3Db/I3DbOMKey2MBIDFactory.cxx.o CMakeFiles/I3Db.dir/private/I3OmDb/I3OmDb.cxx.o CMakeFiles/I3Db.dir/private/I3OmDb/I3OmDbFactory.cxx.o CMakeFiles/I3Db.dir/private/I3OmDb/ZSql.cxx.o -lm -ldl -lstdc++ ../lib/libinterfaces.dylib ../lib/libphys-services.dylib ../lib/libicetray.dylib ../lib/libdataclasses.dylib ../lib/libdaq-decode.dylib /Users/blaufuss/icework/i3tools/lib/mysql-4.1.20/mysql/libmysqlclient.dylib /Users/blaufuss/icework/i3tools/lib/log4cplus-1.0.2/liblog4cplus.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_python-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_system-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_signals-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_thread-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_date_time-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_serialization-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_filesystem-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_program_options-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_regex-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_iostreams-mt.dylib /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libCore.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libCint.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libRIO.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libNet.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libHist.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libGraf.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libGraf3d.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libGpad.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libTree.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libRint.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libPostscript.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libMatrix.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libPhysics.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libMathCore.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libThread.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libMinuit.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libGui.so /usr/lib/libpthread.dylib ../lib/libphys-services.dylib ../lib/libinterfaces.dylib /Users/blaufuss/icework/i3tools/lib/sprng-2.0a/libsprng.a /Users/blaufuss/icework/i3tools/lib/gsl-1.8/libgsl.dylib /Users/blaufuss/icework/i3tools/lib/gsl-1.8/libgslcblas.dylib ../lib/libpfclasses.dylib ../lib/libjebclasses.dylib ../lib/libdataclasses.dylib ../lib/libicetray.dylib -lm -ldl -lstdc++ -framework Python /Users/blaufuss/icework/i3tools/lib/log4cplus-1.0.2/liblog4cplus.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_python-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_system-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_signals-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_thread-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_date_time-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_serialization-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_filesystem-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_program_options-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_regex-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_iostreams-mt.dylib /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libCore.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libCint.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libRIO.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libNet.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libHist.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libGraf.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libGraf3d.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libGpad.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libTree.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libRint.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libPostscript.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libMatrix.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libPhysics.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libMathCore.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libThread.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libMinuit.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libGui.so /usr/lib/libpthread.dylib \nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_python-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_system-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_signals-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_thread-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_date_time-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_serialization-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_filesystem-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_program_options-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_regex-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_iostreams-mt.dylib\nld warning: duplicate dylib /usr/lib/libpthread.dylib\n",
"reporter": "blaufuss",
"cc": "",
"resolution": "wont or cant fix",
"time": "2009-07-31T20:09:58",
"component": "cmake",
"summary": "Mac linker is getting repeated boost libraries during build",
"priority": "normal",
"keywords": "",
"milestone": "",
"owner": "troy",
"type": "defect"
}
```
</p>
</details>
|
1.0
|
Mac linker is getting repeated boost libraries during build (Trac #570) - <details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/570">https://code.icecube.wisc.edu/projects/icecube/ticket/570</a>, reported by blaufussand owned by troy</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2014-11-23T03:37:56",
"_ts": "1416713876862109",
"description": "On Mac OS X targets (including teufel), building libraries you'll see:\n\n\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_python-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_system-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_signals-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_thread-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_date_time-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_serialization-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_filesystem-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_program_options-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_regex-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_iostreams-mt.dylib\nld warning: duplicate dylib /usr/lib/libpthread.dylib\n\n\nA VERBOSE link looks like:\nLinking CXX shared library ../lib/libI3Db.dylib\ncd /Users/blaufuss/icework/offline-software/trunk/build_release/I3Db && mkdir -p /Users/blaufuss/icework/offline-software/trunk/build_release/lib\ncd /Users/blaufuss/icework/offline-software/trunk/build_release/I3Db && /Users/blaufuss/icework/i3tools/bin/cmake -E cmake_link_script CMakeFiles/I3Db.dir/link.txt --verbose=1\n/usr/bin/env MACOSX_DEPLOYMENT_TARGET=10.4 /usr/bin/c++ -O3 -Wno-unused-variable -DNDEBUG -DI3_OPTIMIZE -dynamiclib -headerpad_max_install_names -single_module -undefined dynamic_lookup -flat_namespace -o ../lib/libI3Db.dylib -install_name /Users/blaufuss/icework/offline-software/trunk/build_release/lib/libI3Db.dylib CMakeFiles/I3Db.dir/private/I3Db/AmandaTWRGlobalConstants_t.cxx.o CMakeFiles/I3Db.dir/private/I3Db/AmandaTWRTrigger_t.cxx.o CMakeFiles/I3Db.dir/private/I3Db/I3Db.cxx.o CMakeFiles/I3Db.dir/private/I3Db/I3DbCalibrationService.cxx.o CMakeFiles/I3Db.dir/private/I3Db/I3DbCalibrationServiceFactory.cxx.o CMakeFiles/I3Db.dir/private/I3Db/I3DbDetectorStatusService.cxx.o CMakeFiles/I3Db.dir/private/I3Db/I3DbDetectorStatusServiceFactory.cxx.o CMakeFiles/I3Db.dir/private/I3Db/I3DbGeometryService.cxx.o CMakeFiles/I3Db.dir/private/I3Db/I3DbGeometryServiceFactory.cxx.o CMakeFiles/I3Db.dir/private/I3Db/I3DbOMKey2ChannelID.cxx.o CMakeFiles/I3Db.dir/private/I3Db/I3DbOMKey2ChannelIDFactory.cxx.o CMakeFiles/I3Db.dir/private/I3Db/I3DbOMKey2MBID.cxx.o CMakeFiles/I3Db.dir/private/I3Db/I3DbOMKey2MBIDFactory.cxx.o CMakeFiles/I3Db.dir/private/I3OmDb/I3OmDb.cxx.o CMakeFiles/I3Db.dir/private/I3OmDb/I3OmDbFactory.cxx.o CMakeFiles/I3Db.dir/private/I3OmDb/ZSql.cxx.o -lm -ldl -lstdc++ ../lib/libinterfaces.dylib ../lib/libphys-services.dylib ../lib/libicetray.dylib ../lib/libdataclasses.dylib ../lib/libdaq-decode.dylib /Users/blaufuss/icework/i3tools/lib/mysql-4.1.20/mysql/libmysqlclient.dylib /Users/blaufuss/icework/i3tools/lib/log4cplus-1.0.2/liblog4cplus.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_python-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_system-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_signals-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_thread-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_date_time-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_serialization-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_filesystem-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_program_options-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_regex-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_iostreams-mt.dylib /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libCore.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libCint.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libRIO.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libNet.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libHist.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libGraf.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libGraf3d.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libGpad.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libTree.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libRint.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libPostscript.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libMatrix.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libPhysics.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libMathCore.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libThread.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libMinuit.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libGui.so /usr/lib/libpthread.dylib ../lib/libphys-services.dylib ../lib/libinterfaces.dylib /Users/blaufuss/icework/i3tools/lib/sprng-2.0a/libsprng.a /Users/blaufuss/icework/i3tools/lib/gsl-1.8/libgsl.dylib /Users/blaufuss/icework/i3tools/lib/gsl-1.8/libgslcblas.dylib ../lib/libpfclasses.dylib ../lib/libjebclasses.dylib ../lib/libdataclasses.dylib ../lib/libicetray.dylib -lm -ldl -lstdc++ -framework Python /Users/blaufuss/icework/i3tools/lib/log4cplus-1.0.2/liblog4cplus.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_python-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_system-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_signals-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_thread-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_date_time-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_serialization-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_filesystem-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_program_options-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_regex-mt.dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_iostreams-mt.dylib /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libCore.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libCint.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libRIO.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libNet.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libHist.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libGraf.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libGraf3d.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libGpad.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libTree.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libRint.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libPostscript.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libMatrix.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libPhysics.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libMathCore.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libThread.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libMinuit.so /Users/blaufuss/icework/i3tools/root-v5.20.00/lib/libGui.so /usr/lib/libpthread.dylib \nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_python-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_system-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_signals-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_thread-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_date_time-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_serialization-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_filesystem-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_program_options-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_regex-mt.dylib\nld warning: duplicate dylib /Users/blaufuss/icework/i3tools/lib/boost-1.38.0/libboost_iostreams-mt.dylib\nld warning: duplicate dylib /usr/lib/libpthread.dylib\n",
"reporter": "blaufuss",
"cc": "",
"resolution": "wont or cant fix",
"time": "2009-07-31T20:09:58",
"component": "cmake",
"summary": "Mac linker is getting repeated boost libraries during build",
"priority": "normal",
"keywords": "",
"milestone": "",
"owner": "troy",
"type": "defect"
}
```
</p>
</details>
|
defect
|
mac linker is getting repeated boost libraries during build trac migrated from json status closed changetime ts description on mac os x targets including teufel building libraries you ll see n n nld warning duplicate dylib users blaufuss icework lib boost libboost python mt dylib nld warning duplicate dylib users blaufuss icework lib boost libboost system mt dylib nld warning duplicate dylib users blaufuss icework lib boost libboost signals mt dylib nld warning duplicate dylib users blaufuss icework lib boost libboost thread mt dylib nld warning duplicate dylib users blaufuss icework lib boost libboost date time mt dylib nld warning duplicate dylib users blaufuss icework lib boost libboost serialization mt dylib nld warning duplicate dylib users blaufuss icework lib boost libboost filesystem mt dylib nld warning duplicate dylib users blaufuss icework lib boost libboost program options mt dylib nld warning duplicate dylib users blaufuss icework lib boost libboost regex mt dylib nld warning duplicate dylib users blaufuss icework lib boost libboost iostreams mt dylib nld warning duplicate dylib usr lib libpthread dylib n n na verbose link looks like nlinking cxx shared library lib dylib ncd users blaufuss icework offline software trunk build release mkdir p users blaufuss icework offline software trunk build release lib ncd users blaufuss icework offline software trunk build release users blaufuss icework bin cmake e cmake link script cmakefiles dir link txt verbose n usr bin env macosx deployment target usr bin c wno unused variable dndebug optimize dynamiclib headerpad max install names single module undefined dynamic lookup flat namespace o lib dylib install name users blaufuss icework offline software trunk build release lib dylib cmakefiles dir private amandatwrglobalconstants t cxx o cmakefiles dir private amandatwrtrigger t cxx o cmakefiles dir private cxx o cmakefiles dir private cxx o cmakefiles dir private cxx o cmakefiles dir private cxx o cmakefiles dir private cxx o cmakefiles dir private cxx o cmakefiles dir private cxx o cmakefiles dir private cxx o cmakefiles dir private cxx o cmakefiles dir private cxx o cmakefiles dir private cxx o cmakefiles dir private cxx o cmakefiles dir private cxx o cmakefiles dir private zsql cxx o lm ldl lstdc lib libinterfaces dylib lib libphys services dylib lib libicetray dylib lib libdataclasses dylib lib libdaq decode dylib users blaufuss icework lib mysql mysql libmysqlclient dylib users blaufuss icework lib dylib users blaufuss icework lib boost libboost python mt dylib users blaufuss icework lib boost libboost system mt dylib users blaufuss icework lib boost libboost signals mt dylib users blaufuss icework lib boost libboost thread mt dylib users blaufuss icework lib boost libboost date time mt dylib users blaufuss icework lib boost libboost serialization mt dylib users blaufuss icework lib boost libboost filesystem mt dylib users blaufuss icework lib boost libboost program options mt dylib users blaufuss icework lib boost libboost regex mt dylib users blaufuss icework lib boost libboost iostreams mt dylib users blaufuss icework root lib libcore so users blaufuss icework root lib libcint so users blaufuss icework root lib librio so users blaufuss icework root lib libnet so users blaufuss icework root lib libhist so users blaufuss icework root lib libgraf so users blaufuss icework root lib so users blaufuss icework root lib libgpad so users blaufuss icework root lib libtree so users blaufuss icework root lib librint so users blaufuss icework root lib libpostscript so users blaufuss icework root lib libmatrix so users blaufuss icework root lib libphysics so users blaufuss icework root lib libmathcore so users blaufuss icework root lib libthread so users blaufuss icework root lib libminuit so users blaufuss icework root lib libgui so usr lib libpthread dylib lib libphys services dylib lib libinterfaces dylib users blaufuss icework lib sprng libsprng a users blaufuss icework lib gsl libgsl dylib users blaufuss icework lib gsl libgslcblas dylib lib libpfclasses dylib lib libjebclasses dylib lib libdataclasses dylib lib libicetray dylib lm ldl lstdc framework python users blaufuss icework lib dylib users blaufuss icework lib boost libboost python mt dylib users blaufuss icework lib boost libboost system mt dylib users blaufuss icework lib boost libboost signals mt dylib users blaufuss icework lib boost libboost thread mt dylib users blaufuss icework lib boost libboost date time mt dylib users blaufuss icework lib boost libboost serialization mt dylib users blaufuss icework lib boost libboost filesystem mt dylib users blaufuss icework lib boost libboost program options mt dylib users blaufuss icework lib boost libboost regex mt dylib users blaufuss icework lib boost libboost iostreams mt dylib users blaufuss icework root lib libcore so users blaufuss icework root lib libcint so users blaufuss icework root lib librio so users blaufuss icework root lib libnet so users blaufuss icework root lib libhist so users blaufuss icework root lib libgraf so users blaufuss icework root lib so users blaufuss icework root lib libgpad so users blaufuss icework root lib libtree so users blaufuss icework root lib librint so users blaufuss icework root lib libpostscript so users blaufuss icework root lib libmatrix so users blaufuss icework root lib libphysics so users blaufuss icework root lib libmathcore so users blaufuss icework root lib libthread so users blaufuss icework root lib libminuit so users blaufuss icework root lib libgui so usr lib libpthread dylib nld warning duplicate dylib users blaufuss icework lib boost libboost python mt dylib nld warning duplicate dylib users blaufuss icework lib boost libboost system mt dylib nld warning duplicate dylib users blaufuss icework lib boost libboost signals mt dylib nld warning duplicate dylib users blaufuss icework lib boost libboost thread mt dylib nld warning duplicate dylib users blaufuss icework lib boost libboost date time mt dylib nld warning duplicate dylib users blaufuss icework lib boost libboost serialization mt dylib nld warning duplicate dylib users blaufuss icework lib boost libboost filesystem mt dylib nld warning duplicate dylib users blaufuss icework lib boost libboost program options mt dylib nld warning duplicate dylib users blaufuss icework lib boost libboost regex mt dylib nld warning duplicate dylib users blaufuss icework lib boost libboost iostreams mt dylib nld warning duplicate dylib usr lib libpthread dylib n reporter blaufuss cc resolution wont or cant fix time component cmake summary mac linker is getting repeated boost libraries during build priority normal keywords milestone owner troy type defect
| 1
|
241,388
| 20,119,617,656
|
IssuesEvent
|
2022-02-07 23:58:35
|
dask/dask
|
https://api.github.com/repos/dask/dask
|
opened
|
`scipy` 1.8.0 compatibility
|
tests
|
`scipy == 1.8.0` made updates to more clearly indicate what are intended to be public vs. private APIs https://docs.scipy.org/doc/scipy-1.8.0/html-scipyorg/release.1.8.0.html#clear-split-between-public-and-private-api. As a result of these changes, deprecation warning that are now raised from our existing `scipy` imports are being elevated to errors (like the one below) and causing CI to fail
```python
_________________________________ test_moment __________________________________
[gw0] linux -- Python 3.8.12 /usr/share/miniconda3/envs/test-environment/bin/python
@pytest.mark.skipif("not scipy")
def test_moment():
> from dask.array import stats
dask/dataframe/tests/test_arithmetics_reduction.py:1443:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
dask/array/stats.py:45: in <module>
from scipy.stats.stats import (
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
name = 'F_onewayResult'
def __getattr__(name):
if name not in __all__:
raise AttributeError(
"scipy.stats.stats is deprecated and has no attribute "
f"{name}. Try looking in scipy.stats instead.")
> warnings.warn(f"Please use `{name}` from the `scipy.stats` namespace, "
"the `scipy.stats.stats` namespace is deprecated.",
category=DeprecationWarning, stacklevel=2)
E DeprecationWarning: Please use `F_onewayResult` from the `scipy.stats` namespace, the `scipy.stats.stats` namespace is deprecated.
/usr/share/miniconda3/envs/test-environment/lib/python3.8/site-packages/scipy/stats/stats.py:58: DeprecationWarning
```
|
1.0
|
`scipy` 1.8.0 compatibility - `scipy == 1.8.0` made updates to more clearly indicate what are intended to be public vs. private APIs https://docs.scipy.org/doc/scipy-1.8.0/html-scipyorg/release.1.8.0.html#clear-split-between-public-and-private-api. As a result of these changes, deprecation warning that are now raised from our existing `scipy` imports are being elevated to errors (like the one below) and causing CI to fail
```python
_________________________________ test_moment __________________________________
[gw0] linux -- Python 3.8.12 /usr/share/miniconda3/envs/test-environment/bin/python
@pytest.mark.skipif("not scipy")
def test_moment():
> from dask.array import stats
dask/dataframe/tests/test_arithmetics_reduction.py:1443:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
dask/array/stats.py:45: in <module>
from scipy.stats.stats import (
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
name = 'F_onewayResult'
def __getattr__(name):
if name not in __all__:
raise AttributeError(
"scipy.stats.stats is deprecated and has no attribute "
f"{name}. Try looking in scipy.stats instead.")
> warnings.warn(f"Please use `{name}` from the `scipy.stats` namespace, "
"the `scipy.stats.stats` namespace is deprecated.",
category=DeprecationWarning, stacklevel=2)
E DeprecationWarning: Please use `F_onewayResult` from the `scipy.stats` namespace, the `scipy.stats.stats` namespace is deprecated.
/usr/share/miniconda3/envs/test-environment/lib/python3.8/site-packages/scipy/stats/stats.py:58: DeprecationWarning
```
|
non_defect
|
scipy compatibility scipy made updates to more clearly indicate what are intended to be public vs private apis as a result of these changes deprecation warning that are now raised from our existing scipy imports are being elevated to errors like the one below and causing ci to fail python test moment linux python usr share envs test environment bin python pytest mark skipif not scipy def test moment from dask array import stats dask dataframe tests test arithmetics reduction py dask array stats py in from scipy stats stats import name f onewayresult def getattr name if name not in all raise attributeerror scipy stats stats is deprecated and has no attribute f name try looking in scipy stats instead warnings warn f please use name from the scipy stats namespace the scipy stats stats namespace is deprecated category deprecationwarning stacklevel e deprecationwarning please use f onewayresult from the scipy stats namespace the scipy stats stats namespace is deprecated usr share envs test environment lib site packages scipy stats stats py deprecationwarning
| 0
|
82,452
| 15,646,566,019
|
IssuesEvent
|
2021-03-23 01:13:26
|
Sam-Marx/AmaterasuV2
|
https://api.github.com/repos/Sam-Marx/AmaterasuV2
|
opened
|
CVE-2021-28957 (Medium) detected in lxml-4.5.2-cp27-cp27mu-manylinux1_x86_64.whl
|
security vulnerability
|
## CVE-2021-28957 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>lxml-4.5.2-cp27-cp27mu-manylinux1_x86_64.whl</b></p></summary>
<p>Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/d1/2d/642ef7013aa56af52e14b5b7d53c5d591e6d038c9688e06d0f2a20ed26b2/lxml-4.5.2-cp27-cp27mu-manylinux1_x86_64.whl">https://files.pythonhosted.org/packages/d1/2d/642ef7013aa56af52e14b5b7d53c5d591e6d038c9688e06d0f2a20ed26b2/lxml-4.5.2-cp27-cp27mu-manylinux1_x86_64.whl</a></p>
<p>Path to dependency file: AmaterasuV2/requirements.txt</p>
<p>Path to vulnerable library: AmaterasuV2/requirements.txt</p>
<p>
Dependency Hierarchy:
- :x: **lxml-4.5.2-cp27-cp27mu-manylinux1_x86_64.whl** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
lxml 4.6.2 allows XSS. It places the HTML action attribute into defs.link_attrs (in html/defs.py) for later use in input sanitization, but does not do the same for the HTML5 formaction attribute.
<p>Publish Date: 2021-03-21
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-28957>CVE-2021-28957</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: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-28957">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-28957</a></p>
<p>Release Date: 2021-03-21</p>
<p>Fix Resolution: 4.6.2</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
True
|
CVE-2021-28957 (Medium) detected in lxml-4.5.2-cp27-cp27mu-manylinux1_x86_64.whl - ## CVE-2021-28957 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>lxml-4.5.2-cp27-cp27mu-manylinux1_x86_64.whl</b></p></summary>
<p>Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/d1/2d/642ef7013aa56af52e14b5b7d53c5d591e6d038c9688e06d0f2a20ed26b2/lxml-4.5.2-cp27-cp27mu-manylinux1_x86_64.whl">https://files.pythonhosted.org/packages/d1/2d/642ef7013aa56af52e14b5b7d53c5d591e6d038c9688e06d0f2a20ed26b2/lxml-4.5.2-cp27-cp27mu-manylinux1_x86_64.whl</a></p>
<p>Path to dependency file: AmaterasuV2/requirements.txt</p>
<p>Path to vulnerable library: AmaterasuV2/requirements.txt</p>
<p>
Dependency Hierarchy:
- :x: **lxml-4.5.2-cp27-cp27mu-manylinux1_x86_64.whl** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
lxml 4.6.2 allows XSS. It places the HTML action attribute into defs.link_attrs (in html/defs.py) for later use in input sanitization, but does not do the same for the HTML5 formaction attribute.
<p>Publish Date: 2021-03-21
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-28957>CVE-2021-28957</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: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-28957">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-28957</a></p>
<p>Release Date: 2021-03-21</p>
<p>Fix Resolution: 4.6.2</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
non_defect
|
cve medium detected in lxml whl cve medium severity vulnerability vulnerable library lxml whl powerful and pythonic xml processing library combining libxslt with the elementtree api library home page a href path to dependency file requirements txt path to vulnerable library requirements txt dependency hierarchy x lxml whl vulnerable library found in base branch master vulnerability details lxml allows xss it places the html action attribute into defs link attrs in html defs py for later use in input sanitization but does not do the same for the formaction attribute 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 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 step up your open source security game with whitesource
| 0
|
7,717
| 8,038,024,812
|
IssuesEvent
|
2018-07-30 14:20:30
|
molgenis/molgenis
|
https://api.github.com/repos/molgenis/molgenis
|
opened
|
Tag wizard indexing exception
|
7.0.0-RC bug mod:data-mapping-service
|
### How to Reproduce
- As superuser import [molgenis.test.obo.zip](https://github.com/molgenis/molgenis/files/2241472/molgenis.test.obo.zip)
- Navigate to the 'Tag Wizard' plugin in the 'Data Integration' menu
- Select 'sys_scr_ScriptType' in the entity type dropdown
- Select 'molgenis_test' in the ontology dropdown
- Select 'edit' for target attribute 'name'
- Type a space or a ~
### Expected behavior
- No search results
### Observed behavior
- space: ```Error! Field 'searchTerm' of 'getOntologyTermRequest' mag niet onbeschreven zijn (NotBlank)```
- ~: ```Error! An error occurred. Please contact the administrator.
Message:org.molgenis.data.index.exception.IndexException: Error searching docs in index(es) 'sysontontologyterm_f0034aa0' with query '{ "bool" : { "must" : [ { "constant_score" : { "filter" : { "nested" : { "query" : { "terms" : { "ontology_fd384042.id_b6df0dd4.raw" : [ "aaaaczhlqxvxiabegilmlgaaae" ], "boost" : 1.0 } }, "path" : "ontology_fd384042", "ignore_unmapped" : false, "score_mode" : "avg", "boost" : 1.0 } }, "boost" : 1.0 } }, { "nested" : { "query" : { "query_string" : { "query" : "ontologyTermSynonym_b2644156.ontologyTermSynonym_515d6350:(~)", "fields" : [ ], "use_dis_max" : true, "tie_breaker" : 0.0, "default_operator" : "or", "auto_generate_phrase_queries" : false, "max_determinized_states" : 10000, "enable_position_increments" : true, "fuzziness" : "AUTO", "fuzzy_prefix_length" : 0, "fuzzy_max_expansions" : 50, "phrase_slop" : 0, "escape" : false, "split_on_whitespace" : true, "boost" : 1.0 } }, "path" : "ontologyTermSynonym_b2644156", "ignore_unmapped" : false, "score_mode" : "max", "boost" : 1.0 } } ], "disable_coord" : false, "adjust_pure_negative" : true, "boost" : 1.0 } }'.```
|
1.0
|
Tag wizard indexing exception - ### How to Reproduce
- As superuser import [molgenis.test.obo.zip](https://github.com/molgenis/molgenis/files/2241472/molgenis.test.obo.zip)
- Navigate to the 'Tag Wizard' plugin in the 'Data Integration' menu
- Select 'sys_scr_ScriptType' in the entity type dropdown
- Select 'molgenis_test' in the ontology dropdown
- Select 'edit' for target attribute 'name'
- Type a space or a ~
### Expected behavior
- No search results
### Observed behavior
- space: ```Error! Field 'searchTerm' of 'getOntologyTermRequest' mag niet onbeschreven zijn (NotBlank)```
- ~: ```Error! An error occurred. Please contact the administrator.
Message:org.molgenis.data.index.exception.IndexException: Error searching docs in index(es) 'sysontontologyterm_f0034aa0' with query '{ "bool" : { "must" : [ { "constant_score" : { "filter" : { "nested" : { "query" : { "terms" : { "ontology_fd384042.id_b6df0dd4.raw" : [ "aaaaczhlqxvxiabegilmlgaaae" ], "boost" : 1.0 } }, "path" : "ontology_fd384042", "ignore_unmapped" : false, "score_mode" : "avg", "boost" : 1.0 } }, "boost" : 1.0 } }, { "nested" : { "query" : { "query_string" : { "query" : "ontologyTermSynonym_b2644156.ontologyTermSynonym_515d6350:(~)", "fields" : [ ], "use_dis_max" : true, "tie_breaker" : 0.0, "default_operator" : "or", "auto_generate_phrase_queries" : false, "max_determinized_states" : 10000, "enable_position_increments" : true, "fuzziness" : "AUTO", "fuzzy_prefix_length" : 0, "fuzzy_max_expansions" : 50, "phrase_slop" : 0, "escape" : false, "split_on_whitespace" : true, "boost" : 1.0 } }, "path" : "ontologyTermSynonym_b2644156", "ignore_unmapped" : false, "score_mode" : "max", "boost" : 1.0 } } ], "disable_coord" : false, "adjust_pure_negative" : true, "boost" : 1.0 } }'.```
|
non_defect
|
tag wizard indexing exception how to reproduce as superuser import navigate to the tag wizard plugin in the data integration menu select sys scr scripttype in the entity type dropdown select molgenis test in the ontology dropdown select edit for target attribute name type a space or a expected behavior no search results observed behavior space error field searchterm of getontologytermrequest mag niet onbeschreven zijn notblank error an error occurred please contact the administrator message org molgenis data index exception indexexception error searching docs in index es sysontontologyterm with query bool must boost path ontology ignore unmapped false score mode avg boost boost nested query query string query ontologytermsynonym ontologytermsynonym fields use dis max true tie breaker default operator or auto generate phrase queries false max determinized states enable position increments true fuzziness auto fuzzy prefix length fuzzy max expansions phrase slop escape false split on whitespace true boost path ontologytermsynonym ignore unmapped false score mode max boost disable coord false adjust pure negative true boost
| 0
|
19,642
| 3,777,274,638
|
IssuesEvent
|
2016-03-17 19:27:33
|
dotnet/corefx
|
https://api.github.com/repos/dotnet/corefx
|
closed
|
[ToFDisable] Port tests for: System.IO
|
2 - In Progress test bug
|
As part of moving out of ToF and into the open, I've been going through the "Tree of the future" tests and calculating which of those tests provide coverage that we're missing in the open tests. The goal of this is to get the open tests universally better than the ToF tests so that we can turn the ToF tests off for ProjectK runs and save us all a lot of headache diagnosing test failures from potentially outdated tests.
For System.IO, we're missing 56 lines of coverage.
To fulfill the uncovered lines we would need to either create new tests for them or port 15 ToF tests to the open. Those tests are:
- [ ] System.IO\4.0.0.0\MSCT.MemoryStream_CtorTest2_Negative\MSCT.MemoryStream_CtorTest2_Negative.xml
- [ ] System.IO\4.0.0.0\MSCT.MemoryStream_CtorTest3_Negative\MSCT.MemoryStream_CtorTest3_Negative.xml
- [ ] System.IO\4.0.0.0\BW_WT.BinaryWriter_WriteStringTest_Negative\BW_WT.BinaryWriter_WriteStringTest_Negative.xml
- [ ] System.IO\4.0.0.0\MSCT.MemoryStream_CtorTest2\MSCT.MemoryStream_CtorTest2.xml
- [ ] System.IO\4.0.0.0\MST.MemoryStream_GetPositionTest_Negative\MST.MemoryStream_GetPositionTest_Negative.xml
- [ ] System.IO\4.0.0.0\MSCT.MemoryStream_CtorTest6_Negative\MSCT.MemoryStream_CtorTest6_Negative.xml
- [ ] System.IO\4.0.0.0\MSCT.MemoryStream_CtorTest4_Negative\MSCT.MemoryStream_CtorTest4_Negative.xml
- [ ] System.IO\4.0.0.0\MST.MemoryStream_ReadTest_Negative\MST.MemoryStream_ReadTest_Negative.xml
- [ ] System.IO\4.0.0.0\MST.MemoryStream_LengthTest_Negative\MST.MemoryStream_LengthTest_Negative.xml
- [ ] System.IO\4.0.0.0\MST.MemoryStream_LengthTest\MST.MemoryStream_LengthTest.xml
- [ ] System.IO\4.0.0.0\MST.WriteBeyondEndTest\MST.WriteBeyondEndTest.xml
- [ ] System.IO\4.0.0.0\MST.MemStreamClearWriteByteTest\MST.MemStreamClearWriteByteTest.xml
- [ ] System.IO\4.0.0.0\MST.MemoryStream_WriteToTests\MST.MemoryStream_WriteToTests.xml
- [ ] System.IO\4.0.0.0\MST.MemoryStream_WriteToTests_Negative\MST.MemoryStream_WriteToTests_Negative.xml
- [ ] System.IO\4.0.0.0\BWT.BinaryWriter_BaseStreamTests\BWT.BinaryWriter_BaseStreamTests.xml
Coverage reports, coverage xml files, and detailed json lists of each piece of missing coverage and the corresponding ToF test that fills it are available on request.
|
1.0
|
[ToFDisable] Port tests for: System.IO - As part of moving out of ToF and into the open, I've been going through the "Tree of the future" tests and calculating which of those tests provide coverage that we're missing in the open tests. The goal of this is to get the open tests universally better than the ToF tests so that we can turn the ToF tests off for ProjectK runs and save us all a lot of headache diagnosing test failures from potentially outdated tests.
For System.IO, we're missing 56 lines of coverage.
To fulfill the uncovered lines we would need to either create new tests for them or port 15 ToF tests to the open. Those tests are:
- [ ] System.IO\4.0.0.0\MSCT.MemoryStream_CtorTest2_Negative\MSCT.MemoryStream_CtorTest2_Negative.xml
- [ ] System.IO\4.0.0.0\MSCT.MemoryStream_CtorTest3_Negative\MSCT.MemoryStream_CtorTest3_Negative.xml
- [ ] System.IO\4.0.0.0\BW_WT.BinaryWriter_WriteStringTest_Negative\BW_WT.BinaryWriter_WriteStringTest_Negative.xml
- [ ] System.IO\4.0.0.0\MSCT.MemoryStream_CtorTest2\MSCT.MemoryStream_CtorTest2.xml
- [ ] System.IO\4.0.0.0\MST.MemoryStream_GetPositionTest_Negative\MST.MemoryStream_GetPositionTest_Negative.xml
- [ ] System.IO\4.0.0.0\MSCT.MemoryStream_CtorTest6_Negative\MSCT.MemoryStream_CtorTest6_Negative.xml
- [ ] System.IO\4.0.0.0\MSCT.MemoryStream_CtorTest4_Negative\MSCT.MemoryStream_CtorTest4_Negative.xml
- [ ] System.IO\4.0.0.0\MST.MemoryStream_ReadTest_Negative\MST.MemoryStream_ReadTest_Negative.xml
- [ ] System.IO\4.0.0.0\MST.MemoryStream_LengthTest_Negative\MST.MemoryStream_LengthTest_Negative.xml
- [ ] System.IO\4.0.0.0\MST.MemoryStream_LengthTest\MST.MemoryStream_LengthTest.xml
- [ ] System.IO\4.0.0.0\MST.WriteBeyondEndTest\MST.WriteBeyondEndTest.xml
- [ ] System.IO\4.0.0.0\MST.MemStreamClearWriteByteTest\MST.MemStreamClearWriteByteTest.xml
- [ ] System.IO\4.0.0.0\MST.MemoryStream_WriteToTests\MST.MemoryStream_WriteToTests.xml
- [ ] System.IO\4.0.0.0\MST.MemoryStream_WriteToTests_Negative\MST.MemoryStream_WriteToTests_Negative.xml
- [ ] System.IO\4.0.0.0\BWT.BinaryWriter_BaseStreamTests\BWT.BinaryWriter_BaseStreamTests.xml
Coverage reports, coverage xml files, and detailed json lists of each piece of missing coverage and the corresponding ToF test that fills it are available on request.
|
non_defect
|
port tests for system io as part of moving out of tof and into the open i ve been going through the tree of the future tests and calculating which of those tests provide coverage that we re missing in the open tests the goal of this is to get the open tests universally better than the tof tests so that we can turn the tof tests off for projectk runs and save us all a lot of headache diagnosing test failures from potentially outdated tests for system io we re missing lines of coverage to fulfill the uncovered lines we would need to either create new tests for them or port tof tests to the open those tests are system io msct memorystream negative msct memorystream negative xml system io msct memorystream negative msct memorystream negative xml system io bw wt binarywriter writestringtest negative bw wt binarywriter writestringtest negative xml system io msct memorystream msct memorystream xml system io mst memorystream getpositiontest negative mst memorystream getpositiontest negative xml system io msct memorystream negative msct memorystream negative xml system io msct memorystream negative msct memorystream negative xml system io mst memorystream readtest negative mst memorystream readtest negative xml system io mst memorystream lengthtest negative mst memorystream lengthtest negative xml system io mst memorystream lengthtest mst memorystream lengthtest xml system io mst writebeyondendtest mst writebeyondendtest xml system io mst memstreamclearwritebytetest mst memstreamclearwritebytetest xml system io mst memorystream writetotests mst memorystream writetotests xml system io mst memorystream writetotests negative mst memorystream writetotests negative xml system io bwt binarywriter basestreamtests bwt binarywriter basestreamtests xml coverage reports coverage xml files and detailed json lists of each piece of missing coverage and the corresponding tof test that fills it are available on request
| 0
|
2,415
| 5,198,860,342
|
IssuesEvent
|
2017-01-23 19:17:58
|
MobileOrg/mobileorg
|
https://api.github.com/repos/MobileOrg/mobileorg
|
closed
|
Swift vs Objective-c
|
development process
|
This issue is for discussion of a few things related to language choice:
- How do we feel about preferring one or the other for new code?
- What effort should we put towards refactoring areas of the code from one to the other and why?
- How do we communicate this preference to possible contributors?
|
1.0
|
Swift vs Objective-c - This issue is for discussion of a few things related to language choice:
- How do we feel about preferring one or the other for new code?
- What effort should we put towards refactoring areas of the code from one to the other and why?
- How do we communicate this preference to possible contributors?
|
non_defect
|
swift vs objective c this issue is for discussion of a few things related to language choice how do we feel about preferring one or the other for new code what effort should we put towards refactoring areas of the code from one to the other and why how do we communicate this preference to possible contributors
| 0
|
418,215
| 28,114,021,610
|
IssuesEvent
|
2023-03-31 09:22:06
|
ltzehan/ped
|
https://api.github.com/repos/ltzehan/ped
|
opened
|
Formatting error in description of `add` syntax
|
type.DocumentationBug severity.VeryLow
|
From how the other commands are formatted, this looks like it should be formatted as bullet points

<!--session: 1680252418031-b536a5a7-94fd-4e54-924e-bf7b9d014f9f-->
<!--Version: Web v3.4.7-->
|
1.0
|
Formatting error in description of `add` syntax - From how the other commands are formatted, this looks like it should be formatted as bullet points

<!--session: 1680252418031-b536a5a7-94fd-4e54-924e-bf7b9d014f9f-->
<!--Version: Web v3.4.7-->
|
non_defect
|
formatting error in description of add syntax from how the other commands are formatted this looks like it should be formatted as bullet points
| 0
|
11,969
| 2,672,616,347
|
IssuesEvent
|
2015-03-24 15:06:38
|
contao/core
|
https://api.github.com/repos/contao/core
|
closed
|
[3.4.0] event list parameter month: wrong format = Fatal error
|
defect
|
On a page with event list modul you can use ?month parameter. Format: YYYYMM.
If you change manually f.e. to MMYYYY a Fatal error occurs.
See at demo page:
http://demo.contao.org/en/events.html?month=052015
settings: displayErrors = true
```
Fatal error: Uncaught exception OutOfBoundsException with message Invalid date "052015" thrown in path\_core-3.4.0\system\modules\core\library\Contao\Date.php on line 438
#0 path\_core-3.4.0\system\modules\core\library\Contao\Date.php(71): Contao\Date->dateToUnix()
#1 path\_core-3.4.0\system\modules\calendar\modules\ModuleCalendar.php(97): Contao\Date->__construct('052015', 'Ym')
#2 path\_core-3.4.0\system\modules\core\modules\Module.php(163): Contao\ModuleCalendar->compile()
#3 path\_core-3.4.0\system\modules\calendar\modules\ModuleCalendar.php(85): Contao\Module->generate()
#4 path\_core-3.4.0\system\modules\core\elements\ContentModule.php(65): Contao\ModuleCalendar->generate()
#5 path\_core-3.4.0\system\modules\core\library\Contao\Controller.php(473): Contao\ContentModule->generate()
#6 path\_core-3.4.0\system\modules\core\modules\ModuleArticle.php(196): Contao\Controller::getContentElement(Object(Contao\ContentModel), 'left')
#7 path\_core-3.4.0\system\modules\core\modules\Module.php(163): Contao\ModuleArticle->compile()
#8 path\_core-3.4.0\system\modules\core\modules\ModuleArticle.php(59): Contao\Module->generate()
#9 path\_core-3.4.0\system\modules\core\library\Contao\Controller.php(409): Contao\ModuleArticle->generate(false)
#10 path\_core-3.4.0\system\modules\core\library\Contao\Controller.php(273): Contao\Controller::getArticle(Object(Contao\ArticleModel), false, false, 'left')
#11 path\_core-3.4.0\system\modules\core\pages\PageRegular.php(138): Contao\Controller::getFrontendModule('0', 'left')
#12 path\_core-3.4.0\system\modules\core\controllers\FrontendIndex.php(253): Contao\PageRegular->generate(Object(Contao\PageModel), true)
#13 path\_core-3.4.0\index.php(22): Contao\FrontendIndex->run()
#14 {main}
```
(in my opinion) wrong format/value should ignored instead throwing an error.
|
1.0
|
[3.4.0] event list parameter month: wrong format = Fatal error - On a page with event list modul you can use ?month parameter. Format: YYYYMM.
If you change manually f.e. to MMYYYY a Fatal error occurs.
See at demo page:
http://demo.contao.org/en/events.html?month=052015
settings: displayErrors = true
```
Fatal error: Uncaught exception OutOfBoundsException with message Invalid date "052015" thrown in path\_core-3.4.0\system\modules\core\library\Contao\Date.php on line 438
#0 path\_core-3.4.0\system\modules\core\library\Contao\Date.php(71): Contao\Date->dateToUnix()
#1 path\_core-3.4.0\system\modules\calendar\modules\ModuleCalendar.php(97): Contao\Date->__construct('052015', 'Ym')
#2 path\_core-3.4.0\system\modules\core\modules\Module.php(163): Contao\ModuleCalendar->compile()
#3 path\_core-3.4.0\system\modules\calendar\modules\ModuleCalendar.php(85): Contao\Module->generate()
#4 path\_core-3.4.0\system\modules\core\elements\ContentModule.php(65): Contao\ModuleCalendar->generate()
#5 path\_core-3.4.0\system\modules\core\library\Contao\Controller.php(473): Contao\ContentModule->generate()
#6 path\_core-3.4.0\system\modules\core\modules\ModuleArticle.php(196): Contao\Controller::getContentElement(Object(Contao\ContentModel), 'left')
#7 path\_core-3.4.0\system\modules\core\modules\Module.php(163): Contao\ModuleArticle->compile()
#8 path\_core-3.4.0\system\modules\core\modules\ModuleArticle.php(59): Contao\Module->generate()
#9 path\_core-3.4.0\system\modules\core\library\Contao\Controller.php(409): Contao\ModuleArticle->generate(false)
#10 path\_core-3.4.0\system\modules\core\library\Contao\Controller.php(273): Contao\Controller::getArticle(Object(Contao\ArticleModel), false, false, 'left')
#11 path\_core-3.4.0\system\modules\core\pages\PageRegular.php(138): Contao\Controller::getFrontendModule('0', 'left')
#12 path\_core-3.4.0\system\modules\core\controllers\FrontendIndex.php(253): Contao\PageRegular->generate(Object(Contao\PageModel), true)
#13 path\_core-3.4.0\index.php(22): Contao\FrontendIndex->run()
#14 {main}
```
(in my opinion) wrong format/value should ignored instead throwing an error.
|
defect
|
event list parameter month wrong format fatal error on a page with event list modul you can use month parameter format yyyymm if you change manually f e to mmyyyy a fatal error occurs see at demo page settings displayerrors true fatal error uncaught exception outofboundsexception with message invalid date thrown in path core system modules core library contao date php on line path core system modules core library contao date php contao date datetounix path core system modules calendar modules modulecalendar php contao date construct ym path core system modules core modules module php contao modulecalendar compile path core system modules calendar modules modulecalendar php contao module generate path core system modules core elements contentmodule php contao modulecalendar generate path core system modules core library contao controller php contao contentmodule generate path core system modules core modules modulearticle php contao controller getcontentelement object contao contentmodel left path core system modules core modules module php contao modulearticle compile path core system modules core modules modulearticle php contao module generate path core system modules core library contao controller php contao modulearticle generate false path core system modules core library contao controller php contao controller getarticle object contao articlemodel false false left path core system modules core pages pageregular php contao controller getfrontendmodule left path core system modules core controllers frontendindex php contao pageregular generate object contao pagemodel true path core index php contao frontendindex run main in my opinion wrong format value should ignored instead throwing an error
| 1
|
201,991
| 15,818,292,900
|
IssuesEvent
|
2021-04-05 15:49:17
|
Srimathij/Indra_Bot
|
https://api.github.com/repos/Srimathij/Indra_Bot
|
closed
|
[DOC] Capitalize and correct letters in DatabaseConnection/README
|
Level0 Status: Assigned :lock: documentation good first issue
|
## Description
<!-- Answer here -->
Recently @shantamsultania and I have discussed about Database connection for this project a long time back, so it took some time but finally the feature is added (as a demo) but the documentation is a bit non-grammatical. So some instructions may need to be refined.
## Additional context
Just capitalize some letters or even add instructions to your understanding. I'll review and check it
|
1.0
|
[DOC] Capitalize and correct letters in DatabaseConnection/README - ## Description
<!-- Answer here -->
Recently @shantamsultania and I have discussed about Database connection for this project a long time back, so it took some time but finally the feature is added (as a demo) but the documentation is a bit non-grammatical. So some instructions may need to be refined.
## Additional context
Just capitalize some letters or even add instructions to your understanding. I'll review and check it
|
non_defect
|
capitalize and correct letters in databaseconnection readme description recently shantamsultania and i have discussed about database connection for this project a long time back so it took some time but finally the feature is added as a demo but the documentation is a bit non grammatical so some instructions may need to be refined additional context just capitalize some letters or even add instructions to your understanding i ll review and check it
| 0
|
48,896
| 13,184,769,381
|
IssuesEvent
|
2020-08-12 20:03:37
|
icecube-trac/tix3
|
https://api.github.com/repos/icecube-trac/tix3
|
opened
|
I3Db type information (Trac #400)
|
I3Db Incomplete Migration Migrated from Trac defect
|
<details>
<summary>_Migrated from https://code.icecube.wisc.edu/ticket/400
, reported by olivas and owned by kohnen_</summary>
<p>
```json
{
"status": "closed",
"changetime": "2012-07-19T18:01:16",
"description": "We need a way to set the parameter value type in I3DbDetectorStatusService.cxx ( line 655 ). Currently they're stored in the DB as strings and cast to integers here. This will cause problems for simulating the new monopole trigger where one parameter is stored as a float ( 0.5 to be specific ) which obviously casts to 0. This made it easier to catch. Had the value been something like 2.5, it may not have ever been found.\n\nThis is not just a problem with I3Db, but will need to be fixed in dataclasses as well. ",
"reporter": "olivas",
"cc": "",
"resolution": "fixed",
"_ts": "1342720876000000",
"component": "I3Db",
"summary": "I3Db type information",
"priority": "major",
"keywords": "",
"time": "2012-05-25T03:47:24",
"milestone": "",
"owner": "kohnen",
"type": "defect"
}
```
</p>
</details>
|
1.0
|
I3Db type information (Trac #400) - <details>
<summary>_Migrated from https://code.icecube.wisc.edu/ticket/400
, reported by olivas and owned by kohnen_</summary>
<p>
```json
{
"status": "closed",
"changetime": "2012-07-19T18:01:16",
"description": "We need a way to set the parameter value type in I3DbDetectorStatusService.cxx ( line 655 ). Currently they're stored in the DB as strings and cast to integers here. This will cause problems for simulating the new monopole trigger where one parameter is stored as a float ( 0.5 to be specific ) which obviously casts to 0. This made it easier to catch. Had the value been something like 2.5, it may not have ever been found.\n\nThis is not just a problem with I3Db, but will need to be fixed in dataclasses as well. ",
"reporter": "olivas",
"cc": "",
"resolution": "fixed",
"_ts": "1342720876000000",
"component": "I3Db",
"summary": "I3Db type information",
"priority": "major",
"keywords": "",
"time": "2012-05-25T03:47:24",
"milestone": "",
"owner": "kohnen",
"type": "defect"
}
```
</p>
</details>
|
defect
|
type information trac migrated from reported by olivas and owned by kohnen json status closed changetime description we need a way to set the parameter value type in cxx line currently they re stored in the db as strings and cast to integers here this will cause problems for simulating the new monopole trigger where one parameter is stored as a float to be specific which obviously casts to this made it easier to catch had the value been something like it may not have ever been found n nthis is not just a problem with but will need to be fixed in dataclasses as well reporter olivas cc resolution fixed ts component summary type information priority major keywords time milestone owner kohnen type defect
| 1
|
47,574
| 13,056,258,103
|
IssuesEvent
|
2020-07-30 04:08:59
|
icecube-trac/tix2
|
https://api.github.com/repos/icecube-trac/tix2
|
closed
|
[sim-services] (Trac #781)
|
Migrated from Trac combo simulation defect
|
Make sure the sanity checkers are solid, all have tests, and the testing scripts are enabled.
Migrated from https://code.icecube.wisc.edu/ticket/781
```json
{
"status": "closed",
"changetime": "2016-03-18T21:14:03",
"description": "Make sure the sanity checkers are solid, all have tests, and the testing scripts are enabled.",
"reporter": "olivas",
"cc": "",
"resolution": "fixed",
"_ts": "1458335643235016",
"component": "combo simulation",
"summary": "[sim-services]",
"priority": "critical",
"keywords": "",
"time": "2014-10-11T19:02:30",
"milestone": "",
"owner": "olivas",
"type": "defect"
}
```
|
1.0
|
[sim-services] (Trac #781) - Make sure the sanity checkers are solid, all have tests, and the testing scripts are enabled.
Migrated from https://code.icecube.wisc.edu/ticket/781
```json
{
"status": "closed",
"changetime": "2016-03-18T21:14:03",
"description": "Make sure the sanity checkers are solid, all have tests, and the testing scripts are enabled.",
"reporter": "olivas",
"cc": "",
"resolution": "fixed",
"_ts": "1458335643235016",
"component": "combo simulation",
"summary": "[sim-services]",
"priority": "critical",
"keywords": "",
"time": "2014-10-11T19:02:30",
"milestone": "",
"owner": "olivas",
"type": "defect"
}
```
|
defect
|
trac make sure the sanity checkers are solid all have tests and the testing scripts are enabled migrated from json status closed changetime description make sure the sanity checkers are solid all have tests and the testing scripts are enabled reporter olivas cc resolution fixed ts component combo simulation summary priority critical keywords time milestone owner olivas type defect
| 1
|
8,119
| 2,611,453,121
|
IssuesEvent
|
2015-02-27 05:00:37
|
chrsmith/hedgewars
|
https://api.github.com/repos/chrsmith/hedgewars
|
closed
|
version hedgewars to system 64 bit - error 32 bit
|
auto-migrated Priority-Medium Type-Defect
|
```
What steps will reproduce the problem?
1. run hedgewars
2. login servers game
3. look bug
What is the expected output? What do you see instead?
screen
What version of the product are you using? On what operating system?
hedgewars 0.9.14 . system: ubuntu 10.10
Please provide any additional information below.
```
Original issue reported on code.google.com by `lxx...@gmail.com` on 16 Nov 2010 at 4:59
Attachments:
* [zrzut_ekranu-Hedgewars.png](https://storage.googleapis.com/google-code-attachments/hedgewars/issue-102/comment-0/zrzut_ekranu-Hedgewars.png)
|
1.0
|
version hedgewars to system 64 bit - error 32 bit - ```
What steps will reproduce the problem?
1. run hedgewars
2. login servers game
3. look bug
What is the expected output? What do you see instead?
screen
What version of the product are you using? On what operating system?
hedgewars 0.9.14 . system: ubuntu 10.10
Please provide any additional information below.
```
Original issue reported on code.google.com by `lxx...@gmail.com` on 16 Nov 2010 at 4:59
Attachments:
* [zrzut_ekranu-Hedgewars.png](https://storage.googleapis.com/google-code-attachments/hedgewars/issue-102/comment-0/zrzut_ekranu-Hedgewars.png)
|
defect
|
version hedgewars to system bit error bit what steps will reproduce the problem run hedgewars login servers game look bug what is the expected output what do you see instead screen what version of the product are you using on what operating system hedgewars system ubuntu please provide any additional information below original issue reported on code google com by lxx gmail com on nov at attachments
| 1
|
31,305
| 6,496,252,874
|
IssuesEvent
|
2017-08-22 09:20:36
|
buildo/scriptoni
|
https://api.github.com/repos/buildo/scriptoni
|
closed
|
webpack.output.publicPath should be set to `/`
|
defect waiting for merge
|
## description
related to #142 , we should default `publicPath` to `/` so that all requests (produced by html-webpack-plugin template for index.html or by webpack when loading chunks) are absolute
## how to reproduce
- {optional: describe steps to reproduce defect}
## specs
{optional: describe a possible fix for this defect, if not obvious}
## misc
{optional: other useful info}
|
1.0
|
webpack.output.publicPath should be set to `/` - ## description
related to #142 , we should default `publicPath` to `/` so that all requests (produced by html-webpack-plugin template for index.html or by webpack when loading chunks) are absolute
## how to reproduce
- {optional: describe steps to reproduce defect}
## specs
{optional: describe a possible fix for this defect, if not obvious}
## misc
{optional: other useful info}
|
defect
|
webpack output publicpath should be set to description related to we should default publicpath to so that all requests produced by html webpack plugin template for index html or by webpack when loading chunks are absolute how to reproduce optional describe steps to reproduce defect specs optional describe a possible fix for this defect if not obvious misc optional other useful info
| 1
|
239,585
| 26,231,924,350
|
IssuesEvent
|
2023-01-05 01:30:49
|
kaidisn/focal
|
https://api.github.com/repos/kaidisn/focal
|
opened
|
CVE-2021-37712 (High) detected in tar-4.4.1.tgz
|
security vulnerability
|
## CVE-2021-37712 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>tar-4.4.1.tgz</b></p></summary>
<p>tar for node</p>
<p>Library home page: <a href="https://registry.npmjs.org/tar/-/tar-4.4.1.tgz">https://registry.npmjs.org/tar/-/tar-4.4.1.tgz</a></p>
<p>Path to dependency file: /yarn.lock</p>
<p>Path to vulnerable library: /yarn.lock</p>
<p>
Dependency Hierarchy:
- focal-examples-0.0.0.tgz (Root Library)
- webpack-4.41.2.tgz
- watchpack-1.6.0.tgz
- chokidar-2.1.8.tgz
- fsevents-1.2.9.tgz
- node-pre-gyp-0.12.0.tgz
- :x: **tar-4.4.1.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/kaidisn/focal/commit/108c475c4b3b40093c1fe5d1b3181f284c8ecd0f">108c475c4b3b40093c1fe5d1b3181f284c8ecd0f</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>
The npm package "tar" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with names containing unicode values that normalized to the same value. Additionally, on Windows systems, long path portions would resolve to the same file system entities as their 8.3 "short path" counterparts. A specially crafted tar archive could thus include a directory with one form of the path, followed by a symbolic link with a different string that resolves to the same file system entity, followed by a file using the first form. By first creating a directory, and then replacing that directory with a symlink that had a different apparent name that resolved to the same entry in the filesystem, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-qq89-hq3f-393p.
<p>Publish Date: 2021-08-31
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2021-37712>CVE-2021-37712</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.6</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: 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/npm/node-tar/security/advisories/GHSA-qq89-hq3f-393p">https://github.com/npm/node-tar/security/advisories/GHSA-qq89-hq3f-393p</a></p>
<p>Release Date: 2021-08-31</p>
<p>Fix Resolution: tar - 4.4.18,5.0.10,6.1.9</p>
</p>
</details>
<p></p>
|
True
|
CVE-2021-37712 (High) detected in tar-4.4.1.tgz - ## CVE-2021-37712 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>tar-4.4.1.tgz</b></p></summary>
<p>tar for node</p>
<p>Library home page: <a href="https://registry.npmjs.org/tar/-/tar-4.4.1.tgz">https://registry.npmjs.org/tar/-/tar-4.4.1.tgz</a></p>
<p>Path to dependency file: /yarn.lock</p>
<p>Path to vulnerable library: /yarn.lock</p>
<p>
Dependency Hierarchy:
- focal-examples-0.0.0.tgz (Root Library)
- webpack-4.41.2.tgz
- watchpack-1.6.0.tgz
- chokidar-2.1.8.tgz
- fsevents-1.2.9.tgz
- node-pre-gyp-0.12.0.tgz
- :x: **tar-4.4.1.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/kaidisn/focal/commit/108c475c4b3b40093c1fe5d1b3181f284c8ecd0f">108c475c4b3b40093c1fe5d1b3181f284c8ecd0f</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>
The npm package "tar" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with names containing unicode values that normalized to the same value. Additionally, on Windows systems, long path portions would resolve to the same file system entities as their 8.3 "short path" counterparts. A specially crafted tar archive could thus include a directory with one form of the path, followed by a symbolic link with a different string that resolves to the same file system entity, followed by a file using the first form. By first creating a directory, and then replacing that directory with a symlink that had a different apparent name that resolved to the same entry in the filesystem, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-qq89-hq3f-393p.
<p>Publish Date: 2021-08-31
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2021-37712>CVE-2021-37712</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.6</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: 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/npm/node-tar/security/advisories/GHSA-qq89-hq3f-393p">https://github.com/npm/node-tar/security/advisories/GHSA-qq89-hq3f-393p</a></p>
<p>Release Date: 2021-08-31</p>
<p>Fix Resolution: tar - 4.4.18,5.0.10,6.1.9</p>
</p>
</details>
<p></p>
|
non_defect
|
cve high detected in tar tgz cve high severity vulnerability vulnerable library tar tgz tar for node library home page a href path to dependency file yarn lock path to vulnerable library yarn lock dependency hierarchy focal examples tgz root library webpack tgz watchpack tgz chokidar tgz fsevents tgz node pre gyp tgz x tar tgz vulnerable library found in head commit a href found in base branch master vulnerability details the npm package tar aka node tar before versions and has an arbitrary file creation overwrite and arbitrary code execution vulnerability node tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted this is in part achieved by ensuring that extracted directories are not symlinks additionally in order to prevent unnecessary stat calls to determine whether a given path is a directory paths are cached when directories are created this logic was insufficient when extracting tar files that contained both a directory and a symlink with names containing unicode values that normalized to the same value additionally on windows systems long path portions would resolve to the same file system entities as their short path counterparts a specially crafted tar archive could thus include a directory with one form of the path followed by a symbolic link with a different string that resolves to the same file system entity followed by a file using the first form by first creating a directory and then replacing that directory with a symlink that had a different apparent name that resolved to the same entry in the filesystem it was thus possible to bypass node tar symlink checks on directories essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location thus allowing arbitrary file creation and overwrite these issues were addressed in releases and the branch of node tar has been deprecated and did not receive patches for these issues if you are still using a release we recommend you update to a more recent version of node tar if this is not possible a workaround is available in the referenced ghsa publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution tar
| 0
|
259,468
| 27,621,913,210
|
IssuesEvent
|
2023-03-10 01:21:05
|
nidhi7598/linux-3.0.35
|
https://api.github.com/repos/nidhi7598/linux-3.0.35
|
closed
|
CVE-2019-19927 (Medium) detected in linuxlinux-3.0.40 - autoclosed
|
Mend: dependency security vulnerability
|
## CVE-2019-19927 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-3.0.40</b></p></summary>
<p>
<p>Apache Software Foundation (ASF)</p>
<p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v3.0/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v3.0/?wsslib=linux</a></p>
<p>Found in HEAD commit: <a href="https://github.com/nidhi7598/linux-3.0.35/commit/4cc6d4a22f88b8effe1090492c1a242ce587b492">4cc6d4a22f88b8effe1090492c1a242ce587b492</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (1)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/gpu/drm/ttm/ttm_page_alloc.c</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In the Linux kernel 5.0.0-rc7 (as distributed in ubuntu/linux.git on kernel.ubuntu.com), mounting a crafted f2fs filesystem image and performing some operations can lead to slab-out-of-bounds read access in ttm_put_pages in drivers/gpu/drm/ttm/ttm_page_alloc.c. This is related to the vmwgfx or ttm module.
<p>Publish Date: 2019-12-31
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2019-19927>CVE-2019-19927</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.0</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: High
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: 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>Release Date: 2020-05-14</p>
<p>Fix Resolution: v5.1-rc6</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
True
|
CVE-2019-19927 (Medium) detected in linuxlinux-3.0.40 - autoclosed - ## CVE-2019-19927 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-3.0.40</b></p></summary>
<p>
<p>Apache Software Foundation (ASF)</p>
<p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v3.0/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v3.0/?wsslib=linux</a></p>
<p>Found in HEAD commit: <a href="https://github.com/nidhi7598/linux-3.0.35/commit/4cc6d4a22f88b8effe1090492c1a242ce587b492">4cc6d4a22f88b8effe1090492c1a242ce587b492</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (1)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/gpu/drm/ttm/ttm_page_alloc.c</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In the Linux kernel 5.0.0-rc7 (as distributed in ubuntu/linux.git on kernel.ubuntu.com), mounting a crafted f2fs filesystem image and performing some operations can lead to slab-out-of-bounds read access in ttm_put_pages in drivers/gpu/drm/ttm/ttm_page_alloc.c. This is related to the vmwgfx or ttm module.
<p>Publish Date: 2019-12-31
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2019-19927>CVE-2019-19927</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.0</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: High
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: 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>Release Date: 2020-05-14</p>
<p>Fix Resolution: v5.1-rc6</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
non_defect
|
cve medium detected in linuxlinux autoclosed cve medium severity vulnerability vulnerable library linuxlinux apache software foundation asf library home page a href found in head commit a href found in base branch master vulnerable source files drivers gpu drm ttm ttm page alloc c vulnerability details in the linux kernel as distributed in ubuntu linux git on kernel ubuntu com mounting a crafted filesystem image and performing some operations can lead to slab out of bounds read access in ttm put pages in drivers gpu drm ttm ttm page alloc c this is related to the vmwgfx or ttm module publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required high user interaction none scope unchanged impact metrics confidentiality impact high integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version release date fix resolution step up your open source security game with mend
| 0
|
110,164
| 4,422,128,834
|
IssuesEvent
|
2016-08-16 00:40:59
|
codeforkansascity/I-Got-Mine
|
https://api.github.com/repos/codeforkansascity/I-Got-Mine
|
closed
|
Myths section: Add touch event to the "True?" buttons
|
high priority Javascript ready
|
When user touches "True?" button (link actually) on the phone, the hidden answer should be displayed. (see mouseover behavior on desktop).
|
1.0
|
Myths section: Add touch event to the "True?" buttons - When user touches "True?" button (link actually) on the phone, the hidden answer should be displayed. (see mouseover behavior on desktop).
|
non_defect
|
myths section add touch event to the true buttons when user touches true button link actually on the phone the hidden answer should be displayed see mouseover behavior on desktop
| 0
|
606,178
| 18,756,692,600
|
IssuesEvent
|
2021-11-05 11:44:37
|
way-of-elendil/3.3.5
|
https://api.github.com/repos/way-of-elendil/3.3.5
|
reopened
|
Gloire à Roanauk
|
bug type-quest priority-low
|
Les NPCs ne retournent pas à leur place apres la fin de la quete "Gloire à Roanauk" dans la désolation des dragons (Marteau d'Agmar)
|
1.0
|
Gloire à Roanauk - Les NPCs ne retournent pas à leur place apres la fin de la quete "Gloire à Roanauk" dans la désolation des dragons (Marteau d'Agmar)
|
non_defect
|
gloire à roanauk les npcs ne retournent pas à leur place apres la fin de la quete gloire à roanauk dans la désolation des dragons marteau d agmar
| 0
|
76,028
| 26,205,729,212
|
IssuesEvent
|
2023-01-03 22:22:29
|
department-of-veterans-affairs/va.gov-cms
|
https://api.github.com/repos/department-of-veterans-affairs/va.gov-cms
|
closed
|
Errors found on Q&A Edit page
|
Defect ⭐️ Sitewide CMS
|
## Describe the defect
Errors found on Q&A- Single Edit screen when testing PHP 8.1:
> Deprecated function: parse_url(): Passing null to parameter #1 ($url) of type string is deprecated in Drupal\linkit\Plugin\Field\FieldWidget\LinkitWidget->formElement() (line 40 of modules/contrib/linkit/src/Plugin/Field/FieldWidget/LinkitWidget.php).
> Deprecated function: substr(): Passing null to parameter #1 ($string) of type string is deprecated in Drupal\linkit\Plugin\Field\FieldWidget\LinkitWidget->formElement() (line 41 of modules/contrib/linkit/src/Plugin/Field/FieldWidget/LinkitWidget.php).
## To Reproduce
Steps to reproduce the behavior:
1. Go to https://vacms-10870-upgrade-to-php81-rh7pjindaxvyxvr35alvilr3mqpgaoko.ci.cms.va.gov/node/44282/edit
2. See errors being reporting at the top of the page
## AC / Expected behavior
- [ ] Investigate/Resolve errors
## Screenshots

### CMS Team
Please check the team(s) that will do this work.
- [ ] `Program`
- [ ] `Platform CMS Team`
- [ ] `Sitewide Crew`
- [x] `⭐️ Sitewide CMS`
- [ ] `⭐️ Public Websites`
- [ ] `⭐️ Facilities`
- [ ] `⭐️ User support`
|
1.0
|
Errors found on Q&A Edit page - ## Describe the defect
Errors found on Q&A- Single Edit screen when testing PHP 8.1:
> Deprecated function: parse_url(): Passing null to parameter #1 ($url) of type string is deprecated in Drupal\linkit\Plugin\Field\FieldWidget\LinkitWidget->formElement() (line 40 of modules/contrib/linkit/src/Plugin/Field/FieldWidget/LinkitWidget.php).
> Deprecated function: substr(): Passing null to parameter #1 ($string) of type string is deprecated in Drupal\linkit\Plugin\Field\FieldWidget\LinkitWidget->formElement() (line 41 of modules/contrib/linkit/src/Plugin/Field/FieldWidget/LinkitWidget.php).
## To Reproduce
Steps to reproduce the behavior:
1. Go to https://vacms-10870-upgrade-to-php81-rh7pjindaxvyxvr35alvilr3mqpgaoko.ci.cms.va.gov/node/44282/edit
2. See errors being reporting at the top of the page
## AC / Expected behavior
- [ ] Investigate/Resolve errors
## Screenshots

### CMS Team
Please check the team(s) that will do this work.
- [ ] `Program`
- [ ] `Platform CMS Team`
- [ ] `Sitewide Crew`
- [x] `⭐️ Sitewide CMS`
- [ ] `⭐️ Public Websites`
- [ ] `⭐️ Facilities`
- [ ] `⭐️ User support`
|
defect
|
errors found on q a edit page describe the defect errors found on q a single edit screen when testing php deprecated function parse url passing null to parameter url of type string is deprecated in drupal linkit plugin field fieldwidget linkitwidget formelement line of modules contrib linkit src plugin field fieldwidget linkitwidget php deprecated function substr passing null to parameter string of type string is deprecated in drupal linkit plugin field fieldwidget linkitwidget formelement line of modules contrib linkit src plugin field fieldwidget linkitwidget php to reproduce steps to reproduce the behavior go to see errors being reporting at the top of the page ac expected behavior investigate resolve errors screenshots cms team please check the team s that will do this work program platform cms team sitewide crew ⭐️ sitewide cms ⭐️ public websites ⭐️ facilities ⭐️ user support
| 1
|
58,517
| 16,578,108,052
|
IssuesEvent
|
2021-05-31 08:06:25
|
martinrotter/rssguard
|
https://api.github.com/repos/martinrotter/rssguard
|
closed
|
[BUG]: Cosmetic. Fusion style. Incorrect background colour and poor appearance of certain items in Settings.
|
Type-Defect
|
<!---
Dear RSS Guard contributor, please RESPECT this template. Also, you might be
interested in reading this: http://www.chiark.greenend.org.uk/~sgtatham/bugs.html
Also, ALWAYS, ALWAYS, ALWAYS attach DEBUG LOG to your bug report!!!
See here how to generate it:
https://github.com/martinrotter/rssguard/blob/master/resources/docs/Documentation.md#generating-debug-log-file
-->
#### Brief description of the issue.
<!--- Write your description here. Remove this line, pls. -->
Please accept my apology that I have reported two problems in a single issue.
This is only because both of them (at least visually) are related to particular style: Fusion (default).
<details><summary>Three screenshots (click here)</summary>
#### `#1` Issue with padding, margin, or just height of Feed list font:

#### `#2` Issue of incorrect (grey) background colour in User interface -> Icons & skins

As shown in the following screenshot, the issue is not present in this section of Settings with similar content

</details>
#### How to reproduce the bug?
1. (Please look the screenshots)
#### What was the expected result?
<!--- Write expected results of above reproduction steps here. Remove this line, pls. -->
Flawless interface.
#### What actually happened?
<!--- Write the actual result here. Remove this line, pls. -->
Not-so-flawless interface.
#### Other information
<!--- Write any other supplementary information here. Remove this line, pls. -->
I will add the list, so it should be simpler to keep an eye on progress or to see that it is "all done" afterwards.
- [ ] The Feed list font issue
- [ ] The background colour issue
If it is not good still, I shall separate the "Background issue."
* OS: Arch Linux, KDE
* RSS Guard
Version: 4.0.0 (built on Linux/x86_64)
Revision: bc739ca9
Build date: 5/28/21 8:44 PM
Qt: 5.15.2 (compiled against 5.15.2)
|
1.0
|
[BUG]: Cosmetic. Fusion style. Incorrect background colour and poor appearance of certain items in Settings. - <!---
Dear RSS Guard contributor, please RESPECT this template. Also, you might be
interested in reading this: http://www.chiark.greenend.org.uk/~sgtatham/bugs.html
Also, ALWAYS, ALWAYS, ALWAYS attach DEBUG LOG to your bug report!!!
See here how to generate it:
https://github.com/martinrotter/rssguard/blob/master/resources/docs/Documentation.md#generating-debug-log-file
-->
#### Brief description of the issue.
<!--- Write your description here. Remove this line, pls. -->
Please accept my apology that I have reported two problems in a single issue.
This is only because both of them (at least visually) are related to particular style: Fusion (default).
<details><summary>Three screenshots (click here)</summary>
#### `#1` Issue with padding, margin, or just height of Feed list font:

#### `#2` Issue of incorrect (grey) background colour in User interface -> Icons & skins

As shown in the following screenshot, the issue is not present in this section of Settings with similar content

</details>
#### How to reproduce the bug?
1. (Please look the screenshots)
#### What was the expected result?
<!--- Write expected results of above reproduction steps here. Remove this line, pls. -->
Flawless interface.
#### What actually happened?
<!--- Write the actual result here. Remove this line, pls. -->
Not-so-flawless interface.
#### Other information
<!--- Write any other supplementary information here. Remove this line, pls. -->
I will add the list, so it should be simpler to keep an eye on progress or to see that it is "all done" afterwards.
- [ ] The Feed list font issue
- [ ] The background colour issue
If it is not good still, I shall separate the "Background issue."
* OS: Arch Linux, KDE
* RSS Guard
Version: 4.0.0 (built on Linux/x86_64)
Revision: bc739ca9
Build date: 5/28/21 8:44 PM
Qt: 5.15.2 (compiled against 5.15.2)
|
defect
|
cosmetic fusion style incorrect background colour and poor appearance of certain items in settings dear rss guard contributor please respect this template also you might be interested in reading this also always always always attach debug log to your bug report see here how to generate it brief description of the issue please accept my apology that i have reported two problems in a single issue this is only because both of them at least visually are related to particular style fusion default three screenshots click here issue with padding margin or just height of feed list font issue of incorrect grey background colour in user interface icons skins as shown in the following screenshot the issue is not present in this section of settings with similar content how to reproduce the bug please look the screenshots what was the expected result flawless interface what actually happened not so flawless interface other information i will add the list so it should be simpler to keep an eye on progress or to see that it is all done afterwards the feed list font issue the background colour issue if it is not good still i shall separate the background issue os arch linux kde rss guard version built on linux revision build date pm qt compiled against
| 1
|
426,791
| 12,379,402,023
|
IssuesEvent
|
2020-05-19 12:26:19
|
jstockwin/py-pdf-parser
|
https://api.github.com/repos/jstockwin/py-pdf-parser
|
closed
|
[performance] Disable advanced layout analysis
|
Component - Loaders Difficulty - Easy Priority - Medium Type - Enhancement
|
I noticed that by setting `boxes_flow` outside the documented range, you can actually disable PDFMiner's advanced layout analysis.
We don't need the advanced analysis since we have no hierarchy of text boxes and we order them ourselves, and it's quite a performance gain to leave these out.
I've filed an issue (and fix) to update the documentation and also allow `boxes_flow` to be passed as `None` to explicitly disable this: https://github.com/pdfminer/pdfminer.six/issues/395
Once that's merged, we should either default or hard-code our `boxes_flow` la param to `None`. It feels like we should allow it to be overridden, but equally since we ignore the resulting analysis perhaps there's no point and we should hard-code it to `None`.
|
1.0
|
[performance] Disable advanced layout analysis - I noticed that by setting `boxes_flow` outside the documented range, you can actually disable PDFMiner's advanced layout analysis.
We don't need the advanced analysis since we have no hierarchy of text boxes and we order them ourselves, and it's quite a performance gain to leave these out.
I've filed an issue (and fix) to update the documentation and also allow `boxes_flow` to be passed as `None` to explicitly disable this: https://github.com/pdfminer/pdfminer.six/issues/395
Once that's merged, we should either default or hard-code our `boxes_flow` la param to `None`. It feels like we should allow it to be overridden, but equally since we ignore the resulting analysis perhaps there's no point and we should hard-code it to `None`.
|
non_defect
|
disable advanced layout analysis i noticed that by setting boxes flow outside the documented range you can actually disable pdfminer s advanced layout analysis we don t need the advanced analysis since we have no hierarchy of text boxes and we order them ourselves and it s quite a performance gain to leave these out i ve filed an issue and fix to update the documentation and also allow boxes flow to be passed as none to explicitly disable this once that s merged we should either default or hard code our boxes flow la param to none it feels like we should allow it to be overridden but equally since we ignore the resulting analysis perhaps there s no point and we should hard code it to none
| 0
|
217,529
| 24,341,482,356
|
IssuesEvent
|
2022-10-01 19:11:35
|
kedacore/test-tools
|
https://api.github.com/repos/kedacore/test-tools
|
opened
|
CVE-2022-29526 (Medium) detected in github.com/golang/sys-da31bd327af904dd4721b4eefa7c505bb3afd214, github.com/golang/sys-c6e801f48ba2ad620ea6c8fe8899fb80af386135
|
security vulnerability
|
## CVE-2022-29526 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>github.com/golang/sys-da31bd327af904dd4721b4eefa7c505bb3afd214</b>, <b>github.com/golang/sys-c6e801f48ba2ad620ea6c8fe8899fb80af386135</b></p></summary>
<p>
<details><summary><b>github.com/golang/sys-da31bd327af904dd4721b4eefa7c505bb3afd214</b></p></summary>
<p>[mirror] Go packages for low-level interaction with the operating system</p>
<p>
Dependency Hierarchy:
- github.com/prometheus/client_golang-v1.12.1 (Root Library)
- github.com/prometheus/procfs-v0.7.3
- :x: **github.com/golang/sys-da31bd327af904dd4721b4eefa7c505bb3afd214** (Vulnerable Library)
</details>
<details><summary><b>github.com/golang/sys-c6e801f48ba2ad620ea6c8fe8899fb80af386135</b></p></summary>
<p>[mirror] Go packages for low-level interaction with the operating system</p>
<p>
Dependency Hierarchy:
- google.golang.org/grpc-v1.45.0 (Root Library)
- :x: **github.com/golang/sys-c6e801f48ba2ad620ea6c8fe8899fb80af386135** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/kedacore/test-tools/commit/2c144e12e5f278d59cbdc4f4eb3c652e0d62591e">2c144e12e5f278d59cbdc4f4eb3c652e0d62591e</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.
<p>Publish Date: 2022-06-23
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-29526>CVE-2022-29526</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: 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://security-tracker.debian.org/tracker/CVE-2022-29526">https://security-tracker.debian.org/tracker/CVE-2022-29526</a></p>
<p>Release Date: 2022-06-23</p>
<p>Fix Resolution: go1.17.10,go1.18.2,go1.19</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-29526 (Medium) detected in github.com/golang/sys-da31bd327af904dd4721b4eefa7c505bb3afd214, github.com/golang/sys-c6e801f48ba2ad620ea6c8fe8899fb80af386135 - ## CVE-2022-29526 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>github.com/golang/sys-da31bd327af904dd4721b4eefa7c505bb3afd214</b>, <b>github.com/golang/sys-c6e801f48ba2ad620ea6c8fe8899fb80af386135</b></p></summary>
<p>
<details><summary><b>github.com/golang/sys-da31bd327af904dd4721b4eefa7c505bb3afd214</b></p></summary>
<p>[mirror] Go packages for low-level interaction with the operating system</p>
<p>
Dependency Hierarchy:
- github.com/prometheus/client_golang-v1.12.1 (Root Library)
- github.com/prometheus/procfs-v0.7.3
- :x: **github.com/golang/sys-da31bd327af904dd4721b4eefa7c505bb3afd214** (Vulnerable Library)
</details>
<details><summary><b>github.com/golang/sys-c6e801f48ba2ad620ea6c8fe8899fb80af386135</b></p></summary>
<p>[mirror] Go packages for low-level interaction with the operating system</p>
<p>
Dependency Hierarchy:
- google.golang.org/grpc-v1.45.0 (Root Library)
- :x: **github.com/golang/sys-c6e801f48ba2ad620ea6c8fe8899fb80af386135** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/kedacore/test-tools/commit/2c144e12e5f278d59cbdc4f4eb3c652e0d62591e">2c144e12e5f278d59cbdc4f4eb3c652e0d62591e</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.
<p>Publish Date: 2022-06-23
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-29526>CVE-2022-29526</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: 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://security-tracker.debian.org/tracker/CVE-2022-29526">https://security-tracker.debian.org/tracker/CVE-2022-29526</a></p>
<p>Release Date: 2022-06-23</p>
<p>Fix Resolution: go1.17.10,go1.18.2,go1.19</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
non_defect
|
cve medium detected in github com golang sys github com golang sys cve medium severity vulnerability vulnerable libraries github com golang sys github com golang sys github com golang sys go packages for low level interaction with the operating system dependency hierarchy github com prometheus client golang root library github com prometheus procfs x github com golang sys vulnerable library github com golang sys go packages for low level interaction with the operating system dependency hierarchy google golang org grpc root library x github com golang sys vulnerable library found in head commit a href found in base branch main vulnerability details go before and x before has incorrect privilege assignment when called with a non zero flags parameter the faccessat function could incorrectly report that a file is accessible 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 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 mend
| 0
|
81,362
| 30,819,875,411
|
IssuesEvent
|
2023-08-01 15:37:23
|
openzfs/zfs
|
https://api.github.com/repos/openzfs/zfs
|
closed
|
Linux kernel 6.5.0-rc1 change: block: replace fmode_t with a block-specific type for block open flags
|
Type: Defect
|
<!-- Please fill out the following template, which will help other contributors address your issue. -->
<!--
Thank you for reporting an issue.
*IMPORTANT* - Please check our issue tracker before opening a new issue.
Additional valuable information can be found in the OpenZFS documentation
and mailing list archives.
Please fill in as much of the template as possible.
-->
### System information
<!-- add version after "|" character -->
Type | Version/Name
--- | ---
Distribution Name | Ubuntu
Distribution Version | 23.04
Kernel Version | 6.5.0-rc1
Architecture | x86_64
OpenZFS Version | 2.2.0-rc1
<!--
Command to find OpenZFS version:
zfs version
Commands to find kernel version:
uname -r # Linux
freebsd-version -r # FreeBSD
-->
### Describe the problem you're observing
```
checking whether bops->check_events() exists... yes
checking whether bops->release() is void... configure: error:
*** None of the expected "bops->release()" interfaces were detected.
*** This may be because your kernel version is newer than what is
*** supported, or you are using a patched custom kernel with
*** incompatible modifications.
***
*** ZFS Version: zfs-2.2.0rc1
```
### Describe how to reproduce the problem
Just attempted a build of the dkms module with a build of 6.5.0-rc1.
### Include any warning/errors/backtraces from the system logs
<!--
*IMPORTANT* - Please mark logs and text output from terminal commands
or else Github will not display them correctly.
An example is provided below.
Example:
```
this is an example how log text should be marked (wrap it with ```)
```
-->
|
1.0
|
Linux kernel 6.5.0-rc1 change: block: replace fmode_t with a block-specific type for block open flags - <!-- Please fill out the following template, which will help other contributors address your issue. -->
<!--
Thank you for reporting an issue.
*IMPORTANT* - Please check our issue tracker before opening a new issue.
Additional valuable information can be found in the OpenZFS documentation
and mailing list archives.
Please fill in as much of the template as possible.
-->
### System information
<!-- add version after "|" character -->
Type | Version/Name
--- | ---
Distribution Name | Ubuntu
Distribution Version | 23.04
Kernel Version | 6.5.0-rc1
Architecture | x86_64
OpenZFS Version | 2.2.0-rc1
<!--
Command to find OpenZFS version:
zfs version
Commands to find kernel version:
uname -r # Linux
freebsd-version -r # FreeBSD
-->
### Describe the problem you're observing
```
checking whether bops->check_events() exists... yes
checking whether bops->release() is void... configure: error:
*** None of the expected "bops->release()" interfaces were detected.
*** This may be because your kernel version is newer than what is
*** supported, or you are using a patched custom kernel with
*** incompatible modifications.
***
*** ZFS Version: zfs-2.2.0rc1
```
### Describe how to reproduce the problem
Just attempted a build of the dkms module with a build of 6.5.0-rc1.
### Include any warning/errors/backtraces from the system logs
<!--
*IMPORTANT* - Please mark logs and text output from terminal commands
or else Github will not display them correctly.
An example is provided below.
Example:
```
this is an example how log text should be marked (wrap it with ```)
```
-->
|
defect
|
linux kernel change block replace fmode t with a block specific type for block open flags thank you for reporting an issue important please check our issue tracker before opening a new issue additional valuable information can be found in the openzfs documentation and mailing list archives please fill in as much of the template as possible system information type version name distribution name ubuntu distribution version kernel version architecture openzfs version command to find openzfs version zfs version commands to find kernel version uname r linux freebsd version r freebsd describe the problem you re observing checking whether bops check events exists yes checking whether bops release is void configure error none of the expected bops release interfaces were detected this may be because your kernel version is newer than what is supported or you are using a patched custom kernel with incompatible modifications zfs version zfs describe how to reproduce the problem just attempted a build of the dkms module with a build of include any warning errors backtraces from the system logs important please mark logs and text output from terminal commands or else github will not display them correctly an example is provided below example this is an example how log text should be marked wrap it with
| 1
|
37,489
| 8,406,272,094
|
IssuesEvent
|
2018-10-11 17:28:11
|
NREL/EnergyPlus
|
https://api.github.com/repos/NREL/EnergyPlus
|
closed
|
Suggestion has been made that many surface heat transfer output variables should be added for the baffle surface when using exterior ventilated cavity model (SurfaceProperty:ExteriorNaturalVentedCavity). (CR #8884)
|
Defect EnergyPlus SeverityMedium WontFix
|
#### User requests additional heat transfer reports for SurfaceProperty:ExteriorNaturalVentedCavity model.
###### Assigned to: Brent Griffith
###### Added on 2012-06-19 13:58 by Brent Griffith
##
#### Description
When using the vented exterior cavity model, the baffle layer becomes a new outer surface and the reporting of surface heat transfer is not complete. Need to add at least the resulting convection coefficient and probably many other surface heat balance terms recently added for regular surfaces in Version 7.1.
The documentation for surface reporting needs to be more clear for what is what when using these models.
##
External Ref: Ticket 6027
Last build tested: `12.05.31 V7.1.0.012-release`
|
1.0
|
Suggestion has been made that many surface heat transfer output variables should be added for the baffle surface when using exterior ventilated cavity model (SurfaceProperty:ExteriorNaturalVentedCavity). (CR #8884) - #### User requests additional heat transfer reports for SurfaceProperty:ExteriorNaturalVentedCavity model.
###### Assigned to: Brent Griffith
###### Added on 2012-06-19 13:58 by Brent Griffith
##
#### Description
When using the vented exterior cavity model, the baffle layer becomes a new outer surface and the reporting of surface heat transfer is not complete. Need to add at least the resulting convection coefficient and probably many other surface heat balance terms recently added for regular surfaces in Version 7.1.
The documentation for surface reporting needs to be more clear for what is what when using these models.
##
External Ref: Ticket 6027
Last build tested: `12.05.31 V7.1.0.012-release`
|
defect
|
suggestion has been made that many surface heat transfer output variables should be added for the baffle surface when using exterior ventilated cavity model surfaceproperty exteriornaturalventedcavity cr user requests additional heat transfer reports for surfaceproperty exteriornaturalventedcavity model assigned to brent griffith added on by brent griffith description when using the vented exterior cavity model the baffle layer becomes a new outer surface and the reporting of surface heat transfer is not complete need to add at least the resulting convection coefficient and probably many other surface heat balance terms recently added for regular surfaces in version the documentation for surface reporting needs to be more clear for what is what when using these models external ref ticket last build tested release
| 1
|
18,569
| 11,014,851,629
|
IssuesEvent
|
2019-12-04 23:51:03
|
Azure/azure-cli
|
https://api.github.com/repos/Azure/azure-cli
|
closed
|
aks generation script fails with Bad Request when ran as a script, but not when ran interactively.
|
AKS Service Attention
|
> ### `az feedback` auto-generates most of the information requested below, as of CLI version 2.0.62
**Describe the bug**
I have a script to build a Kubernetes environment. This script runs fine if I execute each individual command. However, if I run it as a PowerShell script the last command throws the following error:
```
az : ERROR: Operation failed with status: 'Bad Request'. Details: Internal server error
At C:\Users\Dustin\Downloads\generate-azure-environment.ps1:31 char:1
+ az aks create --resource-group "$kubernetesResourceGroup" `
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (ERROR: Operatio...al server error:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
```
I'm not sure why I running these commands as a script fails vs. running them individually. I've played around with adding Start-Sleep commands, but that seems like a sketchy hack.
**To Reproduce**
Run this script:
```powershell
$kubernetesResourceGroup="kube-test-1" # needs to be unique to your subscription
$acrName='qawsedtestacr' # must conform to the following pattern: '^[a-zA-Z0-9]*$
$aksClusterName='test-cluster-dje'
$location = 'centralus'
$numberOfNodes = 1
Write-Host "Creating resource group $resourceGroupName"
az group create -l $location -n $kubernetesResourceGroup
Write-Host "Creating the Azure Container Registry"
az acr create --resource-group $kubernetesResourceGroup --name $acrName --sku Standard --location $location
Write-Host "Creating a Service Principal"
$sp=az ad sp create-for-rbac --skip-assignment | ConvertFrom-Json
$appId=$sp.appId
$appPassword=$sp.password
$acrID=az acr show --resource-group $kubernetesResourceGroup --name $acrName --query "id" --output tsv
Write-Host "Assigning the service principal to ACR pull"
az role assignment create --assignee $appId --scope $acrID --role acrpull
Write-Host "Building a Kubernetes Cluster"
az aks create --resource-group "$kubernetesResourceGroup" `
--name "$aksClusterName" `
--node-count "$numberOfNodes" `
--service-principal "$appId" `
--client-secret "$appPassword" `
--generate-ssh-keys `
--location "$location"
```
**Expected behavior**
I want my script to behave the same way regardless of whether I run it as a script or run the commands individually.
**Environment summary**
Windows 10, Azure CLI 2.0.70
**Additional context**
Add any other context about the problem here.
|
1.0
|
aks generation script fails with Bad Request when ran as a script, but not when ran interactively. - > ### `az feedback` auto-generates most of the information requested below, as of CLI version 2.0.62
**Describe the bug**
I have a script to build a Kubernetes environment. This script runs fine if I execute each individual command. However, if I run it as a PowerShell script the last command throws the following error:
```
az : ERROR: Operation failed with status: 'Bad Request'. Details: Internal server error
At C:\Users\Dustin\Downloads\generate-azure-environment.ps1:31 char:1
+ az aks create --resource-group "$kubernetesResourceGroup" `
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (ERROR: Operatio...al server error:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
```
I'm not sure why I running these commands as a script fails vs. running them individually. I've played around with adding Start-Sleep commands, but that seems like a sketchy hack.
**To Reproduce**
Run this script:
```powershell
$kubernetesResourceGroup="kube-test-1" # needs to be unique to your subscription
$acrName='qawsedtestacr' # must conform to the following pattern: '^[a-zA-Z0-9]*$
$aksClusterName='test-cluster-dje'
$location = 'centralus'
$numberOfNodes = 1
Write-Host "Creating resource group $resourceGroupName"
az group create -l $location -n $kubernetesResourceGroup
Write-Host "Creating the Azure Container Registry"
az acr create --resource-group $kubernetesResourceGroup --name $acrName --sku Standard --location $location
Write-Host "Creating a Service Principal"
$sp=az ad sp create-for-rbac --skip-assignment | ConvertFrom-Json
$appId=$sp.appId
$appPassword=$sp.password
$acrID=az acr show --resource-group $kubernetesResourceGroup --name $acrName --query "id" --output tsv
Write-Host "Assigning the service principal to ACR pull"
az role assignment create --assignee $appId --scope $acrID --role acrpull
Write-Host "Building a Kubernetes Cluster"
az aks create --resource-group "$kubernetesResourceGroup" `
--name "$aksClusterName" `
--node-count "$numberOfNodes" `
--service-principal "$appId" `
--client-secret "$appPassword" `
--generate-ssh-keys `
--location "$location"
```
**Expected behavior**
I want my script to behave the same way regardless of whether I run it as a script or run the commands individually.
**Environment summary**
Windows 10, Azure CLI 2.0.70
**Additional context**
Add any other context about the problem here.
|
non_defect
|
aks generation script fails with bad request when ran as a script but not when ran interactively az feedback auto generates most of the information requested below as of cli version describe the bug i have a script to build a kubernetes environment this script runs fine if i execute each individual command however if i run it as a powershell script the last command throws the following error az error operation failed with status bad request details internal server error at c users dustin downloads generate azure environment char az aks create resource group kubernetesresourcegroup categoryinfo notspecified error operatio al server error string remoteexception fullyqualifiederrorid nativecommanderror i m not sure why i running these commands as a script fails vs running them individually i ve played around with adding start sleep commands but that seems like a sketchy hack to reproduce run this script powershell kubernetesresourcegroup kube test needs to be unique to your subscription acrname qawsedtestacr must conform to the following pattern aksclustername test cluster dje location centralus numberofnodes write host creating resource group resourcegroupname az group create l location n kubernetesresourcegroup write host creating the azure container registry az acr create resource group kubernetesresourcegroup name acrname sku standard location location write host creating a service principal sp az ad sp create for rbac skip assignment convertfrom json appid sp appid apppassword sp password acrid az acr show resource group kubernetesresourcegroup name acrname query id output tsv write host assigning the service principal to acr pull az role assignment create assignee appid scope acrid role acrpull write host building a kubernetes cluster az aks create resource group kubernetesresourcegroup name aksclustername node count numberofnodes service principal appid client secret apppassword generate ssh keys location location expected behavior i want my script to behave the same way regardless of whether i run it as a script or run the commands individually environment summary windows azure cli additional context add any other context about the problem here
| 0
|
79,638
| 15,241,426,474
|
IssuesEvent
|
2021-02-19 08:25:18
|
GIScience/ohsome-api
|
https://api.github.com/repos/GIScience/ohsome-api
|
opened
|
Add property 'contributionTypes' to 'properties' parameter
|
code quality enhancement
|
Currently, the `@contributionType` field gets added to the response features of the `/contributions/{geometryType}` endpoints if the `properties=metadata` parameter is given in the request. However, as it is not directly related to the other fields that get added via setting this parameter, it would be better to have it as a distinct value of the `properties` parameter, so that it gets added via setting `properties=contributionTypes` (or alternatively `contribution types`). This property should only be allowed for the `/contributions/{geometryType}` endpoint.
|
1.0
|
Add property 'contributionTypes' to 'properties' parameter - Currently, the `@contributionType` field gets added to the response features of the `/contributions/{geometryType}` endpoints if the `properties=metadata` parameter is given in the request. However, as it is not directly related to the other fields that get added via setting this parameter, it would be better to have it as a distinct value of the `properties` parameter, so that it gets added via setting `properties=contributionTypes` (or alternatively `contribution types`). This property should only be allowed for the `/contributions/{geometryType}` endpoint.
|
non_defect
|
add property contributiontypes to properties parameter currently the contributiontype field gets added to the response features of the contributions geometrytype endpoints if the properties metadata parameter is given in the request however as it is not directly related to the other fields that get added via setting this parameter it would be better to have it as a distinct value of the properties parameter so that it gets added via setting properties contributiontypes or alternatively contribution types this property should only be allowed for the contributions geometrytype endpoint
| 0
|
54,616
| 11,268,215,715
|
IssuesEvent
|
2020-01-14 05:21:36
|
backdrop/backdrop-issues
|
https://api.github.com/repos/backdrop/backdrop-issues
|
closed
|
Possible regression in 1.15.x-dev when adding blocks with file fields
|
pr - needs code review pr - works for me status - has pull request type - bug report
|
**Description of the bug**
When newly adding certain types of blocks to a layout, they don't appear on the "Manage blocks" page after clicking "Add block".
Also the message "This form has unsaved changes. ..." won't show.
After flushing the layout cache via admin menu, or even simply reloading the layout form page, both show in the form (block and message).
**Steps To Reproduce**
1. Go to a layout and add a hero block
2. Save the block
Please note: not all types of blocks seem affected. It only affects block types with a file field like the core Hero block type.
Nothing in dblog, nothing in error_log.
**Expected behavior**
Block and message should show up.
**Additional information**
- Backdrop CMS version: 1.15.x-dev (latest)
- Web server and its version: Apache 2.4
- PHP version 7.2
---
PR by @indigoxela: https://github.com/backdrop/backdrop/pull/3037
|
1.0
|
Possible regression in 1.15.x-dev when adding blocks with file fields - **Description of the bug**
When newly adding certain types of blocks to a layout, they don't appear on the "Manage blocks" page after clicking "Add block".
Also the message "This form has unsaved changes. ..." won't show.
After flushing the layout cache via admin menu, or even simply reloading the layout form page, both show in the form (block and message).
**Steps To Reproduce**
1. Go to a layout and add a hero block
2. Save the block
Please note: not all types of blocks seem affected. It only affects block types with a file field like the core Hero block type.
Nothing in dblog, nothing in error_log.
**Expected behavior**
Block and message should show up.
**Additional information**
- Backdrop CMS version: 1.15.x-dev (latest)
- Web server and its version: Apache 2.4
- PHP version 7.2
---
PR by @indigoxela: https://github.com/backdrop/backdrop/pull/3037
|
non_defect
|
possible regression in x dev when adding blocks with file fields description of the bug when newly adding certain types of blocks to a layout they don t appear on the manage blocks page after clicking add block also the message this form has unsaved changes won t show after flushing the layout cache via admin menu or even simply reloading the layout form page both show in the form block and message steps to reproduce go to a layout and add a hero block save the block please note not all types of blocks seem affected it only affects block types with a file field like the core hero block type nothing in dblog nothing in error log expected behavior block and message should show up additional information backdrop cms version x dev latest web server and its version apache php version pr by indigoxela
| 0
|
236,410
| 26,010,598,417
|
IssuesEvent
|
2022-12-21 01:03:32
|
WhtieSource-SPDX-example/roller
|
https://api.github.com/repos/WhtieSource-SPDX-example/roller
|
closed
|
CVE-2022-31692 (High) detected in spring-security-web-5.5.3.jar - autoclosed
|
security vulnerability
|
## CVE-2022-31692 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>spring-security-web-5.5.3.jar</b></p></summary>
<p>Spring Security</p>
<p>Library home page: <a href="https://spring.io/projects/spring-security">https://spring.io/projects/spring-security</a></p>
<p>Path to dependency file: /app/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/security/spring-security-web/5.5.3/spring-security-web-5.5.3.jar</p>
<p>
Dependency Hierarchy:
- spring-security-openid-5.5.3.jar (Root Library)
- :x: **spring-security-web-5.5.3.jar** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Spring Security, versions 5.7 prior to 5.7.5 and 5.6 prior to 5.6.9 could be susceptible to authorization rules bypass via forward or include dispatcher types. Specifically, an application is vulnerable when all of the following are true: The application expects that Spring Security applies security to forward and include dispatcher types. The application uses the AuthorizationFilter either manually or via the authorizeHttpRequests() method. The application configures the FilterChainProxy to apply to forward and/or include requests (e.g. spring.security.filter.dispatcher-types = request, error, async, forward, include). The application may forward or include the request to a higher privilege-secured endpoint.The application configures Spring Security to apply to every dispatcher type via authorizeHttpRequests().shouldFilterAllDispatcherTypes(true)
<p>Publish Date: 2022-10-31
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-31692>CVE-2022-31692</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>9.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://tanzu.vmware.com/security/cve-2022-31692">https://tanzu.vmware.com/security/cve-2022-31692</a></p>
<p>Release Date: 2022-10-31</p>
<p>Fix Resolution: org.springframework.security:spring-security-web:5.6.9,5.7.5</p>
</p>
</details>
<p></p>
|
True
|
CVE-2022-31692 (High) detected in spring-security-web-5.5.3.jar - autoclosed - ## CVE-2022-31692 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>spring-security-web-5.5.3.jar</b></p></summary>
<p>Spring Security</p>
<p>Library home page: <a href="https://spring.io/projects/spring-security">https://spring.io/projects/spring-security</a></p>
<p>Path to dependency file: /app/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/security/spring-security-web/5.5.3/spring-security-web-5.5.3.jar</p>
<p>
Dependency Hierarchy:
- spring-security-openid-5.5.3.jar (Root Library)
- :x: **spring-security-web-5.5.3.jar** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Spring Security, versions 5.7 prior to 5.7.5 and 5.6 prior to 5.6.9 could be susceptible to authorization rules bypass via forward or include dispatcher types. Specifically, an application is vulnerable when all of the following are true: The application expects that Spring Security applies security to forward and include dispatcher types. The application uses the AuthorizationFilter either manually or via the authorizeHttpRequests() method. The application configures the FilterChainProxy to apply to forward and/or include requests (e.g. spring.security.filter.dispatcher-types = request, error, async, forward, include). The application may forward or include the request to a higher privilege-secured endpoint.The application configures Spring Security to apply to every dispatcher type via authorizeHttpRequests().shouldFilterAllDispatcherTypes(true)
<p>Publish Date: 2022-10-31
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-31692>CVE-2022-31692</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>9.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://tanzu.vmware.com/security/cve-2022-31692">https://tanzu.vmware.com/security/cve-2022-31692</a></p>
<p>Release Date: 2022-10-31</p>
<p>Fix Resolution: org.springframework.security:spring-security-web:5.6.9,5.7.5</p>
</p>
</details>
<p></p>
|
non_defect
|
cve high detected in spring security web jar autoclosed cve high severity vulnerability vulnerable library spring security web jar spring security library home page a href path to dependency file app pom xml path to vulnerable library home wss scanner repository org springframework security spring security web spring security web jar dependency hierarchy spring security openid jar root library x spring security web jar vulnerable library found in base branch master vulnerability details spring security versions prior to and prior to could be susceptible to authorization rules bypass via forward or include dispatcher types specifically an application is vulnerable when all of the following are true the application expects that spring security applies security to forward and include dispatcher types the application uses the authorizationfilter either manually or via the authorizehttprequests method the application configures the filterchainproxy to apply to forward and or include requests e g spring security filter dispatcher types request error async forward include the application may forward or include the request to a higher privilege secured endpoint the application configures spring security to apply to every dispatcher type via authorizehttprequests shouldfilteralldispatchertypes true publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution org springframework security spring security web
| 0
|
32,563
| 6,826,216,578
|
IssuesEvent
|
2017-11-08 13:26:03
|
jOOQ/jOOQ
|
https://api.github.com/repos/jOOQ/jOOQ
|
closed
|
Override equals() and hashCode() in org.jooq.impl.Fields
|
C: Functionality P: Medium R: Fixed T: Defect
|
`Fields` is currently the only implementation of `RecordType`, which is used by various public API, including `RecordMapperProvider`. Unfortunately, it does not override `AbstractQueryPart`'s default implementation of `equals()` and `hashCode()`, which leads to rather inefficient behaviour when putting a `RecordType` in a `HashMap` or a `HashSet`.
This improvement is a prerequisite for #6803
|
1.0
|
Override equals() and hashCode() in org.jooq.impl.Fields - `Fields` is currently the only implementation of `RecordType`, which is used by various public API, including `RecordMapperProvider`. Unfortunately, it does not override `AbstractQueryPart`'s default implementation of `equals()` and `hashCode()`, which leads to rather inefficient behaviour when putting a `RecordType` in a `HashMap` or a `HashSet`.
This improvement is a prerequisite for #6803
|
defect
|
override equals and hashcode in org jooq impl fields fields is currently the only implementation of recordtype which is used by various public api including recordmapperprovider unfortunately it does not override abstractquerypart s default implementation of equals and hashcode which leads to rather inefficient behaviour when putting a recordtype in a hashmap or a hashset this improvement is a prerequisite for
| 1
|
55,536
| 14,533,682,932
|
IssuesEvent
|
2020-12-15 01:09:11
|
MarcusWolschon/osmeditor4android
|
https://api.github.com/repos/MarcusWolschon/osmeditor4android
|
closed
|
Append - wrong end of way chosen
|
Defect FIXED
|
## Vespucci Version
15.1 play store
```
Vespucci 15.1.0
Flavor: current
Maximum avaliable memory 536870912
Total memory used 71266704
Tile Cache ESRIWORLDIMAGERYCLARITY usage Size 66846720 of maximum 67108864 #entries 255
State file size 3452180 last changed 2020-12-13 19:04:10
Bug state file size 2350 last changed 2020-12-13 19:04:10
Relations (current/API): 489/0
Ways (current/API): 3092/0
Nodes (current/Waynodes/API): 39133/38906/0
Available location providers
passive enabled true
network enabled true
gps enabled true
```
## Download source
<!-- from where did you obtain the app? google play store, amazon, f-droid, github, ... -->
## Device (Manufacturer and Model)
Oneplus 8 Pro
## Android Version
11
## Behaviour/Symptoms
Wrong end (south) of way used when appending
## Expected Behaviour
The way is extended to reach the other way, from the north point.
## How to recreate
I don't know the state my app is in. The north end has a higher ID than the south end.
1. Select way
2. Click the append icon
3. Click on north end of way
4. Click on another way
See attached video
[video](https://photos.app.goo.gl/BL1RDV14cCnEtnqJ9)
|
1.0
|
Append - wrong end of way chosen -
## Vespucci Version
15.1 play store
```
Vespucci 15.1.0
Flavor: current
Maximum avaliable memory 536870912
Total memory used 71266704
Tile Cache ESRIWORLDIMAGERYCLARITY usage Size 66846720 of maximum 67108864 #entries 255
State file size 3452180 last changed 2020-12-13 19:04:10
Bug state file size 2350 last changed 2020-12-13 19:04:10
Relations (current/API): 489/0
Ways (current/API): 3092/0
Nodes (current/Waynodes/API): 39133/38906/0
Available location providers
passive enabled true
network enabled true
gps enabled true
```
## Download source
<!-- from where did you obtain the app? google play store, amazon, f-droid, github, ... -->
## Device (Manufacturer and Model)
Oneplus 8 Pro
## Android Version
11
## Behaviour/Symptoms
Wrong end (south) of way used when appending
## Expected Behaviour
The way is extended to reach the other way, from the north point.
## How to recreate
I don't know the state my app is in. The north end has a higher ID than the south end.
1. Select way
2. Click the append icon
3. Click on north end of way
4. Click on another way
See attached video
[video](https://photos.app.goo.gl/BL1RDV14cCnEtnqJ9)
|
defect
|
append wrong end of way chosen vespucci version play store vespucci flavor current maximum avaliable memory total memory used tile cache esriworldimageryclarity usage size of maximum entries state file size last changed bug state file size last changed relations current api ways current api nodes current waynodes api available location providers passive enabled true network enabled true gps enabled true download source device manufacturer and model oneplus pro android version behaviour symptoms wrong end south of way used when appending expected behaviour the way is extended to reach the other way from the north point how to recreate i don t know the state my app is in the north end has a higher id than the south end select way click the append icon click on north end of way click on another way see attached video
| 1
|
358,637
| 25,198,626,627
|
IssuesEvent
|
2022-11-12 21:07:56
|
ingcdsantamaria/Degorra
|
https://api.github.com/repos/ingcdsantamaria/Degorra
|
closed
|
Diagrama Entidad Relacion
|
documentation beginning
|
Se estudiará y realizará su respectivo diagrama de entidad relacion con el fin de un mejor manejo de la base de datos.
|
1.0
|
Diagrama Entidad Relacion - Se estudiará y realizará su respectivo diagrama de entidad relacion con el fin de un mejor manejo de la base de datos.
|
non_defect
|
diagrama entidad relacion se estudiará y realizará su respectivo diagrama de entidad relacion con el fin de un mejor manejo de la base de datos
| 0
|
146,754
| 11,748,259,758
|
IssuesEvent
|
2020-03-12 14:56:23
|
PierrickI3/CCCRequestsForm
|
https://api.github.com/repos/PierrickI3/CCCRequestsForm
|
closed
|
Add SuperAdmin permission
|
hot ready to test
|
SuperAdmin permission should display by default ALL regions requests.
Group ID for PRD: 1eb0ded8-d845-4d8b-9057-e6144871f68b
|
1.0
|
Add SuperAdmin permission - SuperAdmin permission should display by default ALL regions requests.
Group ID for PRD: 1eb0ded8-d845-4d8b-9057-e6144871f68b
|
non_defect
|
add superadmin permission superadmin permission should display by default all regions requests group id for prd
| 0
|
60,269
| 17,023,384,245
|
IssuesEvent
|
2021-07-03 01:44:58
|
tomhughes/trac-tickets
|
https://api.github.com/repos/tomhughes/trac-tickets
|
closed
|
/user/$USER/traces returns the same thing as /traces if $USER is not an existing user
|
Component: website Priority: minor Resolution: fixed Type: defect
|
**[Submitted to the original trac issue database at 4.56pm, Tuesday, 14th April 2009]**
* All traces: http://openstreetmap.org/traces
* Non-existing user: http://openstreetmap.org/user/THIS_USER_DOES_NOT_EXIST
* /traces for non-existing user returns all traces: http://openstreetmap.org/user/THIS_USER_DOES_NOT_EXIST/traces
/traces for a non-existing user should instead return something like /diary:
http://openstreetmap.org/user/THIS_USER_DOES_NOT_EXIST/diary
|
1.0
|
/user/$USER/traces returns the same thing as /traces if $USER is not an existing user - **[Submitted to the original trac issue database at 4.56pm, Tuesday, 14th April 2009]**
* All traces: http://openstreetmap.org/traces
* Non-existing user: http://openstreetmap.org/user/THIS_USER_DOES_NOT_EXIST
* /traces for non-existing user returns all traces: http://openstreetmap.org/user/THIS_USER_DOES_NOT_EXIST/traces
/traces for a non-existing user should instead return something like /diary:
http://openstreetmap.org/user/THIS_USER_DOES_NOT_EXIST/diary
|
defect
|
user user traces returns the same thing as traces if user is not an existing user all traces non existing user traces for non existing user returns all traces traces for a non existing user should instead return something like diary
| 1
|
7,342
| 2,610,364,355
|
IssuesEvent
|
2015-02-26 19:57:45
|
chrsmith/scribefire-chrome
|
https://api.github.com/repos/chrsmith/scribefire-chrome
|
opened
|
Body not shown when I select existing post to edit
|
auto-migrated Priority-Medium Type-Defect
|
```
What's the problem?
When I select an existing post from the dropdown list the post body doesn't
appear - the textarea is blank
What browser are you using?
Opera 12+
What version of ScribeFire are you running?
4
```
-----
Original issue reported on code.google.com by `c...@collents.eu` on 18 Oct 2012 at 7:00
|
1.0
|
Body not shown when I select existing post to edit - ```
What's the problem?
When I select an existing post from the dropdown list the post body doesn't
appear - the textarea is blank
What browser are you using?
Opera 12+
What version of ScribeFire are you running?
4
```
-----
Original issue reported on code.google.com by `c...@collents.eu` on 18 Oct 2012 at 7:00
|
defect
|
body not shown when i select existing post to edit what s the problem when i select an existing post from the dropdown list the post body doesn t appear the textarea is blank what browser are you using opera what version of scribefire are you running original issue reported on code google com by c collents eu on oct at
| 1
|
60,634
| 8,452,647,256
|
IssuesEvent
|
2018-10-20 06:38:08
|
saltstack/salt
|
https://api.github.com/repos/saltstack/salt
|
closed
|
Reactor launching orchestration job is broken in 2017.7.0
|
Documentation
|
### Description of Issue/Question
A simple reactor which launches an orchestration job to tell a minion to run highstate on connect, fails with 2017.7.0.
### Setup
Master reactor
```
reactor:
- 'salt/minion/*/start':
- /srv/salt/reactor/minion_highstate.sls
```
Reactor file
```
sync_and_highstate:
runner.state.orchestrate:
- mods: orchestrations/new_minion
- pillar:
event_data: {{ data | json() }}
```
Orchestrate job
```
{% set data = salt.pillar.get('event_data') %}
sync_all:
salt.function:
- tgt: {{ data.id }}
- name: saltutil.sync_all
- kwarg:
refresh: True
minion_highstate:
salt.state:
- tgt: {{ data.id }}
- highstate: True
```
### Steps to Reproduce Issue
Results in a failure message on the event bus
```
salt/run/20170729070251023130/ret {
"_stamp": "2017-07-29T07:02:52.274140",
"fun": "runner.state.orchestrate",
"fun_args": [
"orchestrations/new_minion"
],
"jid": "20170729070251023130",
"return": {
"data": {
"ip-10-241-208-27.ec2.internal_master": [
"Rendering SLS 'base:orchestrations/new_minion' failed: Jinja variable 'str object' has no attribute 'id'"
]
},
"outputter": "highstate",
"retcode": 1
},
"success": false,
"user": "Reactor"
}
```
### Versions Report
```
# salt --versions-report
/usr/lib64/python2.7/site-packages/cffi/model.py:526: UserWarning: 'git_checkout_notify_t' has no values explicitly defined; next version will refuse to guess which integer type it is meant to be (unsigned/signed, int/long)
% self._get_c_name())
/usr/lib64/python2.7/site-packages/cffi/model.py:526: UserWarning: 'git_merge_tree_flag_t' has no values explicitly defined; next version will refuse to guess which integer type it is meant to be (unsigned/signed, int/long)
% self._get_c_name())
Salt Version:
Salt: 2017.7.0
Dependency Versions:
cffi: 1.6.0
cherrypy: unknown
dateutil: 2.6.0
docker-py: Not Installed
gitdb: Not Installed
gitpython: Not Installed
ioflo: Not Installed
Jinja2: 2.7.2
libgit2: 0.21.4
libnacl: Not Installed
M2Crypto: Not Installed
Mako: Not Installed
msgpack-pure: Not Installed
msgpack-python: 0.4.8
mysql-python: Not Installed
pycparser: 2.17
pycrypto: 2.6.1
pycryptodome: 3.4.3
pygit2: 0.21.4
Python: 2.7.5 (default, Nov 6 2016, 00:28:07)
python-gnupg: Not Installed
PyYAML: 3.11
PyZMQ: 15.3.0
RAET: Not Installed
smmap: Not Installed
timelib: Not Installed
Tornado: 4.2.1
ZMQ: 4.1.4
System Versions:
dist: centos 7.3.1611 Core
locale: UTF-8
machine: x86_64
release: 3.10.0-514.16.1.el7.x86_64
system: Linux
version: CentOS Linux 7.3.1611 Core
```
|
1.0
|
Reactor launching orchestration job is broken in 2017.7.0 - ### Description of Issue/Question
A simple reactor which launches an orchestration job to tell a minion to run highstate on connect, fails with 2017.7.0.
### Setup
Master reactor
```
reactor:
- 'salt/minion/*/start':
- /srv/salt/reactor/minion_highstate.sls
```
Reactor file
```
sync_and_highstate:
runner.state.orchestrate:
- mods: orchestrations/new_minion
- pillar:
event_data: {{ data | json() }}
```
Orchestrate job
```
{% set data = salt.pillar.get('event_data') %}
sync_all:
salt.function:
- tgt: {{ data.id }}
- name: saltutil.sync_all
- kwarg:
refresh: True
minion_highstate:
salt.state:
- tgt: {{ data.id }}
- highstate: True
```
### Steps to Reproduce Issue
Results in a failure message on the event bus
```
salt/run/20170729070251023130/ret {
"_stamp": "2017-07-29T07:02:52.274140",
"fun": "runner.state.orchestrate",
"fun_args": [
"orchestrations/new_minion"
],
"jid": "20170729070251023130",
"return": {
"data": {
"ip-10-241-208-27.ec2.internal_master": [
"Rendering SLS 'base:orchestrations/new_minion' failed: Jinja variable 'str object' has no attribute 'id'"
]
},
"outputter": "highstate",
"retcode": 1
},
"success": false,
"user": "Reactor"
}
```
### Versions Report
```
# salt --versions-report
/usr/lib64/python2.7/site-packages/cffi/model.py:526: UserWarning: 'git_checkout_notify_t' has no values explicitly defined; next version will refuse to guess which integer type it is meant to be (unsigned/signed, int/long)
% self._get_c_name())
/usr/lib64/python2.7/site-packages/cffi/model.py:526: UserWarning: 'git_merge_tree_flag_t' has no values explicitly defined; next version will refuse to guess which integer type it is meant to be (unsigned/signed, int/long)
% self._get_c_name())
Salt Version:
Salt: 2017.7.0
Dependency Versions:
cffi: 1.6.0
cherrypy: unknown
dateutil: 2.6.0
docker-py: Not Installed
gitdb: Not Installed
gitpython: Not Installed
ioflo: Not Installed
Jinja2: 2.7.2
libgit2: 0.21.4
libnacl: Not Installed
M2Crypto: Not Installed
Mako: Not Installed
msgpack-pure: Not Installed
msgpack-python: 0.4.8
mysql-python: Not Installed
pycparser: 2.17
pycrypto: 2.6.1
pycryptodome: 3.4.3
pygit2: 0.21.4
Python: 2.7.5 (default, Nov 6 2016, 00:28:07)
python-gnupg: Not Installed
PyYAML: 3.11
PyZMQ: 15.3.0
RAET: Not Installed
smmap: Not Installed
timelib: Not Installed
Tornado: 4.2.1
ZMQ: 4.1.4
System Versions:
dist: centos 7.3.1611 Core
locale: UTF-8
machine: x86_64
release: 3.10.0-514.16.1.el7.x86_64
system: Linux
version: CentOS Linux 7.3.1611 Core
```
|
non_defect
|
reactor launching orchestration job is broken in description of issue question a simple reactor which launches an orchestration job to tell a minion to run highstate on connect fails with setup master reactor reactor salt minion start srv salt reactor minion highstate sls reactor file sync and highstate runner state orchestrate mods orchestrations new minion pillar event data data json orchestrate job set data salt pillar get event data sync all salt function tgt data id name saltutil sync all kwarg refresh true minion highstate salt state tgt data id highstate true steps to reproduce issue results in a failure message on the event bus salt run ret stamp fun runner state orchestrate fun args orchestrations new minion jid return data ip internal master rendering sls base orchestrations new minion failed jinja variable str object has no attribute id outputter highstate retcode success false user reactor versions report salt versions report usr site packages cffi model py userwarning git checkout notify t has no values explicitly defined next version will refuse to guess which integer type it is meant to be unsigned signed int long self get c name usr site packages cffi model py userwarning git merge tree flag t has no values explicitly defined next version will refuse to guess which integer type it is meant to be unsigned signed int long self get c name salt version salt dependency versions cffi cherrypy unknown dateutil docker py not installed gitdb not installed gitpython not installed ioflo not installed libnacl not installed not installed mako not installed msgpack pure not installed msgpack python mysql python not installed pycparser pycrypto pycryptodome python default nov python gnupg not installed pyyaml pyzmq raet not installed smmap not installed timelib not installed tornado zmq system versions dist centos core locale utf machine release system linux version centos linux core
| 0
|
416,344
| 28,077,432,961
|
IssuesEvent
|
2023-03-30 01:42:39
|
Trippindajive/Fall-of-Heaven
|
https://api.github.com/repos/Trippindajive/Fall-of-Heaven
|
closed
|
Paddle Movement (Horizontal)
|
documentation
|
Paddle should strictly move horizontally in accordance with player input & physics (friction, acceleration).
|
1.0
|
Paddle Movement (Horizontal) - Paddle should strictly move horizontally in accordance with player input & physics (friction, acceleration).
|
non_defect
|
paddle movement horizontal paddle should strictly move horizontally in accordance with player input physics friction acceleration
| 0
|
116,961
| 15,029,935,534
|
IssuesEvent
|
2021-02-02 06:34:11
|
appsmithorg/appsmith
|
https://api.github.com/repos/appsmithorg/appsmith
|
closed
|
[Task] NUX OnBoarding
|
Needs Design Project
|
## Problem statement
When a new user creates their first app, they have to very quickly grasp a lot of new concepts and they can lead to a chaotic first session where the user was unable to understand how appsmith works or how to use appsmith.
- A large chunk of users aren't able to run an API or query in their first session.
- A larger chunk isn't able to connect Data to a widget and thus don't discover the 'aha moment' for appsmith.
## Solution
We design a semi-guided onboarding experience which is triggered when a new user creates their very first app. A good metaphor for this onboarding experience would be that we design an "unboxing" experience for appsmith.
When a new app is created, we reveal a limited set of actions/pages to the user, and the rest of the product is slowly unboxed at the user's own pace.
Examples for similar onboarding experience - https://www.reallygoodux.io/blog/slacks-new-user-onboarding
Latest Figma file - https://www.figma.com/file/RdWmO9Ny6SfkMZAFIhLKSU/Appsmtih-NUX-Workspace_Aakash?node-id=651%3A1082
|
1.0
|
[Task] NUX OnBoarding - ## Problem statement
When a new user creates their first app, they have to very quickly grasp a lot of new concepts and they can lead to a chaotic first session where the user was unable to understand how appsmith works or how to use appsmith.
- A large chunk of users aren't able to run an API or query in their first session.
- A larger chunk isn't able to connect Data to a widget and thus don't discover the 'aha moment' for appsmith.
## Solution
We design a semi-guided onboarding experience which is triggered when a new user creates their very first app. A good metaphor for this onboarding experience would be that we design an "unboxing" experience for appsmith.
When a new app is created, we reveal a limited set of actions/pages to the user, and the rest of the product is slowly unboxed at the user's own pace.
Examples for similar onboarding experience - https://www.reallygoodux.io/blog/slacks-new-user-onboarding
Latest Figma file - https://www.figma.com/file/RdWmO9Ny6SfkMZAFIhLKSU/Appsmtih-NUX-Workspace_Aakash?node-id=651%3A1082
|
non_defect
|
nux onboarding problem statement when a new user creates their first app they have to very quickly grasp a lot of new concepts and they can lead to a chaotic first session where the user was unable to understand how appsmith works or how to use appsmith a large chunk of users aren t able to run an api or query in their first session a larger chunk isn t able to connect data to a widget and thus don t discover the aha moment for appsmith solution we design a semi guided onboarding experience which is triggered when a new user creates their very first app a good metaphor for this onboarding experience would be that we design an unboxing experience for appsmith when a new app is created we reveal a limited set of actions pages to the user and the rest of the product is slowly unboxed at the user s own pace examples for similar onboarding experience latest figma file
| 0
|
5,336
| 2,610,185,666
|
IssuesEvent
|
2015-02-26 18:58:57
|
chrsmith/quchuseban
|
https://api.github.com/repos/chrsmith/quchuseban
|
opened
|
详解脸上色斑怎么调理
|
auto-migrated Priority-Medium Type-Defect
|
```
《摘要》
很想,为你写快乐,为你画素心,为你衣袂飘然,为你不染��
�尘。而每每因你,快乐消失无影,生活只是无尽的沦陷。翩�
��的衣群牵起今世沧桑,小心翼翼的行走终惹上迷蒙一片。翘
首的心,日月可鉴。太多的话,不想说;亘古的情,不想寄��
�深藏的爱,不想唱。沉默将一切掩埋,孤单堆积成厚土,心�
��若冰封千年。很想去除你的烦恼,把你脸上的色斑移到我的
脸上,那样你就不会那么难过啦!脸上色斑怎么调理,
《客户案例》
脸上长了黄褐斑怎么办,
我脸上长黄褐斑好几年了,用了很多的护肤品,效果不是没有�
��但是总是昙花一现的那种;到美容中心尝试过一些类似换肤��
�糟糕方法,可是只在几个月里又嫩又白,之后就又长出比以�
��更顽固的黄褐斑。而且我的脸蛋部位的皮肤比以前薄了,出
现红血丝。苦啊!难道我就这样老了吗?难道黄褐斑就这样根深
蒂固的留在我的脸上了吗?我变得很自卑,见到异性总是不敢�
��头与人家对视。</br>
后来我有个姐妹介绍我用黛芙薇尔,她说她见她的两个��
�事都在用,效果还不错,让我回到家里在网上查查,我晚上�
��网上看了一个多小时,感觉还不错纯天然精华制作的,没有
什么副作用,也是从调节内分泌开始的,于是我就报着试试��
�的态度买了两个周期的黛芙薇尔。</br>
用这个产品不到一个月,脸上的色斑就有消退的迹象,��
�让人想不到了,没有想到困扰我这么久的难题这么快就解决�
��,打电话咨询人家专家,专家告诉我千万要坚持下来,知道
根除,听从专家的建议我又买了两个周期进行巩固,使用不��
�的话我还可以拿回家给妈妈使用!呵呵,真的太幸运了我,第
一次使用祛斑产品就祛斑成功了!祛斑以后,人自信起来了,�
��起来也漂亮了好多!
阅读了脸上色斑怎么调理,再看脸上容易长斑的原因:
《色斑形成原因》
内部因素
一、压力
当人受到压力时,就会分泌肾上腺素,为对付压力而做��
�备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏�
��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃
。
二、荷尔蒙分泌失调
避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞��
�分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在�
��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕
中因女性荷尔蒙雌激素的增加,从怀孕4—5个月开始会容易出
现斑,这时候出现的斑点在产后大部分会消失。可是,新陈��
�谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等�
��因,都会使斑加深。有时新长出的斑,产后也不会消失,所
以需要更加注意。
三、新陈代谢缓慢
肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑��
�因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态�
��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是
内分泌失调导致过敏体质而形成的。另外,身体状态不正常��
�时候,紫外线的照射也会加速斑的形成。
四、错误的使用化妆品
使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在��
�疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵�
��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的
问题。
外部因素
一、紫外线
照射紫外线的时候,人体为了保护皮肤,会在基底层产��
�很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更�
��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化,
还会引起黑斑、雀斑等色素沉着的皮肤疾患。
二、不良的清洁习惯
因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。��
�皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦�
��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的
问题。
三、遗传基因
父母中有长斑的,则本人长斑的概率就很高,这种情况��
�一定程度上就可判定是遗传基因的作用。所以家里特别是长�
��有长斑的人,要注意避免引发长斑的重要因素之一——紫外
线照射,这是预防斑必须注意的。
《有疑问帮你解决》
1,黛芙薇尔精华液真的有效果吗?真的可以把脸上的黄褐��
�去掉吗?
答:黛芙薇尔精华液DNA精华能够有效的修复周围难以触��
�的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必�
��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑
,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时��
�,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的�
��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显
而易见。自产品上市以来,老顾客纷纷介绍新顾客,71%的新��
�客都是通过老顾客介绍而来,口碑由此而来!
2,服用黛芙薇尔美白,会伤身体吗?有副作用吗?
答:黛芙薇尔精华液应用了精纯复合配方和领先的分类��
�斑科技,并将“DNA美肤系统”疗法应用到了该产品中,能彻�
��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有
效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾��
�地的专家通力协作,超过10年的研究以全新的DNA肌肤修复技��
�,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽�
��迹,令每一位爱美的女性都能享受到科技创新所带来的自然
之美。
专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数��
�百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖!
3,去除黄褐斑之后,会反弹吗?
答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔��
�白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家�
��据斑的形成原因精心研制而成用事实说话,让消费者打分。
树立权威品牌!我们的很多新客户都是老客户介绍而来,请问�
��如果效果不好,会有客户转介绍吗?
4,你们的价格有点贵,能不能便宜一点?
答:如果您使用西药最少需要2000元,煎服的药最少需要3
000元,做手术最少是5000元,而这些毫无疑问,不会对彻底去�
��你的斑点有任何帮助!一分价钱,一份价值,我们现在做的��
�是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的�
��褐斑彻底去除,你还会觉得贵吗?你还会再去花那么多冤枉��
�,不但斑没去掉,还把自己的皮肤弄的越来越糟吗
5,我适合用黛芙薇尔精华液吗?
答:黛芙薇尔适用人群:
1、生理紊乱引起的黄褐斑人群
2、生育引起的妊娠斑人群
3、年纪增长引起的老年斑人群
4、化妆品色素沉积、辐射斑人群
5、长期日照引起的日晒斑人群
6、肌肤暗淡急需美白的人群
《祛斑小方法》
脸上色斑怎么调理,同时为您分享祛斑小方法
绿豆汤:绿豆可以降低体内的胆固醇含量,具有保护肝脏、��
�治过敏的作用。绿豆含有丰富的维生素B族、蛋白质、氧化镁
等多种成分,常喝绿豆汤可助于排出体内毒素,促进身体的��
�陈代谢。秋冬之际,绿豆汤也是排毒养颜佳品。
```
-----
Original issue reported on code.google.com by `additive...@gmail.com` on 1 Jul 2014 at 3:43
|
1.0
|
详解脸上色斑怎么调理 - ```
《摘要》
很想,为你写快乐,为你画素心,为你衣袂飘然,为你不染��
�尘。而每每因你,快乐消失无影,生活只是无尽的沦陷。翩�
��的衣群牵起今世沧桑,小心翼翼的行走终惹上迷蒙一片。翘
首的心,日月可鉴。太多的话,不想说;亘古的情,不想寄��
�深藏的爱,不想唱。沉默将一切掩埋,孤单堆积成厚土,心�
��若冰封千年。很想去除你的烦恼,把你脸上的色斑移到我的
脸上,那样你就不会那么难过啦!脸上色斑怎么调理,
《客户案例》
脸上长了黄褐斑怎么办,
我脸上长黄褐斑好几年了,用了很多的护肤品,效果不是没有�
��但是总是昙花一现的那种;到美容中心尝试过一些类似换肤��
�糟糕方法,可是只在几个月里又嫩又白,之后就又长出比以�
��更顽固的黄褐斑。而且我的脸蛋部位的皮肤比以前薄了,出
现红血丝。苦啊!难道我就这样老了吗?难道黄褐斑就这样根深
蒂固的留在我的脸上了吗?我变得很自卑,见到异性总是不敢�
��头与人家对视。</br>
后来我有个姐妹介绍我用黛芙薇尔,她说她见她的两个��
�事都在用,效果还不错,让我回到家里在网上查查,我晚上�
��网上看了一个多小时,感觉还不错纯天然精华制作的,没有
什么副作用,也是从调节内分泌开始的,于是我就报着试试��
�的态度买了两个周期的黛芙薇尔。</br>
用这个产品不到一个月,脸上的色斑就有消退的迹象,��
�让人想不到了,没有想到困扰我这么久的难题这么快就解决�
��,打电话咨询人家专家,专家告诉我千万要坚持下来,知道
根除,听从专家的建议我又买了两个周期进行巩固,使用不��
�的话我还可以拿回家给妈妈使用!呵呵,真的太幸运了我,第
一次使用祛斑产品就祛斑成功了!祛斑以后,人自信起来了,�
��起来也漂亮了好多!
阅读了脸上色斑怎么调理,再看脸上容易长斑的原因:
《色斑形成原因》
内部因素
一、压力
当人受到压力时,就会分泌肾上腺素,为对付压力而做��
�备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏�
��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃
。
二、荷尔蒙分泌失调
避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞��
�分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在�
��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕
中因女性荷尔蒙雌激素的增加,从怀孕4—5个月开始会容易出
现斑,这时候出现的斑点在产后大部分会消失。可是,新陈��
�谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等�
��因,都会使斑加深。有时新长出的斑,产后也不会消失,所
以需要更加注意。
三、新陈代谢缓慢
肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑��
�因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态�
��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是
内分泌失调导致过敏体质而形成的。另外,身体状态不正常��
�时候,紫外线的照射也会加速斑的形成。
四、错误的使用化妆品
使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在��
�疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵�
��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的
问题。
外部因素
一、紫外线
照射紫外线的时候,人体为了保护皮肤,会在基底层产��
�很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更�
��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化,
还会引起黑斑、雀斑等色素沉着的皮肤疾患。
二、不良的清洁习惯
因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。��
�皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦�
��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的
问题。
三、遗传基因
父母中有长斑的,则本人长斑的概率就很高,这种情况��
�一定程度上就可判定是遗传基因的作用。所以家里特别是长�
��有长斑的人,要注意避免引发长斑的重要因素之一——紫外
线照射,这是预防斑必须注意的。
《有疑问帮你解决》
1,黛芙薇尔精华液真的有效果吗?真的可以把脸上的黄褐��
�去掉吗?
答:黛芙薇尔精华液DNA精华能够有效的修复周围难以触��
�的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必�
��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑
,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时��
�,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的�
��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显
而易见。自产品上市以来,老顾客纷纷介绍新顾客,71%的新��
�客都是通过老顾客介绍而来,口碑由此而来!
2,服用黛芙薇尔美白,会伤身体吗?有副作用吗?
答:黛芙薇尔精华液应用了精纯复合配方和领先的分类��
�斑科技,并将“DNA美肤系统”疗法应用到了该产品中,能彻�
��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有
效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾��
�地的专家通力协作,超过10年的研究以全新的DNA肌肤修复技��
�,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽�
��迹,令每一位爱美的女性都能享受到科技创新所带来的自然
之美。
专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数��
�百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖!
3,去除黄褐斑之后,会反弹吗?
答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔��
�白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家�
��据斑的形成原因精心研制而成用事实说话,让消费者打分。
树立权威品牌!我们的很多新客户都是老客户介绍而来,请问�
��如果效果不好,会有客户转介绍吗?
4,你们的价格有点贵,能不能便宜一点?
答:如果您使用西药最少需要2000元,煎服的药最少需要3
000元,做手术最少是5000元,而这些毫无疑问,不会对彻底去�
��你的斑点有任何帮助!一分价钱,一份价值,我们现在做的��
�是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的�
��褐斑彻底去除,你还会觉得贵吗?你还会再去花那么多冤枉��
�,不但斑没去掉,还把自己的皮肤弄的越来越糟吗
5,我适合用黛芙薇尔精华液吗?
答:黛芙薇尔适用人群:
1、生理紊乱引起的黄褐斑人群
2、生育引起的妊娠斑人群
3、年纪增长引起的老年斑人群
4、化妆品色素沉积、辐射斑人群
5、长期日照引起的日晒斑人群
6、肌肤暗淡急需美白的人群
《祛斑小方法》
脸上色斑怎么调理,同时为您分享祛斑小方法
绿豆汤:绿豆可以降低体内的胆固醇含量,具有保护肝脏、��
�治过敏的作用。绿豆含有丰富的维生素B族、蛋白质、氧化镁
等多种成分,常喝绿豆汤可助于排出体内毒素,促进身体的��
�陈代谢。秋冬之际,绿豆汤也是排毒养颜佳品。
```
-----
Original issue reported on code.google.com by `additive...@gmail.com` on 1 Jul 2014 at 3:43
|
defect
|
详解脸上色斑怎么调理 《摘要》 很想,为你写快乐,为你画素心,为你衣袂飘然,为你不染�� �尘。而每每因你,快乐消失无影,生活只是无尽的沦陷。翩� ��的衣群牵起今世沧桑,小心翼翼的行走终惹上迷蒙一片。翘 首的心,日月可鉴。太多的话,不想说;亘古的情,不想寄�� �深藏的爱,不想唱。沉默将一切掩埋,孤单堆积成厚土,心� ��若冰封千年。很想去除你的烦恼,把你脸上的色斑移到我的 脸上,那样你就不会那么难过啦!脸上色斑怎么调理, 《客户案例》 脸上长了黄褐斑怎么办 我脸上长黄褐斑好几年了 用了很多的护肤品,效果不是没有� ��但是总是昙花一现的那种 到美容中心尝试过一些类似换肤�� �糟糕方法,可是只在几个月里又嫩又白,之后就又长出比以� ��更顽固的黄褐斑。而且我的脸蛋部位的皮肤比以前薄了,出 现红血丝。苦啊 难道我就这样老了吗 难道黄褐斑就这样根深 蒂固的留在我的脸上了吗 我变得很自卑,见到异性总是不敢� ��头与人家对视。 后来我有个姐妹介绍我用黛芙薇尔,她说她见她的两个�� �事都在用,效果还不错,让我回到家里在网上查查,我晚上� ��网上看了一个多小时,感觉还不错纯天然精华制作的,没有 什么副作用,也是从调节内分泌开始的,于是我就报着试试�� �的态度买了两个周期的黛芙薇尔。 用这个产品不到一个月,脸上的色斑就有消退的迹象,�� �让人想不到了,没有想到困扰我这么久的难题这么快就解决� ��,打电话咨询人家专家,专家告诉我千万要坚持下来,知道 根除,听从专家的建议我又买了两个周期进行巩固,使用不�� �的话我还可以拿回家给妈妈使用 呵呵,真的太幸运了我,第 一次使用祛斑产品就祛斑成功了 祛斑以后,人自信起来了,� ��起来也漂亮了好多 阅读了脸上色斑怎么调理,再看脸上容易长斑的原因: 《色斑形成原因》 内部因素 一、压力 当人受到压力时,就会分泌肾上腺素,为对付压力而做�� �备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏� ��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃 。 二、荷尔蒙分泌失调 避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞�� �分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在� ��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕 中因女性荷尔蒙雌激素的增加, — 现斑,这时候出现的斑点在产后大部分会消失。可是,新陈�� �谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等� ��因,都会使斑加深。有时新长出的斑,产后也不会消失,所 以需要更加注意。 三、新陈代谢缓慢 肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑�� �因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态� ��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是 内分泌失调导致过敏体质而形成的。另外,身体状态不正常�� �时候,紫外线的照射也会加速斑的形成。 四、错误的使用化妆品 使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在�� �疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵� ��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的 问题。 外部因素 一、紫外线 照射紫外线的时候,人体为了保护皮肤,会在基底层产�� �很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更� ��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化, 还会引起黑斑、雀斑等色素沉着的皮肤疾患。 二、不良的清洁习惯 因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。�� �皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦� ��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的 问题。 三、遗传基因 父母中有长斑的,则本人长斑的概率就很高,这种情况�� �一定程度上就可判定是遗传基因的作用。所以家里特别是长� ��有长斑的人,要注意避免引发长斑的重要因素之一——紫外 线照射,这是预防斑必须注意的。 《有疑问帮你解决》 黛芙薇尔精华液真的有效果吗 真的可以把脸上的黄褐�� �去掉吗 答:黛芙薇尔精华液dna精华能够有效的修复周围难以触�� �的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必� ��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑 ,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时�� �,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的� ��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显 而易见。自产品上市以来,老顾客纷纷介绍新顾客, 的新�� �客都是通过老顾客介绍而来,口碑由此而来 ,服用黛芙薇尔美白,会伤身体吗 有副作用吗 答:黛芙薇尔精华液应用了精纯复合配方和领先的分类�� �斑科技,并将“dna美肤系统”疗法应用到了该产品中,能彻� ��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有 效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾�� �地的专家通力协作, �� �,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽� ��迹,令每一位爱美的女性都能享受到科技创新所带来的自然 之美。 专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数�� �百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖 ,去除黄褐斑之后,会反弹吗 答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔�� �白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家� ��据斑的形成原因精心研制而成用事实说话,让消费者打分。 树立权威品牌 我们的很多新客户都是老客户介绍而来,请问� ��如果效果不好,会有客户转介绍吗 ,你们的价格有点贵,能不能便宜一点 答: , , ,而这些毫无疑问,不会对彻底去� ��你的斑点有任何帮助 一分价钱,一份价值,我们现在做的�� �是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的� ��褐斑彻底去除,你还会觉得贵吗 你还会再去花那么多冤枉�� �,不但斑没去掉,还把自己的皮肤弄的越来越糟吗 ,我适合用黛芙薇尔精华液吗 答:黛芙薇尔适用人群: 、生理紊乱引起的黄褐斑人群 、生育引起的妊娠斑人群 、年纪增长引起的老年斑人群 、化妆品色素沉积、辐射斑人群 、长期日照引起的日晒斑人群 、肌肤暗淡急需美白的人群 《祛斑小方法》 脸上色斑怎么调理,同时为您分享祛斑小方法 绿豆汤:绿豆可以降低体内的胆固醇含量,具有保护肝脏、�� �治过敏的作用。绿豆含有丰富的维生素b族、蛋白质、氧化镁 等多种成分,常喝绿豆汤可助于排出体内毒素,促进身体的�� �陈代谢。秋冬之际,绿豆汤也是排毒养颜佳品。 original issue reported on code google com by additive gmail com on jul at
| 1
|
504,357
| 14,617,160,398
|
IssuesEvent
|
2020-12-22 14:22:44
|
webcompat/web-bugs
|
https://api.github.com/repos/webcompat/web-bugs
|
closed
|
www.netflix.com - video or audio doesn't play
|
browser-firefox-tablet engine-gecko ml-needsdiagnosis-false ml-probability-high priority-critical
|
<!-- @browser: Firefox Mobile (Tablet) 65.0 -->
<!-- @ua_header: QwantMobile/3.0 (Android 9; Tablet; rv:67.0) Gecko/67.0 Firefox/65.0 QwantBrowser/67.0.4 -->
<!-- @reported_with: mobile-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/64134 -->
**URL**: https://www.netflix.com/watch/80026226?tctx=1%2C0%2C%2C%2C%2C
**Browser / Version**: Firefox Mobile (Tablet) 65.0
**Operating System**: Android
**Tested Another Browser**: Yes Other
**Problem type**: Video or audio doesn't play
**Description**: The video or audio does not play
**Steps to Reproduce**:
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2020/12/7c08cd7a-dbf1-4df1-9630-83ee0e51f4ac.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20190619220335</li><li>channel: default</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2020/12/f2cbd5f1-e60a-44e3-b9c3-0e7674089cc5)
_From [webcompat.com](https://webcompat.com/) with ❤️_
|
1.0
|
www.netflix.com - video or audio doesn't play - <!-- @browser: Firefox Mobile (Tablet) 65.0 -->
<!-- @ua_header: QwantMobile/3.0 (Android 9; Tablet; rv:67.0) Gecko/67.0 Firefox/65.0 QwantBrowser/67.0.4 -->
<!-- @reported_with: mobile-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/64134 -->
**URL**: https://www.netflix.com/watch/80026226?tctx=1%2C0%2C%2C%2C%2C
**Browser / Version**: Firefox Mobile (Tablet) 65.0
**Operating System**: Android
**Tested Another Browser**: Yes Other
**Problem type**: Video or audio doesn't play
**Description**: The video or audio does not play
**Steps to Reproduce**:
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2020/12/7c08cd7a-dbf1-4df1-9630-83ee0e51f4ac.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20190619220335</li><li>channel: default</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2020/12/f2cbd5f1-e60a-44e3-b9c3-0e7674089cc5)
_From [webcompat.com](https://webcompat.com/) with ❤️_
|
non_defect
|
video or audio doesn t play url browser version firefox mobile tablet operating system android tested another browser yes other problem type video or audio doesn t play description the video or audio does not play steps to reproduce view the screenshot img alt screenshot src browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel default hastouchscreen true mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️
| 0
|
305
| 2,637,024,155
|
IssuesEvent
|
2015-03-10 10:10:37
|
CloudCycle2/YAML_Transformer
|
https://api.github.com/repos/CloudCycle2/YAML_Transformer
|
closed
|
Support for Constraint Clauses
|
p:normal s:review t:requirement
|
Adding support for constraint clauses. E.g.
inputs:
num_cpus:
type: integer
constraints:
- in_range: { 2, 4 }
See also TOSCA Spec -> A.3.2 Constraint clause
|
1.0
|
Support for Constraint Clauses - Adding support for constraint clauses. E.g.
inputs:
num_cpus:
type: integer
constraints:
- in_range: { 2, 4 }
See also TOSCA Spec -> A.3.2 Constraint clause
|
non_defect
|
support for constraint clauses adding support for constraint clauses e g inputs num cpus type integer constraints in range see also tosca spec a constraint clause
| 0
|
254,530
| 21,792,031,718
|
IssuesEvent
|
2022-05-15 03:22:29
|
kubernetes/kubernetes
|
https://api.github.com/repos/kubernetes/kubernetes
|
closed
|
[Failing tests] cos-cgroupv2-containerd-e2e
|
sig/storage sig/node kind/failing-test lifecycle/rotten triage/accepted
|
### Which jobs are failing?
ci-cos-cgroupv2-containerd-e2e-gce
### Which tests are failing?
Most tests of Kubernetes e2e suite.[sig-storage] In-tree Volumes [Driver: gcepd]
### Since when has it been failing?
17 Nov 2021
### Testgrid link
https://testgrid.k8s.io/sig-node-containerd#cos-cgroupv2-containerd-e2e
### Reason for failure (if possible)
```
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/storage/testsuites/volume_expand.go:174
Nov 19 12:38:43.577: While creating pods for resizing
Unexpected error:
<*errors.errorString | 0xc003eb8d20>: {
s: "pod \"pod-f4898948-a88a-4197-ab67-cb229e2d38b1\" is not Running: timed out waiting for the condition",
}
pod "pod-f4898948-a88a-4197-ab67-cb229e2d38b1" is not Running: timed out waiting for the condition
occurred
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/storage/testsuites/volume_expand.go:192
```
### Anything else we need to know?
_No response_
### Relevant SIG(s)
/sig node storage
|
1.0
|
[Failing tests] cos-cgroupv2-containerd-e2e - ### Which jobs are failing?
ci-cos-cgroupv2-containerd-e2e-gce
### Which tests are failing?
Most tests of Kubernetes e2e suite.[sig-storage] In-tree Volumes [Driver: gcepd]
### Since when has it been failing?
17 Nov 2021
### Testgrid link
https://testgrid.k8s.io/sig-node-containerd#cos-cgroupv2-containerd-e2e
### Reason for failure (if possible)
```
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/storage/testsuites/volume_expand.go:174
Nov 19 12:38:43.577: While creating pods for resizing
Unexpected error:
<*errors.errorString | 0xc003eb8d20>: {
s: "pod \"pod-f4898948-a88a-4197-ab67-cb229e2d38b1\" is not Running: timed out waiting for the condition",
}
pod "pod-f4898948-a88a-4197-ab67-cb229e2d38b1" is not Running: timed out waiting for the condition
occurred
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/storage/testsuites/volume_expand.go:192
```
### Anything else we need to know?
_No response_
### Relevant SIG(s)
/sig node storage
|
non_defect
|
cos containerd which jobs are failing ci cos containerd gce which tests are failing most tests of kubernetes suite in tree volumes since when has it been failing nov testgrid link reason for failure if possible go src io kubernetes output dockerized go src io kubernetes test storage testsuites volume expand go nov while creating pods for resizing unexpected error s pod pod is not running timed out waiting for the condition pod pod is not running timed out waiting for the condition occurred go src io kubernetes output dockerized go src io kubernetes test storage testsuites volume expand go anything else we need to know no response relevant sig s sig node storage
| 0
|
797,698
| 28,152,061,485
|
IssuesEvent
|
2023-04-03 02:48:07
|
AY2223S2-CS2113-T13-4/tp
|
https://api.github.com/repos/AY2223S2-CS2113-T13-4/tp
|
closed
|
[Bug] Fix bug where module lesson clashing not detected if event is more than a week long
|
type.Bug priority.High severity.Medium
|
## Bug Description
The event-module clash will not be detected if the event is longer than a week e.g (Event runs from Monday to following Tuesday) and the clash warning message will not be printed.
## Possible Fix
1. Iterate through each date the event runs through and check the calendar based on the day of that each date.
2. If event runs longer than a week, check through the entire calendar once.
|
1.0
|
[Bug] Fix bug where module lesson clashing not detected if event is more than a week long - ## Bug Description
The event-module clash will not be detected if the event is longer than a week e.g (Event runs from Monday to following Tuesday) and the clash warning message will not be printed.
## Possible Fix
1. Iterate through each date the event runs through and check the calendar based on the day of that each date.
2. If event runs longer than a week, check through the entire calendar once.
|
non_defect
|
fix bug where module lesson clashing not detected if event is more than a week long bug description the event module clash will not be detected if the event is longer than a week e g event runs from monday to following tuesday and the clash warning message will not be printed possible fix iterate through each date the event runs through and check the calendar based on the day of that each date if event runs longer than a week check through the entire calendar once
| 0
|
368,264
| 25,784,562,243
|
IssuesEvent
|
2022-12-09 19:02:58
|
jvegax/decide
|
https://api.github.com/repos/jvegax/decide
|
opened
|
La API no proporciona un método para obtener usuarios
|
documentation enhancement
|
Se pide implementar un endpoint nuevo en la API que permita a un usuario `staff` como puede ser el admin (superusuario) obtener todos los usuarios registrados en la aplicación.
**GET /users**
- Esta acción requiere el token de un usuario `staff` como el admin
- Devuelve un array de usuarios de esta forma [ {user1}, {user2}, {user3}, ... {userN}]
|
1.0
|
La API no proporciona un método para obtener usuarios - Se pide implementar un endpoint nuevo en la API que permita a un usuario `staff` como puede ser el admin (superusuario) obtener todos los usuarios registrados en la aplicación.
**GET /users**
- Esta acción requiere el token de un usuario `staff` como el admin
- Devuelve un array de usuarios de esta forma [ {user1}, {user2}, {user3}, ... {userN}]
|
non_defect
|
la api no proporciona un método para obtener usuarios se pide implementar un endpoint nuevo en la api que permita a un usuario staff como puede ser el admin superusuario obtener todos los usuarios registrados en la aplicación get users esta acción requiere el token de un usuario staff como el admin devuelve un array de usuarios de esta forma
| 0
|
251,767
| 27,208,478,108
|
IssuesEvent
|
2023-02-20 14:48:28
|
scm-automation-project/packrat-r-simple-project
|
https://api.github.com/repos/scm-automation-project/packrat-r-simple-project
|
opened
|
bootstrap-3.3.5.js: 6 vulnerabilities (highest severity is: 6.1)
|
Mend: dependency security vulnerability
|
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>bootstrap-3.3.5.js</b></p></summary>
<p>The most popular front-end framework for developing responsive, mobile first projects on the web.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js">https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js</a></p>
<p>Path to vulnerable library: /packrat/lib/x86_64-pc-linux-gnu/3.4.4/rmarkdown/rmd/h/bootstrap/js/bootstrap.js</p>
<p>
<p>Found in HEAD commit: <a href="https://github.com/scm-automation-project/packrat-r-simple-project/commit/a5ab2eece41cb97eb2775bab70b9ef52329687ab">a5ab2eece41cb97eb2775bab70b9ef52329687ab</a></p></details>
## Vulnerabilities
| CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in (bootstrap version) | Remediation Available |
| ------------- | ------------- | ----- | ----- | ----- | ------------- | --- |
| [CVE-2019-8331](https://www.mend.io/vulnerability-database/CVE-2019-8331) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.1 | bootstrap-3.3.5.js | Direct | bootstrap - 3.4.1,4.3.1;bootstrap-sass - 3.4.1,4.3.1 | ❌ |
| [CVE-2018-14040](https://www.mend.io/vulnerability-database/CVE-2018-14040) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.1 | bootstrap-3.3.5.js | Direct | org.webjars.npm:bootstrap:4.1.2,org.webjars:bootstrap:3.4.0 | ❌ |
| [CVE-2018-20677](https://www.mend.io/vulnerability-database/CVE-2018-20677) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.1 | bootstrap-3.3.5.js | Direct | Bootstrap - v3.4.0;NorDroN.AngularTemplate - 0.1.6;Dynamic.NET.Express.ProjectTemplates - 0.8.0;dotnetng.template - 1.0.0.4;ZNxtApp.Core.Module.Theme - 1.0.9-Beta;JMeter - 5.0.0 | ❌ |
| [CVE-2018-14042](https://www.mend.io/vulnerability-database/CVE-2018-14042) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.1 | bootstrap-3.3.5.js | Direct | org.webjars.npm:bootstrap:4.1.2.org.webjars:bootstrap:3.4.0 | ❌ |
| [CVE-2018-20676](https://www.mend.io/vulnerability-database/CVE-2018-20676) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.1 | bootstrap-3.3.5.js | Direct | bootstrap - 3.4.0 | ❌ |
| [CVE-2016-10735](https://www.mend.io/vulnerability-database/CVE-2016-10735) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.1 | bootstrap-3.3.5.js | Direct | 3.4.0 | ❌ |
## Details
<details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2019-8331</summary>
### Vulnerable Library - <b>bootstrap-3.3.5.js</b></p>
<p>The most popular front-end framework for developing responsive, mobile first projects on the web.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js">https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js</a></p>
<p>Path to vulnerable library: /packrat/lib/x86_64-pc-linux-gnu/3.4.4/rmarkdown/rmd/h/bootstrap/js/bootstrap.js</p>
<p>
Dependency Hierarchy:
- :x: **bootstrap-3.3.5.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/scm-automation-project/packrat-r-simple-project/commit/a5ab2eece41cb97eb2775bab70b9ef52329687ab">a5ab2eece41cb97eb2775bab70b9ef52329687ab</a></p>
</p>
<p></p>
### Vulnerability Details
<p>
In Bootstrap before 3.4.1 and 4.3.x before 4.3.1, XSS is possible in the tooltip or popover data-template attribute.
<p>Publish Date: 2019-02-20
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2019-8331>CVE-2019-8331</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>6.1</b>)
<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>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Release Date: 2019-02-20</p>
<p>Fix Resolution: bootstrap - 3.4.1,4.3.1;bootstrap-sass - 3.4.1,4.3.1</p>
</p>
<p></p>
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2018-14040</summary>
### Vulnerable Library - <b>bootstrap-3.3.5.js</b></p>
<p>The most popular front-end framework for developing responsive, mobile first projects on the web.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js">https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js</a></p>
<p>Path to vulnerable library: /packrat/lib/x86_64-pc-linux-gnu/3.4.4/rmarkdown/rmd/h/bootstrap/js/bootstrap.js</p>
<p>
Dependency Hierarchy:
- :x: **bootstrap-3.3.5.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/scm-automation-project/packrat-r-simple-project/commit/a5ab2eece41cb97eb2775bab70b9ef52329687ab">a5ab2eece41cb97eb2775bab70b9ef52329687ab</a></p>
</p>
<p></p>
### Vulnerability Details
<p>
In Bootstrap before 4.1.2, XSS is possible in the collapse data-parent attribute.
<p>Publish Date: 2018-07-13
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2018-14040>CVE-2018-14040</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>6.1</b>)
<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>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Release Date: 2018-07-13</p>
<p>Fix Resolution: org.webjars.npm:bootstrap:4.1.2,org.webjars:bootstrap:3.4.0</p>
</p>
<p></p>
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2018-20677</summary>
### Vulnerable Library - <b>bootstrap-3.3.5.js</b></p>
<p>The most popular front-end framework for developing responsive, mobile first projects on the web.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js">https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js</a></p>
<p>Path to vulnerable library: /packrat/lib/x86_64-pc-linux-gnu/3.4.4/rmarkdown/rmd/h/bootstrap/js/bootstrap.js</p>
<p>
Dependency Hierarchy:
- :x: **bootstrap-3.3.5.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/scm-automation-project/packrat-r-simple-project/commit/a5ab2eece41cb97eb2775bab70b9ef52329687ab">a5ab2eece41cb97eb2775bab70b9ef52329687ab</a></p>
</p>
<p></p>
### Vulnerability Details
<p>
In Bootstrap before 3.4.0, XSS is possible in the affix configuration target property.
<p>Publish Date: 2019-01-09
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2018-20677>CVE-2018-20677</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>6.1</b>)
<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>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-20677">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-20677</a></p>
<p>Release Date: 2019-01-09</p>
<p>Fix Resolution: Bootstrap - v3.4.0;NorDroN.AngularTemplate - 0.1.6;Dynamic.NET.Express.ProjectTemplates - 0.8.0;dotnetng.template - 1.0.0.4;ZNxtApp.Core.Module.Theme - 1.0.9-Beta;JMeter - 5.0.0</p>
</p>
<p></p>
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2018-14042</summary>
### Vulnerable Library - <b>bootstrap-3.3.5.js</b></p>
<p>The most popular front-end framework for developing responsive, mobile first projects on the web.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js">https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js</a></p>
<p>Path to vulnerable library: /packrat/lib/x86_64-pc-linux-gnu/3.4.4/rmarkdown/rmd/h/bootstrap/js/bootstrap.js</p>
<p>
Dependency Hierarchy:
- :x: **bootstrap-3.3.5.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/scm-automation-project/packrat-r-simple-project/commit/a5ab2eece41cb97eb2775bab70b9ef52329687ab">a5ab2eece41cb97eb2775bab70b9ef52329687ab</a></p>
</p>
<p></p>
### Vulnerability Details
<p>
In Bootstrap before 4.1.2, XSS is possible in the data-container property of tooltip.
<p>Publish Date: 2018-07-13
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2018-14042>CVE-2018-14042</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>6.1</b>)
<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>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Release Date: 2018-07-13</p>
<p>Fix Resolution: org.webjars.npm:bootstrap:4.1.2.org.webjars:bootstrap:3.4.0</p>
</p>
<p></p>
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2018-20676</summary>
### Vulnerable Library - <b>bootstrap-3.3.5.js</b></p>
<p>The most popular front-end framework for developing responsive, mobile first projects on the web.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js">https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js</a></p>
<p>Path to vulnerable library: /packrat/lib/x86_64-pc-linux-gnu/3.4.4/rmarkdown/rmd/h/bootstrap/js/bootstrap.js</p>
<p>
Dependency Hierarchy:
- :x: **bootstrap-3.3.5.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/scm-automation-project/packrat-r-simple-project/commit/a5ab2eece41cb97eb2775bab70b9ef52329687ab">a5ab2eece41cb97eb2775bab70b9ef52329687ab</a></p>
</p>
<p></p>
### Vulnerability Details
<p>
In Bootstrap before 3.4.0, XSS is possible in the tooltip data-viewport attribute.
<p>Publish Date: 2019-01-09
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2018-20676>CVE-2018-20676</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>6.1</b>)
<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>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-20676">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-20676</a></p>
<p>Release Date: 2019-01-09</p>
<p>Fix Resolution: bootstrap - 3.4.0</p>
</p>
<p></p>
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2016-10735</summary>
### Vulnerable Library - <b>bootstrap-3.3.5.js</b></p>
<p>The most popular front-end framework for developing responsive, mobile first projects on the web.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js">https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js</a></p>
<p>Path to vulnerable library: /packrat/lib/x86_64-pc-linux-gnu/3.4.4/rmarkdown/rmd/h/bootstrap/js/bootstrap.js</p>
<p>
Dependency Hierarchy:
- :x: **bootstrap-3.3.5.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/scm-automation-project/packrat-r-simple-project/commit/a5ab2eece41cb97eb2775bab70b9ef52329687ab">a5ab2eece41cb97eb2775bab70b9ef52329687ab</a></p>
</p>
<p></p>
### Vulnerability Details
<p>
In Bootstrap 3.x before 3.4.0 and 4.x-beta before 4.0.0-beta.2, XSS is possible in the data-target attribute, a different vulnerability than CVE-2018-14041.
<p>Publish Date: 2019-01-09
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2016-10735>CVE-2016-10735</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>6.1</b>)
<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>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Release Date: 2019-01-09</p>
<p>Fix Resolution: 3.4.0</p>
</p>
<p></p>
</details>
|
True
|
bootstrap-3.3.5.js: 6 vulnerabilities (highest severity is: 6.1) - <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>bootstrap-3.3.5.js</b></p></summary>
<p>The most popular front-end framework for developing responsive, mobile first projects on the web.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js">https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js</a></p>
<p>Path to vulnerable library: /packrat/lib/x86_64-pc-linux-gnu/3.4.4/rmarkdown/rmd/h/bootstrap/js/bootstrap.js</p>
<p>
<p>Found in HEAD commit: <a href="https://github.com/scm-automation-project/packrat-r-simple-project/commit/a5ab2eece41cb97eb2775bab70b9ef52329687ab">a5ab2eece41cb97eb2775bab70b9ef52329687ab</a></p></details>
## Vulnerabilities
| CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in (bootstrap version) | Remediation Available |
| ------------- | ------------- | ----- | ----- | ----- | ------------- | --- |
| [CVE-2019-8331](https://www.mend.io/vulnerability-database/CVE-2019-8331) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.1 | bootstrap-3.3.5.js | Direct | bootstrap - 3.4.1,4.3.1;bootstrap-sass - 3.4.1,4.3.1 | ❌ |
| [CVE-2018-14040](https://www.mend.io/vulnerability-database/CVE-2018-14040) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.1 | bootstrap-3.3.5.js | Direct | org.webjars.npm:bootstrap:4.1.2,org.webjars:bootstrap:3.4.0 | ❌ |
| [CVE-2018-20677](https://www.mend.io/vulnerability-database/CVE-2018-20677) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.1 | bootstrap-3.3.5.js | Direct | Bootstrap - v3.4.0;NorDroN.AngularTemplate - 0.1.6;Dynamic.NET.Express.ProjectTemplates - 0.8.0;dotnetng.template - 1.0.0.4;ZNxtApp.Core.Module.Theme - 1.0.9-Beta;JMeter - 5.0.0 | ❌ |
| [CVE-2018-14042](https://www.mend.io/vulnerability-database/CVE-2018-14042) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.1 | bootstrap-3.3.5.js | Direct | org.webjars.npm:bootstrap:4.1.2.org.webjars:bootstrap:3.4.0 | ❌ |
| [CVE-2018-20676](https://www.mend.io/vulnerability-database/CVE-2018-20676) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.1 | bootstrap-3.3.5.js | Direct | bootstrap - 3.4.0 | ❌ |
| [CVE-2016-10735](https://www.mend.io/vulnerability-database/CVE-2016-10735) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.1 | bootstrap-3.3.5.js | Direct | 3.4.0 | ❌ |
## Details
<details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2019-8331</summary>
### Vulnerable Library - <b>bootstrap-3.3.5.js</b></p>
<p>The most popular front-end framework for developing responsive, mobile first projects on the web.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js">https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js</a></p>
<p>Path to vulnerable library: /packrat/lib/x86_64-pc-linux-gnu/3.4.4/rmarkdown/rmd/h/bootstrap/js/bootstrap.js</p>
<p>
Dependency Hierarchy:
- :x: **bootstrap-3.3.5.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/scm-automation-project/packrat-r-simple-project/commit/a5ab2eece41cb97eb2775bab70b9ef52329687ab">a5ab2eece41cb97eb2775bab70b9ef52329687ab</a></p>
</p>
<p></p>
### Vulnerability Details
<p>
In Bootstrap before 3.4.1 and 4.3.x before 4.3.1, XSS is possible in the tooltip or popover data-template attribute.
<p>Publish Date: 2019-02-20
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2019-8331>CVE-2019-8331</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>6.1</b>)
<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>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Release Date: 2019-02-20</p>
<p>Fix Resolution: bootstrap - 3.4.1,4.3.1;bootstrap-sass - 3.4.1,4.3.1</p>
</p>
<p></p>
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2018-14040</summary>
### Vulnerable Library - <b>bootstrap-3.3.5.js</b></p>
<p>The most popular front-end framework for developing responsive, mobile first projects on the web.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js">https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js</a></p>
<p>Path to vulnerable library: /packrat/lib/x86_64-pc-linux-gnu/3.4.4/rmarkdown/rmd/h/bootstrap/js/bootstrap.js</p>
<p>
Dependency Hierarchy:
- :x: **bootstrap-3.3.5.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/scm-automation-project/packrat-r-simple-project/commit/a5ab2eece41cb97eb2775bab70b9ef52329687ab">a5ab2eece41cb97eb2775bab70b9ef52329687ab</a></p>
</p>
<p></p>
### Vulnerability Details
<p>
In Bootstrap before 4.1.2, XSS is possible in the collapse data-parent attribute.
<p>Publish Date: 2018-07-13
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2018-14040>CVE-2018-14040</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>6.1</b>)
<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>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Release Date: 2018-07-13</p>
<p>Fix Resolution: org.webjars.npm:bootstrap:4.1.2,org.webjars:bootstrap:3.4.0</p>
</p>
<p></p>
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2018-20677</summary>
### Vulnerable Library - <b>bootstrap-3.3.5.js</b></p>
<p>The most popular front-end framework for developing responsive, mobile first projects on the web.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js">https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js</a></p>
<p>Path to vulnerable library: /packrat/lib/x86_64-pc-linux-gnu/3.4.4/rmarkdown/rmd/h/bootstrap/js/bootstrap.js</p>
<p>
Dependency Hierarchy:
- :x: **bootstrap-3.3.5.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/scm-automation-project/packrat-r-simple-project/commit/a5ab2eece41cb97eb2775bab70b9ef52329687ab">a5ab2eece41cb97eb2775bab70b9ef52329687ab</a></p>
</p>
<p></p>
### Vulnerability Details
<p>
In Bootstrap before 3.4.0, XSS is possible in the affix configuration target property.
<p>Publish Date: 2019-01-09
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2018-20677>CVE-2018-20677</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>6.1</b>)
<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>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-20677">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-20677</a></p>
<p>Release Date: 2019-01-09</p>
<p>Fix Resolution: Bootstrap - v3.4.0;NorDroN.AngularTemplate - 0.1.6;Dynamic.NET.Express.ProjectTemplates - 0.8.0;dotnetng.template - 1.0.0.4;ZNxtApp.Core.Module.Theme - 1.0.9-Beta;JMeter - 5.0.0</p>
</p>
<p></p>
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2018-14042</summary>
### Vulnerable Library - <b>bootstrap-3.3.5.js</b></p>
<p>The most popular front-end framework for developing responsive, mobile first projects on the web.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js">https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js</a></p>
<p>Path to vulnerable library: /packrat/lib/x86_64-pc-linux-gnu/3.4.4/rmarkdown/rmd/h/bootstrap/js/bootstrap.js</p>
<p>
Dependency Hierarchy:
- :x: **bootstrap-3.3.5.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/scm-automation-project/packrat-r-simple-project/commit/a5ab2eece41cb97eb2775bab70b9ef52329687ab">a5ab2eece41cb97eb2775bab70b9ef52329687ab</a></p>
</p>
<p></p>
### Vulnerability Details
<p>
In Bootstrap before 4.1.2, XSS is possible in the data-container property of tooltip.
<p>Publish Date: 2018-07-13
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2018-14042>CVE-2018-14042</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>6.1</b>)
<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>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Release Date: 2018-07-13</p>
<p>Fix Resolution: org.webjars.npm:bootstrap:4.1.2.org.webjars:bootstrap:3.4.0</p>
</p>
<p></p>
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2018-20676</summary>
### Vulnerable Library - <b>bootstrap-3.3.5.js</b></p>
<p>The most popular front-end framework for developing responsive, mobile first projects on the web.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js">https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js</a></p>
<p>Path to vulnerable library: /packrat/lib/x86_64-pc-linux-gnu/3.4.4/rmarkdown/rmd/h/bootstrap/js/bootstrap.js</p>
<p>
Dependency Hierarchy:
- :x: **bootstrap-3.3.5.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/scm-automation-project/packrat-r-simple-project/commit/a5ab2eece41cb97eb2775bab70b9ef52329687ab">a5ab2eece41cb97eb2775bab70b9ef52329687ab</a></p>
</p>
<p></p>
### Vulnerability Details
<p>
In Bootstrap before 3.4.0, XSS is possible in the tooltip data-viewport attribute.
<p>Publish Date: 2019-01-09
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2018-20676>CVE-2018-20676</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>6.1</b>)
<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>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-20676">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-20676</a></p>
<p>Release Date: 2019-01-09</p>
<p>Fix Resolution: bootstrap - 3.4.0</p>
</p>
<p></p>
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2016-10735</summary>
### Vulnerable Library - <b>bootstrap-3.3.5.js</b></p>
<p>The most popular front-end framework for developing responsive, mobile first projects on the web.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js">https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.js</a></p>
<p>Path to vulnerable library: /packrat/lib/x86_64-pc-linux-gnu/3.4.4/rmarkdown/rmd/h/bootstrap/js/bootstrap.js</p>
<p>
Dependency Hierarchy:
- :x: **bootstrap-3.3.5.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/scm-automation-project/packrat-r-simple-project/commit/a5ab2eece41cb97eb2775bab70b9ef52329687ab">a5ab2eece41cb97eb2775bab70b9ef52329687ab</a></p>
</p>
<p></p>
### Vulnerability Details
<p>
In Bootstrap 3.x before 3.4.0 and 4.x-beta before 4.0.0-beta.2, XSS is possible in the data-target attribute, a different vulnerability than CVE-2018-14041.
<p>Publish Date: 2019-01-09
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2016-10735>CVE-2016-10735</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>6.1</b>)
<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>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Release Date: 2019-01-09</p>
<p>Fix Resolution: 3.4.0</p>
</p>
<p></p>
</details>
|
non_defect
|
bootstrap js vulnerabilities highest severity is vulnerable library bootstrap js the most popular front end framework for developing responsive mobile first projects on the web library home page a href path to vulnerable library packrat lib pc linux gnu rmarkdown rmd h bootstrap js bootstrap js found in head commit a href vulnerabilities cve severity cvss dependency type fixed in bootstrap version remediation available medium bootstrap js direct bootstrap bootstrap sass medium bootstrap js direct org webjars npm bootstrap org webjars bootstrap medium bootstrap js direct bootstrap nordron angulartemplate dynamic net express projecttemplates dotnetng template znxtapp core module theme beta jmeter medium bootstrap js direct org webjars npm bootstrap org webjars bootstrap medium bootstrap js direct bootstrap medium bootstrap js direct details cve vulnerable library bootstrap js the most popular front end framework for developing responsive mobile first projects on the web library home page a href path to vulnerable library packrat lib pc linux gnu rmarkdown rmd h bootstrap js bootstrap js dependency hierarchy x bootstrap js vulnerable library found in head commit a href vulnerability details in bootstrap before and x before xss is possible in the tooltip or popover data template attribute 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 release date fix resolution bootstrap bootstrap sass cve vulnerable library bootstrap js the most popular front end framework for developing responsive mobile first projects on the web library home page a href path to vulnerable library packrat lib pc linux gnu rmarkdown rmd h bootstrap js bootstrap js dependency hierarchy x bootstrap js vulnerable library found in head commit a href vulnerability details in bootstrap before xss is possible in the collapse data parent attribute 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 release date fix resolution org webjars npm bootstrap org webjars bootstrap cve vulnerable library bootstrap js the most popular front end framework for developing responsive mobile first projects on the web library home page a href path to vulnerable library packrat lib pc linux gnu rmarkdown rmd h bootstrap js bootstrap js dependency hierarchy x bootstrap js vulnerable library found in head commit a href vulnerability details in bootstrap before xss is possible in the affix configuration target property 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 bootstrap nordron angulartemplate dynamic net express projecttemplates dotnetng template znxtapp core module theme beta jmeter cve vulnerable library bootstrap js the most popular front end framework for developing responsive mobile first projects on the web library home page a href path to vulnerable library packrat lib pc linux gnu rmarkdown rmd h bootstrap js bootstrap js dependency hierarchy x bootstrap js vulnerable library found in head commit a href vulnerability details in bootstrap before xss is possible in the data container property of tooltip 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 release date fix resolution org webjars npm bootstrap org webjars bootstrap cve vulnerable library bootstrap js the most popular front end framework for developing responsive mobile first projects on the web library home page a href path to vulnerable library packrat lib pc linux gnu rmarkdown rmd h bootstrap js bootstrap js dependency hierarchy x bootstrap js vulnerable library found in head commit a href vulnerability details in bootstrap before xss is possible in the tooltip data viewport attribute 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 bootstrap cve vulnerable library bootstrap js the most popular front end framework for developing responsive mobile first projects on the web library home page a href path to vulnerable library packrat lib pc linux gnu rmarkdown rmd h bootstrap js bootstrap js dependency hierarchy x bootstrap js vulnerable library found in head commit a href vulnerability details in bootstrap x before and x beta before beta xss is possible in the data target attribute a different vulnerability than cve publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version release date fix resolution
| 0
|
15,035
| 2,839,277,729
|
IssuesEvent
|
2015-05-27 12:57:25
|
hazelcast/hazelcast
|
https://api.github.com/repos/hazelcast/hazelcast
|
closed
|
[TEST-FAILURE] PostProcessingMapStoreTest.testProcessedValueCarriedToTheBackup_whenPutAll
|
Team: Core Type: Defect
|
```
com.hazelcast.core.OperationTimeoutException: No response for 240000 ms. Aborting invocation! BasicInvocationFuture{invocation=BasicInvocation{ serviceName='hz:impl:mapService', op=PutAllOperation{}, partitionId=9, replicaIndex=0, tryCount=250, tryPauseMillis=500, invokeCount=2, callTimeout=60000, target=Address[127.0.0.1]:5317, backupsExpected=0, backupsCompleted=0}, response=null, done=false} No response has been received! backups-expected:0 backups-completed: 0
at com.hazelcast.spi.impl.BasicInvocationFuture.newOperationTimeoutException(BasicInvocationFuture.java:309)
at com.hazelcast.spi.impl.BasicInvocationFuture.waitForResponse(BasicInvocationFuture.java:246)
at com.hazelcast.spi.impl.BasicInvocationFuture.get(BasicInvocationFuture.java:193)
at com.hazelcast.spi.impl.BasicInvocationFuture.get(BasicInvocationFuture.java:173)
at com.hazelcast.map.impl.proxy.MapProxySupport.putAllInternal(MapProxySupport.java:785)
at com.hazelcast.map.impl.proxy.MapProxyImpl.putAll(MapProxyImpl.java:352)
```
https://hazelcast-l337.ci.cloudbees.com/job/Hazelcast-3.maintenance-IbmJDK1.7/com.hazelcast$hazelcast/200/testReport/junit/com.hazelcast.map.mapstore/PostProcessingMapStoreTest/testProcessedValueCarriedToTheBackup_whenPutAll/
|
1.0
|
[TEST-FAILURE] PostProcessingMapStoreTest.testProcessedValueCarriedToTheBackup_whenPutAll - ```
com.hazelcast.core.OperationTimeoutException: No response for 240000 ms. Aborting invocation! BasicInvocationFuture{invocation=BasicInvocation{ serviceName='hz:impl:mapService', op=PutAllOperation{}, partitionId=9, replicaIndex=0, tryCount=250, tryPauseMillis=500, invokeCount=2, callTimeout=60000, target=Address[127.0.0.1]:5317, backupsExpected=0, backupsCompleted=0}, response=null, done=false} No response has been received! backups-expected:0 backups-completed: 0
at com.hazelcast.spi.impl.BasicInvocationFuture.newOperationTimeoutException(BasicInvocationFuture.java:309)
at com.hazelcast.spi.impl.BasicInvocationFuture.waitForResponse(BasicInvocationFuture.java:246)
at com.hazelcast.spi.impl.BasicInvocationFuture.get(BasicInvocationFuture.java:193)
at com.hazelcast.spi.impl.BasicInvocationFuture.get(BasicInvocationFuture.java:173)
at com.hazelcast.map.impl.proxy.MapProxySupport.putAllInternal(MapProxySupport.java:785)
at com.hazelcast.map.impl.proxy.MapProxyImpl.putAll(MapProxyImpl.java:352)
```
https://hazelcast-l337.ci.cloudbees.com/job/Hazelcast-3.maintenance-IbmJDK1.7/com.hazelcast$hazelcast/200/testReport/junit/com.hazelcast.map.mapstore/PostProcessingMapStoreTest/testProcessedValueCarriedToTheBackup_whenPutAll/
|
defect
|
postprocessingmapstoretest testprocessedvaluecarriedtothebackup whenputall com hazelcast core operationtimeoutexception no response for ms aborting invocation basicinvocationfuture invocation basicinvocation servicename hz impl mapservice op putalloperation partitionid replicaindex trycount trypausemillis invokecount calltimeout target address backupsexpected backupscompleted response null done false no response has been received backups expected backups completed at com hazelcast spi impl basicinvocationfuture newoperationtimeoutexception basicinvocationfuture java at com hazelcast spi impl basicinvocationfuture waitforresponse basicinvocationfuture java at com hazelcast spi impl basicinvocationfuture get basicinvocationfuture java at com hazelcast spi impl basicinvocationfuture get basicinvocationfuture java at com hazelcast map impl proxy mapproxysupport putallinternal mapproxysupport java at com hazelcast map impl proxy mapproxyimpl putall mapproxyimpl java
| 1
|
54,683
| 13,429,745,295
|
IssuesEvent
|
2020-09-07 02:46:25
|
ClickHouse/ClickHouse
|
https://api.github.com/repos/ClickHouse/ClickHouse
|
opened
|
alter max_memory_usage does not take effect
|
build
|
I specify max_memory_usage size when creating the role R1 through the permission management function, and pay this role to a user. However, when I modify R1 to adjust max_memory_usage size, the user's execution memory is still the size before the memory size :
CREATE ROLE r_reade SETTINGS max_memory_usage = 5000000000, max_threads = 2 READONLY
alter role r_reade SETTINGS max_memory_usage = 5000000000, max_threads = 2 READONLY
|
1.0
|
alter max_memory_usage does not take effect - I specify max_memory_usage size when creating the role R1 through the permission management function, and pay this role to a user. However, when I modify R1 to adjust max_memory_usage size, the user's execution memory is still the size before the memory size :
CREATE ROLE r_reade SETTINGS max_memory_usage = 5000000000, max_threads = 2 READONLY
alter role r_reade SETTINGS max_memory_usage = 5000000000, max_threads = 2 READONLY
|
non_defect
|
alter max memory usage does not take effect i specify max memory usage size when creating the role through the permission management function and pay this role to a user however when i modify to adjust max memory usage size the user s execution memory is still the size before the memory size create role r reade settings max memory usage max threads readonly alter role r reade settings max memory usage max threads readonly
| 0
|
71,470
| 23,640,331,909
|
IssuesEvent
|
2022-08-25 16:27:19
|
hazelcast/hazelcast
|
https://api.github.com/repos/hazelcast/hazelcast
|
opened
|
Creating a SQL comapct type creates a type wiht zero fields
|
Type: Defect Team: SQL
|
The following command:
```sql
CREATE TYPE FooType
OPTIONS ('format'='compact','compactTypeName'='foo')
```
creates a type with 0 fields. A type with 0 fields should be disallowed in general, as it's common in SQL (PG allows it, but oracle doesn't. OTOH, PG doesn't allow `()` ROW literal - a ROW with 0 fields ¯\_(ツ)_/¯ )
|
1.0
|
Creating a SQL comapct type creates a type wiht zero fields - The following command:
```sql
CREATE TYPE FooType
OPTIONS ('format'='compact','compactTypeName'='foo')
```
creates a type with 0 fields. A type with 0 fields should be disallowed in general, as it's common in SQL (PG allows it, but oracle doesn't. OTOH, PG doesn't allow `()` ROW literal - a ROW with 0 fields ¯\_(ツ)_/¯ )
|
defect
|
creating a sql comapct type creates a type wiht zero fields the following command sql create type footype options format compact compacttypename foo creates a type with fields a type with fields should be disallowed in general as it s common in sql pg allows it but oracle doesn t otoh pg doesn t allow row literal a row with fields ¯ ツ ¯
| 1
|
31,849
| 6,648,001,460
|
IssuesEvent
|
2017-09-28 07:38:04
|
MarkSummerville/tvrename
|
https://api.github.com/repos/MarkSummerville/tvrename
|
closed
|
5Sec Crash
|
auto-migrated Priority-Medium Type-Defect
|
```
What steps will reproduce the problem?
1. Starting TvRename
2.
3.
What is the expected output? What do you see instead?
Starts(looks fine) and then Crashes after 5 seconds
What version of the product are you using? On what operating system?
2.2.0b7
Please provide any additional information below.
```
Original issue reported on code.google.com by `tyrone....@gmail.com` on 7 Mar 2011 at 3:28
|
1.0
|
5Sec Crash - ```
What steps will reproduce the problem?
1. Starting TvRename
2.
3.
What is the expected output? What do you see instead?
Starts(looks fine) and then Crashes after 5 seconds
What version of the product are you using? On what operating system?
2.2.0b7
Please provide any additional information below.
```
Original issue reported on code.google.com by `tyrone....@gmail.com` on 7 Mar 2011 at 3:28
|
defect
|
crash what steps will reproduce the problem starting tvrename what is the expected output what do you see instead starts looks fine and then crashes after seconds what version of the product are you using on what operating system please provide any additional information below original issue reported on code google com by tyrone gmail com on mar at
| 1
|
16,299
| 4,039,548,359
|
IssuesEvent
|
2016-05-20 05:49:30
|
OrienteerDW/Orienteer
|
https://api.github.com/repos/OrienteerDW/Orienteer
|
closed
|
Update wiki
|
documentation EST: Medium
|
1. features collection (Why Orienteer?)
2. orienteer-archetype-war
3. writing testcases
|
1.0
|
Update wiki - 1. features collection (Why Orienteer?)
2. orienteer-archetype-war
3. writing testcases
|
non_defect
|
update wiki features collection why orienteer orienteer archetype war writing testcases
| 0
|
285,083
| 8,754,439,339
|
IssuesEvent
|
2018-12-14 11:40:50
|
eaudeweb/ozone
|
https://api.github.com/repos/eaudeweb/ozone
|
closed
|
data form 1 - tables
|
Component: Vue Priority: High Status: Needs review
|
<img width="1332" alt="screenshot 2018-12-12 at 13 53 09" src="https://user-images.githubusercontent.com/533311/49868183-4af2e200-fe15-11e8-8f99-e5ab564e2f80.png">
All filter controls should be hidden by default, they are not high priority from the process perspective.
E.g.
<img width="791" alt="screenshot 2018-12-12 at 14 11 20" src="https://user-images.githubusercontent.com/533311/49869075-f43ad780-fe17-11e8-849c-7c4c21a7c135.png">
Search and the table above should be placed inside a container callend "Table. 1"
Sort default button removed. The subtances are sorted by name by default.
"There are no records to show" -> "Please use the form on the right sidebar to add substances", aligned to left.
**All numeric values should be aligned to right.**
Some of the table headers are extended accros rows (e.g. Substances is rowspan:2 ) and some of the accros columns. We need to address both situations.
The same for blend table.
There is strange focus when clicking on party comments on the first time. Question: **There is a size limit in the database of this field?**
Remove footnote "[1] Tonne = Metric ton."
Legend should be moved on the right sidebar, at the bottom. Please avoid animated GIFs.
|
1.0
|
data form 1 - tables - <img width="1332" alt="screenshot 2018-12-12 at 13 53 09" src="https://user-images.githubusercontent.com/533311/49868183-4af2e200-fe15-11e8-8f99-e5ab564e2f80.png">
All filter controls should be hidden by default, they are not high priority from the process perspective.
E.g.
<img width="791" alt="screenshot 2018-12-12 at 14 11 20" src="https://user-images.githubusercontent.com/533311/49869075-f43ad780-fe17-11e8-849c-7c4c21a7c135.png">
Search and the table above should be placed inside a container callend "Table. 1"
Sort default button removed. The subtances are sorted by name by default.
"There are no records to show" -> "Please use the form on the right sidebar to add substances", aligned to left.
**All numeric values should be aligned to right.**
Some of the table headers are extended accros rows (e.g. Substances is rowspan:2 ) and some of the accros columns. We need to address both situations.
The same for blend table.
There is strange focus when clicking on party comments on the first time. Question: **There is a size limit in the database of this field?**
Remove footnote "[1] Tonne = Metric ton."
Legend should be moved on the right sidebar, at the bottom. Please avoid animated GIFs.
|
non_defect
|
data form tables img width alt screenshot at src all filter controls should be hidden by default they are not high priority from the process perspective e g img width alt screenshot at src search and the table above should be placed inside a container callend table sort default button removed the subtances are sorted by name by default there are no records to show please use the form on the right sidebar to add substances aligned to left all numeric values should be aligned to right some of the table headers are extended accros rows e g substances is rowspan and some of the accros columns we need to address both situations the same for blend table there is strange focus when clicking on party comments on the first time question there is a size limit in the database of this field remove footnote tonne metric ton legend should be moved on the right sidebar at the bottom please avoid animated gifs
| 0
|
31,612
| 6,558,582,181
|
IssuesEvent
|
2017-09-06 22:05:03
|
CenturyLinkCloud/mdw
|
https://api.github.com/repos/CenturyLinkCloud/mdw
|
closed
|
Runtime UI can overlook subprocess instances for superseded definitions
|
defect
|
In the MDWHub instance view for Multiple Subprocess activities, subflow instances from non-current definition versions are not displayed in the Subprocesses Inspector tab.
Say subproc mypkg/MyProc was launched from version 1.2, and then subsequently v 1.3 was imported.
The REST resource URL looks like this:
mdw/services/Processes?definition=mypkg/MyProc v[1.1-2)&owner=PROCESS_INSTANCE&ownerId=123
Apparently this retrieves subproc instances that correspond to the latest version only (1.3 in this example).
|
1.0
|
Runtime UI can overlook subprocess instances for superseded definitions - In the MDWHub instance view for Multiple Subprocess activities, subflow instances from non-current definition versions are not displayed in the Subprocesses Inspector tab.
Say subproc mypkg/MyProc was launched from version 1.2, and then subsequently v 1.3 was imported.
The REST resource URL looks like this:
mdw/services/Processes?definition=mypkg/MyProc v[1.1-2)&owner=PROCESS_INSTANCE&ownerId=123
Apparently this retrieves subproc instances that correspond to the latest version only (1.3 in this example).
|
defect
|
runtime ui can overlook subprocess instances for superseded definitions in the mdwhub instance view for multiple subprocess activities subflow instances from non current definition versions are not displayed in the subprocesses inspector tab say subproc mypkg myproc was launched from version and then subsequently v was imported the rest resource url looks like this mdw services processes definition mypkg myproc v owner process instance ownerid apparently this retrieves subproc instances that correspond to the latest version only in this example
| 1
|
53,746
| 13,262,224,821
|
IssuesEvent
|
2020-08-20 21:20:40
|
icecube-trac/tix4
|
https://api.github.com/repos/icecube-trac/tix4
|
closed
|
[icetray] Automatic OutBox breaks TrashCan (Trac #1998)
|
Migrated from Trac combo core defect
|
The automatic OutBox added in r2868 also adds an OutBox to the TrashCan module, resulting in:
```text
FATAL (I3Module): Module "TrashCan_0000" outbox "OutBox" not connected (I3Module.cxx:498 in void I3Module::EnforceOutBoxesConnected() const)
```
Either back it out or make `I3Module::EnforceOutBoxesConnected()` more clever.
<details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/1998">https://code.icecube.wisc.edu/projects/icecube/ticket/1998</a>, reported by jvansantenand owned by olivas</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2019-02-13T14:13:53",
"_ts": "1550067233566919",
"description": "The automatic OutBox added in r2868 also adds an OutBox to the TrashCan module, resulting in:\n{{{\nFATAL (I3Module): Module \"TrashCan_0000\" outbox \"OutBox\" not connected (I3Module.cxx:498 in void I3Module::EnforceOutBoxesConnected() const)\n}}}\nEither back it out or make `I3Module::EnforceOutBoxesConnected()` more clever.",
"reporter": "jvansanten",
"cc": "",
"resolution": "fixed",
"time": "2017-05-05T20:28:27",
"component": "combo core",
"summary": "[icetray] Automatic OutBox breaks TrashCan",
"priority": "blocker",
"keywords": "",
"milestone": "",
"owner": "olivas",
"type": "defect"
}
```
</p>
</details>
|
1.0
|
[icetray] Automatic OutBox breaks TrashCan (Trac #1998) - The automatic OutBox added in r2868 also adds an OutBox to the TrashCan module, resulting in:
```text
FATAL (I3Module): Module "TrashCan_0000" outbox "OutBox" not connected (I3Module.cxx:498 in void I3Module::EnforceOutBoxesConnected() const)
```
Either back it out or make `I3Module::EnforceOutBoxesConnected()` more clever.
<details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/1998">https://code.icecube.wisc.edu/projects/icecube/ticket/1998</a>, reported by jvansantenand owned by olivas</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2019-02-13T14:13:53",
"_ts": "1550067233566919",
"description": "The automatic OutBox added in r2868 also adds an OutBox to the TrashCan module, resulting in:\n{{{\nFATAL (I3Module): Module \"TrashCan_0000\" outbox \"OutBox\" not connected (I3Module.cxx:498 in void I3Module::EnforceOutBoxesConnected() const)\n}}}\nEither back it out or make `I3Module::EnforceOutBoxesConnected()` more clever.",
"reporter": "jvansanten",
"cc": "",
"resolution": "fixed",
"time": "2017-05-05T20:28:27",
"component": "combo core",
"summary": "[icetray] Automatic OutBox breaks TrashCan",
"priority": "blocker",
"keywords": "",
"milestone": "",
"owner": "olivas",
"type": "defect"
}
```
</p>
</details>
|
defect
|
automatic outbox breaks trashcan trac the automatic outbox added in also adds an outbox to the trashcan module resulting in text fatal module trashcan outbox outbox not connected cxx in void enforceoutboxesconnected const either back it out or make enforceoutboxesconnected more clever migrated from json status closed changetime ts description the automatic outbox added in also adds an outbox to the trashcan module resulting in n nfatal module trashcan outbox outbox not connected cxx in void enforceoutboxesconnected const n neither back it out or make enforceoutboxesconnected more clever reporter jvansanten cc resolution fixed time component combo core summary automatic outbox breaks trashcan priority blocker keywords milestone owner olivas type defect
| 1
|
56,697
| 15,301,792,639
|
IssuesEvent
|
2021-02-24 14:02:14
|
gwaldron/osgearth
|
https://api.github.com/repos/gwaldron/osgearth
|
opened
|
Async Layer: does not load root tiles asynchronously
|
defect
|
When creating the "root map" async layers are loading synchronously?
|
1.0
|
Async Layer: does not load root tiles asynchronously - When creating the "root map" async layers are loading synchronously?
|
defect
|
async layer does not load root tiles asynchronously when creating the root map async layers are loading synchronously
| 1
|
69,845
| 8,467,389,528
|
IssuesEvent
|
2018-10-23 16:50:04
|
Opentrons/opentrons
|
https://api.github.com/repos/Opentrons/opentrons
|
closed
|
PD Liquids Management: Liquids Editor 'Clear' Button
|
feature protocol designer small
|
As a protocol designer, I would like an easy way to clear any previous liquid placements in a labware, so that I can start from scratch.
## Acceptance Criteria
- [ ] New 'Empty Wells' button in the liquids placement editor
- [ ] Button is inactive if there are no liquids selected
- [ ] User sees a warning dialogue when they click 'Empty Wells'
- [ ] Dialogue has a 'Cancel' button to return to form
- [ ] Dialogue has a 'Confirm' button empty the selected wells and close the form
## Design and Copy
### Warning Dialogue Box
Title: "Clear selected wells"
Body: Clicking 'confirm' will remove liquids from all selected wells.
- @howisthisnamenottakenyet

|
1.0
|
PD Liquids Management: Liquids Editor 'Clear' Button - As a protocol designer, I would like an easy way to clear any previous liquid placements in a labware, so that I can start from scratch.
## Acceptance Criteria
- [ ] New 'Empty Wells' button in the liquids placement editor
- [ ] Button is inactive if there are no liquids selected
- [ ] User sees a warning dialogue when they click 'Empty Wells'
- [ ] Dialogue has a 'Cancel' button to return to form
- [ ] Dialogue has a 'Confirm' button empty the selected wells and close the form
## Design and Copy
### Warning Dialogue Box
Title: "Clear selected wells"
Body: Clicking 'confirm' will remove liquids from all selected wells.
- @howisthisnamenottakenyet

|
non_defect
|
pd liquids management liquids editor clear button as a protocol designer i would like an easy way to clear any previous liquid placements in a labware so that i can start from scratch acceptance criteria new empty wells button in the liquids placement editor button is inactive if there are no liquids selected user sees a warning dialogue when they click empty wells dialogue has a cancel button to return to form dialogue has a confirm button empty the selected wells and close the form design and copy warning dialogue box title clear selected wells body clicking confirm will remove liquids from all selected wells howisthisnamenottakenyet
| 0
|
69,114
| 22,164,429,707
|
IssuesEvent
|
2022-06-05 01:39:29
|
naev/naev
|
https://api.github.com/repos/naev/naev
|
closed
|
Reproducible failure to gc a mission's environment.
|
Type-Defect Priority-Critical
|
Just to simplify debugging a little (though this is not a truly reduced test case):
- A branch with extra debug-prints, more eager gc, and restriction to one specific mission is: naev:refdebug
- (Do not use the "paranoid" compile option, as this uses WARN() as a convenient way to log events of interest with the function name.)
- A save to start from is: [tester.ns.gz](https://github.com/naev/naev/files/7859267/tester.ns.gz)
- Steps are: L,L (load the save), alt-2 (bar), right,a (approach Crimson Gauntlet), Challenge, Warrior, Enter Arena, [fly directly to your death].
```
Reached main menu in 10.373 s
nlua_dobufenv: (null)
nlua_dobufenv: (null)
nlua_dobufenv: (null)
nlua_dobufenv: Crimson Gauntlet
Warning: [audioL_new] +1
Warning: [audioL_new] +1
Warning: [audioL_new] +1
Warning: [audioL_new] +1
Warning: [audioL_new] +1
Warning: [audioL_new] +1
Warning: [audioL_new] +1
Warning: [audioL_clone] +1
nlua_freeEnv: Crimson Gauntlet Challenge
nlua_dobufenv: Crimson Gauntlet
Warning: [audioL_new] +1
Warning: [audioL_new] +1
```
And that's it! We've leaked a ton of openal sources.
Interestingly, if I do a takeoff from this point, I do see something:
```
nlua_freeEnv: Crimson Gauntlet
Warning: [audioL_gc] -1
Warning: [audioL_gc] -1
```
So the environment of the new, not-yet-approached "Crimson Gauntlet" mission is able to get gc'd, but not that of the one I played. Playing the mission must have created a dangling reference at some point, which is able to keep everything alive until naev.c calls `lua_exit()`.
|
1.0
|
Reproducible failure to gc a mission's environment. - Just to simplify debugging a little (though this is not a truly reduced test case):
- A branch with extra debug-prints, more eager gc, and restriction to one specific mission is: naev:refdebug
- (Do not use the "paranoid" compile option, as this uses WARN() as a convenient way to log events of interest with the function name.)
- A save to start from is: [tester.ns.gz](https://github.com/naev/naev/files/7859267/tester.ns.gz)
- Steps are: L,L (load the save), alt-2 (bar), right,a (approach Crimson Gauntlet), Challenge, Warrior, Enter Arena, [fly directly to your death].
```
Reached main menu in 10.373 s
nlua_dobufenv: (null)
nlua_dobufenv: (null)
nlua_dobufenv: (null)
nlua_dobufenv: Crimson Gauntlet
Warning: [audioL_new] +1
Warning: [audioL_new] +1
Warning: [audioL_new] +1
Warning: [audioL_new] +1
Warning: [audioL_new] +1
Warning: [audioL_new] +1
Warning: [audioL_new] +1
Warning: [audioL_clone] +1
nlua_freeEnv: Crimson Gauntlet Challenge
nlua_dobufenv: Crimson Gauntlet
Warning: [audioL_new] +1
Warning: [audioL_new] +1
```
And that's it! We've leaked a ton of openal sources.
Interestingly, if I do a takeoff from this point, I do see something:
```
nlua_freeEnv: Crimson Gauntlet
Warning: [audioL_gc] -1
Warning: [audioL_gc] -1
```
So the environment of the new, not-yet-approached "Crimson Gauntlet" mission is able to get gc'd, but not that of the one I played. Playing the mission must have created a dangling reference at some point, which is able to keep everything alive until naev.c calls `lua_exit()`.
|
defect
|
reproducible failure to gc a mission s environment just to simplify debugging a little though this is not a truly reduced test case a branch with extra debug prints more eager gc and restriction to one specific mission is naev refdebug do not use the paranoid compile option as this uses warn as a convenient way to log events of interest with the function name a save to start from is steps are l l load the save alt bar right a approach crimson gauntlet challenge warrior enter arena reached main menu in s nlua dobufenv null nlua dobufenv null nlua dobufenv null nlua dobufenv crimson gauntlet warning warning warning warning warning warning warning warning nlua freeenv crimson gauntlet challenge nlua dobufenv crimson gauntlet warning warning and that s it we ve leaked a ton of openal sources interestingly if i do a takeoff from this point i do see something nlua freeenv crimson gauntlet warning warning so the environment of the new not yet approached crimson gauntlet mission is able to get gc d but not that of the one i played playing the mission must have created a dangling reference at some point which is able to keep everything alive until naev c calls lua exit
| 1
|
56,184
| 14,968,593,752
|
IssuesEvent
|
2021-01-27 17:02:07
|
openzfs/zfs
|
https://api.github.com/repos/openzfs/zfs
|
closed
|
Deadlock or missed wakeup with heavy I/O, file deletion, and snapshot creation on Debian Linux/ppc64le
|
Type: Defect
|
### System information
Type | Version/Name
--- | ---
Distribution Name | Debian
Distribution Version | 10.7
Linux Kernel | 4.19.0-13-powerpc64le
Architecture | powerpc64le, dual socket, 22 cores per socket
ZFS Version | 0.8.6-1~bpo10+1
SPL Version | same as ZFS
There are two zpools in this machine: one is a single NVMe device and holds the root filesystem while the other is five spinning rust drives and a SSD l2arc. The spinning rust drives are the pool of concern and are fully given over to `dmcrypt` and thence to ZFS; there is no `dmcrypt` intermediation of the `l2arc`.
### Describe the problem you're observing
When doing a large, `ccache`-enabled build which generates lots of I/O to the spinning rust zpool, `zfs-auto-snapshot`'s `zfs snapshot` commands, also targeting that pool, appear to be able to bring the system to standstill. It seems that `txg_quiesce` goes to sleep and stays there (in `D` state); on what, I cannot say. `txg_sync` is asleep but in `S` state.
Please find [attached](https://github.com/openzfs/zfs/files/5874239/zfs-hang2-filtered-further.txt) a list of most threads involved in zfs or spl at the time of deadlock; for each, I have captured `/proc/$PID/status`, `/proc/$PID/cmdline | tr '\000' ' '` and `/proc/$PID/stack`. I have removed all threads that appeared to be unrelated or merely idle task queues awaiting work. If there's additional information I could provide, please do not hesitate to ask; if I do not have it at present I shall attempt to capture it next time the issue rears its ugly head.
### Describe how to reproduce the problem
I'm unsure how to have anyone *else* reproduce the problem, but the above recipe happens often enough on this machine that I have had this occur somewhere in the vicinity of once per month on average, though we're at twice this week, so that's exciting! I've told `zfs-auto-snapshot` to not take hourly snapshots, in hopes that whatever's being tickled is tickled less often.
FWIW, this happened as well with `0.7.5` before I moved up to the `0.8` series.
|
1.0
|
Deadlock or missed wakeup with heavy I/O, file deletion, and snapshot creation on Debian Linux/ppc64le - ### System information
Type | Version/Name
--- | ---
Distribution Name | Debian
Distribution Version | 10.7
Linux Kernel | 4.19.0-13-powerpc64le
Architecture | powerpc64le, dual socket, 22 cores per socket
ZFS Version | 0.8.6-1~bpo10+1
SPL Version | same as ZFS
There are two zpools in this machine: one is a single NVMe device and holds the root filesystem while the other is five spinning rust drives and a SSD l2arc. The spinning rust drives are the pool of concern and are fully given over to `dmcrypt` and thence to ZFS; there is no `dmcrypt` intermediation of the `l2arc`.
### Describe the problem you're observing
When doing a large, `ccache`-enabled build which generates lots of I/O to the spinning rust zpool, `zfs-auto-snapshot`'s `zfs snapshot` commands, also targeting that pool, appear to be able to bring the system to standstill. It seems that `txg_quiesce` goes to sleep and stays there (in `D` state); on what, I cannot say. `txg_sync` is asleep but in `S` state.
Please find [attached](https://github.com/openzfs/zfs/files/5874239/zfs-hang2-filtered-further.txt) a list of most threads involved in zfs or spl at the time of deadlock; for each, I have captured `/proc/$PID/status`, `/proc/$PID/cmdline | tr '\000' ' '` and `/proc/$PID/stack`. I have removed all threads that appeared to be unrelated or merely idle task queues awaiting work. If there's additional information I could provide, please do not hesitate to ask; if I do not have it at present I shall attempt to capture it next time the issue rears its ugly head.
### Describe how to reproduce the problem
I'm unsure how to have anyone *else* reproduce the problem, but the above recipe happens often enough on this machine that I have had this occur somewhere in the vicinity of once per month on average, though we're at twice this week, so that's exciting! I've told `zfs-auto-snapshot` to not take hourly snapshots, in hopes that whatever's being tickled is tickled less often.
FWIW, this happened as well with `0.7.5` before I moved up to the `0.8` series.
|
defect
|
deadlock or missed wakeup with heavy i o file deletion and snapshot creation on debian linux system information type version name distribution name debian distribution version linux kernel architecture dual socket cores per socket zfs version spl version same as zfs there are two zpools in this machine one is a single nvme device and holds the root filesystem while the other is five spinning rust drives and a ssd the spinning rust drives are the pool of concern and are fully given over to dmcrypt and thence to zfs there is no dmcrypt intermediation of the describe the problem you re observing when doing a large ccache enabled build which generates lots of i o to the spinning rust zpool zfs auto snapshot s zfs snapshot commands also targeting that pool appear to be able to bring the system to standstill it seems that txg quiesce goes to sleep and stays there in d state on what i cannot say txg sync is asleep but in s state please find a list of most threads involved in zfs or spl at the time of deadlock for each i have captured proc pid status proc pid cmdline tr and proc pid stack i have removed all threads that appeared to be unrelated or merely idle task queues awaiting work if there s additional information i could provide please do not hesitate to ask if i do not have it at present i shall attempt to capture it next time the issue rears its ugly head describe how to reproduce the problem i m unsure how to have anyone else reproduce the problem but the above recipe happens often enough on this machine that i have had this occur somewhere in the vicinity of once per month on average though we re at twice this week so that s exciting i ve told zfs auto snapshot to not take hourly snapshots in hopes that whatever s being tickled is tickled less often fwiw this happened as well with before i moved up to the series
| 1
|
42,156
| 10,851,162,487
|
IssuesEvent
|
2019-11-13 10:15:17
|
hazelcast/hazelcast
|
https://api.github.com/repos/hazelcast/hazelcast
|
closed
|
IMap `replace` could fail if the Map entry is a Hash collection
|
Source: Internal Team: Core Type: Defect
|
Reproducer
```java
HazelcastInstance instance = Hazelcast.newHazelcastInstance();
IMap<String, Collection<String>> store = instance.getMap("store");
Collection<String> val = new HashSet<>();
val.add("a");
store.put("a", val);
Collection<String> oldVal = store.get("a");
byte[] dataOld = ((HazelcastInstanceProxy) hz).getSerializationService().toBytes(oldVal);
byte[] dataNew = ((HazelcastInstanceProxy) hz).getSerializationService().toBytes(val);
System.out.println(Arrays.equals(dataNew, dataOld));
```
Due to optimization is `HashSet.readObject` method, initial serialized byte[] and des/ser byte[] is different. This causes multiple issues, like `replace` method fails & infinite loop case as described in #12557. Hazelcast have an `ArrayList` serializer but don't have one for Hash collections, like HashSet/HashMap. The only permanent solution is to implement one. We can simply create a `Collection` serializer & all collections can extend it & implement only collection creation part.
|
1.0
|
IMap `replace` could fail if the Map entry is a Hash collection - Reproducer
```java
HazelcastInstance instance = Hazelcast.newHazelcastInstance();
IMap<String, Collection<String>> store = instance.getMap("store");
Collection<String> val = new HashSet<>();
val.add("a");
store.put("a", val);
Collection<String> oldVal = store.get("a");
byte[] dataOld = ((HazelcastInstanceProxy) hz).getSerializationService().toBytes(oldVal);
byte[] dataNew = ((HazelcastInstanceProxy) hz).getSerializationService().toBytes(val);
System.out.println(Arrays.equals(dataNew, dataOld));
```
Due to optimization is `HashSet.readObject` method, initial serialized byte[] and des/ser byte[] is different. This causes multiple issues, like `replace` method fails & infinite loop case as described in #12557. Hazelcast have an `ArrayList` serializer but don't have one for Hash collections, like HashSet/HashMap. The only permanent solution is to implement one. We can simply create a `Collection` serializer & all collections can extend it & implement only collection creation part.
|
defect
|
imap replace could fail if the map entry is a hash collection reproducer java hazelcastinstance instance hazelcast newhazelcastinstance imap store instance getmap store collection val new hashset val add a store put a val collection oldval store get a byte dataold hazelcastinstanceproxy hz getserializationservice tobytes oldval byte datanew hazelcastinstanceproxy hz getserializationservice tobytes val system out println arrays equals datanew dataold due to optimization is hashset readobject method initial serialized byte and des ser byte is different this causes multiple issues like replace method fails infinite loop case as described in hazelcast have an arraylist serializer but don t have one for hash collections like hashset hashmap the only permanent solution is to implement one we can simply create a collection serializer all collections can extend it implement only collection creation part
| 1
|
384,733
| 26,601,113,530
|
IssuesEvent
|
2023-01-23 15:50:20
|
grandma-collaboration/skyportal_grandma_dev
|
https://api.github.com/repos/grandma-collaboration/skyportal_grandma_dev
|
opened
|
Document the JS component tree #3846
|
documentation enhancement
|
Ok, I open an issue here regarding this issue ( https://github.com/skyportal/skyportal/issues/3846 )
@KodeurFou and I will have a look on if something already exist to make an automated JSX component tree and if not we will try to make a script that check all the files in the component directory and then check the dependencies.
We will go back to you when we have something that might be useful :+1:
@mcoughlin @Theodlz
|
1.0
|
Document the JS component tree #3846 - Ok, I open an issue here regarding this issue ( https://github.com/skyportal/skyportal/issues/3846 )
@KodeurFou and I will have a look on if something already exist to make an automated JSX component tree and if not we will try to make a script that check all the files in the component directory and then check the dependencies.
We will go back to you when we have something that might be useful :+1:
@mcoughlin @Theodlz
|
non_defect
|
document the js component tree ok i open an issue here regarding this issue kodeurfou and i will have a look on if something already exist to make an automated jsx component tree and if not we will try to make a script that check all the files in the component directory and then check the dependencies we will go back to you when we have something that might be useful mcoughlin theodlz
| 0
|
77,996
| 27,270,697,528
|
IssuesEvent
|
2023-02-22 22:02:15
|
department-of-veterans-affairs/va.gov-cms
|
https://api.github.com/repos/department-of-veterans-affairs/va.gov-cms
|
opened
|
Phone numbers with exts in Facility health services do not follow VA guidelines
|
Defect Needs refining
|
## Describe the defect
Currently in Facility health services, a phone number with an ext looks like this:
`<a aria-label="8 0 0. 8 5 7. 3 3 8 4" href="tel:800-857-3384p45543">800-857-3384 x 45543</a>`
However, this does not follow [VA content style guidelines](https://design.va.gov/content-style-guide/dates-and-numbers#phone-numbers). Some updates are needed:
- For the text label, use ext. at the end instead of just x: 800-857-3384, ext. 45543.
- The extension should be included in the aria-label `aria-label="8 0 0. 8 5 7. 3 3 8 4. extension. 4 5 5 4 3."`
- For the href:
- +1 should be included (this is for all phone numbers, not just ones with exts)
- instead of a "p" for the ext, a comma should be used
- `href="tel:+18008573384,45543'
### Additional Context
- There is a [<va-telephone> component](https://design.va.gov/components/telephone) that is available that will format these correctly. My guess is that this was originally done long before the component existed, as this is relatively new. However, if we are going to update these now, it could be a possible option rather than custom code.
- Also, currently the "p" for the ext does not seem to be working/supported on all phones. This was found and tested by Martha Wilkes (which is how it was brought to my attention) so this does seem to be something we might want to see if we can get on the roadmap sooner rather than later if at all possible
## To Reproduce
Steps to reproduce the behavior:
1. Go to [Jamacia Plain page](https://www.va.gov/boston-health-care/locations/jamaica-plain-va-medical-center/)
3. Click on the accordion for Blind and low vision rehabilitation accordion to expand it
4. Scroll down to the phone number and notice that there is an extension
5. Inspect the code to see that number doesn't match the VA standards, including the href has a "p" before the ext and that the aria-label does not include the ext.

## AC / Expected behavior
- [ ] Update href of all phone numbers (not just ones with exts) to include +1
- [ ] Update href of phone numbers to have a comma to introduce exts instead of a "p"
- [ ] Update aria-label to include ext when applicable
### Team
Please check the team(s) that will do this work.
- [ ] `CMS Team`
- [ ] `Public Websites`
- [x] `Facilities`
- [ ] `User support`
|
1.0
|
Phone numbers with exts in Facility health services do not follow VA guidelines - ## Describe the defect
Currently in Facility health services, a phone number with an ext looks like this:
`<a aria-label="8 0 0. 8 5 7. 3 3 8 4" href="tel:800-857-3384p45543">800-857-3384 x 45543</a>`
However, this does not follow [VA content style guidelines](https://design.va.gov/content-style-guide/dates-and-numbers#phone-numbers). Some updates are needed:
- For the text label, use ext. at the end instead of just x: 800-857-3384, ext. 45543.
- The extension should be included in the aria-label `aria-label="8 0 0. 8 5 7. 3 3 8 4. extension. 4 5 5 4 3."`
- For the href:
- +1 should be included (this is for all phone numbers, not just ones with exts)
- instead of a "p" for the ext, a comma should be used
- `href="tel:+18008573384,45543'
### Additional Context
- There is a [<va-telephone> component](https://design.va.gov/components/telephone) that is available that will format these correctly. My guess is that this was originally done long before the component existed, as this is relatively new. However, if we are going to update these now, it could be a possible option rather than custom code.
- Also, currently the "p" for the ext does not seem to be working/supported on all phones. This was found and tested by Martha Wilkes (which is how it was brought to my attention) so this does seem to be something we might want to see if we can get on the roadmap sooner rather than later if at all possible
## To Reproduce
Steps to reproduce the behavior:
1. Go to [Jamacia Plain page](https://www.va.gov/boston-health-care/locations/jamaica-plain-va-medical-center/)
3. Click on the accordion for Blind and low vision rehabilitation accordion to expand it
4. Scroll down to the phone number and notice that there is an extension
5. Inspect the code to see that number doesn't match the VA standards, including the href has a "p" before the ext and that the aria-label does not include the ext.

## AC / Expected behavior
- [ ] Update href of all phone numbers (not just ones with exts) to include +1
- [ ] Update href of phone numbers to have a comma to introduce exts instead of a "p"
- [ ] Update aria-label to include ext when applicable
### Team
Please check the team(s) that will do this work.
- [ ] `CMS Team`
- [ ] `Public Websites`
- [x] `Facilities`
- [ ] `User support`
|
defect
|
phone numbers with exts in facility health services do not follow va guidelines describe the defect currently in facility health services a phone number with an ext looks like this x however this does not follow some updates are needed for the text label use ext at the end instead of just x ext the extension should be included in the aria label aria label extension for the href should be included this is for all phone numbers not just ones with exts instead of a p for the ext a comma should be used href tel additional context there is a that is available that will format these correctly my guess is that this was originally done long before the component existed as this is relatively new however if we are going to update these now it could be a possible option rather than custom code also currently the p for the ext does not seem to be working supported on all phones this was found and tested by martha wilkes which is how it was brought to my attention so this does seem to be something we might want to see if we can get on the roadmap sooner rather than later if at all possible to reproduce steps to reproduce the behavior go to click on the accordion for blind and low vision rehabilitation accordion to expand it scroll down to the phone number and notice that there is an extension inspect the code to see that number doesn t match the va standards including the href has a p before the ext and that the aria label does not include the ext ac expected behavior update href of all phone numbers not just ones with exts to include update href of phone numbers to have a comma to introduce exts instead of a p update aria label to include ext when applicable team please check the team s that will do this work cms team public websites facilities user support
| 1
|
58,648
| 16,672,477,299
|
IssuesEvent
|
2021-06-07 12:41:00
|
primefaces/primefaces
|
https://api.github.com/repos/primefaces/primefaces
|
opened
|
Datatable: Row remains selected after clearing backing bean
|
defect
|
**Describe the defect**
Basic datatable with single selection: when a row is selected and an action that clears the backing bean selected row object is executed, the row remains selected in the browser.
This only happens when the datatable has declared the "rowSelect" event.
**Reproducer**
Run the attached project (mvn jetty:run) and visit http://localhost:8080/primefaces-test/. Then select a row and click "Unselect row" button. The row remains selected in the browser.
It works fine (the row is no longer selected) if you comment out the following line in test.xhtml:
```html
<p:ajax event="rowSelect" listener="#{testView.onSelectProduct}" />
```
**Environment:**
- PF Version: _10.0.x_
- JSF + version: _Mojarra 2.2.20 and MyFaces 2.3.9_
- Affected browsers: _ALL_
[primefaces-test-master.zip](https://github.com/primefaces/primefaces/files/6608723/primefaces-test-master.zip)
|
1.0
|
Datatable: Row remains selected after clearing backing bean - **Describe the defect**
Basic datatable with single selection: when a row is selected and an action that clears the backing bean selected row object is executed, the row remains selected in the browser.
This only happens when the datatable has declared the "rowSelect" event.
**Reproducer**
Run the attached project (mvn jetty:run) and visit http://localhost:8080/primefaces-test/. Then select a row and click "Unselect row" button. The row remains selected in the browser.
It works fine (the row is no longer selected) if you comment out the following line in test.xhtml:
```html
<p:ajax event="rowSelect" listener="#{testView.onSelectProduct}" />
```
**Environment:**
- PF Version: _10.0.x_
- JSF + version: _Mojarra 2.2.20 and MyFaces 2.3.9_
- Affected browsers: _ALL_
[primefaces-test-master.zip](https://github.com/primefaces/primefaces/files/6608723/primefaces-test-master.zip)
|
defect
|
datatable row remains selected after clearing backing bean describe the defect basic datatable with single selection when a row is selected and an action that clears the backing bean selected row object is executed the row remains selected in the browser this only happens when the datatable has declared the rowselect event reproducer run the attached project mvn jetty run and visit then select a row and click unselect row button the row remains selected in the browser it works fine the row is no longer selected if you comment out the following line in test xhtml html environment pf version x jsf version mojarra and myfaces affected browsers all
| 1
|
32,045
| 6,691,378,391
|
IssuesEvent
|
2017-10-09 12:57:50
|
STEllAR-GROUP/phylanx
|
https://api.github.com/repos/STEllAR-GROUP/phylanx
|
opened
|
Adapt literal_value primitive
|
submodule: backend type: defect
|
Currently, the `literal_value` has the following drawbacks:
- [ ] it has a bad name, `variable` would be better
- [ ] it has to be constructed differently compared to all the other primitives (its constructor expects a `node_data` instance)
- [ ] it should be able to store a `primitive_result_value` (`nil`, `bool, `std::int64_t`, `std::string`, or `node_data`)
|
1.0
|
Adapt literal_value primitive - Currently, the `literal_value` has the following drawbacks:
- [ ] it has a bad name, `variable` would be better
- [ ] it has to be constructed differently compared to all the other primitives (its constructor expects a `node_data` instance)
- [ ] it should be able to store a `primitive_result_value` (`nil`, `bool, `std::int64_t`, `std::string`, or `node_data`)
|
defect
|
adapt literal value primitive currently the literal value has the following drawbacks it has a bad name variable would be better it has to be constructed differently compared to all the other primitives its constructor expects a node data instance it should be able to store a primitive result value nil bool std t std string or node data
| 1
|
812,366
| 30,329,801,820
|
IssuesEvent
|
2023-07-11 05:09:25
|
phylum-dev/cli
|
https://api.github.com/repos/phylum-dev/cli
|
opened
|
Submit package lockfile paths
|
enhancement medium priority
|
# Overview
Update the CLI to send lockfile paths with job submissions.
# Acceptance Criteria
- [ ] Lockfile paths are submitted with each package
- [ ] Packages are submitted as PURLs
|
1.0
|
Submit package lockfile paths - # Overview
Update the CLI to send lockfile paths with job submissions.
# Acceptance Criteria
- [ ] Lockfile paths are submitted with each package
- [ ] Packages are submitted as PURLs
|
non_defect
|
submit package lockfile paths overview update the cli to send lockfile paths with job submissions acceptance criteria lockfile paths are submitted with each package packages are submitted as purls
| 0
|
17,274
| 2,994,599,204
|
IssuesEvent
|
2015-07-22 12:50:02
|
seek-for-android/pool
|
https://api.github.com/repos/seek-for-android/pool
|
closed
|
In UiccTerminal.java, mSelectResponse is always NULL
|
auto-migrated Priority-Medium Type-Defect
|
```
What's the problem?
I'm using Seek-for-android in order to exchange APDU with UICC.
Currently (Seek 2.3.2), Channel.getSelectResponse() returns NULL. According to
the source code (UiccTerminal.java), the value of mSelectResponse is always
"null". In other Terminal subclasses, this value is set.
For instance :
mSelectResponse = transmit(selectCommand, 2, 0x9000, 0xFFFF, "SELECT");
Question : Why does this different implementation exist ? Is it possible to
have a consistent behaviour ?
```
Original issue reported on code.google.com by `sakh...@gmail.com` on 29 Mar 2012 at 9:56
|
1.0
|
In UiccTerminal.java, mSelectResponse is always NULL - ```
What's the problem?
I'm using Seek-for-android in order to exchange APDU with UICC.
Currently (Seek 2.3.2), Channel.getSelectResponse() returns NULL. According to
the source code (UiccTerminal.java), the value of mSelectResponse is always
"null". In other Terminal subclasses, this value is set.
For instance :
mSelectResponse = transmit(selectCommand, 2, 0x9000, 0xFFFF, "SELECT");
Question : Why does this different implementation exist ? Is it possible to
have a consistent behaviour ?
```
Original issue reported on code.google.com by `sakh...@gmail.com` on 29 Mar 2012 at 9:56
|
defect
|
in uiccterminal java mselectresponse is always null what s the problem i m using seek for android in order to exchange apdu with uicc currently seek channel getselectresponse returns null according to the source code uiccterminal java the value of mselectresponse is always null in other terminal subclasses this value is set for instance mselectresponse transmit selectcommand select question why does this different implementation exist is it possible to have a consistent behaviour original issue reported on code google com by sakh gmail com on mar at
| 1
|
33,898
| 7,293,930,268
|
IssuesEvent
|
2018-02-25 18:57:18
|
euspectre/kedr
|
https://api.github.com/repos/euspectre/kedr
|
closed
|
Test leak_check.kfree_rcu.01 freeze system
|
Priority-Medium Type-Defect
|
Original [issue 20](https://code.google.com/p/kedr/issues/detail?id=20) created by euspectre on 2015-01-19T20:54:53.000Z:
System becomes completely unresponsible few moments after the test leak_check.kfree_rcu.01 begins.
Reproduced on OpenSUSE 13.1, Linux kernel 3.11.25 and 3.18.1(vanilla).
On previous distro-specific kernel (3.11.7 or near) the test has passed successfully. Same for many others distro/kernel pairs.
Playing with tests/leak_check/kfree_rcu_module/test_module.c shows that problems remains when code for 'foo' allocation/deallocation is removed, but disappears when code for 'bar' is removed instead.
Without Leak Check given module is loaded/unloaded without errors.
|
1.0
|
Test leak_check.kfree_rcu.01 freeze system - Original [issue 20](https://code.google.com/p/kedr/issues/detail?id=20) created by euspectre on 2015-01-19T20:54:53.000Z:
System becomes completely unresponsible few moments after the test leak_check.kfree_rcu.01 begins.
Reproduced on OpenSUSE 13.1, Linux kernel 3.11.25 and 3.18.1(vanilla).
On previous distro-specific kernel (3.11.7 or near) the test has passed successfully. Same for many others distro/kernel pairs.
Playing with tests/leak_check/kfree_rcu_module/test_module.c shows that problems remains when code for 'foo' allocation/deallocation is removed, but disappears when code for 'bar' is removed instead.
Without Leak Check given module is loaded/unloaded without errors.
|
defect
|
test leak check kfree rcu freeze system original created by euspectre on system becomes completely unresponsible few moments after the test leak check kfree rcu begins reproduced on opensuse linux kernel and vanilla on previous distro specific kernel or near the test has passed successfully same for many others distro kernel pairs playing with tests leak check kfree rcu module test module c shows that problems remains when code for foo allocation deallocation is removed but disappears when code for bar is removed instead without leak check given module is loaded unloaded without errors
| 1
|
152,823
| 24,020,892,727
|
IssuesEvent
|
2022-09-15 07:33:28
|
stores-cedcommerce/Trista-Store-Design
|
https://api.github.com/repos/stores-cedcommerce/Trista-Store-Design
|
opened
|
The logo are coming very small in tab view.
|
Tab Design / UI / UX home page
|
**Actual result:**
The logo are coming very small in tab view.

**Expected result:**
The logo should be visible
|
1.0
|
The logo are coming very small in tab view. - **Actual result:**
The logo are coming very small in tab view.

**Expected result:**
The logo should be visible
|
non_defect
|
the logo are coming very small in tab view actual result the logo are coming very small in tab view expected result the logo should be visible
| 0
|
97,191
| 20,189,959,855
|
IssuesEvent
|
2022-02-11 03:51:28
|
vmware-tanzu/cluster-api-provider-bringyourownhost
|
https://api.github.com/repos/vmware-tanzu/cluster-api-provider-bringyourownhost
|
closed
|
Pre-requisite check on Host-Agent start
|
area/code-quality
|
**What steps did you take and what happened:**
When using an `Ubuntu 20.04 VM` (with no additional installation of packages), applying the cluster-template proceeds until the k8s installation steps. It later complains of the missing installation required packages like `socat, ebtables, conntrack, ethtool`.
**What did you expect to happen:**
The requirements are already documented [here](https://github.com/vmware-tanzu/cluster-api-provider-bringyourownhost/blob/main/docs/local_dev.md#pre-requisites-1)
But if the user has not followed the steps to install these, host-agent on start should check for the pre-requisites (all required packages, os support etc.) and exit on failure.
This will save effort in registering a byohost that does not meet basic requirements and will go into a trying to `install / uninstall` reconcile loop. Manual intervention should not be needed.
|
1.0
|
Pre-requisite check on Host-Agent start - **What steps did you take and what happened:**
When using an `Ubuntu 20.04 VM` (with no additional installation of packages), applying the cluster-template proceeds until the k8s installation steps. It later complains of the missing installation required packages like `socat, ebtables, conntrack, ethtool`.
**What did you expect to happen:**
The requirements are already documented [here](https://github.com/vmware-tanzu/cluster-api-provider-bringyourownhost/blob/main/docs/local_dev.md#pre-requisites-1)
But if the user has not followed the steps to install these, host-agent on start should check for the pre-requisites (all required packages, os support etc.) and exit on failure.
This will save effort in registering a byohost that does not meet basic requirements and will go into a trying to `install / uninstall` reconcile loop. Manual intervention should not be needed.
|
non_defect
|
pre requisite check on host agent start what steps did you take and what happened when using an ubuntu vm with no additional installation of packages applying the cluster template proceeds until the installation steps it later complains of the missing installation required packages like socat ebtables conntrack ethtool what did you expect to happen the requirements are already documented but if the user has not followed the steps to install these host agent on start should check for the pre requisites all required packages os support etc and exit on failure this will save effort in registering a byohost that does not meet basic requirements and will go into a trying to install uninstall reconcile loop manual intervention should not be needed
| 0
|
79,706
| 28,498,340,749
|
IssuesEvent
|
2023-04-18 15:32:36
|
vector-im/element-web
|
https://api.github.com/repos/vector-im/element-web
|
opened
|
Error: Unable to restore session
|
T-Defect
|
### Steps to reproduce
1. Open https://app.element.io/
2. See error
I did not use this device for like a year. I already clicked on "Clear Storage and Sign Out" and can't send logs.
### Outcome
#### What did you expect?
Be still logged in.
#### What happened instead?
I get this error:

> **Unable to restore session**
> We encountered an error trying to restore your previous session.
>
> If you have previously used a more recent version of Element, your session may be incompatible with this version. Close this window and return to the more recent version.
>
> Clearing your browser's storage may fix the problem, but will sign you out and cause any encrypted chat history to become unreadable.
### Operating system
NixOS 22.11.3689.fda0d99c2cb
### Browser information
Chromium 112.0.5615.49
### URL for webapp
https://app.element.io/
### Application version
_No response_
### Homeserver
matrix.org
### Will you send logs?
No
|
1.0
|
Error: Unable to restore session - ### Steps to reproduce
1. Open https://app.element.io/
2. See error
I did not use this device for like a year. I already clicked on "Clear Storage and Sign Out" and can't send logs.
### Outcome
#### What did you expect?
Be still logged in.
#### What happened instead?
I get this error:

> **Unable to restore session**
> We encountered an error trying to restore your previous session.
>
> If you have previously used a more recent version of Element, your session may be incompatible with this version. Close this window and return to the more recent version.
>
> Clearing your browser's storage may fix the problem, but will sign you out and cause any encrypted chat history to become unreadable.
### Operating system
NixOS 22.11.3689.fda0d99c2cb
### Browser information
Chromium 112.0.5615.49
### URL for webapp
https://app.element.io/
### Application version
_No response_
### Homeserver
matrix.org
### Will you send logs?
No
|
defect
|
error unable to restore session steps to reproduce open see error i did not use this device for like a year i already clicked on clear storage and sign out and can t send logs outcome what did you expect be still logged in what happened instead i get this error unable to restore session we encountered an error trying to restore your previous session if you have previously used a more recent version of element your session may be incompatible with this version close this window and return to the more recent version clearing your browser s storage may fix the problem but will sign you out and cause any encrypted chat history to become unreadable operating system nixos browser information chromium url for webapp application version no response homeserver matrix org will you send logs no
| 1
|
59,297
| 6,644,179,697
|
IssuesEvent
|
2017-09-27 13:59:55
|
Microsoft/vscode
|
https://api.github.com/repos/Microsoft/vscode
|
closed
|
Test: link origin of messages in debug console
|
debug testplan-item
|
Refs: https://github.com/Microsoft/vscode/issues/24490
- [x] Windows - @dbaeumer
- [x] OS X - @octref
- [x] Linux - @chrmarti
Complexity: 3
We now support showing the origin of messages in debug console. Note that this is currently only supported by the `node2` debug adapter. Have some nedo repository, for example our smoketest and if you have node below version 8 add `"inspector": "protocol"` to the launch configuration.
Verify:
* all output logged should appear in the debug console with a proper origin.
* clicking on the origin takes you to the appropriate file / line number / column
When using `console.log`, `console.warn` or `console.error` from an extension, the log information is serialised from the extension host to the renderer and then played back in the renderers DevTools console as well as debug console. This means that the origin of the console use from the extension is lost. We now preserve the origin and allow access to it.
Use `console.log`, `console.warn` or `console.error` from your extension with strings, objects, primitives etc. Have some extension repository and verify:
* you can expand the message in the extension host dev tools to see the full stack of where the message was sent
* you see the location of the message in the right hand side of the debug console and can click on it
* the data that you log is not shown up in a bad way or is lost
|
1.0
|
Test: link origin of messages in debug console - Refs: https://github.com/Microsoft/vscode/issues/24490
- [x] Windows - @dbaeumer
- [x] OS X - @octref
- [x] Linux - @chrmarti
Complexity: 3
We now support showing the origin of messages in debug console. Note that this is currently only supported by the `node2` debug adapter. Have some nedo repository, for example our smoketest and if you have node below version 8 add `"inspector": "protocol"` to the launch configuration.
Verify:
* all output logged should appear in the debug console with a proper origin.
* clicking on the origin takes you to the appropriate file / line number / column
When using `console.log`, `console.warn` or `console.error` from an extension, the log information is serialised from the extension host to the renderer and then played back in the renderers DevTools console as well as debug console. This means that the origin of the console use from the extension is lost. We now preserve the origin and allow access to it.
Use `console.log`, `console.warn` or `console.error` from your extension with strings, objects, primitives etc. Have some extension repository and verify:
* you can expand the message in the extension host dev tools to see the full stack of where the message was sent
* you see the location of the message in the right hand side of the debug console and can click on it
* the data that you log is not shown up in a bad way or is lost
|
non_defect
|
test link origin of messages in debug console refs windows dbaeumer os x octref linux chrmarti complexity we now support showing the origin of messages in debug console note that this is currently only supported by the debug adapter have some nedo repository for example our smoketest and if you have node below version add inspector protocol to the launch configuration verify all output logged should appear in the debug console with a proper origin clicking on the origin takes you to the appropriate file line number column when using console log console warn or console error from an extension the log information is serialised from the extension host to the renderer and then played back in the renderers devtools console as well as debug console this means that the origin of the console use from the extension is lost we now preserve the origin and allow access to it use console log console warn or console error from your extension with strings objects primitives etc have some extension repository and verify you can expand the message in the extension host dev tools to see the full stack of where the message was sent you see the location of the message in the right hand side of the debug console and can click on it the data that you log is not shown up in a bad way or is lost
| 0
|
153,395
| 5,891,231,672
|
IssuesEvent
|
2017-05-17 16:34:17
|
minio/minio
|
https://api.github.com/repos/minio/minio
|
closed
|
[gateway-gcs]: Support marker in ListObjects
|
fixed priority: high
|
```
func (l *gcsGateway) ListObjects(bucket string, prefix string, marker string, delimiter string, maxKeys int) (ListObjectsInfo, error) {
```
Currently marker is being ignored, hence if the prefix has > 1000 objects, it won't be listed.
|
1.0
|
[gateway-gcs]: Support marker in ListObjects - ```
func (l *gcsGateway) ListObjects(bucket string, prefix string, marker string, delimiter string, maxKeys int) (ListObjectsInfo, error) {
```
Currently marker is being ignored, hence if the prefix has > 1000 objects, it won't be listed.
|
non_defect
|
support marker in listobjects func l gcsgateway listobjects bucket string prefix string marker string delimiter string maxkeys int listobjectsinfo error currently marker is being ignored hence if the prefix has objects it won t be listed
| 0
|
10,290
| 3,098,110,554
|
IssuesEvent
|
2015-08-28 08:50:02
|
svaarala/duktape
|
https://api.github.com/repos/svaarala/duktape
|
closed
|
Add refzero finalizer torture config option
|
testing
|
Add a torture option to cause a fake finalizer call for every refzero object. This simulates the case where every object has a finalizer. The fake finalizer should resize/realloc all the stacks if possible but must not create new garbage to avoid a refzero loop.
|
1.0
|
Add refzero finalizer torture config option - Add a torture option to cause a fake finalizer call for every refzero object. This simulates the case where every object has a finalizer. The fake finalizer should resize/realloc all the stacks if possible but must not create new garbage to avoid a refzero loop.
|
non_defect
|
add refzero finalizer torture config option add a torture option to cause a fake finalizer call for every refzero object this simulates the case where every object has a finalizer the fake finalizer should resize realloc all the stacks if possible but must not create new garbage to avoid a refzero loop
| 0
|
321,669
| 9,807,196,303
|
IssuesEvent
|
2019-06-12 13:13:32
|
kubernetes-sigs/cluster-api
|
https://api.github.com/repos/kubernetes-sigs/cluster-api
|
closed
|
Add additional events for MachineSet
|
area/machine area/ux kind/feature priority/important-soon
|
/kind feature
**Describe the solution you'd like**
As a Cluster API user, I would like more insight into the actions associated with a MachineSet. Specifically, I would like to see events for:
- `SuccessfulCreate` - created Machine $name
- `FailedCreate` - error creating Machine $name
- `SuccessfulDelete` - deleted Machine $name
- `FailedDeleted` error deleting Machine $name
This is similar to the events generated for ReplicaSets.
**Anything else you would like to add:**
[Miscellaneous information that will assist in solving the issue.]
|
1.0
|
Add additional events for MachineSet - /kind feature
**Describe the solution you'd like**
As a Cluster API user, I would like more insight into the actions associated with a MachineSet. Specifically, I would like to see events for:
- `SuccessfulCreate` - created Machine $name
- `FailedCreate` - error creating Machine $name
- `SuccessfulDelete` - deleted Machine $name
- `FailedDeleted` error deleting Machine $name
This is similar to the events generated for ReplicaSets.
**Anything else you would like to add:**
[Miscellaneous information that will assist in solving the issue.]
|
non_defect
|
add additional events for machineset kind feature describe the solution you d like as a cluster api user i would like more insight into the actions associated with a machineset specifically i would like to see events for successfulcreate created machine name failedcreate error creating machine name successfuldelete deleted machine name faileddeleted error deleting machine name this is similar to the events generated for replicasets anything else you would like to add
| 0
|
113,880
| 24,505,896,769
|
IssuesEvent
|
2022-10-10 16:19:33
|
sourcegraph/sourcegraph
|
https://api.github.com/repos/sourcegraph/sourcegraph
|
closed
|
insights: capture group aggregations and insights are only returning the last sub-match from a set of matches
|
bug team/code-insights capture-groups-insight insights-aggregation-4.X
|
We should be able to match all capture groups from the "first" capture group, across all sub-matches.
For example given a regexp `(hot)-(dot)` we should be able to match against the string `hot-dog hot-dog` and get `hot:2`
This unblocks use cases like tracking which items are imported from an API in typescript, like the below example ("which components are imported from rxjs the most").
For example, this query matches but [the insight](https://sourcegraph.sourcegraph.com/insights/insight/aW5zaWdodF92aWV3OiIyRmxpeU5qQzBVMTI1Nkc0ekVQdlJDcWwyc00i) and [aggregation](https://sourcegraph.sourcegraph.com/search?q=repo%3A%5E%28github%5C.com%2Fsourcegraph%2Fsourcegraph%29%24+import%5Cs%7B%28%3F%3A%5Cn%5Cs%2B%28%5Cw%2B%29%2C%29%2B%5Cn%7D%5Csfrom%5Cs%27rxjs%27&patternType=regexp&groupBy=group) only return the final match (last match in the set, or last component in the list).



/cc @joelkw @felixfbecker @vovakulikov
|
1.0
|
insights: capture group aggregations and insights are only returning the last sub-match from a set of matches - We should be able to match all capture groups from the "first" capture group, across all sub-matches.
For example given a regexp `(hot)-(dot)` we should be able to match against the string `hot-dog hot-dog` and get `hot:2`
This unblocks use cases like tracking which items are imported from an API in typescript, like the below example ("which components are imported from rxjs the most").
For example, this query matches but [the insight](https://sourcegraph.sourcegraph.com/insights/insight/aW5zaWdodF92aWV3OiIyRmxpeU5qQzBVMTI1Nkc0ekVQdlJDcWwyc00i) and [aggregation](https://sourcegraph.sourcegraph.com/search?q=repo%3A%5E%28github%5C.com%2Fsourcegraph%2Fsourcegraph%29%24+import%5Cs%7B%28%3F%3A%5Cn%5Cs%2B%28%5Cw%2B%29%2C%29%2B%5Cn%7D%5Csfrom%5Cs%27rxjs%27&patternType=regexp&groupBy=group) only return the final match (last match in the set, or last component in the list).



/cc @joelkw @felixfbecker @vovakulikov
|
non_defect
|
insights capture group aggregations and insights are only returning the last sub match from a set of matches we should be able to match all capture groups from the first capture group across all sub matches for example given a regexp hot dot we should be able to match against the string hot dog hot dog and get hot this unblocks use cases like tracking which items are imported from an api in typescript like the below example which components are imported from rxjs the most for example this query matches but and only return the final match last match in the set or last component in the list cc joelkw felixfbecker vovakulikov
| 0
|
85,992
| 8,015,762,035
|
IssuesEvent
|
2018-07-25 11:07:14
|
Microsoft/AzureStorageExplorer
|
https://api.github.com/repos/Microsoft/AzureStorageExplorer
|
opened
|
The displayed font of ‘Delete Blobs' dialog is bigger than other dialogs
|
:gear: blobs testing
|
**Storage Explorer Version**: 1.4.0
**Platform/OS Version**: Windows 10/MacOS High Sierra/ Linux Ubuntu 16.04
**Architecture**: ia32/x64
**Build Number**: 20180724.5
**Commit**: 2605f1c9
**Regression From**: Not a regression
#### Steps to Reproduce: ####
1. Go to Subscriptions -> Storage Accounts.
2. Open one blob container then upload a blob to it.
3. Right click the uploaded blob then select 'Delete' -> Check the displayed font on the dialog.
#### Expected Experience: ####
The displayed font of the dialog as same as other dialogs.
#### Actual Experience: ####
The displayed font of the ‘Delete Blobs' dialog is bigger than other dialogs.

|
1.0
|
The displayed font of ‘Delete Blobs' dialog is bigger than other dialogs - **Storage Explorer Version**: 1.4.0
**Platform/OS Version**: Windows 10/MacOS High Sierra/ Linux Ubuntu 16.04
**Architecture**: ia32/x64
**Build Number**: 20180724.5
**Commit**: 2605f1c9
**Regression From**: Not a regression
#### Steps to Reproduce: ####
1. Go to Subscriptions -> Storage Accounts.
2. Open one blob container then upload a blob to it.
3. Right click the uploaded blob then select 'Delete' -> Check the displayed font on the dialog.
#### Expected Experience: ####
The displayed font of the dialog as same as other dialogs.
#### Actual Experience: ####
The displayed font of the ‘Delete Blobs' dialog is bigger than other dialogs.

|
non_defect
|
the displayed font of ‘delete blobs dialog is bigger than other dialogs storage explorer version platform os version windows macos high sierra linux ubuntu architecture build number commit regression from not a regression steps to reproduce go to subscriptions storage accounts open one blob container then upload a blob to it right click the uploaded blob then select delete check the displayed font on the dialog expected experience the displayed font of the dialog as same as other dialogs actual experience the displayed font of the ‘delete blobs dialog is bigger than other dialogs
| 0
|
42,157
| 10,853,130,332
|
IssuesEvent
|
2019-11-13 14:10:29
|
jOOQ/jOOQ
|
https://api.github.com/repos/jOOQ/jOOQ
|
closed
|
Parser cannot parse views with WITH
|
C: Functionality E: All Editions P: Medium T: Defect
|
This doesn't parse:
```sql
create view x (a) as with x (a) as (select 1) select * from x;
```
|
1.0
|
Parser cannot parse views with WITH - This doesn't parse:
```sql
create view x (a) as with x (a) as (select 1) select * from x;
```
|
defect
|
parser cannot parse views with with this doesn t parse sql create view x a as with x a as select select from x
| 1
|
33,330
| 2,763,980,477
|
IssuesEvent
|
2015-04-29 13:14:20
|
nprapps/dailygraphics
|
https://api.github.com/repos/nprapps/dailygraphics
|
closed
|
Event-tracking with Google Analytics
|
Blocked Priority: Normal
|
Especially useful for graphics that have some amount of interactivity, like lookup tools. Would like to see how many people interact with the pieces, beyond pageviews. How do we do this without double-counting, though?
|
1.0
|
Event-tracking with Google Analytics - Especially useful for graphics that have some amount of interactivity, like lookup tools. Would like to see how many people interact with the pieces, beyond pageviews. How do we do this without double-counting, though?
|
non_defect
|
event tracking with google analytics especially useful for graphics that have some amount of interactivity like lookup tools would like to see how many people interact with the pieces beyond pageviews how do we do this without double counting though
| 0
|
18,714
| 3,080,772,476
|
IssuesEvent
|
2015-08-22 02:11:32
|
prettydiff/prettydiff
|
https://api.github.com/repos/prettydiff/prettydiff
|
closed
|
JavaScript auto-correction incomplete
|
Defect QA
|
I found some deficiencies testing JavaScript auto-correction. Steps to reproduce:
* Beautify /ace/worker-javascript.js
* Reload the /prettydiff.com.xhtml web tool
|
1.0
|
JavaScript auto-correction incomplete - I found some deficiencies testing JavaScript auto-correction. Steps to reproduce:
* Beautify /ace/worker-javascript.js
* Reload the /prettydiff.com.xhtml web tool
|
defect
|
javascript auto correction incomplete i found some deficiencies testing javascript auto correction steps to reproduce beautify ace worker javascript js reload the prettydiff com xhtml web tool
| 1
|
68,506
| 21,673,861,482
|
IssuesEvent
|
2022-05-08 11:54:00
|
SeleniumHQ/selenium
|
https://api.github.com/repos/SeleniumHQ/selenium
|
closed
|
[🐛 Bug]: "Error: Invalid URL: http:/" with Node.js v18
|
I-defect needs-triaging
|
### What happened?
Using selenium-webdriver with Node.js v18 is not possible, as an error is thrown.
```
Error: Invalid URL: http:/
at getRequestOptions (/Users/werner/Desktop/selenium-node-test/node_modules/selenium-webdriver/http/index.js:51:11)
```
To reproduce, install Node.js v18 or higher (e.g. via `nvm install node`).
Given the following `package.json`:
```json
{
"dependencies": {
"selenium-webdriver": "^4.1.2"
}
}
```
Run the sample code in `index.js` with `node index.js`:
```javascript
const { Builder, By, Key, until } = require("selenium-webdriver");
(async function example() {
let driver = await new Builder().forBrowser("chrome").build();
try {
await driver.get("http://www.google.com/ncr");
await driver.findElement(By.name("q")).sendKeys("webdriver", Key.RETURN);
await driver.wait(until.titleIs("webdriver - Google Search"), 1000);
} finally {
await driver.quit();
}
})();
```
With Node.js v18, I get:
```
➜ node index.js
/Users/werner/Desktop/selenium-node-test/node_modules/selenium-webdriver/http/index.js:51
throw new Error('Invalid URL: ' + aUrl)
^
Error: Invalid URL: http:/
at getRequestOptions (/Users/werner/Desktop/selenium-node-test/node_modules/selenium-webdriver/http/index.js:51:11)
at new HttpClient (/Users/werner/Desktop/selenium-node-test/node_modules/selenium-webdriver/http/index.js:90:21)
at getStatus (/Users/werner/Desktop/selenium-node-test/node_modules/selenium-webdriver/http/util.js:38:18)
at checkServerStatus (/Users/werner/Desktop/selenium-node-test/node_modules/selenium-webdriver/http/util.js:76:14)
at /Users/werner/Desktop/selenium-node-test/node_modules/selenium-webdriver/http/util.js:74:5
at new Promise (<anonymous>)
at Object.waitForServer (/Users/werner/Desktop/selenium-node-test/node_modules/selenium-webdriver/http/util.js:57:10)
at /Users/werner/Desktop/selenium-node-test/node_modules/selenium-webdriver/remote/index.js:251:24
at new Promise (<anonymous>)
at /Users/werner/Desktop/selenium-node-test/node_modules/selenium-webdriver/remote/index.js:246:20
Node.js v18.1.0
```
With Node.js v16 (the current LTS release), it works fine. It should be noted though that with v18, the variables for the `.format` call are:
```
serverUrl: http:/, hostname: undefined, port: 52511, self.path_: /
```
Whereas for v16, the variables are:
```
serverUrl: http://127.0.0.1:52535/, hostname: 127.0.0.1, port: 52535, self.path_: /
```
Notably, the hostname is undefined in Node.js v18. This leads me to the function `os.networkInterfaces()` whose output is different in v18 compared to v16.
Here is v16:
```
> os.networkInterfaces()
{
lo0: [
{
address: '127.0.0.1',
netmask: '255.0.0.0',
family: 'IPv4',
mac: '00:00:00:00:00:00',
internal: true,
cidr: '127.0.0.1/8'
}
...
```
And here is v18:
```
> os.networkInterfaces()
{
lo0: [
{
address: '127.0.0.1',
netmask: '255.0.0.0',
family: 4,
mac: '00:00:00:00:00:00',
internal: true,
cidr: '127.0.0.1/8'
},
...
```
See that the `family` property now reads `4` and not `IPv4`.
### How can we reproduce the issue?
```shell
Shown above.
```
### Relevant log output
```shell
Log already shown in reproducible example above.
```
### Operating System
Any
### Selenium version
4.1.2
### What are the browser(s) and version(s) where you see this issue?
Irrelevant
### What are the browser driver(s) and version(s) where you see this issue?
Irrelevant
### Are you using Selenium Grid?
No
|
1.0
|
[🐛 Bug]: "Error: Invalid URL: http:/" with Node.js v18 - ### What happened?
Using selenium-webdriver with Node.js v18 is not possible, as an error is thrown.
```
Error: Invalid URL: http:/
at getRequestOptions (/Users/werner/Desktop/selenium-node-test/node_modules/selenium-webdriver/http/index.js:51:11)
```
To reproduce, install Node.js v18 or higher (e.g. via `nvm install node`).
Given the following `package.json`:
```json
{
"dependencies": {
"selenium-webdriver": "^4.1.2"
}
}
```
Run the sample code in `index.js` with `node index.js`:
```javascript
const { Builder, By, Key, until } = require("selenium-webdriver");
(async function example() {
let driver = await new Builder().forBrowser("chrome").build();
try {
await driver.get("http://www.google.com/ncr");
await driver.findElement(By.name("q")).sendKeys("webdriver", Key.RETURN);
await driver.wait(until.titleIs("webdriver - Google Search"), 1000);
} finally {
await driver.quit();
}
})();
```
With Node.js v18, I get:
```
➜ node index.js
/Users/werner/Desktop/selenium-node-test/node_modules/selenium-webdriver/http/index.js:51
throw new Error('Invalid URL: ' + aUrl)
^
Error: Invalid URL: http:/
at getRequestOptions (/Users/werner/Desktop/selenium-node-test/node_modules/selenium-webdriver/http/index.js:51:11)
at new HttpClient (/Users/werner/Desktop/selenium-node-test/node_modules/selenium-webdriver/http/index.js:90:21)
at getStatus (/Users/werner/Desktop/selenium-node-test/node_modules/selenium-webdriver/http/util.js:38:18)
at checkServerStatus (/Users/werner/Desktop/selenium-node-test/node_modules/selenium-webdriver/http/util.js:76:14)
at /Users/werner/Desktop/selenium-node-test/node_modules/selenium-webdriver/http/util.js:74:5
at new Promise (<anonymous>)
at Object.waitForServer (/Users/werner/Desktop/selenium-node-test/node_modules/selenium-webdriver/http/util.js:57:10)
at /Users/werner/Desktop/selenium-node-test/node_modules/selenium-webdriver/remote/index.js:251:24
at new Promise (<anonymous>)
at /Users/werner/Desktop/selenium-node-test/node_modules/selenium-webdriver/remote/index.js:246:20
Node.js v18.1.0
```
With Node.js v16 (the current LTS release), it works fine. It should be noted though that with v18, the variables for the `.format` call are:
```
serverUrl: http:/, hostname: undefined, port: 52511, self.path_: /
```
Whereas for v16, the variables are:
```
serverUrl: http://127.0.0.1:52535/, hostname: 127.0.0.1, port: 52535, self.path_: /
```
Notably, the hostname is undefined in Node.js v18. This leads me to the function `os.networkInterfaces()` whose output is different in v18 compared to v16.
Here is v16:
```
> os.networkInterfaces()
{
lo0: [
{
address: '127.0.0.1',
netmask: '255.0.0.0',
family: 'IPv4',
mac: '00:00:00:00:00:00',
internal: true,
cidr: '127.0.0.1/8'
}
...
```
And here is v18:
```
> os.networkInterfaces()
{
lo0: [
{
address: '127.0.0.1',
netmask: '255.0.0.0',
family: 4,
mac: '00:00:00:00:00:00',
internal: true,
cidr: '127.0.0.1/8'
},
...
```
See that the `family` property now reads `4` and not `IPv4`.
### How can we reproduce the issue?
```shell
Shown above.
```
### Relevant log output
```shell
Log already shown in reproducible example above.
```
### Operating System
Any
### Selenium version
4.1.2
### What are the browser(s) and version(s) where you see this issue?
Irrelevant
### What are the browser driver(s) and version(s) where you see this issue?
Irrelevant
### Are you using Selenium Grid?
No
|
defect
|
error invalid url http with node js what happened using selenium webdriver with node js is not possible as an error is thrown error invalid url http at getrequestoptions users werner desktop selenium node test node modules selenium webdriver http index js to reproduce install node js or higher e g via nvm install node given the following package json json dependencies selenium webdriver run the sample code in index js with node index js javascript const builder by key until require selenium webdriver async function example let driver await new builder forbrowser chrome build try await driver get await driver findelement by name q sendkeys webdriver key return await driver wait until titleis webdriver google search finally await driver quit with node js i get ➜ node index js users werner desktop selenium node test node modules selenium webdriver http index js throw new error invalid url aurl error invalid url http at getrequestoptions users werner desktop selenium node test node modules selenium webdriver http index js at new httpclient users werner desktop selenium node test node modules selenium webdriver http index js at getstatus users werner desktop selenium node test node modules selenium webdriver http util js at checkserverstatus users werner desktop selenium node test node modules selenium webdriver http util js at users werner desktop selenium node test node modules selenium webdriver http util js at new promise at object waitforserver users werner desktop selenium node test node modules selenium webdriver http util js at users werner desktop selenium node test node modules selenium webdriver remote index js at new promise at users werner desktop selenium node test node modules selenium webdriver remote index js node js with node js the current lts release it works fine it should be noted though that with the variables for the format call are serverurl http hostname undefined port self path whereas for the variables are serverurl hostname port self path notably the hostname is undefined in node js this leads me to the function os networkinterfaces whose output is different in compared to here is os networkinterfaces address netmask family mac internal true cidr and here is os networkinterfaces address netmask family mac internal true cidr see that the family property now reads and not how can we reproduce the issue shell shown above relevant log output shell log already shown in reproducible example above operating system any selenium version what are the browser s and version s where you see this issue irrelevant what are the browser driver s and version s where you see this issue irrelevant are you using selenium grid no
| 1
|
75,711
| 26,009,453,324
|
IssuesEvent
|
2022-12-20 23:15:28
|
HEIG-GAPS/slyum
|
https://api.github.com/repos/HEIG-GAPS/slyum
|
closed
|
Auto update sur mac os
|
Type-Defect Priority-Medium auto-migrated
|
```
Essayer d'obtenir le chemin complet dans lequel se trouve la .jar. Sur Mac Os X
il se trouve dans le .app et au lieux de remplacer celui là (dans
app/java(Slyum.jar), il rajoute un nouveau .jar a la racine du .app. A la
limite essayer d'ajouter le chemin manuellement si on est sur Mac.
```
Original issue reported on code.google.com by `davidmis...@gmail.com` on 10 Sep 2014 at 7:10
|
1.0
|
Auto update sur mac os - ```
Essayer d'obtenir le chemin complet dans lequel se trouve la .jar. Sur Mac Os X
il se trouve dans le .app et au lieux de remplacer celui là (dans
app/java(Slyum.jar), il rajoute un nouveau .jar a la racine du .app. A la
limite essayer d'ajouter le chemin manuellement si on est sur Mac.
```
Original issue reported on code.google.com by `davidmis...@gmail.com` on 10 Sep 2014 at 7:10
|
defect
|
auto update sur mac os essayer d obtenir le chemin complet dans lequel se trouve la jar sur mac os x il se trouve dans le app et au lieux de remplacer celui là dans app java slyum jar il rajoute un nouveau jar a la racine du app a la limite essayer d ajouter le chemin manuellement si on est sur mac original issue reported on code google com by davidmis gmail com on sep at
| 1
|
53,964
| 13,262,586,921
|
IssuesEvent
|
2020-08-20 22:06:59
|
icecube-trac/tix4
|
https://api.github.com/repos/icecube-trac/tix4
|
closed
|
[clsim] Frame cache never flushed if no light sources encountered (Trac #2402)
|
Migrated from Trac combo simulation defect
|
I3CLSimClientModule never flushes its frame cache it encounters 1 or more Q frames, but none contain work.
The underlying condition is an error itself (why run photon propagation with no work?), but the case should still be caught so the frames aren't lost.
<details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/2402">https://code.icecube.wisc.edu/projects/icecube/ticket/2402</a>, reported by jvansantenand owned by jvansanten</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2020-06-24T12:31:42",
"_ts": "1593001902142004",
"description": "I3CLSimClientModule never flushes its frame cache it encounters 1 or more Q frames, but none contain work.\n\nThe underlying condition is an error itself (why run photon propagation with no work?), but the case should still be caught so the frames aren't lost. ",
"reporter": "jvansanten",
"cc": "wtian, dxu",
"resolution": "fixed",
"time": "2020-01-16T18:47:30",
"component": "combo simulation",
"summary": "[clsim] Frame cache never flushed if no light sources encountered",
"priority": "normal",
"keywords": "",
"milestone": "Autumnal Equinox 2020",
"owner": "jvansanten",
"type": "defect"
}
```
</p>
</details>
|
1.0
|
[clsim] Frame cache never flushed if no light sources encountered (Trac #2402) - I3CLSimClientModule never flushes its frame cache it encounters 1 or more Q frames, but none contain work.
The underlying condition is an error itself (why run photon propagation with no work?), but the case should still be caught so the frames aren't lost.
<details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/2402">https://code.icecube.wisc.edu/projects/icecube/ticket/2402</a>, reported by jvansantenand owned by jvansanten</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2020-06-24T12:31:42",
"_ts": "1593001902142004",
"description": "I3CLSimClientModule never flushes its frame cache it encounters 1 or more Q frames, but none contain work.\n\nThe underlying condition is an error itself (why run photon propagation with no work?), but the case should still be caught so the frames aren't lost. ",
"reporter": "jvansanten",
"cc": "wtian, dxu",
"resolution": "fixed",
"time": "2020-01-16T18:47:30",
"component": "combo simulation",
"summary": "[clsim] Frame cache never flushed if no light sources encountered",
"priority": "normal",
"keywords": "",
"milestone": "Autumnal Equinox 2020",
"owner": "jvansanten",
"type": "defect"
}
```
</p>
</details>
|
defect
|
frame cache never flushed if no light sources encountered trac never flushes its frame cache it encounters or more q frames but none contain work the underlying condition is an error itself why run photon propagation with no work but the case should still be caught so the frames aren t lost migrated from json status closed changetime ts description never flushes its frame cache it encounters or more q frames but none contain work n nthe underlying condition is an error itself why run photon propagation with no work but the case should still be caught so the frames aren t lost reporter jvansanten cc wtian dxu resolution fixed time component combo simulation summary frame cache never flushed if no light sources encountered priority normal keywords milestone autumnal equinox owner jvansanten type defect
| 1
|
81,003
| 30,655,474,497
|
IssuesEvent
|
2023-07-25 11:50:46
|
vector-im/element-android
|
https://api.github.com/repos/vector-im/element-android
|
opened
|
`Bug` Element Call keep ringing for 4 HOURS!
|
T-Defect
|
### Steps to reproduce
1. Where are you starting? What can you see?
- Install and login to your Element account on Android Table
- Then idle your tablet
Situation:
- So I got home when I heard a phone call ringtone ringing in the house.
- When I eventually found my tablet. It kept ringing for a call request that I had already answered on my Android phone 4 hours ago while at work.
- Meaning, Element on my Android Table was ringing NON-STOP for the past 4 hours!!!
Note about log:
- I want to send one, but when I check the bug report function on Android. It doesn't have something similar to the Desktop Send Log function.

### Outcome
#### What did you expect?
When the call is already answered on another device. End call on other devices.
#### What happened instead?
My android tablet kept ringing for the past 4 hours when the call already ended via other device (e.g. my Android smartphone)
### Your phone model
Xiaomi Pad 5
### Operating system version
Android 13, MIUI 14
### Application version and app store
1.6.3
### Homeserver
_No response_
### Will you send logs?
No
### Are you willing to provide a PR?
No
|
1.0
|
`Bug` Element Call keep ringing for 4 HOURS! - ### Steps to reproduce
1. Where are you starting? What can you see?
- Install and login to your Element account on Android Table
- Then idle your tablet
Situation:
- So I got home when I heard a phone call ringtone ringing in the house.
- When I eventually found my tablet. It kept ringing for a call request that I had already answered on my Android phone 4 hours ago while at work.
- Meaning, Element on my Android Table was ringing NON-STOP for the past 4 hours!!!
Note about log:
- I want to send one, but when I check the bug report function on Android. It doesn't have something similar to the Desktop Send Log function.

### Outcome
#### What did you expect?
When the call is already answered on another device. End call on other devices.
#### What happened instead?
My android tablet kept ringing for the past 4 hours when the call already ended via other device (e.g. my Android smartphone)
### Your phone model
Xiaomi Pad 5
### Operating system version
Android 13, MIUI 14
### Application version and app store
1.6.3
### Homeserver
_No response_
### Will you send logs?
No
### Are you willing to provide a PR?
No
|
defect
|
bug element call keep ringing for hours steps to reproduce where are you starting what can you see install and login to your element account on android table then idle your tablet situation so i got home when i heard a phone call ringtone ringing in the house when i eventually found my tablet it kept ringing for a call request that i had already answered on my android phone hours ago while at work meaning element on my android table was ringing non stop for the past hours note about log i want to send one but when i check the bug report function on android it doesn t have something similar to the desktop send log function outcome what did you expect when the call is already answered on another device end call on other devices what happened instead my android tablet kept ringing for the past hours when the call already ended via other device e g my android smartphone your phone model xiaomi pad operating system version android miui application version and app store homeserver no response will you send logs no are you willing to provide a pr no
| 1
|
217,801
| 7,328,281,482
|
IssuesEvent
|
2018-03-04 19:13:46
|
RoboJackets/robocup-software
|
https://api.github.com/repos/RoboJackets/robocup-software
|
closed
|
Deprecate 14.04
|
area / support exp / adept (2) priority / wishlist status / developing
|
This is a (possibly) long term issue.
If we decide that no one is using 14.04, then we might do this right now.
This issue will track things that need to be done when dropping 14.04 support. This dosen't apply to robojackets/robocup-firmware, as that already requires 16.04. See comments on #789 for more information.
Dropping 14.04 will mean we forever loose the PPA madness that we dealt with in previous years (I will never let that happen again). If you have questions, or objections, note them here. We aren't doing anything just yet.
- [x] See if anyone in RJ is using 14.04 :+1:
- [x] IGVC :+1:
- [x] RoboRacing :+1:
- [x] Outreach/TE Laptops :+1:
- [x] Any RC Members :+1:
- [x] See if RJ has any demo laptops with 14.04 :+1:
- [ ] See if anyone in the community needs 14.04 support
- [x] Determine if it's reasonable to drop 14.04 support (EOL for 14.04 is in 2019)
- [x] Set a target date for dropping 14.04
- [ ] Investigate arch, fedora, or debian8/9 build systems (we can do this, since we're dropping 14.04).
|
1.0
|
Deprecate 14.04 - This is a (possibly) long term issue.
If we decide that no one is using 14.04, then we might do this right now.
This issue will track things that need to be done when dropping 14.04 support. This dosen't apply to robojackets/robocup-firmware, as that already requires 16.04. See comments on #789 for more information.
Dropping 14.04 will mean we forever loose the PPA madness that we dealt with in previous years (I will never let that happen again). If you have questions, or objections, note them here. We aren't doing anything just yet.
- [x] See if anyone in RJ is using 14.04 :+1:
- [x] IGVC :+1:
- [x] RoboRacing :+1:
- [x] Outreach/TE Laptops :+1:
- [x] Any RC Members :+1:
- [x] See if RJ has any demo laptops with 14.04 :+1:
- [ ] See if anyone in the community needs 14.04 support
- [x] Determine if it's reasonable to drop 14.04 support (EOL for 14.04 is in 2019)
- [x] Set a target date for dropping 14.04
- [ ] Investigate arch, fedora, or debian8/9 build systems (we can do this, since we're dropping 14.04).
|
non_defect
|
deprecate this is a possibly long term issue if we decide that no one is using then we might do this right now this issue will track things that need to be done when dropping support this dosen t apply to robojackets robocup firmware as that already requires see comments on for more information dropping will mean we forever loose the ppa madness that we dealt with in previous years i will never let that happen again if you have questions or objections note them here we aren t doing anything just yet see if anyone in rj is using igvc roboracing outreach te laptops any rc members see if rj has any demo laptops with see if anyone in the community needs support determine if it s reasonable to drop support eol for is in set a target date for dropping investigate arch fedora or build systems we can do this since we re dropping
| 0
|
4,238
| 15,856,288,856
|
IssuesEvent
|
2021-04-08 01:59:30
|
MicrosoftDocs/azure-docs
|
https://api.github.com/repos/MicrosoftDocs/azure-docs
|
closed
|
ToC missing
|
Pri2 automation/svc change-inventory-management/subsvc cxp doc-bug triaged
|
Is this article supposed to be connected to the Automation ToC somewhere? It's not showing anywhere for me.
I assume it should go in the same section as this doc.
https://docs.microsoft.com/en-us/azure/automation/troubleshoot/change-tracking
---
#### Document Details
⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.*
* ID: 1517ef9e-276f-7d37-73b1-bea383549224
* Version Independent ID: 23e001b4-8b1d-4316-a961-1dc956c26be3
* Content: [Troubleshoot changes on an Azure VM in Azure Automation](https://docs.microsoft.com/en-us/azure/automation/automation-tutorial-troubleshoot-changes)
* Content Source: [articles/automation/automation-tutorial-troubleshoot-changes.md](https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/automation/automation-tutorial-troubleshoot-changes.md)
* Service: **automation**
* Sub-service: **change-inventory-management**
* GitHub Login: @MGoedtel
* Microsoft Alias: **magoedte**
|
1.0
|
ToC missing - Is this article supposed to be connected to the Automation ToC somewhere? It's not showing anywhere for me.
I assume it should go in the same section as this doc.
https://docs.microsoft.com/en-us/azure/automation/troubleshoot/change-tracking
---
#### Document Details
⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.*
* ID: 1517ef9e-276f-7d37-73b1-bea383549224
* Version Independent ID: 23e001b4-8b1d-4316-a961-1dc956c26be3
* Content: [Troubleshoot changes on an Azure VM in Azure Automation](https://docs.microsoft.com/en-us/azure/automation/automation-tutorial-troubleshoot-changes)
* Content Source: [articles/automation/automation-tutorial-troubleshoot-changes.md](https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/automation/automation-tutorial-troubleshoot-changes.md)
* Service: **automation**
* Sub-service: **change-inventory-management**
* GitHub Login: @MGoedtel
* Microsoft Alias: **magoedte**
|
non_defect
|
toc missing is this article supposed to be connected to the automation toc somewhere it s not showing anywhere for me i assume it should go in the same section as this doc document details ⚠ do not edit this section it is required for docs microsoft com ➟ github issue linking id version independent id content content source service automation sub service change inventory management github login mgoedtel microsoft alias magoedte
| 0
|
26,970
| 4,839,671,269
|
IssuesEvent
|
2016-11-09 10:18:09
|
google/google-authenticator-libpam
|
https://api.github.com/repos/google/google-authenticator-libpam
|
opened
|
pam google authenticator and git
|
libpam Priority-Medium Type-Defect
|
_From @ThomasHabets on October 10, 2014 8:7_
Original [issue 270](https://code.google.com/p/google-authenticator/issues/detail?id=270) created by roberto@spadim.com.br on 2013-05-20T22:50:48.000Z:
Hi guys i want to configure two users
one is a default ssh user let's call "userssh" and
the other is a git user (/usr/bin/git-shell) let's call "usergit"
my question is...
how to configure /etc/pam.d/sshd to use git without google authenticator? only with ssh keys
thanks
_Copied from original issue: google/google-authenticator#269_
|
1.0
|
pam google authenticator and git - _From @ThomasHabets on October 10, 2014 8:7_
Original [issue 270](https://code.google.com/p/google-authenticator/issues/detail?id=270) created by roberto@spadim.com.br on 2013-05-20T22:50:48.000Z:
Hi guys i want to configure two users
one is a default ssh user let's call "userssh" and
the other is a git user (/usr/bin/git-shell) let's call "usergit"
my question is...
how to configure /etc/pam.d/sshd to use git without google authenticator? only with ssh keys
thanks
_Copied from original issue: google/google-authenticator#269_
|
defect
|
pam google authenticator and git from thomashabets on october original created by roberto spadim com br on hi guys i want to configure two users one is a default ssh user let s call quot userssh quot and the other is a git user usr bin git shell let s call quot usergit quot my question is how to configure etc pam d sshd to use git without google authenticator only with ssh keys thanks copied from original issue google google authenticator
| 1
|
58,856
| 11,906,295,410
|
IssuesEvent
|
2020-03-30 20:06:35
|
google/iree
|
https://api.github.com/repos/google/iree
|
closed
|
rem.mlir and reshape.mlir should be triaged on llvm backend
|
bug codegen
|
Disabling for now due to error. Need to triage and re-enable.
|
1.0
|
rem.mlir and reshape.mlir should be triaged on llvm backend - Disabling for now due to error. Need to triage and re-enable.
|
non_defect
|
rem mlir and reshape mlir should be triaged on llvm backend disabling for now due to error need to triage and re enable
| 0
|
145,149
| 13,136,444,739
|
IssuesEvent
|
2020-08-07 06:07:21
|
Azure/azure-cli
|
https://api.github.com/repos/Azure/azure-cli
|
closed
|
adding "Storage" as possible option for --destination-address-prefixes
|
Customer Usage Documentation Feature Request Network OKR3.2 Candidate
|
adding "Storage" as possible option for --destination-address-prefixes
---
#### Document Details
⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.*
* ID: afe4941c-7b46-b9fb-1c52-98e68f6354cc
* Version Independent ID: d1bc72fb-ccf9-9645-7b1d-98c91bc75a55
* Content: [az network nsg rule](https://docs.microsoft.com/en-us/cli/azure/network/nsg/rule?view=azure-cli-latest)
* Content Source: [src/azure-cli/azure/cli/command_modules/network/_help.py](https://github.com/Azure/azure-cli/blob/dev/src/azure-cli/azure/cli/command_modules/network/_help.py)
* Service: **virtual-network**
* GitHub Login: @rloutlaw
* Microsoft Alias: **routlaw**
|
1.0
|
adding "Storage" as possible option for --destination-address-prefixes - adding "Storage" as possible option for --destination-address-prefixes
---
#### Document Details
⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.*
* ID: afe4941c-7b46-b9fb-1c52-98e68f6354cc
* Version Independent ID: d1bc72fb-ccf9-9645-7b1d-98c91bc75a55
* Content: [az network nsg rule](https://docs.microsoft.com/en-us/cli/azure/network/nsg/rule?view=azure-cli-latest)
* Content Source: [src/azure-cli/azure/cli/command_modules/network/_help.py](https://github.com/Azure/azure-cli/blob/dev/src/azure-cli/azure/cli/command_modules/network/_help.py)
* Service: **virtual-network**
* GitHub Login: @rloutlaw
* Microsoft Alias: **routlaw**
|
non_defect
|
adding storage as possible option for destination address prefixes adding storage as possible option for destination address prefixes document details ⚠ do not edit this section it is required for docs microsoft com ➟ github issue linking id version independent id content content source service virtual network github login rloutlaw microsoft alias routlaw
| 0
|
24,789
| 4,103,748,831
|
IssuesEvent
|
2016-06-04 22:08:05
|
google/google-api-dotnet-client
|
https://api.github.com/repos/google/google-api-dotnet-client
|
closed
|
Translate NuGet package throws MissingMethodException
|
auto-migrated Priority-Medium Type-Defect
|
```
What steps will reproduce the problem?
1.New Class Library project
2.Add Google.APIs.Translate.V2 package(and dependencies)
3.Create simple class with single method based on Translate TranslateText sample
4.Create unit test of that method
5.Run unit test
What is the expected output?
Console output as per the example at
https://code.google.com/p/google-api-dotnet-client/source/browse/Translate.Trans
lateText/Program.cs?repo=samples
What do you see instead?
Exception thrown when attempting to create the TranslateService instance.
Detail:
System.MissingMethodException was unhandled by user code
HResult=-2146233069
Message=Method not found: 'Void System.Net.Http.HttpClientHandler.set_AutomaticDecompression(System.Net.DecompressionMethods)'.
Source=Google.Apis.Core
StackTrace:
at Google.Apis.Http.HttpClientFactory.CreateHandler(CreateHttpClientArgs args)
at Google.Apis.Http.HttpClientFactory.CreateHttpClient(CreateHttpClientArgs args) in c:\code\google.com\google-api-dotnet-client\default\Tools\Google.Apis.Release\bin\Debug\output\default\Src\GoogleApis.Core\Apis\Http\HttpClientFactory.cs:line 36
at Google.Apis.Services.BaseClientService.CreateHttpClient(Initializer initializer) in c:\code\google.com\google-api-dotnet-client\default\Tools\Google.Apis.Release\bin\Debug\output\default\Src\GoogleApis\Apis\Services\BaseClientService.cs:line 168
at Google.Apis.Services.BaseClientService..ctor(Initializer initializer) in c:\code\google.com\google-api-dotnet-client\default\Tools\Google.Apis.Release\bin\Debug\output\default\Src\GoogleApis\Apis\Services\BaseClientService.cs:line 136
at Google.Apis.Translate.v2.TranslateService..ctor(Initializer initializer) in c:\code\google.com\google-api-dotnet-client\default_182\Tools\Google.Apis.NuGet.Publisher\Template\Build\Google.Apis.Translate.v2.cs:line 155
at (remainder omitted)
InnerException:
What version of the product are you using?
Google.APIs.Translate.v2.dll 1.8.1.33
What is your operating system?
Windows 8.1
What is your IDE?
Visual Studio 2013 Update 2
What is the .NET framework version?
4.5
Please provide any additional information below.
```
Original issue reported on code.google.com by `sean.gif...@itracks.com` on 14 Jun 2014 at 3:55
|
1.0
|
Translate NuGet package throws MissingMethodException - ```
What steps will reproduce the problem?
1.New Class Library project
2.Add Google.APIs.Translate.V2 package(and dependencies)
3.Create simple class with single method based on Translate TranslateText sample
4.Create unit test of that method
5.Run unit test
What is the expected output?
Console output as per the example at
https://code.google.com/p/google-api-dotnet-client/source/browse/Translate.Trans
lateText/Program.cs?repo=samples
What do you see instead?
Exception thrown when attempting to create the TranslateService instance.
Detail:
System.MissingMethodException was unhandled by user code
HResult=-2146233069
Message=Method not found: 'Void System.Net.Http.HttpClientHandler.set_AutomaticDecompression(System.Net.DecompressionMethods)'.
Source=Google.Apis.Core
StackTrace:
at Google.Apis.Http.HttpClientFactory.CreateHandler(CreateHttpClientArgs args)
at Google.Apis.Http.HttpClientFactory.CreateHttpClient(CreateHttpClientArgs args) in c:\code\google.com\google-api-dotnet-client\default\Tools\Google.Apis.Release\bin\Debug\output\default\Src\GoogleApis.Core\Apis\Http\HttpClientFactory.cs:line 36
at Google.Apis.Services.BaseClientService.CreateHttpClient(Initializer initializer) in c:\code\google.com\google-api-dotnet-client\default\Tools\Google.Apis.Release\bin\Debug\output\default\Src\GoogleApis\Apis\Services\BaseClientService.cs:line 168
at Google.Apis.Services.BaseClientService..ctor(Initializer initializer) in c:\code\google.com\google-api-dotnet-client\default\Tools\Google.Apis.Release\bin\Debug\output\default\Src\GoogleApis\Apis\Services\BaseClientService.cs:line 136
at Google.Apis.Translate.v2.TranslateService..ctor(Initializer initializer) in c:\code\google.com\google-api-dotnet-client\default_182\Tools\Google.Apis.NuGet.Publisher\Template\Build\Google.Apis.Translate.v2.cs:line 155
at (remainder omitted)
InnerException:
What version of the product are you using?
Google.APIs.Translate.v2.dll 1.8.1.33
What is your operating system?
Windows 8.1
What is your IDE?
Visual Studio 2013 Update 2
What is the .NET framework version?
4.5
Please provide any additional information below.
```
Original issue reported on code.google.com by `sean.gif...@itracks.com` on 14 Jun 2014 at 3:55
|
defect
|
translate nuget package throws missingmethodexception what steps will reproduce the problem new class library project add google apis translate package and dependencies create simple class with single method based on translate translatetext sample create unit test of that method run unit test what is the expected output console output as per the example at latetext program cs repo samples what do you see instead exception thrown when attempting to create the translateservice instance detail system missingmethodexception was unhandled by user code hresult message method not found void system net http httpclienthandler set automaticdecompression system net decompressionmethods source google apis core stacktrace at google apis http httpclientfactory createhandler createhttpclientargs args at google apis http httpclientfactory createhttpclient createhttpclientargs args in c code google com google api dotnet client default tools google apis release bin debug output default src googleapis core apis http httpclientfactory cs line at google apis services baseclientservice createhttpclient initializer initializer in c code google com google api dotnet client default tools google apis release bin debug output default src googleapis apis services baseclientservice cs line at google apis services baseclientservice ctor initializer initializer in c code google com google api dotnet client default tools google apis release bin debug output default src googleapis apis services baseclientservice cs line at google apis translate translateservice ctor initializer initializer in c code google com google api dotnet client default tools google apis nuget publisher template build google apis translate cs line at remainder omitted innerexception what version of the product are you using google apis translate dll what is your operating system windows what is your ide visual studio update what is the net framework version please provide any additional information below original issue reported on code google com by sean gif itracks com on jun at
| 1
|
72,776
| 24,285,243,066
|
IssuesEvent
|
2022-09-28 21:21:33
|
jOOQ/jOOQ
|
https://api.github.com/repos/jOOQ/jOOQ
|
opened
|
Metadata API not returning correct type for enum columns
|
T: Defect
|
### Expected behavior
The metadata API correctly reports the SQL type of all columns.
### Actual behavior
For any columns that have an enum type, the metadata API reports their type as `Object` and their dataType as "other".
### Steps to reproduce the problem
Have a schema defined as:
``` sql
CREATE TYPE public.my_enum AS ENUM (
'foo',
'bar',
'baz'
);
CREATE TABLE public.my_table (
id bigint NOT NULL,
created_at timestamp with time zone DEFAULT now() NOT NULL,
name text,
my_enum_column public.my_enum NOT NULL,
);
```
The following test passes:
``` kotlin
// this is Kotlin, using kotest, but hopefully pretty easy to decipher
test("something fishy going on here") {
val jooq = DSL.using(myDataSource, SQLDialect.POSTGRES)
val myTable = jooq.meta().tables.find { it.name == "my_table" }!!
// This looks right...
val createdAt = myTable.field("created_at")!!
createdAt.dataType.nullability() shouldBe Nullability.NOT_NULL
createdAt.dataType.typeName shouldBe "timestamp with time zone"
// ...but none of this seems right
val myEnumField = myTable.field("my_enum_column")!!
myEnumField.dataType.typeName shouldBe "other" // ???
myEnumField.dataType.castTypeName shouldBe "other" // ???
myEnumField.type shouldBe Any::class.java // ???
}
```
For any enum column, the `type` is `Object` (`Any` in Kotlin), and the `dataType.typeName` is "other". For non-enum columns, `dataType.typeName` gives me the correct SQL for the type.
I'm also using the jOOQ code generator, and it generates the correct types for enum columns. That is, it creates an enum class and uses that as the type for the corresponding fields. The generated code for this field looks something like (reformatted to avoid long lines):
``` java
public final TableField<MyTableRecord, MyEnum> MY_ENUM_COLUMN =
createField(
DSL.name("my_enum_column"),
SQLDataType.VARCHAR
.nullable(false)
.asEnumDataType(com.example.schema.enums.MyEnum.class),
this,
""
)
```
So it appears that jOOQ's code generator has the type information.
## Note
I'd previously tried this with `org.jooq:jooq:3.14.11`, and also has problems with nullability being reported incorrectly for enum columns (despite the code generator getting it right). Upgrading to `org.jooq:jooq:3.16.10` fixes the nullability problem, but not the type problem. The datatype is still "other", and the type is still `Object`.
Upgrading to `org.jooq:jooq:3.17.4` yields the same behavior as `org.jooq:jooq:3.16.10`.
See also [this Stack Overflow question](https://stackoverflow.com/q/73794728/90848).
### jOOQ Version
org.jooq:jooq:3.14.11, org.jooq:jooq:3.16.10, org.jooq:jooq:3.17.4
### Database product and version
postgres:11-alpine
### Java Version
openjdk 11.0.16 2022-07-19, openjdk 17.0.4 2022-07-19
### OS Version
Ubuntu Linux 20.04
### JDBC driver name and version (include name if unofficial driver)
org.postgresql:postgresql:42.5.0
|
1.0
|
Metadata API not returning correct type for enum columns - ### Expected behavior
The metadata API correctly reports the SQL type of all columns.
### Actual behavior
For any columns that have an enum type, the metadata API reports their type as `Object` and their dataType as "other".
### Steps to reproduce the problem
Have a schema defined as:
``` sql
CREATE TYPE public.my_enum AS ENUM (
'foo',
'bar',
'baz'
);
CREATE TABLE public.my_table (
id bigint NOT NULL,
created_at timestamp with time zone DEFAULT now() NOT NULL,
name text,
my_enum_column public.my_enum NOT NULL,
);
```
The following test passes:
``` kotlin
// this is Kotlin, using kotest, but hopefully pretty easy to decipher
test("something fishy going on here") {
val jooq = DSL.using(myDataSource, SQLDialect.POSTGRES)
val myTable = jooq.meta().tables.find { it.name == "my_table" }!!
// This looks right...
val createdAt = myTable.field("created_at")!!
createdAt.dataType.nullability() shouldBe Nullability.NOT_NULL
createdAt.dataType.typeName shouldBe "timestamp with time zone"
// ...but none of this seems right
val myEnumField = myTable.field("my_enum_column")!!
myEnumField.dataType.typeName shouldBe "other" // ???
myEnumField.dataType.castTypeName shouldBe "other" // ???
myEnumField.type shouldBe Any::class.java // ???
}
```
For any enum column, the `type` is `Object` (`Any` in Kotlin), and the `dataType.typeName` is "other". For non-enum columns, `dataType.typeName` gives me the correct SQL for the type.
I'm also using the jOOQ code generator, and it generates the correct types for enum columns. That is, it creates an enum class and uses that as the type for the corresponding fields. The generated code for this field looks something like (reformatted to avoid long lines):
``` java
public final TableField<MyTableRecord, MyEnum> MY_ENUM_COLUMN =
createField(
DSL.name("my_enum_column"),
SQLDataType.VARCHAR
.nullable(false)
.asEnumDataType(com.example.schema.enums.MyEnum.class),
this,
""
)
```
So it appears that jOOQ's code generator has the type information.
## Note
I'd previously tried this with `org.jooq:jooq:3.14.11`, and also has problems with nullability being reported incorrectly for enum columns (despite the code generator getting it right). Upgrading to `org.jooq:jooq:3.16.10` fixes the nullability problem, but not the type problem. The datatype is still "other", and the type is still `Object`.
Upgrading to `org.jooq:jooq:3.17.4` yields the same behavior as `org.jooq:jooq:3.16.10`.
See also [this Stack Overflow question](https://stackoverflow.com/q/73794728/90848).
### jOOQ Version
org.jooq:jooq:3.14.11, org.jooq:jooq:3.16.10, org.jooq:jooq:3.17.4
### Database product and version
postgres:11-alpine
### Java Version
openjdk 11.0.16 2022-07-19, openjdk 17.0.4 2022-07-19
### OS Version
Ubuntu Linux 20.04
### JDBC driver name and version (include name if unofficial driver)
org.postgresql:postgresql:42.5.0
|
defect
|
metadata api not returning correct type for enum columns expected behavior the metadata api correctly reports the sql type of all columns actual behavior for any columns that have an enum type the metadata api reports their type as object and their datatype as other steps to reproduce the problem have a schema defined as sql create type public my enum as enum foo bar baz create table public my table id bigint not null created at timestamp with time zone default now not null name text my enum column public my enum not null the following test passes kotlin this is kotlin using kotest but hopefully pretty easy to decipher test something fishy going on here val jooq dsl using mydatasource sqldialect postgres val mytable jooq meta tables find it name my table this looks right val createdat mytable field created at createdat datatype nullability shouldbe nullability not null createdat datatype typename shouldbe timestamp with time zone but none of this seems right val myenumfield mytable field my enum column myenumfield datatype typename shouldbe other myenumfield datatype casttypename shouldbe other myenumfield type shouldbe any class java for any enum column the type is object any in kotlin and the datatype typename is other for non enum columns datatype typename gives me the correct sql for the type i m also using the jooq code generator and it generates the correct types for enum columns that is it creates an enum class and uses that as the type for the corresponding fields the generated code for this field looks something like reformatted to avoid long lines java public final tablefield my enum column createfield dsl name my enum column sqldatatype varchar nullable false asenumdatatype com example schema enums myenum class this so it appears that jooq s code generator has the type information note i d previously tried this with org jooq jooq and also has problems with nullability being reported incorrectly for enum columns despite the code generator getting it right upgrading to org jooq jooq fixes the nullability problem but not the type problem the datatype is still other and the type is still object upgrading to org jooq jooq yields the same behavior as org jooq jooq see also jooq version org jooq jooq org jooq jooq org jooq jooq database product and version postgres alpine java version openjdk openjdk os version ubuntu linux jdbc driver name and version include name if unofficial driver org postgresql postgresql
| 1
|
126,397
| 4,990,271,176
|
IssuesEvent
|
2016-12-08 14:38:57
|
ASAAR/SE2-KaggleComp
|
https://api.github.com/repos/ASAAR/SE2-KaggleComp
|
opened
|
Bug in Project Configuration
|
bug priority python
|
After commit #9a939967e8e3b508fe39b711e7dff08280119e8f was created, **all** tests for the project configuration tool broke.
This is the error:
```
ConfigurationXMLError: Required XML tag [ID_label] not found in valid.xml
```
Tests need to be fixed.
|
1.0
|
Bug in Project Configuration - After commit #9a939967e8e3b508fe39b711e7dff08280119e8f was created, **all** tests for the project configuration tool broke.
This is the error:
```
ConfigurationXMLError: Required XML tag [ID_label] not found in valid.xml
```
Tests need to be fixed.
|
non_defect
|
bug in project configuration after commit was created all tests for the project configuration tool broke this is the error configurationxmlerror required xml tag not found in valid xml tests need to be fixed
| 0
|
464,893
| 13,347,639,240
|
IssuesEvent
|
2020-08-29 14:35:31
|
MyMICDS/MyMICDS-v2-Angular
|
https://api.github.com/repos/MyMICDS/MyMICDS-v2-Angular
|
closed
|
Username filter on register form
|
effort: easy priority: it can wait work length: short
|
Every so often, we see somebody try to register with `username@micds.org` as their username instead of just `username`. We should put some sort of validation on the registration form to avoid this, like maybe a regex (`/^[a-z-]+$/`).
|
1.0
|
Username filter on register form - Every so often, we see somebody try to register with `username@micds.org` as their username instead of just `username`. We should put some sort of validation on the registration form to avoid this, like maybe a regex (`/^[a-z-]+$/`).
|
non_defect
|
username filter on register form every so often we see somebody try to register with username micds org as their username instead of just username we should put some sort of validation on the registration form to avoid this like maybe a regex
| 0
|
64,061
| 18,160,054,634
|
IssuesEvent
|
2021-09-27 08:35:33
|
vector-im/element-ios
|
https://api.github.com/repos/vector-im/element-ios
|
closed
|
Crash in MXRoom.toSpace()
|
T-Defect crash X-Release-Blocker
|
Maybe related to #4910 .
```
OS Version: iPhone OS 14.7.1 (18G82)
Release Type: User
Baseband Version: 2.05.01
Report Version: 104
Exception Type: EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000001, 0x0000000107be7cb4
Termination Signal: Trace/BPT trap: 5
Termination Reason: Namespace SIGNAL, Code 0x5
Terminating Process: exc handler [46028]
Triggered by Thread: 0
Thread 0 name:
Thread 0 Crashed:
0 MatrixSDK 0x0000000107be7cb4 Swift runtime failure: Unexpectedly found nil while implicitly unwrapping an Optional value + 0 (MXSpaceService.swift:0)
1 MatrixSDK 0x0000000107be7cb4 MXRoom.toSpace() + 0 (MXSpaceService.swift:481)
2 MatrixSDK 0x0000000107be7cb4 MXSpaceService.prepareData(with:index:spaces:spacesPerId:roomsPerId:directRooms:completion:) + 1060 (MXSpaceService.swift:395)
3 MatrixSDK 0x0000000107be792c MXRoom.toSpace() + 20 (MXSpaceService.swift:481)
4 MatrixSDK 0x0000000107be792c MXSpaceService.prepareData(with:index:spaces:spacesPerId:roomsPerId:directRooms:completion:) + 156 (MXSpaceService.swift:395)
5 MatrixSDK 0x0000000107be8230 closure #2 in MXSpaceService.prepareData(with:index:spaces:spacesPerId:roomsPerId:directRooms:completion:) + 824 (MXSpaceService.swift:407)
6 MatrixSDK 0x0000000107bea300 partial apply for closure #2 in MXSpaceService.prepareData(with:index:spaces:spacesPerId:roomsPerId:directRooms:completion:) + 48 (<compiler-generated>:0)
7 MatrixSDK 0x0000000107bccff4 thunk for @escaping @callee_guaranteed (@guaranteed MXResponse<MXRoomMembers?>) -> () + 16 (<compiler-generated>:0)
8 MatrixSDK 0x0000000107bccff4 partial apply for thunk for @escaping @callee_guaranteed (@guaranteed MXResponse<MXRoomMembers?>) -> () + 32
9 MatrixSDK 0x0000000107b98538 specialized closure #1 in curryFailure<A>(_:) + 104 (MXResponse.swift:196)
10 MatrixSDK 0x0000000107bbcc74 thunk for @escaping @callee_guaranteed (@guaranteed Error?) -> () + 44 (<compiler-generated>:0)
11 MatrixSDK 0x0000000107b18b88 0x107984000 + 1657736
12 libdispatch.dylib 0x00000001977b9a84 _dispatch_call_block_and_release + 32 (init.c:1466)
13 libdispatch.dylib 0x00000001977bb81c _dispatch_client_callout + 20 (object.m:559)
14 libdispatch.dylib 0x00000001977c9c70 _dispatch_main_queue_callback_4CF + 884 (inline_internal.h:2557)
15 CoreFoundation 0x0000000197b48340 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 16 (CFRunLoop.c:1790)
16 CoreFoundation 0x0000000197b42218 __CFRunLoopRun + 2524 (CFRunLoop.c:3118)
17 CoreFoundation 0x0000000197b41308 CFRunLoopRunSpecific + 600 (CFRunLoop.c:3242)
18 GraphicsServices 0x00000001af1c4734 GSEventRunModal + 164 (GSEvent.c:2259)
19 UIKitCore 0x000000019a5bf75c -[UIApplication _run] + 1072 (UIApplication.m:3269)
20 UIKitCore 0x000000019a5c4fcc UIApplicationMain + 168 (UIApplication.m:4740)
21 Riot 0x00000001044b261c main + 68 (AppDelegate.swift:21)
22 libdyld.dylib 0x00000001977fdcf8 start + 4
|
1.0
|
Crash in MXRoom.toSpace() - Maybe related to #4910 .
```
OS Version: iPhone OS 14.7.1 (18G82)
Release Type: User
Baseband Version: 2.05.01
Report Version: 104
Exception Type: EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000001, 0x0000000107be7cb4
Termination Signal: Trace/BPT trap: 5
Termination Reason: Namespace SIGNAL, Code 0x5
Terminating Process: exc handler [46028]
Triggered by Thread: 0
Thread 0 name:
Thread 0 Crashed:
0 MatrixSDK 0x0000000107be7cb4 Swift runtime failure: Unexpectedly found nil while implicitly unwrapping an Optional value + 0 (MXSpaceService.swift:0)
1 MatrixSDK 0x0000000107be7cb4 MXRoom.toSpace() + 0 (MXSpaceService.swift:481)
2 MatrixSDK 0x0000000107be7cb4 MXSpaceService.prepareData(with:index:spaces:spacesPerId:roomsPerId:directRooms:completion:) + 1060 (MXSpaceService.swift:395)
3 MatrixSDK 0x0000000107be792c MXRoom.toSpace() + 20 (MXSpaceService.swift:481)
4 MatrixSDK 0x0000000107be792c MXSpaceService.prepareData(with:index:spaces:spacesPerId:roomsPerId:directRooms:completion:) + 156 (MXSpaceService.swift:395)
5 MatrixSDK 0x0000000107be8230 closure #2 in MXSpaceService.prepareData(with:index:spaces:spacesPerId:roomsPerId:directRooms:completion:) + 824 (MXSpaceService.swift:407)
6 MatrixSDK 0x0000000107bea300 partial apply for closure #2 in MXSpaceService.prepareData(with:index:spaces:spacesPerId:roomsPerId:directRooms:completion:) + 48 (<compiler-generated>:0)
7 MatrixSDK 0x0000000107bccff4 thunk for @escaping @callee_guaranteed (@guaranteed MXResponse<MXRoomMembers?>) -> () + 16 (<compiler-generated>:0)
8 MatrixSDK 0x0000000107bccff4 partial apply for thunk for @escaping @callee_guaranteed (@guaranteed MXResponse<MXRoomMembers?>) -> () + 32
9 MatrixSDK 0x0000000107b98538 specialized closure #1 in curryFailure<A>(_:) + 104 (MXResponse.swift:196)
10 MatrixSDK 0x0000000107bbcc74 thunk for @escaping @callee_guaranteed (@guaranteed Error?) -> () + 44 (<compiler-generated>:0)
11 MatrixSDK 0x0000000107b18b88 0x107984000 + 1657736
12 libdispatch.dylib 0x00000001977b9a84 _dispatch_call_block_and_release + 32 (init.c:1466)
13 libdispatch.dylib 0x00000001977bb81c _dispatch_client_callout + 20 (object.m:559)
14 libdispatch.dylib 0x00000001977c9c70 _dispatch_main_queue_callback_4CF + 884 (inline_internal.h:2557)
15 CoreFoundation 0x0000000197b48340 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 16 (CFRunLoop.c:1790)
16 CoreFoundation 0x0000000197b42218 __CFRunLoopRun + 2524 (CFRunLoop.c:3118)
17 CoreFoundation 0x0000000197b41308 CFRunLoopRunSpecific + 600 (CFRunLoop.c:3242)
18 GraphicsServices 0x00000001af1c4734 GSEventRunModal + 164 (GSEvent.c:2259)
19 UIKitCore 0x000000019a5bf75c -[UIApplication _run] + 1072 (UIApplication.m:3269)
20 UIKitCore 0x000000019a5c4fcc UIApplicationMain + 168 (UIApplication.m:4740)
21 Riot 0x00000001044b261c main + 68 (AppDelegate.swift:21)
22 libdyld.dylib 0x00000001977fdcf8 start + 4
|
defect
|
crash in mxroom tospace maybe related to os version iphone os release type user baseband version report version exception type exc breakpoint sigtrap exception codes termination signal trace bpt trap termination reason namespace signal code terminating process exc handler triggered by thread thread name thread crashed matrixsdk swift runtime failure unexpectedly found nil while implicitly unwrapping an optional value mxspaceservice swift matrixsdk mxroom tospace mxspaceservice swift matrixsdk mxspaceservice preparedata with index spaces spacesperid roomsperid directrooms completion mxspaceservice swift matrixsdk mxroom tospace mxspaceservice swift matrixsdk mxspaceservice preparedata with index spaces spacesperid roomsperid directrooms completion mxspaceservice swift matrixsdk closure in mxspaceservice preparedata with index spaces spacesperid roomsperid directrooms completion mxspaceservice swift matrixsdk partial apply for closure in mxspaceservice preparedata with index spaces spacesperid roomsperid directrooms completion matrixsdk thunk for escaping callee guaranteed guaranteed mxresponse matrixsdk partial apply for thunk for escaping callee guaranteed guaranteed mxresponse matrixsdk specialized closure in curryfailure mxresponse swift matrixsdk thunk for escaping callee guaranteed guaranteed error matrixsdk libdispatch dylib dispatch call block and release init c libdispatch dylib dispatch client callout object m libdispatch dylib dispatch main queue callback inline internal h corefoundation cfrunloop is servicing the main dispatch queue cfrunloop c corefoundation cfrunlooprun cfrunloop c corefoundation cfrunlooprunspecific cfrunloop c graphicsservices gseventrunmodal gsevent c uikitcore uiapplication m uikitcore uiapplicationmain uiapplication m riot main appdelegate swift libdyld dylib start
| 1
|
60,608
| 17,023,470,263
|
IssuesEvent
|
2021-07-03 02:11:47
|
tomhughes/trac-tickets
|
https://api.github.com/repos/tomhughes/trac-tickets
|
closed
|
Mapnik does not render names of bars
|
Component: mapnik Priority: major Resolution: fixed Type: defect
|
**[Submitted to the original trac issue database at 7.01am, Friday, 28th August 2009]**
In the centre of this map was a cocktail glass (symbol for amenity=bar). The name of the place was not rendered. I checked a couple of bars (figuratively) in London and they had no names either. Since three data points is sufficient to verify any theory :) I conclude there is a bug in Mapnik.
http://www.openstreetmap.org/?lat=35.686273&lon=127.916673&zoom=18&layers=B000FTF
I don't think it's a collision issue as I changed it to 'amenity=pub' and now it renders the name properly (the point hasn't moved, neither have nearby points.) I'll leave it as 'pub' as it better matches the description in the wiki.
|
1.0
|
Mapnik does not render names of bars - **[Submitted to the original trac issue database at 7.01am, Friday, 28th August 2009]**
In the centre of this map was a cocktail glass (symbol for amenity=bar). The name of the place was not rendered. I checked a couple of bars (figuratively) in London and they had no names either. Since three data points is sufficient to verify any theory :) I conclude there is a bug in Mapnik.
http://www.openstreetmap.org/?lat=35.686273&lon=127.916673&zoom=18&layers=B000FTF
I don't think it's a collision issue as I changed it to 'amenity=pub' and now it renders the name properly (the point hasn't moved, neither have nearby points.) I'll leave it as 'pub' as it better matches the description in the wiki.
|
defect
|
mapnik does not render names of bars in the centre of this map was a cocktail glass symbol for amenity bar the name of the place was not rendered i checked a couple of bars figuratively in london and they had no names either since three data points is sufficient to verify any theory i conclude there is a bug in mapnik i don t think it s a collision issue as i changed it to amenity pub and now it renders the name properly the point hasn t moved neither have nearby points i ll leave it as pub as it better matches the description in the wiki
| 1
|
535,911
| 15,701,086,184
|
IssuesEvent
|
2021-03-26 10:42:41
|
saltudelft/libsa4py
|
https://api.github.com/repos/saltudelft/libsa4py
|
closed
|
Minor improvements to the SpaceAdder CST transformer
|
Priority: Medium enhancement
|
The `SpaceAdder` CST transformer doesn't add an extra space in some rare cases like `~` operator.
|
1.0
|
Minor improvements to the SpaceAdder CST transformer - The `SpaceAdder` CST transformer doesn't add an extra space in some rare cases like `~` operator.
|
non_defect
|
minor improvements to the spaceadder cst transformer the spaceadder cst transformer doesn t add an extra space in some rare cases like operator
| 0
|
548
| 2,565,237,048
|
IssuesEvent
|
2015-02-07 05:11:02
|
django-mptt/django-mptt
|
https://api.github.com/repos/django-mptt/django-mptt
|
closed
|
The initial tree building
|
Defect
|
Hi
Django 1.5.1
django-mutt 0.5.5
models.py
from django.db import models
from mptt.models import MPTTModel, TreeForeignKey
class Genre(MPTTModel):
name = models.CharField(max_length=50, unique=True)
parent = TreeForeignKey('self', null=True, blank=True, related_name='children')
class MPTTMeta:
order_insertion_by = ['name']
python manage.py shell
from myapp.models import Genre
rock = Genre.objects.create(name="Rock")
blues = Genre.objects.create(name="Blues")
Genre.objects.create(name="Hard Rock", parent=rock)
Genre.objects.create(name="Pop Rock", parent=rock)
Genre.objects.create(name="BLUES my", parent=blues)
Result:
2 Blues
6 BLUES my
3 Hard Rock
4 Pop Rock
1 Rock
Genre.tree.rebuild()
Result:
2 Blues
6 BLUES my
1 Rock
3 Hard Rock
4 Pop Rock
?
|
1.0
|
The initial tree building - Hi
Django 1.5.1
django-mutt 0.5.5
models.py
from django.db import models
from mptt.models import MPTTModel, TreeForeignKey
class Genre(MPTTModel):
name = models.CharField(max_length=50, unique=True)
parent = TreeForeignKey('self', null=True, blank=True, related_name='children')
class MPTTMeta:
order_insertion_by = ['name']
python manage.py shell
from myapp.models import Genre
rock = Genre.objects.create(name="Rock")
blues = Genre.objects.create(name="Blues")
Genre.objects.create(name="Hard Rock", parent=rock)
Genre.objects.create(name="Pop Rock", parent=rock)
Genre.objects.create(name="BLUES my", parent=blues)
Result:
2 Blues
6 BLUES my
3 Hard Rock
4 Pop Rock
1 Rock
Genre.tree.rebuild()
Result:
2 Blues
6 BLUES my
1 Rock
3 Hard Rock
4 Pop Rock
?
|
defect
|
the initial tree building hi django django mutt models py from django db import models from mptt models import mpttmodel treeforeignkey class genre mpttmodel name models charfield max length unique true parent treeforeignkey self null true blank true related name children class mpttmeta order insertion by python manage py shell from myapp models import genre rock genre objects create name rock blues genre objects create name blues genre objects create name hard rock parent rock genre objects create name pop rock parent rock genre objects create name blues my parent blues result blues blues my hard rock pop rock rock genre tree rebuild result blues blues my rock hard rock pop rock
| 1
|
13,386
| 2,755,214,598
|
IssuesEvent
|
2015-04-26 12:53:12
|
OpenMS/OpenMS
|
https://api.github.com/repos/OpenMS/OpenMS
|
closed
|
FeatureFinderMultiplex - possible error in custom label code
|
defect major UTILS
|
Hi @lars20070 ,
I configured FFMultiplex to use 3 custom mass shifts for Arg6 Arg10 Lys4. (2,4,6 Da)
Strangely, only the 10 Da are found despite those are not present in the sample.
```
13:58:49 NOTICE: FeatureFinderMultiplex of node #4 started. Processing ...
sample 1: Arg6 Arg10 Lys4
mass shift 1: 0 2.0042
mass shift 2: 0 10.021
FeatureFinderMultiplex took 0.83 s (wall), 0.81 s (CPU), 0.02 s (system), 0.80 s (user).
```
|
1.0
|
FeatureFinderMultiplex - possible error in custom label code - Hi @lars20070 ,
I configured FFMultiplex to use 3 custom mass shifts for Arg6 Arg10 Lys4. (2,4,6 Da)
Strangely, only the 10 Da are found despite those are not present in the sample.
```
13:58:49 NOTICE: FeatureFinderMultiplex of node #4 started. Processing ...
sample 1: Arg6 Arg10 Lys4
mass shift 1: 0 2.0042
mass shift 2: 0 10.021
FeatureFinderMultiplex took 0.83 s (wall), 0.81 s (CPU), 0.02 s (system), 0.80 s (user).
```
|
defect
|
featurefindermultiplex possible error in custom label code hi i configured ffmultiplex to use custom mass shifts for da strangely only the da are found despite those are not present in the sample notice featurefindermultiplex of node started processing sample mass shift mass shift featurefindermultiplex took s wall s cpu s system s user
| 1
|
79,932
| 7,733,617,439
|
IssuesEvent
|
2018-05-26 14:04:10
|
cockroachdb/cockroach
|
https://api.github.com/repos/cockroachdb/cockroach
|
closed
|
github.com/cockroachdb/cockroach/pkg/sql/schemachange: TestColumnConversions/column_conversion_checks/TIME->TIMETZ failed under stress
|
C-test-failure O-robot S-3-productivity
|
SHA: https://github.com/cockroachdb/cockroach/commits/20a78c0d80bac6bf557598776680612c6c588df5
Parameters:
```
TAGS=
GOFLAGS=
```
Failed test: https://teamcity.cockroachdb.com/viewLog.html?buildId=678937&tab=buildLog
```
alter_column_type_test.go:317: a STRING NULL, CREATE TABLE t (
i INT NOT NULL,
a STRING NULL,
CONSTRAINT "primary" PRIMARY KEY (i ASC),
FAMILY "primary" (i, a)
)
alter_column_type_test.go:317: a BYTES NULL, CREATE TABLE t (
i INT NOT NULL,
a BYTES NULL,
CONSTRAINT "primary" PRIMARY KEY (i ASC),
FAMILY "primary" (i, a)
)
```
|
1.0
|
github.com/cockroachdb/cockroach/pkg/sql/schemachange: TestColumnConversions/column_conversion_checks/TIME->TIMETZ failed under stress - SHA: https://github.com/cockroachdb/cockroach/commits/20a78c0d80bac6bf557598776680612c6c588df5
Parameters:
```
TAGS=
GOFLAGS=
```
Failed test: https://teamcity.cockroachdb.com/viewLog.html?buildId=678937&tab=buildLog
```
alter_column_type_test.go:317: a STRING NULL, CREATE TABLE t (
i INT NOT NULL,
a STRING NULL,
CONSTRAINT "primary" PRIMARY KEY (i ASC),
FAMILY "primary" (i, a)
)
alter_column_type_test.go:317: a BYTES NULL, CREATE TABLE t (
i INT NOT NULL,
a BYTES NULL,
CONSTRAINT "primary" PRIMARY KEY (i ASC),
FAMILY "primary" (i, a)
)
```
|
non_defect
|
github com cockroachdb cockroach pkg sql schemachange testcolumnconversions column conversion checks time timetz failed under stress sha parameters tags goflags failed test alter column type test go a string null create table t i int not null a string null constraint primary primary key i asc family primary i a alter column type test go a bytes null create table t i int not null a bytes null constraint primary primary key i asc family primary i a
| 0
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.