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
105,511
13,190,912,509
IssuesEvent
2020-08-13 11:06:04
IBM-Blockchain/blockchain-vscode-extension
https://api.github.com/repos/IBM-Blockchain/blockchain-vscode-extension
closed
Improve usability of add connection with enroll ID and secret
design enhancement p2
The add connection command with an enroll ID and secret asks the following questions: - What is the identity name? - What is the MSP ID? - What is the enrolment ID? - What is the enrolment secret? Identity name in a lot of cases may just be the same as the enrolment ID, for example "admin". In which case I end up answering: admin, Org1MSP, admin, adminpw We could also default the identity name when a certificate is provided, by extracting the common name (CN) from the certificate itself. @EdMoffatt had some ideas around this
1.0
Improve usability of add connection with enroll ID and secret - The add connection command with an enroll ID and secret asks the following questions: - What is the identity name? - What is the MSP ID? - What is the enrolment ID? - What is the enrolment secret? Identity name in a lot of cases may just be the same as the enrolment ID, for example "admin". In which case I end up answering: admin, Org1MSP, admin, adminpw We could also default the identity name when a certificate is provided, by extracting the common name (CN) from the certificate itself. @EdMoffatt had some ideas around this
non_defect
improve usability of add connection with enroll id and secret the add connection command with an enroll id and secret asks the following questions what is the identity name what is the msp id what is the enrolment id what is the enrolment secret identity name in a lot of cases may just be the same as the enrolment id for example admin in which case i end up answering admin admin adminpw we could also default the identity name when a certificate is provided by extracting the common name cn from the certificate itself edmoffatt had some ideas around this
0
3,120
5,277,558,273
IssuesEvent
2017-02-07 03:46:43
rancher/rancher
https://api.github.com/repos/rancher/rancher
closed
Audit when an instance is destroyed because it failed the healthcheck initialization timeout
area/service kind/task
As the title says. From slack: `````` @alena: you do have this: ```2016-04-29 20:50:56,048 INFO [:] [] [] [] [ecutorService-2] [.h.s.i.HealthcheckCleanupMonitorImpl] Scheduling remove for instance id [186] i just missed it bc it was buried Alena [3:35 PM] yes [3:36] I should add “removing because initializing timeout is hit” Craig Jellick [3:36 PM] that makes sense [3:36] darren mentioned that you audit a lot of the things u do with healthchecks. looks like this one is not audited. maybe add this one to audit? [3:36] not necessary, just a thought if ur goal was to have a full audit of all healthcheck related events Alena [3:37 PM] it is not audited [3:37] could you file it for me? ``````
1.0
Audit when an instance is destroyed because it failed the healthcheck initialization timeout - As the title says. From slack: `````` @alena: you do have this: ```2016-04-29 20:50:56,048 INFO [:] [] [] [] [ecutorService-2] [.h.s.i.HealthcheckCleanupMonitorImpl] Scheduling remove for instance id [186] i just missed it bc it was buried Alena [3:35 PM] yes [3:36] I should add “removing because initializing timeout is hit” Craig Jellick [3:36 PM] that makes sense [3:36] darren mentioned that you audit a lot of the things u do with healthchecks. looks like this one is not audited. maybe add this one to audit? [3:36] not necessary, just a thought if ur goal was to have a full audit of all healthcheck related events Alena [3:37 PM] it is not audited [3:37] could you file it for me? ``````
non_defect
audit when an instance is destroyed because it failed the healthcheck initialization timeout as the title says from slack alena you do have this info scheduling remove for instance id i just missed it bc it was buried alena yes i should add “removing because initializing timeout is hit” craig jellick that makes sense darren mentioned that you audit a lot of the things u do with healthchecks looks like this one is not audited maybe add this one to audit not necessary just a thought if ur goal was to have a full audit of all healthcheck related events alena it is not audited could you file it for me
0
53,584
13,261,938,689
IssuesEvent
2020-08-20 20:48:37
icecube-trac/tix4
https://api.github.com/repos/icecube-trac/tix4
closed
millipede: zero-width pulses trip assertion (Trac #1712)
Migrated from Trac combo reconstruction defect
In the MillipedeDOMCacheMap an assertion fails if the input pulsemap contains pulses with a width of zero. The change that lead to this behaviour is this one: http://code.icecube.wisc.edu/projects/icecube/changeset/125877/IceCube I found such cases using simulation sets, e.g. 11070. There is a single event and a minimal example provided in `/data/user/tkintscher/bugs/millipede_crash`. The comment in the code suggests a way to handle these cases: Add the charge to the next pulse and remove the offending pulse. As illustrated by the second script in the folder, doing this manually in Python before calling Millipede resolves the issue. I think it would be more elegant to instead modify the binning in the C++ code. Upon encountering such a pulse, the variables `bins` and `raw_bins` could be decreased by one. Ideally, one should then resize the `raw_bin_edges` and `raw_charges` arrays. <details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/1712">https://code.icecube.wisc.edu/projects/icecube/ticket/1712</a>, reported by thomas.kintscherand owned by jbraun</em></summary> <p> ```json { "status": "closed", "changetime": "2019-02-13T14:13:10", "_ts": "1550067190995086", "description": "In the MillipedeDOMCacheMap an assertion fails if the input pulsemap contains pulses with a width of zero.\n\nThe change that lead to this behaviour is this one:\nhttp://code.icecube.wisc.edu/projects/icecube/changeset/125877/IceCube\n\nI found such cases using simulation sets, e.g. 11070.\nThere is a single event and a minimal example provided in `/data/user/tkintscher/bugs/millipede_crash`.\n\nThe comment in the code suggests a way to handle these cases: Add the charge to the next pulse and remove the offending pulse. As illustrated by the second script in the folder, doing this manually in Python before calling Millipede resolves the issue.\n\nI think it would be more elegant to instead modify the binning in the C++ code. Upon encountering such a pulse, the variables `bins` and `raw_bins` could be decreased by one. Ideally, one should then resize the `raw_bin_edges` and `raw_charges` arrays.", "reporter": "thomas.kintscher", "cc": "", "resolution": "fixed", "time": "2016-05-19T14:22:44", "component": "combo reconstruction", "summary": "millipede: zero-width pulses trip assertion", "priority": "normal", "keywords": "millipede pulses", "milestone": "", "owner": "jbraun", "type": "defect" } ``` </p> </details>
1.0
millipede: zero-width pulses trip assertion (Trac #1712) - In the MillipedeDOMCacheMap an assertion fails if the input pulsemap contains pulses with a width of zero. The change that lead to this behaviour is this one: http://code.icecube.wisc.edu/projects/icecube/changeset/125877/IceCube I found such cases using simulation sets, e.g. 11070. There is a single event and a minimal example provided in `/data/user/tkintscher/bugs/millipede_crash`. The comment in the code suggests a way to handle these cases: Add the charge to the next pulse and remove the offending pulse. As illustrated by the second script in the folder, doing this manually in Python before calling Millipede resolves the issue. I think it would be more elegant to instead modify the binning in the C++ code. Upon encountering such a pulse, the variables `bins` and `raw_bins` could be decreased by one. Ideally, one should then resize the `raw_bin_edges` and `raw_charges` arrays. <details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/1712">https://code.icecube.wisc.edu/projects/icecube/ticket/1712</a>, reported by thomas.kintscherand owned by jbraun</em></summary> <p> ```json { "status": "closed", "changetime": "2019-02-13T14:13:10", "_ts": "1550067190995086", "description": "In the MillipedeDOMCacheMap an assertion fails if the input pulsemap contains pulses with a width of zero.\n\nThe change that lead to this behaviour is this one:\nhttp://code.icecube.wisc.edu/projects/icecube/changeset/125877/IceCube\n\nI found such cases using simulation sets, e.g. 11070.\nThere is a single event and a minimal example provided in `/data/user/tkintscher/bugs/millipede_crash`.\n\nThe comment in the code suggests a way to handle these cases: Add the charge to the next pulse and remove the offending pulse. As illustrated by the second script in the folder, doing this manually in Python before calling Millipede resolves the issue.\n\nI think it would be more elegant to instead modify the binning in the C++ code. Upon encountering such a pulse, the variables `bins` and `raw_bins` could be decreased by one. Ideally, one should then resize the `raw_bin_edges` and `raw_charges` arrays.", "reporter": "thomas.kintscher", "cc": "", "resolution": "fixed", "time": "2016-05-19T14:22:44", "component": "combo reconstruction", "summary": "millipede: zero-width pulses trip assertion", "priority": "normal", "keywords": "millipede pulses", "milestone": "", "owner": "jbraun", "type": "defect" } ``` </p> </details>
defect
millipede zero width pulses trip assertion trac in the millipededomcachemap an assertion fails if the input pulsemap contains pulses with a width of zero the change that lead to this behaviour is this one i found such cases using simulation sets e g there is a single event and a minimal example provided in data user tkintscher bugs millipede crash the comment in the code suggests a way to handle these cases add the charge to the next pulse and remove the offending pulse as illustrated by the second script in the folder doing this manually in python before calling millipede resolves the issue i think it would be more elegant to instead modify the binning in the c code upon encountering such a pulse the variables bins and raw bins could be decreased by one ideally one should then resize the raw bin edges and raw charges arrays migrated from json status closed changetime ts description in the millipededomcachemap an assertion fails if the input pulsemap contains pulses with a width of zero n nthe change that lead to this behaviour is this one n found such cases using simulation sets e g nthere is a single event and a minimal example provided in data user tkintscher bugs millipede crash n nthe comment in the code suggests a way to handle these cases add the charge to the next pulse and remove the offending pulse as illustrated by the second script in the folder doing this manually in python before calling millipede resolves the issue n ni think it would be more elegant to instead modify the binning in the c code upon encountering such a pulse the variables bins and raw bins could be decreased by one ideally one should then resize the raw bin edges and raw charges arrays reporter thomas kintscher cc resolution fixed time component combo reconstruction summary millipede zero width pulses trip assertion priority normal keywords millipede pulses milestone owner jbraun type defect
1
450,663
31,934,606,360
IssuesEvent
2023-09-19 09:38:19
Okibe00/Refresher
https://api.github.com/repos/Okibe00/Refresher
opened
Add README file
documentation
The readme file should have an introduction section, a usage section and installation
1.0
Add README file - The readme file should have an introduction section, a usage section and installation
non_defect
add readme file the readme file should have an introduction section a usage section and installation
0
44,134
11,985,440,576
IssuesEvent
2020-04-07 17:30:37
department-of-veterans-affairs/va.gov-team
https://api.github.com/repos/department-of-veterans-affairs/va.gov-team
opened
CMS [AXE-CORE]: All page content MUST be contained by landmarks - div.veteran-banner
508-defect-4 508-issue-semantic-markup 508/Accessibility cms vsa vsa-public-websites
# [508-defect-4](https://github.com/department-of-veterans-affairs/va.gov-team/blob/master/platform/accessibility/guidance/defect-severity-rubric.md#508-defect-4) **Feedback framework** - **❗️ Must** for if the feedback must be applied - **⚠️Should** if the feedback is best practice - **✔️ Consider** for suggestions/enhancements ## Description The div that contains the veteran portraits is not contained by a landmark - `<div class="veteran-banner">`. All page content **must** be contained by landmarks. Decision reviews and appeals — https://preview-prod.vfs.va.gov_preview_nodeid=3071 | `<div class="veteran-banner">` ### Why it matters Screen reader users can navigate to a section based on its HTML element or ARIA Landmark. It is best practice to contain all content excepting skip links, within distinct regions such as the header, nav, main, and footer. As this content is relatively decorative, it is seems less urgent. However, since screen reader users can't tell what is and isn't decorative, containing content within landmarks as the rule describes will prevent confusion. Navigating a web page is far simpler for screen reader users if the content splits between multiple high-level sections. Content outside of sections is difficult to find, and the content's purpose may be unclear. Historically, HTML lacked some key semantic markers such as the ability to designate sections of the page as the header, navigation, main content, and footer. Using both HTML5 elements and ARIA landmarks in the same element is considered a best practice, but the future favors using native HTML5 element regions as browser support increases. ## Point of Contact **VFS Point of Contact:** Jennifer ## Acceptance Criteria As a screen reader user, I want to navigate the content of the page by landmark regions. ## Environment * Operating System: all * Browser: all * Screenreading device: any * Server destination: production ## Steps to Recreate 1. Enter any of the urls above in browser 2. Run axe scan using browser tools 3. Verify that the div.veteran-banner is identified as not contained by landmarks. ## Possible Fixes (optional) This requires a page template change, to enclose this div.veteran-banner within div#content or the footer. ## WCAG or Vendor Guidance (optional) * [axe-core 3.4 - All page content must be contained by landmarks](https://dequeuniversity.com/rules/axe/3.4/region?application=AxeChrome) ## Screenshots or Trace Logs ![vsapublicw-ama-landmarks](https://user-images.githubusercontent.com/57469/75595640-3cfda100-5a5b-11ea-9124-5d0aa3771d92.png)
1.0
CMS [AXE-CORE]: All page content MUST be contained by landmarks - div.veteran-banner - # [508-defect-4](https://github.com/department-of-veterans-affairs/va.gov-team/blob/master/platform/accessibility/guidance/defect-severity-rubric.md#508-defect-4) **Feedback framework** - **❗️ Must** for if the feedback must be applied - **⚠️Should** if the feedback is best practice - **✔️ Consider** for suggestions/enhancements ## Description The div that contains the veteran portraits is not contained by a landmark - `<div class="veteran-banner">`. All page content **must** be contained by landmarks. Decision reviews and appeals — https://preview-prod.vfs.va.gov_preview_nodeid=3071 | `<div class="veteran-banner">` ### Why it matters Screen reader users can navigate to a section based on its HTML element or ARIA Landmark. It is best practice to contain all content excepting skip links, within distinct regions such as the header, nav, main, and footer. As this content is relatively decorative, it is seems less urgent. However, since screen reader users can't tell what is and isn't decorative, containing content within landmarks as the rule describes will prevent confusion. Navigating a web page is far simpler for screen reader users if the content splits between multiple high-level sections. Content outside of sections is difficult to find, and the content's purpose may be unclear. Historically, HTML lacked some key semantic markers such as the ability to designate sections of the page as the header, navigation, main content, and footer. Using both HTML5 elements and ARIA landmarks in the same element is considered a best practice, but the future favors using native HTML5 element regions as browser support increases. ## Point of Contact **VFS Point of Contact:** Jennifer ## Acceptance Criteria As a screen reader user, I want to navigate the content of the page by landmark regions. ## Environment * Operating System: all * Browser: all * Screenreading device: any * Server destination: production ## Steps to Recreate 1. Enter any of the urls above in browser 2. Run axe scan using browser tools 3. Verify that the div.veteran-banner is identified as not contained by landmarks. ## Possible Fixes (optional) This requires a page template change, to enclose this div.veteran-banner within div#content or the footer. ## WCAG or Vendor Guidance (optional) * [axe-core 3.4 - All page content must be contained by landmarks](https://dequeuniversity.com/rules/axe/3.4/region?application=AxeChrome) ## Screenshots or Trace Logs ![vsapublicw-ama-landmarks](https://user-images.githubusercontent.com/57469/75595640-3cfda100-5a5b-11ea-9124-5d0aa3771d92.png)
defect
cms all page content must be contained by landmarks div veteran banner feedback framework ❗️ must for if the feedback must be applied ⚠️should if the feedback is best practice ✔️ consider for suggestions enhancements description the div that contains the veteran portraits is not contained by a landmark all page content must be contained by landmarks decision reviews and appeals — why it matters screen reader users can navigate to a section based on its html element or aria landmark it is best practice to contain all content excepting skip links within distinct regions such as the header nav main and footer as this content is relatively decorative it is seems less urgent however since screen reader users can t tell what is and isn t decorative containing content within landmarks as the rule describes will prevent confusion navigating a web page is far simpler for screen reader users if the content splits between multiple high level sections content outside of sections is difficult to find and the content s purpose may be unclear historically html lacked some key semantic markers such as the ability to designate sections of the page as the header navigation main content and footer using both elements and aria landmarks in the same element is considered a best practice but the future favors using native element regions as browser support increases point of contact vfs point of contact jennifer acceptance criteria as a screen reader user i want to navigate the content of the page by landmark regions environment operating system all browser all screenreading device any server destination production steps to recreate enter any of the urls above in browser run axe scan using browser tools verify that the div veteran banner is identified as not contained by landmarks possible fixes optional this requires a page template change to enclose this div veteran banner within div content or the footer wcag or vendor guidance optional screenshots or trace logs
1
96,716
16,163,475,731
IssuesEvent
2021-05-01 04:03:23
scriptex/atanas.info
https://api.github.com/repos/scriptex/atanas.info
closed
CVE-2021-23368 (Medium) detected in postcss-7.0.32.tgz, postcss-7.0.35.tgz
security vulnerability
## CVE-2021-23368 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>postcss-7.0.32.tgz</b>, <b>postcss-7.0.35.tgz</b></p></summary> <p> <details><summary><b>postcss-7.0.32.tgz</b></p></summary> <p>Tool for transforming styles with JS plugins</p> <p>Library home page: <a href="https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz">https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz</a></p> <p>Path to dependency file: atanas.info/package.json</p> <p>Path to vulnerable library: atanas.info/node_modules/purgecss/node_modules/postcss/package.json</p> <p> Dependency Hierarchy: - parcel-bundler-1.12.5.tgz (Root Library) - htmlnano-0.2.9.tgz - purgecss-2.3.0.tgz - :x: **postcss-7.0.32.tgz** (Vulnerable Library) </details> <details><summary><b>postcss-7.0.35.tgz</b></p></summary> <p>Tool for transforming styles with JS plugins</p> <p>Library home page: <a href="https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz">https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz</a></p> <p>Path to dependency file: atanas.info/package.json</p> <p>Path to vulnerable library: atanas.info/node_modules/postcss-normalize-positions/node_modules/postcss/package.json,atanas.info/node_modules/icss-utils/node_modules/postcss/package.json,atanas.info/node_modules/stylehacks/node_modules/postcss/package.json,atanas.info/node_modules/cssnano-preset-default/node_modules/postcss/package.json,atanas.info/node_modules/postcss-minify-gradients/node_modules/postcss/package.json,atanas.info/node_modules/postcss-normalize-url/node_modules/postcss/package.json,atanas.info/node_modules/postcss-nesting/node_modules/postcss/package.json,atanas.info/node_modules/css-blank-pseudo/node_modules/postcss/package.json,atanas.info/node_modules/postcss-color-hex-alpha/node_modules/postcss/package.json,atanas.info/node_modules/postcss-browser-comments/node_modules/postcss/package.json,atanas.info/node_modules/postcss-color-gray/node_modules/postcss/package.json,atanas.info/node_modules/postcss-ordered-values/node_modules/postcss/package.json,atanas.info/node_modules/postcss-custom-properties/node_modules/postcss/package.json,atanas.info/node_modules/cssnano-util-raw-cache/node_modules/postcss/package.json,atanas.info/node_modules/postcss-safe-parser/node_modules/postcss/package.json,atanas.info/node_modules/postcss-svgo/node_modules/postcss/package.json,atanas.info/node_modules/css-prefers-color-scheme/node_modules/postcss/package.json,atanas.info/node_modules/postcss-color-functional-notation/node_modules/postcss/package.json,atanas.info/node_modules/postcss-font-variant/node_modules/postcss/package.json,atanas.info/node_modules/postcss-minify-selectors/node_modules/postcss/package.json,atanas.info/node_modules/postcss-focus-within/node_modules/postcss/package.json,atanas.info/node_modules/postcss-reduce-transforms/node_modules/postcss/package.json,atanas.info/node_modules/postcss-normalize/node_modules/postcss/package.json,atanas.info/node_modules/postcss-colormin/node_modules/postcss/package.json,atanas.info/node_modules/postcss-media-minmax/node_modules/postcss/package.json,atanas.info/node_modules/uncss/node_modules/postcss/package.json,atanas.info/node_modules/postcss-minify-params/node_modules/postcss/package.json,atanas.info/node_modules/postcss-merge-longhand/node_modules/postcss/package.json,atanas.info/node_modules/postcss-utilities/node_modules/postcss/package.json,atanas.info/node_modules/postcss-convert-values/node_modules/postcss/package.json,atanas.info/node_modules/@vuepress/core/node_modules/postcss/package.json,atanas.info/node_modules/postcss-attribute-case-insensitive/node_modules/postcss/package.json,atanas.info/node_modules/postcss-discard-duplicates/node_modules/postcss/package.json,atanas.info/node_modules/postcss-logical/node_modules/postcss/package.json,atanas.info/node_modules/postcss-preset-env/node_modules/postcss/package.json,atanas.info/node_modules/postcss-normalize-timing-functions/node_modules/postcss/package.json,atanas.info/node_modules/postcss-color-rebeccapurple/node_modules/postcss/package.json,atanas.info/node_modules/postcss-normalize-unicode/node_modules/postcss/package.json,atanas.info/node_modules/postcss-initial/node_modules/postcss/package.json,atanas.info/node_modules/postcss-double-position-gradients/node_modules/postcss/package.json,atanas.info/node_modules/@vue/component-compiler-utils/node_modules/postcss/package.json,atanas.info/node_modules/postcss-simple-vars/node_modules/postcss/package.json,atanas.info/node_modules/postcss-normalize-repeat-style/node_modules/postcss/package.json,atanas.info/node_modules/postcss-scss/node_modules/postcss/package.json,atanas.info/node_modules/cssnano/node_modules/postcss/package.json,atanas.info/node_modules/postcss-discard-overridden/node_modules/postcss/package.json,atanas.info/node_modules/postcss-focus-visible/node_modules/postcss/package.json,atanas.info/node_modules/css-has-pseudo/node_modules/postcss/package.json,atanas.info/node_modules/postcss-unique-selectors/node_modules/postcss/package.json,atanas.info/node_modules/postcss-minify-font-values/node_modules/postcss/package.json,atanas.info/node_modules/postcss-custom-selectors/node_modules/postcss/package.json,atanas.info/node_modules/postcss-normalize-charset/node_modules/postcss/package.json,atanas.info/node_modules/postcss-normalize-string/node_modules/postcss/package.json,atanas.info/node_modules/postcss-page-break/node_modules/postcss/package.json,atanas.info/node_modules/postcss-env-function/node_modules/postcss/package.json,atanas.info/node_modules/postcss-normalize-display-values/node_modules/postcss/package.json,atanas.info/node_modules/css-loader/node_modules/postcss/package.json,atanas.info/node_modules/postcss-dir-pseudo-class/node_modules/postcss/package.json,atanas.info/node_modules/postcss-replace-overflow-wrap/node_modules/postcss/package.json,atanas.info/node_modules/postcss-sass/node_modules/postcss/package.json,atanas.info/node_modules/postcss-loader/node_modules/postcss/package.json,atanas.info/node_modules/postcss-selector-not/node_modules/postcss/package.json,atanas.info/node_modules/postcss-image-set-function/node_modules/postcss/package.json,atanas.info/node_modules/postcss-normalize-whitespace/node_modules/postcss/package.json,atanas.info/node_modules/postcss-discard-comments/node_modules/postcss/package.json,atanas.info/node_modules/postcss-selector-matches/node_modules/postcss/package.json,atanas.info/node_modules/postcss-less/node_modules/postcss/package.json,atanas.info/node_modules/postcss-overflow-shorthand/node_modules/postcss/package.json,atanas.info/node_modules/postcss-prefix-selector/node_modules/postcss/package.json,atanas.info/node_modules/postcss-lab-function/node_modules/postcss/package.json,atanas.info/node_modules/css-declaration-sorter/node_modules/postcss/package.json,atanas.info/node_modules/postcss-discard-empty/node_modules/postcss/package.json,atanas.info/node_modules/postcss-color-mod-function/node_modules/postcss/package.json,atanas.info/node_modules/parcel-bundler/node_modules/postcss/package.json,atanas.info/node_modules/postcss-pseudo-class-any-link/node_modules/postcss/package.json,atanas.info/node_modules/postcss-reduce-initial/node_modules/postcss/package.json,atanas.info/node_modules/postcss-gap-properties/node_modules/postcss/package.json,atanas.info/node_modules/postcss-place/node_modules/postcss/package.json,atanas.info/node_modules/stylelint/node_modules/postcss/package.json</p> <p> Dependency Hierarchy: - postcss-preset-env-6.7.0.tgz (Root Library) - postcss-dir-pseudo-class-5.0.0.tgz - :x: **postcss-7.0.35.tgz** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/scriptex/atanas.info/commit/3c77aba896f1a2c3daa0199814d8416b30255cdc">3c77aba896f1a2c3daa0199814d8416b30255cdc</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The package postcss from 7.0.0 and before 8.2.10 are vulnerable to Regular Expression Denial of Service (ReDoS) during source map parsing. <p>Publish Date: 2021-04-12 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23368>CVE-2021-23368</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: Low </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23368">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23368</a></p> <p>Release Date: 2021-04-12</p> <p>Fix Resolution: postcss -8.2.10</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-23368 (Medium) detected in postcss-7.0.32.tgz, postcss-7.0.35.tgz - ## CVE-2021-23368 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>postcss-7.0.32.tgz</b>, <b>postcss-7.0.35.tgz</b></p></summary> <p> <details><summary><b>postcss-7.0.32.tgz</b></p></summary> <p>Tool for transforming styles with JS plugins</p> <p>Library home page: <a href="https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz">https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz</a></p> <p>Path to dependency file: atanas.info/package.json</p> <p>Path to vulnerable library: atanas.info/node_modules/purgecss/node_modules/postcss/package.json</p> <p> Dependency Hierarchy: - parcel-bundler-1.12.5.tgz (Root Library) - htmlnano-0.2.9.tgz - purgecss-2.3.0.tgz - :x: **postcss-7.0.32.tgz** (Vulnerable Library) </details> <details><summary><b>postcss-7.0.35.tgz</b></p></summary> <p>Tool for transforming styles with JS plugins</p> <p>Library home page: <a href="https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz">https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz</a></p> <p>Path to dependency file: atanas.info/package.json</p> <p>Path to vulnerable library: atanas.info/node_modules/postcss-normalize-positions/node_modules/postcss/package.json,atanas.info/node_modules/icss-utils/node_modules/postcss/package.json,atanas.info/node_modules/stylehacks/node_modules/postcss/package.json,atanas.info/node_modules/cssnano-preset-default/node_modules/postcss/package.json,atanas.info/node_modules/postcss-minify-gradients/node_modules/postcss/package.json,atanas.info/node_modules/postcss-normalize-url/node_modules/postcss/package.json,atanas.info/node_modules/postcss-nesting/node_modules/postcss/package.json,atanas.info/node_modules/css-blank-pseudo/node_modules/postcss/package.json,atanas.info/node_modules/postcss-color-hex-alpha/node_modules/postcss/package.json,atanas.info/node_modules/postcss-browser-comments/node_modules/postcss/package.json,atanas.info/node_modules/postcss-color-gray/node_modules/postcss/package.json,atanas.info/node_modules/postcss-ordered-values/node_modules/postcss/package.json,atanas.info/node_modules/postcss-custom-properties/node_modules/postcss/package.json,atanas.info/node_modules/cssnano-util-raw-cache/node_modules/postcss/package.json,atanas.info/node_modules/postcss-safe-parser/node_modules/postcss/package.json,atanas.info/node_modules/postcss-svgo/node_modules/postcss/package.json,atanas.info/node_modules/css-prefers-color-scheme/node_modules/postcss/package.json,atanas.info/node_modules/postcss-color-functional-notation/node_modules/postcss/package.json,atanas.info/node_modules/postcss-font-variant/node_modules/postcss/package.json,atanas.info/node_modules/postcss-minify-selectors/node_modules/postcss/package.json,atanas.info/node_modules/postcss-focus-within/node_modules/postcss/package.json,atanas.info/node_modules/postcss-reduce-transforms/node_modules/postcss/package.json,atanas.info/node_modules/postcss-normalize/node_modules/postcss/package.json,atanas.info/node_modules/postcss-colormin/node_modules/postcss/package.json,atanas.info/node_modules/postcss-media-minmax/node_modules/postcss/package.json,atanas.info/node_modules/uncss/node_modules/postcss/package.json,atanas.info/node_modules/postcss-minify-params/node_modules/postcss/package.json,atanas.info/node_modules/postcss-merge-longhand/node_modules/postcss/package.json,atanas.info/node_modules/postcss-utilities/node_modules/postcss/package.json,atanas.info/node_modules/postcss-convert-values/node_modules/postcss/package.json,atanas.info/node_modules/@vuepress/core/node_modules/postcss/package.json,atanas.info/node_modules/postcss-attribute-case-insensitive/node_modules/postcss/package.json,atanas.info/node_modules/postcss-discard-duplicates/node_modules/postcss/package.json,atanas.info/node_modules/postcss-logical/node_modules/postcss/package.json,atanas.info/node_modules/postcss-preset-env/node_modules/postcss/package.json,atanas.info/node_modules/postcss-normalize-timing-functions/node_modules/postcss/package.json,atanas.info/node_modules/postcss-color-rebeccapurple/node_modules/postcss/package.json,atanas.info/node_modules/postcss-normalize-unicode/node_modules/postcss/package.json,atanas.info/node_modules/postcss-initial/node_modules/postcss/package.json,atanas.info/node_modules/postcss-double-position-gradients/node_modules/postcss/package.json,atanas.info/node_modules/@vue/component-compiler-utils/node_modules/postcss/package.json,atanas.info/node_modules/postcss-simple-vars/node_modules/postcss/package.json,atanas.info/node_modules/postcss-normalize-repeat-style/node_modules/postcss/package.json,atanas.info/node_modules/postcss-scss/node_modules/postcss/package.json,atanas.info/node_modules/cssnano/node_modules/postcss/package.json,atanas.info/node_modules/postcss-discard-overridden/node_modules/postcss/package.json,atanas.info/node_modules/postcss-focus-visible/node_modules/postcss/package.json,atanas.info/node_modules/css-has-pseudo/node_modules/postcss/package.json,atanas.info/node_modules/postcss-unique-selectors/node_modules/postcss/package.json,atanas.info/node_modules/postcss-minify-font-values/node_modules/postcss/package.json,atanas.info/node_modules/postcss-custom-selectors/node_modules/postcss/package.json,atanas.info/node_modules/postcss-normalize-charset/node_modules/postcss/package.json,atanas.info/node_modules/postcss-normalize-string/node_modules/postcss/package.json,atanas.info/node_modules/postcss-page-break/node_modules/postcss/package.json,atanas.info/node_modules/postcss-env-function/node_modules/postcss/package.json,atanas.info/node_modules/postcss-normalize-display-values/node_modules/postcss/package.json,atanas.info/node_modules/css-loader/node_modules/postcss/package.json,atanas.info/node_modules/postcss-dir-pseudo-class/node_modules/postcss/package.json,atanas.info/node_modules/postcss-replace-overflow-wrap/node_modules/postcss/package.json,atanas.info/node_modules/postcss-sass/node_modules/postcss/package.json,atanas.info/node_modules/postcss-loader/node_modules/postcss/package.json,atanas.info/node_modules/postcss-selector-not/node_modules/postcss/package.json,atanas.info/node_modules/postcss-image-set-function/node_modules/postcss/package.json,atanas.info/node_modules/postcss-normalize-whitespace/node_modules/postcss/package.json,atanas.info/node_modules/postcss-discard-comments/node_modules/postcss/package.json,atanas.info/node_modules/postcss-selector-matches/node_modules/postcss/package.json,atanas.info/node_modules/postcss-less/node_modules/postcss/package.json,atanas.info/node_modules/postcss-overflow-shorthand/node_modules/postcss/package.json,atanas.info/node_modules/postcss-prefix-selector/node_modules/postcss/package.json,atanas.info/node_modules/postcss-lab-function/node_modules/postcss/package.json,atanas.info/node_modules/css-declaration-sorter/node_modules/postcss/package.json,atanas.info/node_modules/postcss-discard-empty/node_modules/postcss/package.json,atanas.info/node_modules/postcss-color-mod-function/node_modules/postcss/package.json,atanas.info/node_modules/parcel-bundler/node_modules/postcss/package.json,atanas.info/node_modules/postcss-pseudo-class-any-link/node_modules/postcss/package.json,atanas.info/node_modules/postcss-reduce-initial/node_modules/postcss/package.json,atanas.info/node_modules/postcss-gap-properties/node_modules/postcss/package.json,atanas.info/node_modules/postcss-place/node_modules/postcss/package.json,atanas.info/node_modules/stylelint/node_modules/postcss/package.json</p> <p> Dependency Hierarchy: - postcss-preset-env-6.7.0.tgz (Root Library) - postcss-dir-pseudo-class-5.0.0.tgz - :x: **postcss-7.0.35.tgz** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/scriptex/atanas.info/commit/3c77aba896f1a2c3daa0199814d8416b30255cdc">3c77aba896f1a2c3daa0199814d8416b30255cdc</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The package postcss from 7.0.0 and before 8.2.10 are vulnerable to Regular Expression Denial of Service (ReDoS) during source map parsing. <p>Publish Date: 2021-04-12 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23368>CVE-2021-23368</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: Low </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23368">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23368</a></p> <p>Release Date: 2021-04-12</p> <p>Fix Resolution: postcss -8.2.10</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 postcss tgz postcss tgz cve medium severity vulnerability vulnerable libraries postcss tgz postcss tgz postcss tgz tool for transforming styles with js plugins library home page a href path to dependency file atanas info package json path to vulnerable library atanas info node modules purgecss node modules postcss package json dependency hierarchy parcel bundler tgz root library htmlnano tgz purgecss tgz x postcss tgz vulnerable library postcss tgz tool for transforming styles with js plugins library home page a href path to dependency file atanas info package json path to vulnerable library atanas info node modules postcss normalize positions node modules postcss package json atanas info node modules icss utils node modules postcss package json atanas info node modules stylehacks node modules postcss package json atanas info node modules cssnano preset default node modules postcss package json atanas info node modules postcss minify gradients node modules postcss package json atanas info node modules postcss normalize url node modules postcss package json atanas info node modules postcss nesting node modules postcss package json atanas info node modules css blank pseudo node modules postcss package json atanas info node modules postcss color hex alpha node modules postcss package json atanas info node modules postcss browser comments node modules postcss package json atanas info node modules postcss color gray node modules postcss package json atanas info node modules postcss ordered values node modules postcss package json atanas info node modules postcss custom properties node modules postcss package json atanas info node modules cssnano util raw cache node modules postcss package json atanas info node modules postcss safe parser node modules postcss package json atanas info node modules postcss svgo node modules postcss package json atanas info node modules css prefers color scheme node modules postcss package json atanas info node modules postcss color functional notation node modules postcss package json atanas info node modules postcss font variant node modules postcss package json atanas info node modules postcss minify selectors node modules postcss package json atanas info node modules postcss focus within node modules postcss package json atanas info node modules postcss reduce transforms node modules postcss package json atanas info node modules postcss normalize node modules postcss package json atanas info node modules postcss colormin node modules postcss package json atanas info node modules postcss media minmax node modules postcss package json atanas info node modules uncss node modules postcss package json atanas info node modules postcss minify params node modules postcss package json atanas info node modules postcss merge longhand node modules postcss package json atanas info node modules postcss utilities node modules postcss package json atanas info node modules postcss convert values node modules postcss package json atanas info node modules vuepress core node modules postcss package json atanas info node modules postcss attribute case insensitive node modules postcss package json atanas info node modules postcss discard duplicates node modules postcss package json atanas info node modules postcss logical node modules postcss package json atanas info node modules postcss preset env node modules postcss package json atanas info node modules postcss normalize timing functions node modules postcss package json atanas info node modules postcss color rebeccapurple node modules postcss package json atanas info node modules postcss normalize unicode node modules postcss package json atanas info node modules postcss initial node modules postcss package json atanas info node modules postcss double position gradients node modules postcss package json atanas info node modules vue component compiler utils node modules postcss package json atanas info node modules postcss simple vars node modules postcss package json atanas info node modules postcss normalize repeat style node modules postcss package json atanas info node modules postcss scss node modules postcss package json atanas info node modules cssnano node modules postcss package json atanas info node modules postcss discard overridden node modules postcss package json atanas info node modules postcss focus visible node modules postcss package json atanas info node modules css has pseudo node modules postcss package json atanas info node modules postcss unique selectors node modules postcss package json atanas info node modules postcss minify font values node modules postcss package json atanas info node modules postcss custom selectors node modules postcss package json atanas info node modules postcss normalize charset node modules postcss package json atanas info node modules postcss normalize string node modules postcss package json atanas info node modules postcss page break node modules postcss package json atanas info node modules postcss env function node modules postcss package json atanas info node modules postcss normalize display values node modules postcss package json atanas info node modules css loader node modules postcss package json atanas info node modules postcss dir pseudo class node modules postcss package json atanas info node modules postcss replace overflow wrap node modules postcss package json atanas info node modules postcss sass node modules postcss package json atanas info node modules postcss loader node modules postcss package json atanas info node modules postcss selector not node modules postcss package json atanas info node modules postcss image set function node modules postcss package json atanas info node modules postcss normalize whitespace node modules postcss package json atanas info node modules postcss discard comments node modules postcss package json atanas info node modules postcss selector matches node modules postcss package json atanas info node modules postcss less node modules postcss package json atanas info node modules postcss overflow shorthand node modules postcss package json atanas info node modules postcss prefix selector node modules postcss package json atanas info node modules postcss lab function node modules postcss package json atanas info node modules css declaration sorter node modules postcss package json atanas info node modules postcss discard empty node modules postcss package json atanas info node modules postcss color mod function node modules postcss package json atanas info node modules parcel bundler node modules postcss package json atanas info node modules postcss pseudo class any link node modules postcss package json atanas info node modules postcss reduce initial node modules postcss package json atanas info node modules postcss gap properties node modules postcss package json atanas info node modules postcss place node modules postcss package json atanas info node modules stylelint node modules postcss package json dependency hierarchy postcss preset env tgz root library postcss dir pseudo class tgz x postcss tgz vulnerable library found in head commit a href found in base branch master vulnerability details the package postcss from and before are vulnerable to regular expression denial of service redos during source map parsing publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact low for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution postcss step up your open source security game with whitesource
0
3,255
2,610,059,279
IssuesEvent
2015-02-26 18:17:30
chrsmith/jsjsj122
https://api.github.com/repos/chrsmith/jsjsj122
opened
临海检查不孕不育挂什么科
auto-migrated Priority-Medium Type-Defect
``` 临海检查不孕不育挂什么科【台州五洲生殖医院】24小时健康 咨询热线:0576-88066933-(扣扣800080609)-(微信号tzwzszyy)医院地址:台 州市椒江区枫南路229号(枫南大转盘旁)乘车线路:乘坐104、1 08、118、198及椒江一金清公交车直达枫南小区,乘坐107、105、 109、112、901、 902公交车到星星广场下车,步行即可到院。 诊疗项目:阳痿,早泄,前列腺炎,前列腺增生,龟头炎,�� �精,无精。包皮包茎,精索静脉曲张,淋病等。 台州五洲生殖医院是台州最大的男科医院,权威专家在线免�� �咨询,拥有专业完善的男科检查治疗设备,严格按照国家标� ��收费。尖端医疗设备,与世界同步。权威专家,成就专业典 范。人性化服务,一切以患者为中心。 看男科就选台州五洲生殖医院,专业男科为男人。 ``` ----- Original issue reported on code.google.com by `poweragr...@gmail.com` on 30 May 2014 at 6:55
1.0
临海检查不孕不育挂什么科 - ``` 临海检查不孕不育挂什么科【台州五洲生殖医院】24小时健康 咨询热线:0576-88066933-(扣扣800080609)-(微信号tzwzszyy)医院地址:台 州市椒江区枫南路229号(枫南大转盘旁)乘车线路:乘坐104、1 08、118、198及椒江一金清公交车直达枫南小区,乘坐107、105、 109、112、901、 902公交车到星星广场下车,步行即可到院。 诊疗项目:阳痿,早泄,前列腺炎,前列腺增生,龟头炎,�� �精,无精。包皮包茎,精索静脉曲张,淋病等。 台州五洲生殖医院是台州最大的男科医院,权威专家在线免�� �咨询,拥有专业完善的男科检查治疗设备,严格按照国家标� ��收费。尖端医疗设备,与世界同步。权威专家,成就专业典 范。人性化服务,一切以患者为中心。 看男科就选台州五洲生殖医院,专业男科为男人。 ``` ----- Original issue reported on code.google.com by `poweragr...@gmail.com` on 30 May 2014 at 6:55
defect
临海检查不孕不育挂什么科 临海检查不孕不育挂什么科【台州五洲生殖医院】 咨询热线 微信号tzwzszyy 医院地址 台 (枫南大转盘旁)乘车线路 、 、 、 , 、 、 、 、 、 ,步行即可到院。 诊疗项目:阳痿,早泄,前列腺炎,前列腺增生,龟头炎,�� �精,无精。包皮包茎,精索静脉曲张,淋病等。 台州五洲生殖医院是台州最大的男科医院,权威专家在线免�� �咨询,拥有专业完善的男科检查治疗设备,严格按照国家标� ��收费。尖端医疗设备,与世界同步。权威专家,成就专业典 范。人性化服务,一切以患者为中心。 看男科就选台州五洲生殖医院,专业男科为男人。 original issue reported on code google com by poweragr gmail com on may at
1
55,309
14,365,162,969
IssuesEvent
2020-12-01 01:07:26
department-of-veterans-affairs/va.gov-team
https://api.github.com/repos/department-of-veterans-affairs/va.gov-team
opened
508-defect-3 [COGNITION]: Components that have the same functionality MUST be identified consistently
508-defect-3 508-issue-cognition 508/Accessibility staging-review vsa vsa-ebenefits
# [508-defect-3](https://github.com/department-of-veterans-affairs/va.gov-team/blob/master/platform/accessibility/guidance/defect-severity-rubric.md#508-defect-3) ## Feedback framework - **❗️ Must** for if the feedback must be applied - **⚠️ Should** if the feedback is best practice - **✔️ Consider** for suggestions/enhancements ## Definition of done 1. Review and acknowledge feedback. 1. Fix and/or document decisions made. 1. Accessibility specialist will close ticket after reviewing documented decisions / validating fix. <hr/> ## Point of Contact **VFS Point of Contact:** Josh Kim ## User Story or Problem Statement As a user with cognitive considerations, I expect to see the sign in button to be consistently styled as a button throughout the page so that I can navigate confidently. ## Details The option to sign in is presented to the user differently 3 times on the subway map page. 1. As a semantic button styled as a button with the text "Sign in" within the navigation 2. As a semantic button styled as a button with the text "Sign in to start your application" within an alert at the top of the page. 3. As a semantic button styled as a link with the text "Sign in to your account." This presents several issues: 1. Making a link look like a button is materially dishonest. It tells users that links and buttons are the same when they’re not. 2. Buttons behave differently than anchor tags. For example, users may become frustrated when trying to open a new tab when right clicking on a button styled as a link. 3. Inconsistent text generates inconsistent accessible names. Is a user signing in to access their account, to start an application, or for no known purpose at all? Screen reader users may become confused at the inconsistency. ## Acceptance Criteria - [ ] Buttons are visually styled as buttons - [ ] Buttons that share the same purpose share the same accessible name ## Environment * Operating System: all * Browser: any * Screenreading device: any * Server destination: staging, production ## Steps to Recreate 1. Open up the subway map page for [VA Form 28-8832](https://staging.va.gov/careers-employment/education-and-career-counseling/apply-career-guidance-form-28-8832/introduction). 2. Open up dev tools and inspect the link styled as a button "Sign in to your account" near the bottom of the page. 3. Confirm it is a button styled as a link. ## Solution (if known) 2 solutions exist depending on design intent: 1. Delete the alert at the bottom of the page. If no clear design intent or research can justify its use, it may be more beneficial to the user to remove it from the page to reduce noise. 2. Restyle the button as a button instead of a link and rename it to be consistent with the original call to action. A primary or secondary button can be used depending on the designer's intent. View the code below for directions on how. ### Before ```html <div class="usa-alert-body"> You can save this application in progress, and come back later to finish filling it out. <br> <button class="va-button-link"> Sign in to your account. </button> </div> ``` ### After ``` diff <div class="usa-alert-body"> + <!-- Added a p tag --> <p> You can save this application in progress, and come back later to finish filling it out. </p> - <!-- Removed the br --> + <!-- Changed the class to usa-button-primary OR you can consider changing to usa-button-secondary too--> <button class="usa-button-primary"> Sign in to start your application </button> </div> ``` ## WCAG or Vendor Guidance * [WCAG 2.0 SC 3.2.4: Consistent Identification AA](https://www.w3.org/WAI/WCAG21/Understanding/consistent-identification.html): Components that have the same functionality within a set of Web pages are identified consistently. * [Adam Silver: But sometimes buttons look like links](https://adamsilver.io/articles/but-sometimes-buttons-look-like-links/) ## Screenshots or Trace Logs ### Before <img width="742" alt="Screen Shot 2020-11-30 at 8 03 36 PM" src="https://user-images.githubusercontent.com/14154792/100683834-24eae300-3347-11eb-8ffb-c52c440b5e30.png"> ### After <img width="715" alt="Screen Shot 2020-11-30 at 8 04 03 PM" src="https://user-images.githubusercontent.com/14154792/100683864-33d19580-3347-11eb-9f41-11352db37f6f.png"> OR <img width="793" alt="Screen Shot 2020-11-30 at 8 05 23 PM" src="https://user-images.githubusercontent.com/14154792/100683955-63809d80-3347-11eb-92b7-57d3e78a1633.png"> The padding is a bit overwhelming here regardless of the solution. Given the amount of noise already on the page, I would recommend the first solution of simply removing it from the page unless a strong design reason exists for it.
1.0
508-defect-3 [COGNITION]: Components that have the same functionality MUST be identified consistently - # [508-defect-3](https://github.com/department-of-veterans-affairs/va.gov-team/blob/master/platform/accessibility/guidance/defect-severity-rubric.md#508-defect-3) ## Feedback framework - **❗️ Must** for if the feedback must be applied - **⚠️ Should** if the feedback is best practice - **✔️ Consider** for suggestions/enhancements ## Definition of done 1. Review and acknowledge feedback. 1. Fix and/or document decisions made. 1. Accessibility specialist will close ticket after reviewing documented decisions / validating fix. <hr/> ## Point of Contact **VFS Point of Contact:** Josh Kim ## User Story or Problem Statement As a user with cognitive considerations, I expect to see the sign in button to be consistently styled as a button throughout the page so that I can navigate confidently. ## Details The option to sign in is presented to the user differently 3 times on the subway map page. 1. As a semantic button styled as a button with the text "Sign in" within the navigation 2. As a semantic button styled as a button with the text "Sign in to start your application" within an alert at the top of the page. 3. As a semantic button styled as a link with the text "Sign in to your account." This presents several issues: 1. Making a link look like a button is materially dishonest. It tells users that links and buttons are the same when they’re not. 2. Buttons behave differently than anchor tags. For example, users may become frustrated when trying to open a new tab when right clicking on a button styled as a link. 3. Inconsistent text generates inconsistent accessible names. Is a user signing in to access their account, to start an application, or for no known purpose at all? Screen reader users may become confused at the inconsistency. ## Acceptance Criteria - [ ] Buttons are visually styled as buttons - [ ] Buttons that share the same purpose share the same accessible name ## Environment * Operating System: all * Browser: any * Screenreading device: any * Server destination: staging, production ## Steps to Recreate 1. Open up the subway map page for [VA Form 28-8832](https://staging.va.gov/careers-employment/education-and-career-counseling/apply-career-guidance-form-28-8832/introduction). 2. Open up dev tools and inspect the link styled as a button "Sign in to your account" near the bottom of the page. 3. Confirm it is a button styled as a link. ## Solution (if known) 2 solutions exist depending on design intent: 1. Delete the alert at the bottom of the page. If no clear design intent or research can justify its use, it may be more beneficial to the user to remove it from the page to reduce noise. 2. Restyle the button as a button instead of a link and rename it to be consistent with the original call to action. A primary or secondary button can be used depending on the designer's intent. View the code below for directions on how. ### Before ```html <div class="usa-alert-body"> You can save this application in progress, and come back later to finish filling it out. <br> <button class="va-button-link"> Sign in to your account. </button> </div> ``` ### After ``` diff <div class="usa-alert-body"> + <!-- Added a p tag --> <p> You can save this application in progress, and come back later to finish filling it out. </p> - <!-- Removed the br --> + <!-- Changed the class to usa-button-primary OR you can consider changing to usa-button-secondary too--> <button class="usa-button-primary"> Sign in to start your application </button> </div> ``` ## WCAG or Vendor Guidance * [WCAG 2.0 SC 3.2.4: Consistent Identification AA](https://www.w3.org/WAI/WCAG21/Understanding/consistent-identification.html): Components that have the same functionality within a set of Web pages are identified consistently. * [Adam Silver: But sometimes buttons look like links](https://adamsilver.io/articles/but-sometimes-buttons-look-like-links/) ## Screenshots or Trace Logs ### Before <img width="742" alt="Screen Shot 2020-11-30 at 8 03 36 PM" src="https://user-images.githubusercontent.com/14154792/100683834-24eae300-3347-11eb-8ffb-c52c440b5e30.png"> ### After <img width="715" alt="Screen Shot 2020-11-30 at 8 04 03 PM" src="https://user-images.githubusercontent.com/14154792/100683864-33d19580-3347-11eb-9f41-11352db37f6f.png"> OR <img width="793" alt="Screen Shot 2020-11-30 at 8 05 23 PM" src="https://user-images.githubusercontent.com/14154792/100683955-63809d80-3347-11eb-92b7-57d3e78a1633.png"> The padding is a bit overwhelming here regardless of the solution. Given the amount of noise already on the page, I would recommend the first solution of simply removing it from the page unless a strong design reason exists for it.
defect
defect components that have the same functionality must be identified consistently feedback framework ❗️ must for if the feedback must be applied ⚠️ should if the feedback is best practice ✔️ consider for suggestions enhancements definition of done review and acknowledge feedback fix and or document decisions made accessibility specialist will close ticket after reviewing documented decisions validating fix point of contact vfs point of contact josh kim user story or problem statement as a user with cognitive considerations i expect to see the sign in button to be consistently styled as a button throughout the page so that i can navigate confidently details the option to sign in is presented to the user differently times on the subway map page as a semantic button styled as a button with the text sign in within the navigation as a semantic button styled as a button with the text sign in to start your application within an alert at the top of the page as a semantic button styled as a link with the text sign in to your account this presents several issues making a link look like a button is materially dishonest it tells users that links and buttons are the same when they’re not buttons behave differently than anchor tags for example users may become frustrated when trying to open a new tab when right clicking on a button styled as a link inconsistent text generates inconsistent accessible names is a user signing in to access their account to start an application or for no known purpose at all screen reader users may become confused at the inconsistency acceptance criteria buttons are visually styled as buttons buttons that share the same purpose share the same accessible name environment operating system all browser any screenreading device any server destination staging production steps to recreate open up the subway map page for open up dev tools and inspect the link styled as a button sign in to your account near the bottom of the page confirm it is a button styled as a link solution if known solutions exist depending on design intent delete the alert at the bottom of the page if no clear design intent or research can justify its use it may be more beneficial to the user to remove it from the page to reduce noise restyle the button as a button instead of a link and rename it to be consistent with the original call to action a primary or secondary button can be used depending on the designer s intent view the code below for directions on how before html you can save this application in progress and come back later to finish filling it out sign in to your account after diff you can save this application in progress and come back later to finish filling it out sign in to start your application wcag or vendor guidance components that have the same functionality within a set of web pages are identified consistently screenshots or trace logs before img width alt screen shot at pm src after img width alt screen shot at pm src or img width alt screen shot at pm src the padding is a bit overwhelming here regardless of the solution given the amount of noise already on the page i would recommend the first solution of simply removing it from the page unless a strong design reason exists for it
1
42,131
10,820,741,652
IssuesEvent
2019-11-08 17:01:10
mozilla-lockwise/lockwise-ios
https://api.github.com/repos/mozilla-lockwise/lockwise-ios
closed
Login detail view header is white
type: defect
## Steps to reproduce Login on iPad device ### Expected behavior The view is correct ### Actual behavior The login detail view header is all shown in white ### Device & build information * Device: iPad Air * Build version: ios13 branch bc3c7e1 ### Notes Attachments: ![Screenshot 2019-11-07 at 15 27 34](https://user-images.githubusercontent.com/1897507/68407129-55337280-0183-11ea-88c0-863ca2c9bde7.png)
1.0
Login detail view header is white - ## Steps to reproduce Login on iPad device ### Expected behavior The view is correct ### Actual behavior The login detail view header is all shown in white ### Device & build information * Device: iPad Air * Build version: ios13 branch bc3c7e1 ### Notes Attachments: ![Screenshot 2019-11-07 at 15 27 34](https://user-images.githubusercontent.com/1897507/68407129-55337280-0183-11ea-88c0-863ca2c9bde7.png)
defect
login detail view header is white steps to reproduce login on ipad device expected behavior the view is correct actual behavior the login detail view header is all shown in white device build information device ipad air build version branch notes attachments
1
302,177
26,130,471,685
IssuesEvent
2022-12-29 03:39:38
pytorch/pytorch
https://api.github.com/repos/pytorch/pytorch
opened
DISABLED test_merge_liveness (jit.test_freezing.TestMKLDNNReinplacing)
oncall: jit module: flaky-tests skipped
Platforms: linux This test was disabled because it is failing in CI. See [recent examples](https://hud.pytorch.org/failure/test_merge_liveness) and the most recent trunk [workflow logs](https://github.com/pytorch/pytorch/runs/10335682113). Over the past 72 hours, it has flakily failed in 2 workflow(s). **Debugging instructions (after clicking on the recent samples link):** To find relevant log snippets: 1. Click on the workflow logs linked above 2. Grep for `test_merge_liveness`
1.0
DISABLED test_merge_liveness (jit.test_freezing.TestMKLDNNReinplacing) - Platforms: linux This test was disabled because it is failing in CI. See [recent examples](https://hud.pytorch.org/failure/test_merge_liveness) and the most recent trunk [workflow logs](https://github.com/pytorch/pytorch/runs/10335682113). Over the past 72 hours, it has flakily failed in 2 workflow(s). **Debugging instructions (after clicking on the recent samples link):** To find relevant log snippets: 1. Click on the workflow logs linked above 2. Grep for `test_merge_liveness`
non_defect
disabled test merge liveness jit test freezing testmkldnnreinplacing platforms linux this test was disabled because it is failing in ci see and the most recent trunk over the past hours it has flakily failed in workflow s debugging instructions after clicking on the recent samples link to find relevant log snippets click on the workflow logs linked above grep for test merge liveness
0
251,888
21,527,173,411
IssuesEvent
2022-04-28 19:42:46
damccorm/test-migration-target
https://api.github.com/repos/damccorm/test-migration-target
opened
Beam Dependency Update Request: org.testcontainers:postgresql
sub-task P2 testing dependencies
------------------------- 2022-01-24 12:26:43.143416 ------------------------- Please consider upgrading the dependency org.testcontainers:postgresql. The current version is 1.15.1. The latest version is 1.16.3 cc: Please refer to [Beam Dependency Guide |https://beam.apache.org/contribute/dependencies/]for more information. Do Not Modify The Description Above. ------------------------- 2022-01-31 12:31:39.797182 ------------------------- Please consider upgrading the dependency org.testcontainers:postgresql. The current version is 1.15.1. The latest version is 1.16.3 cc: Please refer to [Beam Dependency Guide |https://beam.apache.org/contribute/dependencies/]for more information. Do Not Modify The Description Above. ------------------------- 2022-02-07 15:15:19.109021 ------------------------- Please consider upgrading the dependency org.testcontainers:postgresql. The current version is 1.15.1. The latest version is 1.16.3 cc: Please refer to [Beam Dependency Guide |https://beam.apache.org/contribute/dependencies/]for more information. Do Not Modify The Description Above. Imported from Jira [BEAM-13729](https://issues.apache.org/jira/browse/BEAM-13729). Original Jira may contain additional context. Reported by: BeamJiraBot.
1.0
Beam Dependency Update Request: org.testcontainers:postgresql - ------------------------- 2022-01-24 12:26:43.143416 ------------------------- Please consider upgrading the dependency org.testcontainers:postgresql. The current version is 1.15.1. The latest version is 1.16.3 cc: Please refer to [Beam Dependency Guide |https://beam.apache.org/contribute/dependencies/]for more information. Do Not Modify The Description Above. ------------------------- 2022-01-31 12:31:39.797182 ------------------------- Please consider upgrading the dependency org.testcontainers:postgresql. The current version is 1.15.1. The latest version is 1.16.3 cc: Please refer to [Beam Dependency Guide |https://beam.apache.org/contribute/dependencies/]for more information. Do Not Modify The Description Above. ------------------------- 2022-02-07 15:15:19.109021 ------------------------- Please consider upgrading the dependency org.testcontainers:postgresql. The current version is 1.15.1. The latest version is 1.16.3 cc: Please refer to [Beam Dependency Guide |https://beam.apache.org/contribute/dependencies/]for more information. Do Not Modify The Description Above. Imported from Jira [BEAM-13729](https://issues.apache.org/jira/browse/BEAM-13729). Original Jira may contain additional context. Reported by: BeamJiraBot.
non_defect
beam dependency update request org testcontainers postgresql please consider upgrading the dependency org testcontainers postgresql the current version is the latest version is cc please refer to for more information do not modify the description above please consider upgrading the dependency org testcontainers postgresql the current version is the latest version is cc please refer to for more information do not modify the description above please consider upgrading the dependency org testcontainers postgresql the current version is the latest version is cc please refer to for more information do not modify the description above imported from jira original jira may contain additional context reported by beamjirabot
0
1,745
2,603,970,571
IssuesEvent
2015-02-24 19:00:10
chrsmith/nishazi6
https://api.github.com/repos/chrsmith/nishazi6
opened
沈阳疱疹能治疗好吗
auto-migrated Priority-Medium Type-Defect
``` 沈阳疱疹能治疗好吗〓沈陽軍區政治部醫院性病〓TEL:024-3102 3308〓成立于1946年,68年專注于性傳播疾病的研究和治療。位� ��沈陽市沈河區二緯路32號。是一所與新中國同建立共輝煌的� ��史悠久、設備精良、技術權威、專家云集,是預防、保健、 醫療、科研康復為一體的綜合性醫院。是國家首批公立甲等�� �隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、東� ��大學等知名高等院校的教學醫院。曾被中國人民解放軍空軍 后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體二�� �功。 ``` ----- Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 7:29
1.0
沈阳疱疹能治疗好吗 - ``` 沈阳疱疹能治疗好吗〓沈陽軍區政治部醫院性病〓TEL:024-3102 3308〓成立于1946年,68年專注于性傳播疾病的研究和治療。位� ��沈陽市沈河區二緯路32號。是一所與新中國同建立共輝煌的� ��史悠久、設備精良、技術權威、專家云集,是預防、保健、 醫療、科研康復為一體的綜合性醫院。是國家首批公立甲等�� �隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、東� ��大學等知名高等院校的教學醫院。曾被中國人民解放軍空軍 后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體二�� �功。 ``` ----- Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 7:29
defect
沈阳疱疹能治疗好吗 沈阳疱疹能治疗好吗〓沈陽軍區政治部醫院性病〓tel: 〓 , 。位� �� 。是一所與新中國同建立共輝煌的� ��史悠久、設備精良、技術權威、專家云集,是預防、保健、 醫療、科研康復為一體的綜合性醫院。是國家首批公立甲等�� �隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、東� ��大學等知名高等院校的教學醫院。曾被中國人民解放軍空軍 后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體二�� �功。 original issue reported on code google com by gmail com on jun at
1
60,556
17,023,455,790
IssuesEvent
2021-07-03 02:07:23
tomhughes/trac-tickets
https://api.github.com/repos/tomhughes/trac-tickets
closed
Visual glitch in Polishtranslation of main site
Component: website Priority: minor Resolution: fixed Type: defect
**[Submitted to the original trac issue database at 9.39am, Saturday, 8th August 2009]** The "where am i" text in Polish doesn't fit after the "search" text on the left hand side of the page. Screenshot attached
1.0
Visual glitch in Polishtranslation of main site - **[Submitted to the original trac issue database at 9.39am, Saturday, 8th August 2009]** The "where am i" text in Polish doesn't fit after the "search" text on the left hand side of the page. Screenshot attached
defect
visual glitch in polishtranslation of main site the where am i text in polish doesn t fit after the search text on the left hand side of the page screenshot attached
1
10,702
2,622,181,037
IssuesEvent
2015-03-04 00:18:50
byzhang/leveldb
https://api.github.com/repos/byzhang/leveldb
opened
Concurrency support for multiple processes (1 exclusive initializer / n readers)
auto-migrated Priority-Medium Type-Defect
``` Can the designers of leveldb explain the rational behind the design decision of not supporting multiple processes in leveldb implementation? The documentation clearly says, under Concurrency section that: "A database may only be opened by one process at a time. The leveldb implementation acquires a lock from the operating system to prevent misuse." Currently I can see that when one process opens level db, it uses fcntl with RW lock (exclusive lock). However this is a severely limiting, as no other process can ever open the same database even if it wants to just inspect the database contents for RDONLY purposes. The use case for example is - one process exclusively opens leveldb database and fills up the database, then closes it. Then n different processes start reading that database. ``` Original issue reported on code.google.com by `shri...@gmail.com` on 10 Jun 2013 at 8:03
1.0
Concurrency support for multiple processes (1 exclusive initializer / n readers) - ``` Can the designers of leveldb explain the rational behind the design decision of not supporting multiple processes in leveldb implementation? The documentation clearly says, under Concurrency section that: "A database may only be opened by one process at a time. The leveldb implementation acquires a lock from the operating system to prevent misuse." Currently I can see that when one process opens level db, it uses fcntl with RW lock (exclusive lock). However this is a severely limiting, as no other process can ever open the same database even if it wants to just inspect the database contents for RDONLY purposes. The use case for example is - one process exclusively opens leveldb database and fills up the database, then closes it. Then n different processes start reading that database. ``` Original issue reported on code.google.com by `shri...@gmail.com` on 10 Jun 2013 at 8:03
defect
concurrency support for multiple processes exclusive initializer n readers can the designers of leveldb explain the rational behind the design decision of not supporting multiple processes in leveldb implementation the documentation clearly says under concurrency section that a database may only be opened by one process at a time the leveldb implementation acquires a lock from the operating system to prevent misuse currently i can see that when one process opens level db it uses fcntl with rw lock exclusive lock however this is a severely limiting as no other process can ever open the same database even if it wants to just inspect the database contents for rdonly purposes the use case for example is one process exclusively opens leveldb database and fills up the database then closes it then n different processes start reading that database original issue reported on code google com by shri gmail com on jun at
1
298,631
25,841,238,662
IssuesEvent
2022-12-13 00:38:50
devssa/onde-codar-em-salvador
https://api.github.com/repos/devssa/onde-codar-em-salvador
closed
[PHP] [TDD] [JavaScript] Software QA Tester na [VXCASE]
SALVADOR TESTE EFETIVO(CLT) PJ PHP PYTHON JAVASCRIPT TESTE MANUAL APIs TESTES AUTOMATIZADOS HELP WANTED Stale
## Descrição da vaga - Auxiliar a equipe de desenvolvimento a validar o fluxo e a entrega de novas funcionalidades. - Implementar testes automatizados para auxiliar na validação das entregas. - Analisar, identificar e mapear os bugs de funcionalidades novas e já existentes no sistema. ## Local Escritório, Salvador-Ba ## Requisitos - Conhecimento em alguma linguagem de programação. (Diferencial: PHP, javascript, python) - Conhecer ou já ter trabalhado com testes automatizados e/ou manuais. - Boa capacidade analítica para ajudar a resolver os problemas. **Diferenciais:** - Conhecimento no desenvolvimento e integração com APIs e arquitetura de aplicações Web ## Contratação CLT ou PJ a combinar ## Como se candidatar Por favor envie um email para jamillysantana@vxcase.com.br com seu CV anexado - enviar no assunto: Software QA Tester Vxcase ## Tempo médio de feedbacks Costumamos enviar feedbacks em até 5 dias após cada processo. ## Labels - Alocado - CLT - Júnior - Pleno
3.0
[PHP] [TDD] [JavaScript] Software QA Tester na [VXCASE] - ## Descrição da vaga - Auxiliar a equipe de desenvolvimento a validar o fluxo e a entrega de novas funcionalidades. - Implementar testes automatizados para auxiliar na validação das entregas. - Analisar, identificar e mapear os bugs de funcionalidades novas e já existentes no sistema. ## Local Escritório, Salvador-Ba ## Requisitos - Conhecimento em alguma linguagem de programação. (Diferencial: PHP, javascript, python) - Conhecer ou já ter trabalhado com testes automatizados e/ou manuais. - Boa capacidade analítica para ajudar a resolver os problemas. **Diferenciais:** - Conhecimento no desenvolvimento e integração com APIs e arquitetura de aplicações Web ## Contratação CLT ou PJ a combinar ## Como se candidatar Por favor envie um email para jamillysantana@vxcase.com.br com seu CV anexado - enviar no assunto: Software QA Tester Vxcase ## Tempo médio de feedbacks Costumamos enviar feedbacks em até 5 dias após cada processo. ## Labels - Alocado - CLT - Júnior - Pleno
non_defect
software qa tester na descrição da vaga auxiliar a equipe de desenvolvimento a validar o fluxo e a entrega de novas funcionalidades implementar testes automatizados para auxiliar na validação das entregas analisar identificar e mapear os bugs de funcionalidades novas e já existentes no sistema local escritório salvador ba requisitos conhecimento em alguma linguagem de programação diferencial php javascript python conhecer ou já ter trabalhado com testes automatizados e ou manuais boa capacidade analítica para ajudar a resolver os problemas diferenciais conhecimento no desenvolvimento e integração com apis e arquitetura de aplicações web contratação clt ou pj a combinar como se candidatar por favor envie um email para jamillysantana vxcase com br com seu cv anexado enviar no assunto software qa tester vxcase tempo médio de feedbacks costumamos enviar feedbacks em até dias após cada processo labels alocado clt júnior pleno
0
58,695
16,701,934,822
IssuesEvent
2021-06-09 04:36:11
Questie/Questie
https://api.github.com/repos/Questie/Questie
closed
Unusable for a while after login
Questie - Application Type - Defect
Questie is unusable after login and start working only after I do some game action. The problem is that at login _QUEST_LOG_UPDATE is happening before _PLAYER_LOGIN. There's a variable intended for that in your code : ````lua local hasFirstQLU = false ```` ````lua -- manually fire QLU since enter has been delayed past the first QLU if hasFirstQLU then _QUEST_LOG_UPDATE() end ```` But it's always false, maybe something was lost in migration. The problem is solved as soon as I set hasFirstQLU to true in _QUEST_LOG_UPDATE ().
1.0
Unusable for a while after login - Questie is unusable after login and start working only after I do some game action. The problem is that at login _QUEST_LOG_UPDATE is happening before _PLAYER_LOGIN. There's a variable intended for that in your code : ````lua local hasFirstQLU = false ```` ````lua -- manually fire QLU since enter has been delayed past the first QLU if hasFirstQLU then _QUEST_LOG_UPDATE() end ```` But it's always false, maybe something was lost in migration. The problem is solved as soon as I set hasFirstQLU to true in _QUEST_LOG_UPDATE ().
defect
unusable for a while after login questie is unusable after login and start working only after i do some game action the problem is that at login quest log update is happening before player login there s a variable intended for that in your code lua local hasfirstqlu false lua manually fire qlu since enter has been delayed past the first qlu if hasfirstqlu then quest log update end but it s always false maybe something was lost in migration the problem is solved as soon as i set hasfirstqlu to true in quest log update
1
39,255
9,358,560,223
IssuesEvent
2019-04-02 02:57:04
SangheeKim/xerela
https://api.github.com/repos/SangheeKim/xerela
closed
Windows installation not detecting ActivePerl
Priority-Medium Type-Defect auto-migrated
``` What steps will reproduce the problem? 1.Clean install of Windows 2003, Java 6 SDK, and ActivePerl 2.xerela setup program throws error that it cannot find ActivePerl in the system path. Please provide any additional information below. The ActivePerl that I installed for windows added C:\Perl\bin to the system path which apparently is not what the installer is looking for. On a whim I added c:\Perl to the system path and was able to install. ``` Original issue reported on code.google.com by `gth...@gmail.com` on 23 Mar 2011 at 6:30
1.0
Windows installation not detecting ActivePerl - ``` What steps will reproduce the problem? 1.Clean install of Windows 2003, Java 6 SDK, and ActivePerl 2.xerela setup program throws error that it cannot find ActivePerl in the system path. Please provide any additional information below. The ActivePerl that I installed for windows added C:\Perl\bin to the system path which apparently is not what the installer is looking for. On a whim I added c:\Perl to the system path and was able to install. ``` Original issue reported on code.google.com by `gth...@gmail.com` on 23 Mar 2011 at 6:30
defect
windows installation not detecting activeperl what steps will reproduce the problem clean install of windows java sdk and activeperl xerela setup program throws error that it cannot find activeperl in the system path please provide any additional information below the activeperl that i installed for windows added c perl bin to the system path which apparently is not what the installer is looking for on a whim i added c perl to the system path and was able to install original issue reported on code google com by gth gmail com on mar at
1
155,793
19,803,021,430
IssuesEvent
2022-01-19 01:21:15
takahashimasaya00/whitesource-test
https://api.github.com/repos/takahashimasaya00/whitesource-test
opened
CVE-2022-23302 (High) detected in log4j-1.2.15.jar, log4j-1.2.8.jar
security vulnerability
## CVE-2022-23302 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>log4j-1.2.15.jar</b>, <b>log4j-1.2.8.jar</b></p></summary> <p> <details><summary><b>log4j-1.2.15.jar</b></p></summary> <p>Apache Log4j 1.2</p> <p>Library home page: <a href="http://logging.apache.org:80/log4j/1.2/">http://logging.apache.org:80/log4j/1.2/</a></p> <p>Path to vulnerable library: /whitesource-test/lib/log4j-1.2.15.jar</p> <p> Dependency Hierarchy: - :x: **log4j-1.2.15.jar** (Vulnerable Library) </details> <details><summary><b>log4j-1.2.8.jar</b></p></summary> <p></p> <p>Path to vulnerable library: /whitesource-test/lib/log4j-1.2.8.jar</p> <p> Dependency Hierarchy: - :x: **log4j-1.2.8.jar** (Vulnerable Library) </details> <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> JMSSink in all versions of Log4j 1.x is vulnerable to deserialization of untrusted data when the attacker has write access to the Log4j configuration or if the configuration references an LDAP service the attacker has access to. The attacker can provide a TopicConnectionFactoryBindingName configuration causing JMSSink to perform JNDI requests that result in remote code execution in a similar fashion to CVE-2021-4104. Note this issue only affects Log4j 1.x when specifically configured to use JMSSink, which is not the default. Apache Log4j 1.2 reached end of life in August 2015. Users should upgrade to Log4j 2 as it addresses numerous other issues from the previous versions. <p>Publish Date: 2022-01-18 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-23302>CVE-2022-23302</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: None - User Interaction: Required - 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> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2022-23302 (High) detected in log4j-1.2.15.jar, log4j-1.2.8.jar - ## CVE-2022-23302 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>log4j-1.2.15.jar</b>, <b>log4j-1.2.8.jar</b></p></summary> <p> <details><summary><b>log4j-1.2.15.jar</b></p></summary> <p>Apache Log4j 1.2</p> <p>Library home page: <a href="http://logging.apache.org:80/log4j/1.2/">http://logging.apache.org:80/log4j/1.2/</a></p> <p>Path to vulnerable library: /whitesource-test/lib/log4j-1.2.15.jar</p> <p> Dependency Hierarchy: - :x: **log4j-1.2.15.jar** (Vulnerable Library) </details> <details><summary><b>log4j-1.2.8.jar</b></p></summary> <p></p> <p>Path to vulnerable library: /whitesource-test/lib/log4j-1.2.8.jar</p> <p> Dependency Hierarchy: - :x: **log4j-1.2.8.jar** (Vulnerable Library) </details> <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> JMSSink in all versions of Log4j 1.x is vulnerable to deserialization of untrusted data when the attacker has write access to the Log4j configuration or if the configuration references an LDAP service the attacker has access to. The attacker can provide a TopicConnectionFactoryBindingName configuration causing JMSSink to perform JNDI requests that result in remote code execution in a similar fashion to CVE-2021-4104. Note this issue only affects Log4j 1.x when specifically configured to use JMSSink, which is not the default. Apache Log4j 1.2 reached end of life in August 2015. Users should upgrade to Log4j 2 as it addresses numerous other issues from the previous versions. <p>Publish Date: 2022-01-18 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-23302>CVE-2022-23302</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: None - User Interaction: Required - 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> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_defect
cve high detected in jar jar cve high severity vulnerability vulnerable libraries jar jar jar apache library home page a href path to vulnerable library whitesource test lib jar dependency hierarchy x jar vulnerable library jar path to vulnerable library whitesource test lib jar dependency hierarchy x jar vulnerable library found in base branch master vulnerability details jmssink in all versions of x is vulnerable to deserialization of untrusted data when the attacker has write access to the configuration or if the configuration references an ldap service the attacker has access to the attacker can provide a topicconnectionfactorybindingname configuration causing jmssink to perform jndi requests that result in remote code execution in a similar fashion to cve note this issue only affects x when specifically configured to use jmssink which is not the default apache reached end of life in august users should upgrade to as it addresses numerous other issues from the previous versions publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required none user interaction required scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href step up your open source security game with whitesource
0
152,557
23,986,250,342
IssuesEvent
2022-09-13 19:21:06
GovAlta/ui-components
https://api.github.com/repos/GovAlta/ui-components
closed
Create initial plan and working agreement for partnering with service teams to build out design system components
Service design Stale
### Background The design system team has been contacted by the "Housing" team (Jarett Hailes - PO). They would like to partner with the design system team to build a data table component. This is a high-value component used widely across the organization and the Housing team has strong links to the design system team. It has been deemed that this would be a good opportunity to try out this way of working. **As a:** Design system team **I want to:** partner with service teams on building ui-components **so that:** The platform team gets clear requirements for ui-components that are aligned to the needs of a service team. ### Acceptance criteria - [ ] A working agreement is to be created that covers the following: - [ ] Contributions (on both sides) - Could be different sets of documentation for internal team and external team - [ ] Expectations around communications practices - [ ] Meeting attendance - [ ] Responsiveness - [ ] Team/group culture - [ ] Responsibilities/ownership (who has the final say, among other things) - [ ] Accountability - [ ] How the teams will work together - [ ] Outline for a set of recurring meetings - [ ] Methods to be reviewed by the product owner ### Presentable outcomes N/A ### Sprint Ready Checklist - Acceptance criteria defined - Team has defined steps to satisfy acceptance criteria - Acceptance criteria is verifiable / testable - External / 3rd Party dependencies identified ### Related issues: ### Resources: [Working agreement for design system team](https://goa-dio.atlassian.net/wiki/spaces/DS/pages/2198044711/Design+system+working+agreement)
1.0
Create initial plan and working agreement for partnering with service teams to build out design system components - ### Background The design system team has been contacted by the "Housing" team (Jarett Hailes - PO). They would like to partner with the design system team to build a data table component. This is a high-value component used widely across the organization and the Housing team has strong links to the design system team. It has been deemed that this would be a good opportunity to try out this way of working. **As a:** Design system team **I want to:** partner with service teams on building ui-components **so that:** The platform team gets clear requirements for ui-components that are aligned to the needs of a service team. ### Acceptance criteria - [ ] A working agreement is to be created that covers the following: - [ ] Contributions (on both sides) - Could be different sets of documentation for internal team and external team - [ ] Expectations around communications practices - [ ] Meeting attendance - [ ] Responsiveness - [ ] Team/group culture - [ ] Responsibilities/ownership (who has the final say, among other things) - [ ] Accountability - [ ] How the teams will work together - [ ] Outline for a set of recurring meetings - [ ] Methods to be reviewed by the product owner ### Presentable outcomes N/A ### Sprint Ready Checklist - Acceptance criteria defined - Team has defined steps to satisfy acceptance criteria - Acceptance criteria is verifiable / testable - External / 3rd Party dependencies identified ### Related issues: ### Resources: [Working agreement for design system team](https://goa-dio.atlassian.net/wiki/spaces/DS/pages/2198044711/Design+system+working+agreement)
non_defect
create initial plan and working agreement for partnering with service teams to build out design system components background the design system team has been contacted by the housing team jarett hailes po they would like to partner with the design system team to build a data table component this is a high value component used widely across the organization and the housing team has strong links to the design system team it has been deemed that this would be a good opportunity to try out this way of working as a design system team i want to partner with service teams on building ui components so that the platform team gets clear requirements for ui components that are aligned to the needs of a service team acceptance criteria a working agreement is to be created that covers the following contributions on both sides could be different sets of documentation for internal team and external team expectations around communications practices meeting attendance responsiveness team group culture responsibilities ownership who has the final say among other things accountability how the teams will work together outline for a set of recurring meetings methods to be reviewed by the product owner presentable outcomes n a sprint ready checklist acceptance criteria defined team has defined steps to satisfy acceptance criteria acceptance criteria is verifiable testable external party dependencies identified related issues resources
0
40,507
10,023,982,636
IssuesEvent
2019-07-16 20:37:43
OGMS/ogms
https://api.github.com/repos/OGMS/ogms
closed
Should treatment be subclass of health care process?
Priority-Medium Type-Defect auto-migrated
``` Looks like it to me. Ditto: -clinical history taking -convalescence -diagnostic process -history -laboratory test -physical examination -prophylaxis -treatment ``` Original issue reported on code.google.com by `alanruttenberg@gmail.com` on 21 Dec 2014 at 4:32
1.0
Should treatment be subclass of health care process? - ``` Looks like it to me. Ditto: -clinical history taking -convalescence -diagnostic process -history -laboratory test -physical examination -prophylaxis -treatment ``` Original issue reported on code.google.com by `alanruttenberg@gmail.com` on 21 Dec 2014 at 4:32
defect
should treatment be subclass of health care process looks like it to me ditto clinical history taking convalescence diagnostic process history laboratory test physical examination prophylaxis treatment original issue reported on code google com by alanruttenberg gmail com on dec at
1
296,076
22,287,757,962
IssuesEvent
2022-06-11 22:46:10
CR6Community/CR-6-touchscreen
https://api.github.com/repos/CR6Community/CR-6-touchscreen
closed
Strange screen is displayed on Touch Screen firmware flashing.
documentation
I just ordered an additional touch screen for the CR-6 SE and it was delivered. While flashing the new CR-6 SE's touch screen using the 61F_RC_290422_v1 released by CR6Community/CR-6-touchscreen, near completion, a white noise-like screen appears. ![Flashing3](https://user-images.githubusercontent.com/96027590/167519966-102e1db4-7a0e-4ded-b7ad-90b4544b3786.jpg) It looks like the flashing is almost done right before the white noise display. ![Flashing1](https://user-images.githubusercontent.com/96027590/167519988-3b1d0622-ff83-48cf-82b3-bf2dc231bf62.JPG) ![Flashing2](https://user-images.githubusercontent.com/96027590/167519995-3125169b-2880-4b3f-8e69-072a9afd001d.JPG) The new touch screen uses the same PCB as the old LCD. However, flashing completion is indicated differently. However, if I wait a few tens of seconds and turn on the CR-6 SE, it operates normally (displaying icons, selecting menus, etc.). First, to check the kernel version, I checked the kernel version by flashing using an empty DWIN_SET, and at this time, the normal completion screen was displayed. After flashing using the contents of DWIN_SET, a strange completion screen is displayed. ![Flashing End](https://user-images.githubusercontent.com/96027590/167520048-bb61e388-3d2b-42a4-8ea0-3b7c47d87ef6.jpg) On the touch screen I had it shows the normal completion screen. It is strange because it is a symptom that appears on a new touch screen that uses the same PCB.
1.0
Strange screen is displayed on Touch Screen firmware flashing. - I just ordered an additional touch screen for the CR-6 SE and it was delivered. While flashing the new CR-6 SE's touch screen using the 61F_RC_290422_v1 released by CR6Community/CR-6-touchscreen, near completion, a white noise-like screen appears. ![Flashing3](https://user-images.githubusercontent.com/96027590/167519966-102e1db4-7a0e-4ded-b7ad-90b4544b3786.jpg) It looks like the flashing is almost done right before the white noise display. ![Flashing1](https://user-images.githubusercontent.com/96027590/167519988-3b1d0622-ff83-48cf-82b3-bf2dc231bf62.JPG) ![Flashing2](https://user-images.githubusercontent.com/96027590/167519995-3125169b-2880-4b3f-8e69-072a9afd001d.JPG) The new touch screen uses the same PCB as the old LCD. However, flashing completion is indicated differently. However, if I wait a few tens of seconds and turn on the CR-6 SE, it operates normally (displaying icons, selecting menus, etc.). First, to check the kernel version, I checked the kernel version by flashing using an empty DWIN_SET, and at this time, the normal completion screen was displayed. After flashing using the contents of DWIN_SET, a strange completion screen is displayed. ![Flashing End](https://user-images.githubusercontent.com/96027590/167520048-bb61e388-3d2b-42a4-8ea0-3b7c47d87ef6.jpg) On the touch screen I had it shows the normal completion screen. It is strange because it is a symptom that appears on a new touch screen that uses the same PCB.
non_defect
strange screen is displayed on touch screen firmware flashing i just ordered an additional touch screen for the cr se and it was delivered while flashing the new cr se s touch screen using the rc released by cr touchscreen near completion a white noise like screen appears it looks like the flashing is almost done right before the white noise display the new touch screen uses the same pcb as the old lcd however flashing completion is indicated differently however if i wait a few tens of seconds and turn on the cr se it operates normally displaying icons selecting menus etc first to check the kernel version i checked the kernel version by flashing using an empty dwin set and at this time the normal completion screen was displayed after flashing using the contents of dwin set a strange completion screen is displayed on the touch screen i had it shows the normal completion screen it is strange because it is a symptom that appears on a new touch screen that uses the same pcb
0
28,825
5,389,797,223
IssuesEvent
2017-02-25 06:55:53
djstauffer/geben-on-emacs
https://api.github.com/repos/djstauffer/geben-on-emacs
closed
Open local files
auto-migrated Priority-Medium Type-Defect
``` What steps will reproduce the problem? 1. Dev environment on workstation, server is a separate machine, project files from server mounted on workstation. 2. Start debugging with geben 3. Temporary remote files are opened instead of local files What is the expected output? What do you see instead? I'd like geben to open the local files and not the temporary remote ones. What version of the product are you using? On what operating system? Ubuntu Linux 10.10, emacs 23.1, geben 0.26 ``` Original issue reported on code.google.com by `cwei...@cweiske.de` on 15 Feb 2011 at 8:45
1.0
Open local files - ``` What steps will reproduce the problem? 1. Dev environment on workstation, server is a separate machine, project files from server mounted on workstation. 2. Start debugging with geben 3. Temporary remote files are opened instead of local files What is the expected output? What do you see instead? I'd like geben to open the local files and not the temporary remote ones. What version of the product are you using? On what operating system? Ubuntu Linux 10.10, emacs 23.1, geben 0.26 ``` Original issue reported on code.google.com by `cwei...@cweiske.de` on 15 Feb 2011 at 8:45
defect
open local files what steps will reproduce the problem dev environment on workstation server is a separate machine project files from server mounted on workstation start debugging with geben temporary remote files are opened instead of local files what is the expected output what do you see instead i d like geben to open the local files and not the temporary remote ones what version of the product are you using on what operating system ubuntu linux emacs geben original issue reported on code google com by cwei cweiske de on feb at
1
79,190
28,035,212,776
IssuesEvent
2023-03-28 14:41:31
dotCMS/core
https://api.github.com/repos/dotCMS/core
opened
Traffic redirect not Working in index page
Type : Defect Team : Falcon Triage
### Parent Issue https://github.com/dotCMS/core/issues/22222 ### Problem Statement When you create a Experiment inside the root index page the redirect traffic is not working it show the DEFAULT Version all the time no matter if the user is assign into any other Variant. ### Steps to Reproduce - Start dotCMS up with the full starter. - Create a Experiment in the /index Page. - Create a variant change whatever you want, called in variant_1. - Change the traffic split to 99% to variant_1 and 1% to the DEFAULT Variant - Add a Goal and Start the Experiment. - Log out and GO to the Index page - Check the experiment_data item into the LocalStorage to make sure that you was assign to variant_1. - Check if you are seeing the variant_1. ### Acceptance Criteria The redirect must work even into the index page. ### dotCMS Version latest in master Also you need to enabled the Experiment feature. ### Proposed Objective Core Features ### Proposed Priority Priority 2 - Important ### External Links... Slack Conversations, Support Tickets, Figma Designs, etc. _No response_ ### Assumptions & Initiation Needs _No response_ ### Quality Assurance Notes & Workarounds _No response_ ### Sub-Tasks & Estimates _No response_
1.0
Traffic redirect not Working in index page - ### Parent Issue https://github.com/dotCMS/core/issues/22222 ### Problem Statement When you create a Experiment inside the root index page the redirect traffic is not working it show the DEFAULT Version all the time no matter if the user is assign into any other Variant. ### Steps to Reproduce - Start dotCMS up with the full starter. - Create a Experiment in the /index Page. - Create a variant change whatever you want, called in variant_1. - Change the traffic split to 99% to variant_1 and 1% to the DEFAULT Variant - Add a Goal and Start the Experiment. - Log out and GO to the Index page - Check the experiment_data item into the LocalStorage to make sure that you was assign to variant_1. - Check if you are seeing the variant_1. ### Acceptance Criteria The redirect must work even into the index page. ### dotCMS Version latest in master Also you need to enabled the Experiment feature. ### Proposed Objective Core Features ### Proposed Priority Priority 2 - Important ### External Links... Slack Conversations, Support Tickets, Figma Designs, etc. _No response_ ### Assumptions & Initiation Needs _No response_ ### Quality Assurance Notes & Workarounds _No response_ ### Sub-Tasks & Estimates _No response_
defect
traffic redirect not working in index page parent issue problem statement when you create a experiment inside the root index page the redirect traffic is not working it show the default version all the time no matter if the user is assign into any other variant steps to reproduce start dotcms up with the full starter create a experiment in the index page create a variant change whatever you want called in variant change the traffic split to to variant and to the default variant add a goal and start the experiment log out and go to the index page check the experiment data item into the localstorage to make sure that you was assign to variant check if you are seeing the variant acceptance criteria the redirect must work even into the index page dotcms version latest in master also you need to enabled the experiment feature proposed objective core features proposed priority priority important external links slack conversations support tickets figma designs etc no response assumptions initiation needs no response quality assurance notes workarounds no response sub tasks estimates no response
1
19,643
3,228,473,465
IssuesEvent
2015-10-12 02:40:32
vickyg3/social-photos
https://api.github.com/repos/vickyg3/social-photos
closed
drag and drop not working
Priority-Medium Status-New Type-Defect
Originally reported on Google Code with ID 9 ``` What steps will reproduce the problem? 1. 2. 3. What is the expected output? What do you see instead? What operating system and browser are you using? On what operating system? Google Chrome on the Chromebook Please provide any additional information below. ``` Reported by `helenshira` on 2014-02-09 14:36:59
1.0
drag and drop not working - Originally reported on Google Code with ID 9 ``` What steps will reproduce the problem? 1. 2. 3. What is the expected output? What do you see instead? What operating system and browser are you using? On what operating system? Google Chrome on the Chromebook Please provide any additional information below. ``` Reported by `helenshira` on 2014-02-09 14:36:59
defect
drag and drop not working originally reported on google code with id what steps will reproduce the problem what is the expected output what do you see instead what operating system and browser are you using on what operating system google chrome on the chromebook please provide any additional information below reported by helenshira on
1
56,353
15,032,029,325
IssuesEvent
2021-02-02 09:40:41
hazelcast/hazelcast
https://api.github.com/repos/hazelcast/hazelcast
closed
SQL: Avoid unnecessary serialization/deserialization of the top-level objects
Module: SQL Source: Internal Team: Core Type: Enhancement Type: Perf. Defect
Consider that we have an IMap with `InMemoryFormat.BINARY` (default). The query `SELECT this FROM map` will be processed as follows: 1. `this` (i.e. value) is read from the `RecordStore` in the serialized form (`Data`) 1. The value is **deserialized** and put into the `Scan/Project` result 1. Then the value is serialized in the `Sender` Two key observations here: 1. There is no need to serialize the value again since it is already available in the form of `Data` 1. If the value is not referenced in any function, and just passed through operators, there is no need to deserialize it either! We can just pass `Data` between operators. Additional notes: 1. The optimization is applicable to both key (`__key`) and value (`this`) 1. Be careful with InMemoryFormat.NATIVE maps - we need to ensure that we do not leak native memory
1.0
SQL: Avoid unnecessary serialization/deserialization of the top-level objects - Consider that we have an IMap with `InMemoryFormat.BINARY` (default). The query `SELECT this FROM map` will be processed as follows: 1. `this` (i.e. value) is read from the `RecordStore` in the serialized form (`Data`) 1. The value is **deserialized** and put into the `Scan/Project` result 1. Then the value is serialized in the `Sender` Two key observations here: 1. There is no need to serialize the value again since it is already available in the form of `Data` 1. If the value is not referenced in any function, and just passed through operators, there is no need to deserialize it either! We can just pass `Data` between operators. Additional notes: 1. The optimization is applicable to both key (`__key`) and value (`this`) 1. Be careful with InMemoryFormat.NATIVE maps - we need to ensure that we do not leak native memory
defect
sql avoid unnecessary serialization deserialization of the top level objects consider that we have an imap with inmemoryformat binary default the query select this from map will be processed as follows this i e value is read from the recordstore in the serialized form data the value is deserialized and put into the scan project result then the value is serialized in the sender two key observations here there is no need to serialize the value again since it is already available in the form of data if the value is not referenced in any function and just passed through operators there is no need to deserialize it either we can just pass data between operators additional notes the optimization is applicable to both key key and value this be careful with inmemoryformat native maps we need to ensure that we do not leak native memory
1
61,582
17,023,730,972
IssuesEvent
2021-07-03 03:32:18
tomhughes/trac-tickets
https://api.github.com/repos/tomhughes/trac-tickets
closed
Potlatch crash when editing/adding tags
Component: potlatch2 Priority: critical Resolution: fixed Type: defect
**[Submitted to the original trac issue database at 9.16pm, Wednesday, 6th July 2011]** I've been caught out by this several times - usually when I've got a bunch of unsaved changes :( I've managed to get a reliable (for me) set of steps to reproduce, even if it's not a minimal test case: 1. Load potlatch. 2. Draw a new closed way. 3. From the presets menu, select "Transport" section, and "Car Parking". 4. Click 'Advanced' at bottom. Then 'Add' for a key 5. Type 'access', <tab> 'perm', select "permissive" from auto-complete menu. 6. Press 'Add' again, type 'name', <tab> <backspace> (at this point, there is a key called 'name' with no value) 7. Click where it says 'name', (e.g. to try and change to a different key such as 'operator') Expected result: focus changes to key name, allowing this to be changed. Actual result: Potlatch crashes, losing any work done since last save. (undoubtedly there are other triggers, as I've stumbled into similar potlatch crashes several times, but the above steps did it every time for me from a fresh start)
1.0
Potlatch crash when editing/adding tags - **[Submitted to the original trac issue database at 9.16pm, Wednesday, 6th July 2011]** I've been caught out by this several times - usually when I've got a bunch of unsaved changes :( I've managed to get a reliable (for me) set of steps to reproduce, even if it's not a minimal test case: 1. Load potlatch. 2. Draw a new closed way. 3. From the presets menu, select "Transport" section, and "Car Parking". 4. Click 'Advanced' at bottom. Then 'Add' for a key 5. Type 'access', <tab> 'perm', select "permissive" from auto-complete menu. 6. Press 'Add' again, type 'name', <tab> <backspace> (at this point, there is a key called 'name' with no value) 7. Click where it says 'name', (e.g. to try and change to a different key such as 'operator') Expected result: focus changes to key name, allowing this to be changed. Actual result: Potlatch crashes, losing any work done since last save. (undoubtedly there are other triggers, as I've stumbled into similar potlatch crashes several times, but the above steps did it every time for me from a fresh start)
defect
potlatch crash when editing adding tags i ve been caught out by this several times usually when i ve got a bunch of unsaved changes i ve managed to get a reliable for me set of steps to reproduce even if it s not a minimal test case load potlatch draw a new closed way from the presets menu select transport section and car parking click advanced at bottom then add for a key type access perm select permissive from auto complete menu press add again type name at this point there is a key called name with no value click where it says name e g to try and change to a different key such as operator expected result focus changes to key name allowing this to be changed actual result potlatch crashes losing any work done since last save undoubtedly there are other triggers as i ve stumbled into similar potlatch crashes several times but the above steps did it every time for me from a fresh start
1
56,121
14,938,204,405
IssuesEvent
2021-01-25 15:30:35
department-of-veterans-affairs/va.gov-team
https://api.github.com/repos/department-of-veterans-affairs/va.gov-team
opened
508-defect-2 [COGNITION, SCREEN READER]: Buttons SHOULD have unique and accessible labels on the Military Service History page
508-defect-2 508-issue-cognition 508-issue-screenreader 508/Accessibility BDD vsa-benefits
# [508-defect-2](https://github.com/department-of-veterans-affairs/va.gov-team/blob/master/platform/accessibility/guidance/defect-severity-rubric.md#508-defect-2) <!-- Enter an issue title using the format [ERROR TYPE]: Brief description of the problem --- [SCREENREADER]: Edit buttons need aria-label for context [KEYBOARD]: Add another user link will not receive keyboard focus [AXE-CORE]: Heading levels should increase by one [COGNITION]: Error messages should be more specific [COLOR]: Blue button on blue background does not have sufficient contrast ratio --- --> <!-- It's okay to delete the instructions above, but leave the link to the 508 defect severity level for your issue. --> ## Feedback framework - **❗️ Must** for if the feedback must be applied - **⚠️ Should** if the feedback is best practice - **✔️ Consider** for suggestions/enhancements ## Definition of done 1. Review and acknowledge feedback. 1. Fix and/or document decisions made. 1. Accessibility specialist will close ticket after reviewing documented decisions / validating fix. <hr/> ## Point of Contact <!-- If this issue is being opened by a VFS team member, please add a point of contact. Usually this is the same person who enters the issue ticket. --> **VFS Point of Contact:** _Josh_ ## User Story or Problem Statement As a screen reader user, I want to hear an accessible label like "Edit issues eligible for review" instead of "Edit" when the button has focus or virtual cursor. ## Details There are several issues with this page which may ultimately be unsolvable from a remediation standpoint. I would recommend revisiting this page from a design lens. Issues are as follows: - Edit buttons do not have unique and accessible labels. As such, they all currently announce "Edit" which doesn't tell the user _what_ they are editing. - Inconsistency exists in legends when adding new military service as only the _last_ item in the stack has the legend of "New Service Period" despite the possibility of other _new_ service periods being added previously in the same session. - The legend "New Service Period" does not change to "Edit Service Period" upon editing again _after_ saving which may confuse the user. This will require a larger conversation or meeting to discuss solutions, so I'll only be documenting issues as opposed to recommendations. For more details, view the screenshots attached on this ticket. ## Acceptance Criteria - [ ] TBD ## Solution TBD ## WCAG or Vendor Guidance (optional) * [Info and Relationships: Understanding SC 1.3.1](https://www.w3.org/TR/UNDERSTANDING-WCAG20/content-structure-separation-programmatic.html) ## Screenshots or Trace Logs <img width="1792" alt="Screen Shot 2021-01-25 at 10 00 31 AM" src="https://user-images.githubusercontent.com/14154792/105726517-29231f00-5ef8-11eb-8878-f42e2336db1d.png"> <img width="1792" alt="Screen Shot 2021-01-25 at 10 09 47 AM" src="https://user-images.githubusercontent.com/14154792/105726526-2aece280-5ef8-11eb-9d17-c3996b923d58.png"> <img width="1337" alt="Screen Shot 2021-01-25 at 10 14 12 AM" src="https://user-images.githubusercontent.com/14154792/105726532-2c1e0f80-5ef8-11eb-86bb-272bb7782613.png">
1.0
508-defect-2 [COGNITION, SCREEN READER]: Buttons SHOULD have unique and accessible labels on the Military Service History page - # [508-defect-2](https://github.com/department-of-veterans-affairs/va.gov-team/blob/master/platform/accessibility/guidance/defect-severity-rubric.md#508-defect-2) <!-- Enter an issue title using the format [ERROR TYPE]: Brief description of the problem --- [SCREENREADER]: Edit buttons need aria-label for context [KEYBOARD]: Add another user link will not receive keyboard focus [AXE-CORE]: Heading levels should increase by one [COGNITION]: Error messages should be more specific [COLOR]: Blue button on blue background does not have sufficient contrast ratio --- --> <!-- It's okay to delete the instructions above, but leave the link to the 508 defect severity level for your issue. --> ## Feedback framework - **❗️ Must** for if the feedback must be applied - **⚠️ Should** if the feedback is best practice - **✔️ Consider** for suggestions/enhancements ## Definition of done 1. Review and acknowledge feedback. 1. Fix and/or document decisions made. 1. Accessibility specialist will close ticket after reviewing documented decisions / validating fix. <hr/> ## Point of Contact <!-- If this issue is being opened by a VFS team member, please add a point of contact. Usually this is the same person who enters the issue ticket. --> **VFS Point of Contact:** _Josh_ ## User Story or Problem Statement As a screen reader user, I want to hear an accessible label like "Edit issues eligible for review" instead of "Edit" when the button has focus or virtual cursor. ## Details There are several issues with this page which may ultimately be unsolvable from a remediation standpoint. I would recommend revisiting this page from a design lens. Issues are as follows: - Edit buttons do not have unique and accessible labels. As such, they all currently announce "Edit" which doesn't tell the user _what_ they are editing. - Inconsistency exists in legends when adding new military service as only the _last_ item in the stack has the legend of "New Service Period" despite the possibility of other _new_ service periods being added previously in the same session. - The legend "New Service Period" does not change to "Edit Service Period" upon editing again _after_ saving which may confuse the user. This will require a larger conversation or meeting to discuss solutions, so I'll only be documenting issues as opposed to recommendations. For more details, view the screenshots attached on this ticket. ## Acceptance Criteria - [ ] TBD ## Solution TBD ## WCAG or Vendor Guidance (optional) * [Info and Relationships: Understanding SC 1.3.1](https://www.w3.org/TR/UNDERSTANDING-WCAG20/content-structure-separation-programmatic.html) ## Screenshots or Trace Logs <img width="1792" alt="Screen Shot 2021-01-25 at 10 00 31 AM" src="https://user-images.githubusercontent.com/14154792/105726517-29231f00-5ef8-11eb-8878-f42e2336db1d.png"> <img width="1792" alt="Screen Shot 2021-01-25 at 10 09 47 AM" src="https://user-images.githubusercontent.com/14154792/105726526-2aece280-5ef8-11eb-9d17-c3996b923d58.png"> <img width="1337" alt="Screen Shot 2021-01-25 at 10 14 12 AM" src="https://user-images.githubusercontent.com/14154792/105726532-2c1e0f80-5ef8-11eb-86bb-272bb7782613.png">
defect
defect buttons should have unique and accessible labels on the military service history page enter an issue title using the format brief description of the problem edit buttons need aria label for context add another user link will not receive keyboard focus heading levels should increase by one error messages should be more specific blue button on blue background does not have sufficient contrast ratio feedback framework ❗️ must for if the feedback must be applied ⚠️ should if the feedback is best practice ✔️ consider for suggestions enhancements definition of done review and acknowledge feedback fix and or document decisions made accessibility specialist will close ticket after reviewing documented decisions validating fix point of contact vfs point of contact josh user story or problem statement as a screen reader user i want to hear an accessible label like edit issues eligible for review instead of edit when the button has focus or virtual cursor details there are several issues with this page which may ultimately be unsolvable from a remediation standpoint i would recommend revisiting this page from a design lens issues are as follows edit buttons do not have unique and accessible labels as such they all currently announce edit which doesn t tell the user what they are editing inconsistency exists in legends when adding new military service as only the last item in the stack has the legend of new service period despite the possibility of other new service periods being added previously in the same session the legend new service period does not change to edit service period upon editing again after saving which may confuse the user this will require a larger conversation or meeting to discuss solutions so i ll only be documenting issues as opposed to recommendations for more details view the screenshots attached on this ticket acceptance criteria tbd solution tbd wcag or vendor guidance optional screenshots or trace logs img width alt screen shot at am src img width alt screen shot at am src img width alt screen shot at am src
1
53,098
13,260,893,510
IssuesEvent
2020-08-20 18:56:39
icecube-trac/tix4
https://api.github.com/repos/icecube-trac/tix4
closed
test interdependences are broken (Trac #700)
Migrated from Trac cmake defect
http://pastebin.com/6A13Tp2x <details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/700">https://code.icecube.wisc.edu/projects/icecube/ticket/700</a>, reported by icecubeand owned by nega</em></summary> <p> ```json { "status": "closed", "changetime": "2014-04-18T03:24:57", "_ts": "1397791497000000", "description": "http://pastebin.com/6A13Tp2x", "reporter": "icecube", "cc": "nwhitehorn", "resolution": "fixed", "time": "2012-11-05T17:44:34", "component": "cmake", "summary": "test interdependences are broken", "priority": "normal", "keywords": "", "milestone": "", "owner": "nega", "type": "defect" } ``` </p> </details>
1.0
test interdependences are broken (Trac #700) - http://pastebin.com/6A13Tp2x <details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/700">https://code.icecube.wisc.edu/projects/icecube/ticket/700</a>, reported by icecubeand owned by nega</em></summary> <p> ```json { "status": "closed", "changetime": "2014-04-18T03:24:57", "_ts": "1397791497000000", "description": "http://pastebin.com/6A13Tp2x", "reporter": "icecube", "cc": "nwhitehorn", "resolution": "fixed", "time": "2012-11-05T17:44:34", "component": "cmake", "summary": "test interdependences are broken", "priority": "normal", "keywords": "", "milestone": "", "owner": "nega", "type": "defect" } ``` </p> </details>
defect
test interdependences are broken trac migrated from json status closed changetime ts description reporter icecube cc nwhitehorn resolution fixed time component cmake summary test interdependences are broken priority normal keywords milestone owner nega type defect
1
3,649
2,610,066,384
IssuesEvent
2015-02-26 18:19:30
chrsmith/jsjsj122
https://api.github.com/repos/chrsmith/jsjsj122
opened
临海检查前列腺炎去哪里最好
auto-migrated Priority-Medium Type-Defect
``` 临海检查前列腺炎去哪里最好【台州五洲生殖医院】24小时健 康咨询热线:0576-88066933-(扣扣800080609)-(微信号tzwzszyy)医院地址: 台州市椒江区枫南路229号(枫南大转盘旁)乘车线路:乘坐104� ��108、118、198及椒江一金清公交车直达枫南小区,乘坐107、105 、109、112、901、 902公交车到星星广场下车,步行即可到院。 诊疗项目:阳痿,早泄,前列腺炎,前列腺增生,龟头炎,�� �精,无精。包皮包茎,精索静脉曲张,淋病等。 台州五洲生殖医院是台州最大的男科医院,权威专家在线免�� �咨询,拥有专业完善的男科检查治疗设备,严格按照国家标� ��收费。尖端医疗设备,与世界同步。权威专家,成就专业典 范。人性化服务,一切以患者为中心。 看男科就选台州五洲生殖医院,专业男科为男人。 ``` ----- Original issue reported on code.google.com by `poweragr...@gmail.com` on 30 May 2014 at 8:33
1.0
临海检查前列腺炎去哪里最好 - ``` 临海检查前列腺炎去哪里最好【台州五洲生殖医院】24小时健 康咨询热线:0576-88066933-(扣扣800080609)-(微信号tzwzszyy)医院地址: 台州市椒江区枫南路229号(枫南大转盘旁)乘车线路:乘坐104� ��108、118、198及椒江一金清公交车直达枫南小区,乘坐107、105 、109、112、901、 902公交车到星星广场下车,步行即可到院。 诊疗项目:阳痿,早泄,前列腺炎,前列腺增生,龟头炎,�� �精,无精。包皮包茎,精索静脉曲张,淋病等。 台州五洲生殖医院是台州最大的男科医院,权威专家在线免�� �咨询,拥有专业完善的男科检查治疗设备,严格按照国家标� ��收费。尖端医疗设备,与世界同步。权威专家,成就专业典 范。人性化服务,一切以患者为中心。 看男科就选台州五洲生殖医院,专业男科为男人。 ``` ----- Original issue reported on code.google.com by `poweragr...@gmail.com` on 30 May 2014 at 8:33
defect
临海检查前列腺炎去哪里最好 临海检查前列腺炎去哪里最好【台州五洲生殖医院】 康咨询热线 微信号tzwzszyy 医院地址 (枫南大转盘旁)乘车线路 � �� 、 、 , 、 、 、 、 、 ,步行即可到院。 诊疗项目:阳痿,早泄,前列腺炎,前列腺增生,龟头炎,�� �精,无精。包皮包茎,精索静脉曲张,淋病等。 台州五洲生殖医院是台州最大的男科医院,权威专家在线免�� �咨询,拥有专业完善的男科检查治疗设备,严格按照国家标� ��收费。尖端医疗设备,与世界同步。权威专家,成就专业典 范。人性化服务,一切以患者为中心。 看男科就选台州五洲生殖医院,专业男科为男人。 original issue reported on code google com by poweragr gmail com on may at
1
62,961
17,271,210,625
IssuesEvent
2021-07-22 20:08:08
department-of-veterans-affairs/va.gov-cms
https://api.github.com/repos/department-of-veterans-affairs/va.gov-cms
opened
Can't create unpublished VAMC banner alerts within Operating Status page
Defect Needs refining
**Describe the defect** i think this is a regression, you can no longer create unpublished VAMC banner alerts from within Operating Status page. not sure when or how this broke. **To Reproduce** Steps to reproduce the behavior: 1. As jacob.dillon@va.gov go to https://staging.cms.va.gov/node/2370/edit 2. Create a banner alert using the IEF "Add new banner alert" 3. Leave the default "unpublished" state and create new alert 4. Save the operating status node 5. See error "this entity (node: title) cannot be referenced" **Expected behavior** i should be able to create an unpublished banner alert **Screenshots** ![Edit_VAMC_System_Operating_Status_Operating_status_-_VA_Wilmington_health_care___VA_gov_CMS](https://user-images.githubusercontent.com/643678/126702627-40ab21ad-467a-4c00-9675-3d95f0b3e200.png) **Possible solutions** * Allow unpublished VAMC banners in IEF * Remove the IEF form, which is gnarly, and just link out to a stand-alone /node/add/full_width_banner_alert ### CMS Team Please leave only the team that will do this work selected. If you're not sure, it's fine to leave both selected. - [ ] `Core Application Team` - [x] `Product Support Team`
1.0
Can't create unpublished VAMC banner alerts within Operating Status page - **Describe the defect** i think this is a regression, you can no longer create unpublished VAMC banner alerts from within Operating Status page. not sure when or how this broke. **To Reproduce** Steps to reproduce the behavior: 1. As jacob.dillon@va.gov go to https://staging.cms.va.gov/node/2370/edit 2. Create a banner alert using the IEF "Add new banner alert" 3. Leave the default "unpublished" state and create new alert 4. Save the operating status node 5. See error "this entity (node: title) cannot be referenced" **Expected behavior** i should be able to create an unpublished banner alert **Screenshots** ![Edit_VAMC_System_Operating_Status_Operating_status_-_VA_Wilmington_health_care___VA_gov_CMS](https://user-images.githubusercontent.com/643678/126702627-40ab21ad-467a-4c00-9675-3d95f0b3e200.png) **Possible solutions** * Allow unpublished VAMC banners in IEF * Remove the IEF form, which is gnarly, and just link out to a stand-alone /node/add/full_width_banner_alert ### CMS Team Please leave only the team that will do this work selected. If you're not sure, it's fine to leave both selected. - [ ] `Core Application Team` - [x] `Product Support Team`
defect
can t create unpublished vamc banner alerts within operating status page describe the defect i think this is a regression you can no longer create unpublished vamc banner alerts from within operating status page not sure when or how this broke to reproduce steps to reproduce the behavior as jacob dillon va gov go to create a banner alert using the ief add new banner alert leave the default unpublished state and create new alert save the operating status node see error this entity node title cannot be referenced expected behavior i should be able to create an unpublished banner alert screenshots possible solutions allow unpublished vamc banners in ief remove the ief form which is gnarly and just link out to a stand alone node add full width banner alert cms team please leave only the team that will do this work selected if you re not sure it s fine to leave both selected core application team product support team
1
29,828
5,914,158,553
IssuesEvent
2017-05-22 00:55:19
steelsnowflake/mesmer
https://api.github.com/repos/steelsnowflake/mesmer
closed
No warning when trying to load non-available -file in SAXS plugin
auto-migrated Priority-Medium Type-Defect
``` MESMER crashes ungracefully when the SAXS plugin encounters an invalid file specified by the -file command. ``` Original issue reported on code.google.com by `elihuihms@gmail.com` on 17 May 2013 at 6:57
1.0
No warning when trying to load non-available -file in SAXS plugin - ``` MESMER crashes ungracefully when the SAXS plugin encounters an invalid file specified by the -file command. ``` Original issue reported on code.google.com by `elihuihms@gmail.com` on 17 May 2013 at 6:57
defect
no warning when trying to load non available file in saxs plugin mesmer crashes ungracefully when the saxs plugin encounters an invalid file specified by the file command original issue reported on code google com by elihuihms gmail com on may at
1
1,529
16,738,201,608
IssuesEvent
2021-06-11 06:23:11
emmamei/cdkey
https://api.github.com/repos/emmamei/cdkey
closed
Move type channel processing to Transform.lsl
reliabilityfix simplification
Type channel processing is in MenuHandler, and does almost nothing. There's no benefit and an extra link message at the end of it. For simplicity, move it to Transform.lsl. This will also resolve issue #820 as the code will be the same code; be sure to remove the type channel from MenuHandler.
True
Move type channel processing to Transform.lsl - Type channel processing is in MenuHandler, and does almost nothing. There's no benefit and an extra link message at the end of it. For simplicity, move it to Transform.lsl. This will also resolve issue #820 as the code will be the same code; be sure to remove the type channel from MenuHandler.
non_defect
move type channel processing to transform lsl type channel processing is in menuhandler and does almost nothing there s no benefit and an extra link message at the end of it for simplicity move it to transform lsl this will also resolve issue as the code will be the same code be sure to remove the type channel from menuhandler
0
293,291
25,282,004,188
IssuesEvent
2022-11-16 16:24:19
gravitational/teleport
https://api.github.com/repos/gravitational/teleport
closed
v10 node fails to create session when connecting to v11 cluster.
bug test-plan-problem
Expected behavior: v10 node should connect to a v11 cluster without any issues. Current behavior: ``` 2022-10-18T23:32:45-04:00 ERRO [SESSION:N] Failed to create new session: object not found. srv/sess.go:553 ``` and on session end: ``` 2022-10-18T23:32:52-04:00 ERRO [SESSION:N] Failed to remove active session: 854d1493-438b-41d4-8a09-0db6ecf219f8: object not found. Access to backend may be degraded, check connectivity to backend. srv/sess.go:692 ``` Bug details: - Teleport version v11 rc1 - Recreation steps - Debug logs
1.0
v10 node fails to create session when connecting to v11 cluster. - Expected behavior: v10 node should connect to a v11 cluster without any issues. Current behavior: ``` 2022-10-18T23:32:45-04:00 ERRO [SESSION:N] Failed to create new session: object not found. srv/sess.go:553 ``` and on session end: ``` 2022-10-18T23:32:52-04:00 ERRO [SESSION:N] Failed to remove active session: 854d1493-438b-41d4-8a09-0db6ecf219f8: object not found. Access to backend may be degraded, check connectivity to backend. srv/sess.go:692 ``` Bug details: - Teleport version v11 rc1 - Recreation steps - Debug logs
non_defect
node fails to create session when connecting to cluster expected behavior node should connect to a cluster without any issues current behavior erro failed to create new session object not found srv sess go and on session end erro failed to remove active session object not found access to backend may be degraded check connectivity to backend srv sess go bug details teleport version recreation steps debug logs
0
323,920
27,761,005,130
IssuesEvent
2023-03-16 08:15:14
Uuvana-Studios/longvinter-windows-client
https://api.github.com/repos/Uuvana-Studios/longvinter-windows-client
opened
Sometimes music plays even with Music set to 0%
Bug Not Tested
**Describe the bug** When music is set to 0%, sometimes music is played anyway. Seems most prevalent at sea. **To Reproduce** Steps to reproduce the behavior: 1. Set Options->Audio->Music to 0% 2. Go to Jax's Outpost 3. Get in a Dinghy 4. Row towards Dingo's Dock 5. Music will *most likely* start to playing around halfway. **Expected behavior** I expected music to be off when I turned off music. ;-) **Screenshots** Not applicable. **Desktop (please complete the following information):** - OS: Windows 11 64bit - Game Version: Beta 1.10 - Steam Version: 1678914933, Mar 15 build **Additional context** Nothing further.
1.0
Sometimes music plays even with Music set to 0% - **Describe the bug** When music is set to 0%, sometimes music is played anyway. Seems most prevalent at sea. **To Reproduce** Steps to reproduce the behavior: 1. Set Options->Audio->Music to 0% 2. Go to Jax's Outpost 3. Get in a Dinghy 4. Row towards Dingo's Dock 5. Music will *most likely* start to playing around halfway. **Expected behavior** I expected music to be off when I turned off music. ;-) **Screenshots** Not applicable. **Desktop (please complete the following information):** - OS: Windows 11 64bit - Game Version: Beta 1.10 - Steam Version: 1678914933, Mar 15 build **Additional context** Nothing further.
non_defect
sometimes music plays even with music set to describe the bug when music is set to sometimes music is played anyway seems most prevalent at sea to reproduce steps to reproduce the behavior set options audio music to go to jax s outpost get in a dinghy row towards dingo s dock music will most likely start to playing around halfway expected behavior i expected music to be off when i turned off music screenshots not applicable desktop please complete the following information os windows game version beta steam version mar build additional context nothing further
0
260,794
19,685,807,886
IssuesEvent
2022-01-11 22:00:29
nicnolen/README-generator
https://api.github.com/repos/nicnolen/README-generator
closed
Add Screenshots and Screencastify to the README
documentation
**To Do** - A walkthrough video that demonstrates the functionality of the README generator must be submitted and a link to the video should be included in your README file. - The walkthrough video must demonstrate how a user would invoke the application from the command line. - The walkthrough video must demonstrate how a user would enter responses to all of the prompts in the application. - Include any other screenshots you deem necessary to help someone who has never been introduced to your application understand the purpose and function of it.
1.0
Add Screenshots and Screencastify to the README - **To Do** - A walkthrough video that demonstrates the functionality of the README generator must be submitted and a link to the video should be included in your README file. - The walkthrough video must demonstrate how a user would invoke the application from the command line. - The walkthrough video must demonstrate how a user would enter responses to all of the prompts in the application. - Include any other screenshots you deem necessary to help someone who has never been introduced to your application understand the purpose and function of it.
non_defect
add screenshots and screencastify to the readme to do a walkthrough video that demonstrates the functionality of the readme generator must be submitted and a link to the video should be included in your readme file the walkthrough video must demonstrate how a user would invoke the application from the command line the walkthrough video must demonstrate how a user would enter responses to all of the prompts in the application include any other screenshots you deem necessary to help someone who has never been introduced to your application understand the purpose and function of it
0
46,833
19,523,289,450
IssuesEvent
2021-12-29 23:49:35
hashicorp/terraform-provider-aws
https://api.github.com/repos/hashicorp/terraform-provider-aws
closed
variable interpolation in aws_cloudwatch_dashboard adds single quotes
service/cloudwatchlogs service/cloudwatch needs-triage
<!--- Please note the following potential times when an issue might be in Terraform core: * [Configuration Language](https://www.terraform.io/docs/configuration/index.html) or resource ordering issues * [State](https://www.terraform.io/docs/state/index.html) and [State Backend](https://www.terraform.io/docs/backends/index.html) issues * [Provisioner](https://www.terraform.io/docs/provisioners/index.html) issues * [Registry](https://registry.terraform.io/) issues * Spans resources across multiple providers If you are running into one of these scenarios, we recommend opening an issue in the [Terraform core repository](https://github.com/hashicorp/terraform/) instead. ---> <!--- Please keep this note for the community ---> ### Community Note * Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request * Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request * If you are interested in working on this issue or have submitted a pull request, please leave a comment <!--- Thank you for keeping this note for the community ---> ### Terraform CLI and Terraform AWS Provider Version terraform v1.0.2 aws provider v3.70.0 <!--- Please run `terraform -v` to show the Terraform core version and provider version(s). If you are not running the latest version of Terraform or the provider, please upgrade because your issue may have already been fixed. [Terraform documentation on provider versioning](https://www.terraform.io/docs/configuration/providers.html#provider-versions). ---> ### Affected Resource(s) <!--- Please list the affected resources and data sources. ---> * aws_cloudwatch_dashboard ### Terraform Configuration Files <!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code ---> Please include all Terraform configurations required to reproduce the bug. Bug reports without a functional reproduction may be closed without investigation. I am creating a number of log groups with a Lambda function via Eventbridge that I can lookup with a data source ```hcl data "aws_cloudwatch_log_groups" "ecr_scan_logs" { log_group_name_prefix = "/aws/ecr/image-scan-findings/" } ``` When I reference the log group as a source in dashboard properties with a variable, it gets interpolated but somehow with single quotes that CloudWatch does not like when displaying the dashboard (no data visible as the source seems invalid). ```hcl resource "aws_cloudwatch_dashboard" "ecr_scan_logs" { for_each = toset(data.aws_cloudwatch_log_groups.ecr_scan_logs.log_group_names) dashboard_name = trimprefix(each.value, "/aws/ecr/image-scan-findings/") dashboard_body = <<EOF { "widgets": [ { "height": 6, "width": 24, "y": 0, "x": 0, "type": "log", "properties": { "query": "SOURCE ${each.value} | fields @timestamp, @message\n| sort @log desc\n| limit 20\n| filter @logStream like /CRITICAL/\n| stats count(@message) by bin(1 week)\n", "region": "eu-central-1", "stacked": false, "title": "Log group: ${each.value}", "view": "bar" } } ] } EOF } ``` ### Debug Output <!--- Please provide a link to a GitHub Gist containing the complete debug output. Please do NOT paste the debug output in the issue; just paste a link to the Gist. To obtain the debug output, see the [Terraform documentation on debugging](https://www.terraform.io/docs/internals/debugging.html). ---> ### Panic Output <!--- If Terraform produced a panic, please provide a link to a GitHub Gist containing the output of the `crash.log`. ---> ### Expected Behavior the dashboard should get these properties: ``` "properties": { "query": "SOURCE /aws/ecr/image-scan-findings/some-repo | fields @timestamp, @message\n| ........" ``` ### Actual Behavior instead Cloudwatch shows me this in the dashboard: ``` "properties": { "query": "SOURCE '/aws/ecr/image-scan-findings/some-repo' | fields @timestamp, @message\n| ........" ``` ### Steps to Reproduce 1. look up log groups as shown with the data source above 2. create dashboard resource as described 3. `terraform apply`
2.0
variable interpolation in aws_cloudwatch_dashboard adds single quotes - <!--- Please note the following potential times when an issue might be in Terraform core: * [Configuration Language](https://www.terraform.io/docs/configuration/index.html) or resource ordering issues * [State](https://www.terraform.io/docs/state/index.html) and [State Backend](https://www.terraform.io/docs/backends/index.html) issues * [Provisioner](https://www.terraform.io/docs/provisioners/index.html) issues * [Registry](https://registry.terraform.io/) issues * Spans resources across multiple providers If you are running into one of these scenarios, we recommend opening an issue in the [Terraform core repository](https://github.com/hashicorp/terraform/) instead. ---> <!--- Please keep this note for the community ---> ### Community Note * Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request * Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request * If you are interested in working on this issue or have submitted a pull request, please leave a comment <!--- Thank you for keeping this note for the community ---> ### Terraform CLI and Terraform AWS Provider Version terraform v1.0.2 aws provider v3.70.0 <!--- Please run `terraform -v` to show the Terraform core version and provider version(s). If you are not running the latest version of Terraform or the provider, please upgrade because your issue may have already been fixed. [Terraform documentation on provider versioning](https://www.terraform.io/docs/configuration/providers.html#provider-versions). ---> ### Affected Resource(s) <!--- Please list the affected resources and data sources. ---> * aws_cloudwatch_dashboard ### Terraform Configuration Files <!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code ---> Please include all Terraform configurations required to reproduce the bug. Bug reports without a functional reproduction may be closed without investigation. I am creating a number of log groups with a Lambda function via Eventbridge that I can lookup with a data source ```hcl data "aws_cloudwatch_log_groups" "ecr_scan_logs" { log_group_name_prefix = "/aws/ecr/image-scan-findings/" } ``` When I reference the log group as a source in dashboard properties with a variable, it gets interpolated but somehow with single quotes that CloudWatch does not like when displaying the dashboard (no data visible as the source seems invalid). ```hcl resource "aws_cloudwatch_dashboard" "ecr_scan_logs" { for_each = toset(data.aws_cloudwatch_log_groups.ecr_scan_logs.log_group_names) dashboard_name = trimprefix(each.value, "/aws/ecr/image-scan-findings/") dashboard_body = <<EOF { "widgets": [ { "height": 6, "width": 24, "y": 0, "x": 0, "type": "log", "properties": { "query": "SOURCE ${each.value} | fields @timestamp, @message\n| sort @log desc\n| limit 20\n| filter @logStream like /CRITICAL/\n| stats count(@message) by bin(1 week)\n", "region": "eu-central-1", "stacked": false, "title": "Log group: ${each.value}", "view": "bar" } } ] } EOF } ``` ### Debug Output <!--- Please provide a link to a GitHub Gist containing the complete debug output. Please do NOT paste the debug output in the issue; just paste a link to the Gist. To obtain the debug output, see the [Terraform documentation on debugging](https://www.terraform.io/docs/internals/debugging.html). ---> ### Panic Output <!--- If Terraform produced a panic, please provide a link to a GitHub Gist containing the output of the `crash.log`. ---> ### Expected Behavior the dashboard should get these properties: ``` "properties": { "query": "SOURCE /aws/ecr/image-scan-findings/some-repo | fields @timestamp, @message\n| ........" ``` ### Actual Behavior instead Cloudwatch shows me this in the dashboard: ``` "properties": { "query": "SOURCE '/aws/ecr/image-scan-findings/some-repo' | fields @timestamp, @message\n| ........" ``` ### Steps to Reproduce 1. look up log groups as shown with the data source above 2. create dashboard resource as described 3. `terraform apply`
non_defect
variable interpolation in aws cloudwatch dashboard adds single quotes please note the following potential times when an issue might be in terraform core or resource ordering issues and issues issues issues spans resources across multiple providers if you are running into one of these scenarios we recommend opening an issue in the instead community note please vote on this issue by adding a 👍 to the original issue to help the community and maintainers prioritize this request please do not leave or other comments that do not add relevant new information or questions they generate extra noise for issue followers and do not help prioritize the request if you are interested in working on this issue or have submitted a pull request please leave a comment terraform cli and terraform aws provider version terraform aws provider affected resource s aws cloudwatch dashboard terraform configuration files please include all terraform configurations required to reproduce the bug bug reports without a functional reproduction may be closed without investigation i am creating a number of log groups with a lambda function via eventbridge that i can lookup with a data source hcl data aws cloudwatch log groups ecr scan logs log group name prefix aws ecr image scan findings when i reference the log group as a source in dashboard properties with a variable it gets interpolated but somehow with single quotes that cloudwatch does not like when displaying the dashboard no data visible as the source seems invalid hcl resource aws cloudwatch dashboard ecr scan logs for each toset data aws cloudwatch log groups ecr scan logs log group names dashboard name trimprefix each value aws ecr image scan findings dashboard body eof widgets height width y x type log properties query source each value fields timestamp message n sort log desc n limit n filter logstream like critical n stats count message by bin week n region eu central stacked false title log group each value view bar eof debug output please provide a link to a github gist containing the complete debug output please do not paste the debug output in the issue just paste a link to the gist to obtain the debug output see the panic output expected behavior the dashboard should get these properties properties query source aws ecr image scan findings some repo fields timestamp message n actual behavior instead cloudwatch shows me this in the dashboard properties query source aws ecr image scan findings some repo fields timestamp message n steps to reproduce look up log groups as shown with the data source above create dashboard resource as described terraform apply
0
266,170
23,226,591,242
IssuesEvent
2022-08-03 01:16:49
MPMG-DCC-UFMG/F01
https://api.github.com/repos/MPMG-DCC-UFMG/F01
opened
Teste de generalizacao para a tag Servidores - Relatório mensal da despesa com pessoal - Padre Carvalho
generalization test development
DoD: Realizar o teste de Generalização do validador da tag Servidores - Relatório mensal da despesa com pessoal para o Município de Padre Carvalho.
1.0
Teste de generalizacao para a tag Servidores - Relatório mensal da despesa com pessoal - Padre Carvalho - DoD: Realizar o teste de Generalização do validador da tag Servidores - Relatório mensal da despesa com pessoal para o Município de Padre Carvalho.
non_defect
teste de generalizacao para a tag servidores relatório mensal da despesa com pessoal padre carvalho dod realizar o teste de generalização do validador da tag servidores relatório mensal da despesa com pessoal para o município de padre carvalho
0
7,382
2,899,235,688
IssuesEvent
2015-06-17 10:01:13
backbee/backbee-standard
https://api.github.com/repos/backbee/backbee-standard
closed
[VIDEO] Defaut size of video block doesn't fit to it's block
bug Fixed Merged news-template To test
![video](https://cloud.githubusercontent.com/assets/10673014/8179107/97042706-1414-11e5-957e-9a4ef5baaf20.png) KO on Home page / section / article page
1.0
[VIDEO] Defaut size of video block doesn't fit to it's block - ![video](https://cloud.githubusercontent.com/assets/10673014/8179107/97042706-1414-11e5-957e-9a4ef5baaf20.png) KO on Home page / section / article page
non_defect
defaut size of video block doesn t fit to it s block ko on home page section article page
0
60,872
17,023,544,271
IssuesEvent
2021-07-03 02:34:10
tomhughes/trac-tickets
https://api.github.com/repos/tomhughes/trac-tickets
closed
Gosmore cannot be started on WinMobile 6.0
Component: gosmore Priority: major Resolution: fixed Type: defect
**[Submitted to the original trac issue database at 6.53pm, Wednesday, 27th January 2010]** On an e-ten Glofiish M800 Smartphone with WinMobile 6.0 I have no success in starting Gosmore version of 24th Jan. 2010. After klicking in the file explorer a very firsts beginning of the gosmore screen seems to appear, but then it quits to the desktop. Deleting gosmore.opt doesn't help, it is even not written now. Same gosmore version and map-file works fine under WinMobile 2003 on another PDA. Is the a possibility to write a log file to see why gosmore is aborting? Is there any other user who can start the new gosmore versions on WM6?
1.0
Gosmore cannot be started on WinMobile 6.0 - **[Submitted to the original trac issue database at 6.53pm, Wednesday, 27th January 2010]** On an e-ten Glofiish M800 Smartphone with WinMobile 6.0 I have no success in starting Gosmore version of 24th Jan. 2010. After klicking in the file explorer a very firsts beginning of the gosmore screen seems to appear, but then it quits to the desktop. Deleting gosmore.opt doesn't help, it is even not written now. Same gosmore version and map-file works fine under WinMobile 2003 on another PDA. Is the a possibility to write a log file to see why gosmore is aborting? Is there any other user who can start the new gosmore versions on WM6?
defect
gosmore cannot be started on winmobile on an e ten glofiish smartphone with winmobile i have no success in starting gosmore version of jan after klicking in the file explorer a very firsts beginning of the gosmore screen seems to appear but then it quits to the desktop deleting gosmore opt doesn t help it is even not written now same gosmore version and map file works fine under winmobile on another pda is the a possibility to write a log file to see why gosmore is aborting is there any other user who can start the new gosmore versions on
1
73,230
24,515,004,708
IssuesEvent
2022-10-11 03:38:17
primefaces/primefaces
https://api.github.com/repos/primefaces/primefaces
closed
Sticky: style broken after scrolling
:lady_beetle: defect workaround Stale
Hey, today i updates my primefaces version from 5.2 on 5.3. After a while I noticed, that my sticky panel has a problem. After I scroll down and up again, the sticky component was some pixels wider than before. I downgraded to 5.2 and it works correctly again. I compare the html and css and saw the difference: 5.2: panel width is 320px before and same after scrolling 5.3: panel width is 320px before and auto after scrolling, so it fills my parent div. So it seems like a bug for me... Regards, Marcel
1.0
Sticky: style broken after scrolling - Hey, today i updates my primefaces version from 5.2 on 5.3. After a while I noticed, that my sticky panel has a problem. After I scroll down and up again, the sticky component was some pixels wider than before. I downgraded to 5.2 and it works correctly again. I compare the html and css and saw the difference: 5.2: panel width is 320px before and same after scrolling 5.3: panel width is 320px before and auto after scrolling, so it fills my parent div. So it seems like a bug for me... Regards, Marcel
defect
sticky style broken after scrolling hey today i updates my primefaces version from on after a while i noticed that my sticky panel has a problem after i scroll down and up again the sticky component was some pixels wider than before i downgraded to and it works correctly again i compare the html and css and saw the difference panel width is before and same after scrolling panel width is before and auto after scrolling so it fills my parent div so it seems like a bug for me regards marcel
1
328,889
28,139,397,974
IssuesEvent
2023-04-01 19:20:22
chinthakarukshan/lbms-admin-service
https://api.github.com/repos/chinthakarukshan/lbms-admin-service
opened
Write Unit Tests for Category Update API (Patch)
tests
Writing unit tests for the category update(patch) API.
1.0
Write Unit Tests for Category Update API (Patch) - Writing unit tests for the category update(patch) API.
non_defect
write unit tests for category update api patch writing unit tests for the category update patch api
0
80,194
30,091,079,631
IssuesEvent
2023-06-29 12:24:10
jOOQ/jOOQ
https://api.github.com/repos/jOOQ/jOOQ
closed
SelectImpl.asTable() produces invalid SQL if columns have the same unqualified name
T: Defect C: Functionality P: Medium E: All Editions
### Expected behavior _No response_ ### Actual behavior _No response_ ### Steps to reproduce the problem Given a `SelectImpl` representing this query: ``` SELECT "public"."quest"."id", "public"."quest"."project_id", "public"."quest"."quest_type_id", "public"."quest"."name", "public"."quest"."description", "public"."quest"."summary", "public"."quest"."hero_img", "public"."quest"."card_img", "public"."quest"."achievement_img", "public"."quest"."start_at", "public"."quest"."end_at", "public"."quest"."created_at", "public"."user_quest"."user_id", "public"."user_reward_verified"."user_id", "public"."user_reward_claimed"."user_id" FROM "public"."quest" JOIN "public"."quest_reward" ON "public"."quest_reward"."quest_id" = "public"."quest"."id" LEFT OUTER JOIN "public"."user_quest" ON ( "public"."user_quest"."quest_id" = "public"."quest"."id" AND "public"."user_quest"."user_id" = 1 ) LEFT OUTER JOIN "public"."user_reward_verified" ON ( "public"."user_reward_verified"."reward_id" = "public"."quest_reward"."id" AND "public"."user_reward_verified"."user_id" = 1 ) LEFT OUTER JOIN "public"."user_reward_claimed" ON ( "public"."user_reward_claimed"."reward_id" = "public"."quest_reward"."id" AND "public"."user_reward_claimed"."user_id" = 1 ) WHERE ( "public"."quest"."id" <> "public"."quest"."id" OR ( "public"."user_quest"."user_id" = 1 AND "public"."user_reward_verified"."reward_id" IS NOT NULL AND "public"."user_reward_claimed"."reward_id" IS NOT NULL ) OR ( "public"."user_quest"."user_id" = 1 AND "public"."user_reward_verified"."reward_id" IS NULL AND "public"."user_reward_claimed"."reward_id" IS NULL ) OR "public"."user_quest"."user_id" IS NULL ) ``` invoking `SelectImpl.fields()` invokes `asTable()` somewhere under the hood, which results in JOOQ transforming the query into: ``` SELECT "alias_77239393"."id", "alias_77239393"."project_id", "alias_77239393"."quest_type_id", "alias_77239393"."name", "alias_77239393"."description", "alias_77239393"."summary", "alias_77239393"."hero_img", "alias_77239393"."card_img", "alias_77239393"."achievement_img", "alias_77239393"."start_at", "alias_77239393"."end_at", "alias_77239393"."created_at", "alias_77239393"."user_id", "alias_77239393"."user_id", "alias_77239393"."user_id" FROM (SELECT "public"."quest"."id", "public"."quest"."project_id", "public"."quest"."quest_type_id", "public"."quest"."name", "public"."quest"."description", "public"."quest"."summary", "public"."quest"."hero_img", "public"."quest"."card_img", "public"."quest"."achievement_img", "public"."quest"."start_at", "public"."quest"."end_at", "public"."quest"."created_at", "public"."user_quest"."user_id", "public"."user_reward_verified"."user_id", "public"."user_reward_claimed"."user_id" FROM "public"."quest" JOIN "public"."quest_reward" ON "public"."quest_reward"."quest_id" = "public"."quest"."id" LEFT OUTER JOIN "public"."user_quest" ON ( "public"."user_quest"."quest_id" = "public"."quest"."id" AND "public"."user_quest"."user_id" = 1 ) LEFT OUTER JOIN "public"."user_reward_verified" ON ( "public"."user_reward_verified"."reward_id" = "public"."quest_reward"."id" AND "public"."user_reward_verified"."user_id" = 1 ) LEFT OUTER JOIN "public"."user_reward_claimed" ON ( "public"."user_reward_claimed"."reward_id" = "public"."quest_reward"."id" AND "public"."user_reward_claimed"."user_id" = 1 ) WHERE ( "public"."quest"."id" <> "public"."quest"."id" OR ( "public"."user_quest"."user_id" = 1 AND "public"."user_reward_verified"."reward_id" IS NOT NULL AND "public"."user_reward_claimed"."reward_id" IS NOT NULL ) OR ( "public"."user_quest"."user_id" = 1 AND "public"."user_reward_verified"."reward_id" IS NULL AND "public"."user_reward_claimed"."reward_id" IS NULL ) OR "public"."user_quest"."user_id" IS NULL )) AS "alias_77239393" ``` There are two problems with this: 1. I asked for the names of the fields in the original SQL query, not the new names it created in the aliased field. 2. The new query is invalid because: ``` "public"."user_quest"."user_id", "public"."user_reward_verified"."user_id", "public"."user_reward_claimed"."user_id" ``` are converted into: ``` "alias_77239393"."user_id", "alias_77239393"."user_id", "alias_77239393"."user_id" ``` and PostgreSQL complains: ``` org.jooq.exception.DataAccessException: SQL [ select "alias_77239393"."id", "alias_77239393"."project_id", "alias_77239393"."quest_type_id", "alias_77239393"."name", "alias_77239393"."description", "alias_77239393"."summary", "alias_77239393"."hero_img", "alias_77239393"."card_img", "alias_77239393"."achievement_img", "alias_77239393"."start_at", "alias_77239393"."end_at", "alias_77239393"."created_at", "alias_77239393"."user_id", "alias_77239393"."user_id", "alias_77239393"."user_id" from (select "public"."quest"."id", "public"."quest"."project_id", "public"."quest"."quest_type_id", "public"."quest"."name", "public"."quest"."description", "public"."quest"."summary", "public"."quest"."hero_img", "public"."quest"."card_img", "public"."quest"."achievement_img", "public"."quest"."start_at", "public"."quest"."end_at", "public"."quest"."created_at", "public"."user_quest"."user_id", "public"."user_reward_verified"."user_id", "public"."user_reward_claimed"."user_id" from "public"."quest" join "public"."quest_reward" on "public"."quest_reward"."quest_id" = "public"."quest"."id" left outer join "public"."user_quest" on ("public"."user_quest"."quest_id" = "public"."quest"."id" and "public"."user_quest"."user_id" = ?) left outer join "public"."user_reward_verified" on ("public"."user_reward_verified"."reward_id" = "public"."quest_reward"."id" and "public"."user_reward_verified"."user_id" = ?) left outer join "public"."user_reward_claimed" on ("public"."user_reward_claimed"."reward_id" = "public"."quest_reward"."id" and "public"."user_reward_claimed"."user_id" = ?) where ("public"."quest"."id" <> "public"."quest"."id" or ("public"."user_quest"."user_id" = ? and "public"."user_reward_verified"."reward_id" is not null and "public"."user_reward_claimed"."reward_id" is not null) or ("public"."user_quest"."user_id" = ? and "public"."user_reward_verified"."reward_id" is null and "public"."user_reward_claimed"."reward_id" is null) or "public"."user_quest"."user_id" is null)) as "alias_77239393"]; ERROR: column reference "user_id" is ambiguous ``` ### jOOQ Version 3.18.3 ### Database product and version PostgreSQL 15.0, compiled by Visual C++ build 1914, 64-bit ### Java Version openjdk version "20" 2023-03-21 ### OS Version Microsoft Windows [Version 10.0.19045.3031] ### JDBC driver name and version (include name if unofficial driver) org.postgresql:postgresql:42.6.0
1.0
SelectImpl.asTable() produces invalid SQL if columns have the same unqualified name - ### Expected behavior _No response_ ### Actual behavior _No response_ ### Steps to reproduce the problem Given a `SelectImpl` representing this query: ``` SELECT "public"."quest"."id", "public"."quest"."project_id", "public"."quest"."quest_type_id", "public"."quest"."name", "public"."quest"."description", "public"."quest"."summary", "public"."quest"."hero_img", "public"."quest"."card_img", "public"."quest"."achievement_img", "public"."quest"."start_at", "public"."quest"."end_at", "public"."quest"."created_at", "public"."user_quest"."user_id", "public"."user_reward_verified"."user_id", "public"."user_reward_claimed"."user_id" FROM "public"."quest" JOIN "public"."quest_reward" ON "public"."quest_reward"."quest_id" = "public"."quest"."id" LEFT OUTER JOIN "public"."user_quest" ON ( "public"."user_quest"."quest_id" = "public"."quest"."id" AND "public"."user_quest"."user_id" = 1 ) LEFT OUTER JOIN "public"."user_reward_verified" ON ( "public"."user_reward_verified"."reward_id" = "public"."quest_reward"."id" AND "public"."user_reward_verified"."user_id" = 1 ) LEFT OUTER JOIN "public"."user_reward_claimed" ON ( "public"."user_reward_claimed"."reward_id" = "public"."quest_reward"."id" AND "public"."user_reward_claimed"."user_id" = 1 ) WHERE ( "public"."quest"."id" <> "public"."quest"."id" OR ( "public"."user_quest"."user_id" = 1 AND "public"."user_reward_verified"."reward_id" IS NOT NULL AND "public"."user_reward_claimed"."reward_id" IS NOT NULL ) OR ( "public"."user_quest"."user_id" = 1 AND "public"."user_reward_verified"."reward_id" IS NULL AND "public"."user_reward_claimed"."reward_id" IS NULL ) OR "public"."user_quest"."user_id" IS NULL ) ``` invoking `SelectImpl.fields()` invokes `asTable()` somewhere under the hood, which results in JOOQ transforming the query into: ``` SELECT "alias_77239393"."id", "alias_77239393"."project_id", "alias_77239393"."quest_type_id", "alias_77239393"."name", "alias_77239393"."description", "alias_77239393"."summary", "alias_77239393"."hero_img", "alias_77239393"."card_img", "alias_77239393"."achievement_img", "alias_77239393"."start_at", "alias_77239393"."end_at", "alias_77239393"."created_at", "alias_77239393"."user_id", "alias_77239393"."user_id", "alias_77239393"."user_id" FROM (SELECT "public"."quest"."id", "public"."quest"."project_id", "public"."quest"."quest_type_id", "public"."quest"."name", "public"."quest"."description", "public"."quest"."summary", "public"."quest"."hero_img", "public"."quest"."card_img", "public"."quest"."achievement_img", "public"."quest"."start_at", "public"."quest"."end_at", "public"."quest"."created_at", "public"."user_quest"."user_id", "public"."user_reward_verified"."user_id", "public"."user_reward_claimed"."user_id" FROM "public"."quest" JOIN "public"."quest_reward" ON "public"."quest_reward"."quest_id" = "public"."quest"."id" LEFT OUTER JOIN "public"."user_quest" ON ( "public"."user_quest"."quest_id" = "public"."quest"."id" AND "public"."user_quest"."user_id" = 1 ) LEFT OUTER JOIN "public"."user_reward_verified" ON ( "public"."user_reward_verified"."reward_id" = "public"."quest_reward"."id" AND "public"."user_reward_verified"."user_id" = 1 ) LEFT OUTER JOIN "public"."user_reward_claimed" ON ( "public"."user_reward_claimed"."reward_id" = "public"."quest_reward"."id" AND "public"."user_reward_claimed"."user_id" = 1 ) WHERE ( "public"."quest"."id" <> "public"."quest"."id" OR ( "public"."user_quest"."user_id" = 1 AND "public"."user_reward_verified"."reward_id" IS NOT NULL AND "public"."user_reward_claimed"."reward_id" IS NOT NULL ) OR ( "public"."user_quest"."user_id" = 1 AND "public"."user_reward_verified"."reward_id" IS NULL AND "public"."user_reward_claimed"."reward_id" IS NULL ) OR "public"."user_quest"."user_id" IS NULL )) AS "alias_77239393" ``` There are two problems with this: 1. I asked for the names of the fields in the original SQL query, not the new names it created in the aliased field. 2. The new query is invalid because: ``` "public"."user_quest"."user_id", "public"."user_reward_verified"."user_id", "public"."user_reward_claimed"."user_id" ``` are converted into: ``` "alias_77239393"."user_id", "alias_77239393"."user_id", "alias_77239393"."user_id" ``` and PostgreSQL complains: ``` org.jooq.exception.DataAccessException: SQL [ select "alias_77239393"."id", "alias_77239393"."project_id", "alias_77239393"."quest_type_id", "alias_77239393"."name", "alias_77239393"."description", "alias_77239393"."summary", "alias_77239393"."hero_img", "alias_77239393"."card_img", "alias_77239393"."achievement_img", "alias_77239393"."start_at", "alias_77239393"."end_at", "alias_77239393"."created_at", "alias_77239393"."user_id", "alias_77239393"."user_id", "alias_77239393"."user_id" from (select "public"."quest"."id", "public"."quest"."project_id", "public"."quest"."quest_type_id", "public"."quest"."name", "public"."quest"."description", "public"."quest"."summary", "public"."quest"."hero_img", "public"."quest"."card_img", "public"."quest"."achievement_img", "public"."quest"."start_at", "public"."quest"."end_at", "public"."quest"."created_at", "public"."user_quest"."user_id", "public"."user_reward_verified"."user_id", "public"."user_reward_claimed"."user_id" from "public"."quest" join "public"."quest_reward" on "public"."quest_reward"."quest_id" = "public"."quest"."id" left outer join "public"."user_quest" on ("public"."user_quest"."quest_id" = "public"."quest"."id" and "public"."user_quest"."user_id" = ?) left outer join "public"."user_reward_verified" on ("public"."user_reward_verified"."reward_id" = "public"."quest_reward"."id" and "public"."user_reward_verified"."user_id" = ?) left outer join "public"."user_reward_claimed" on ("public"."user_reward_claimed"."reward_id" = "public"."quest_reward"."id" and "public"."user_reward_claimed"."user_id" = ?) where ("public"."quest"."id" <> "public"."quest"."id" or ("public"."user_quest"."user_id" = ? and "public"."user_reward_verified"."reward_id" is not null and "public"."user_reward_claimed"."reward_id" is not null) or ("public"."user_quest"."user_id" = ? and "public"."user_reward_verified"."reward_id" is null and "public"."user_reward_claimed"."reward_id" is null) or "public"."user_quest"."user_id" is null)) as "alias_77239393"]; ERROR: column reference "user_id" is ambiguous ``` ### jOOQ Version 3.18.3 ### Database product and version PostgreSQL 15.0, compiled by Visual C++ build 1914, 64-bit ### Java Version openjdk version "20" 2023-03-21 ### OS Version Microsoft Windows [Version 10.0.19045.3031] ### JDBC driver name and version (include name if unofficial driver) org.postgresql:postgresql:42.6.0
defect
selectimpl astable produces invalid sql if columns have the same unqualified name expected behavior no response actual behavior no response steps to reproduce the problem given a selectimpl representing this query select public quest id public quest project id public quest quest type id public quest name public quest description public quest summary public quest hero img public quest card img public quest achievement img public quest start at public quest end at public quest created at public user quest user id public user reward verified user id public user reward claimed user id from public quest join public quest reward on public quest reward quest id public quest id left outer join public user quest on public user quest quest id public quest id and public user quest user id left outer join public user reward verified on public user reward verified reward id public quest reward id and public user reward verified user id left outer join public user reward claimed on public user reward claimed reward id public quest reward id and public user reward claimed user id where public quest id public quest id or public user quest user id and public user reward verified reward id is not null and public user reward claimed reward id is not null or public user quest user id and public user reward verified reward id is null and public user reward claimed reward id is null or public user quest user id is null invoking selectimpl fields invokes astable somewhere under the hood which results in jooq transforming the query into select alias id alias project id alias quest type id alias name alias description alias summary alias hero img alias card img alias achievement img alias start at alias end at alias created at alias user id alias user id alias user id from select public quest id public quest project id public quest quest type id public quest name public quest description public quest summary public quest hero img public quest card img public quest achievement img public quest start at public quest end at public quest created at public user quest user id public user reward verified user id public user reward claimed user id from public quest join public quest reward on public quest reward quest id public quest id left outer join public user quest on public user quest quest id public quest id and public user quest user id left outer join public user reward verified on public user reward verified reward id public quest reward id and public user reward verified user id left outer join public user reward claimed on public user reward claimed reward id public quest reward id and public user reward claimed user id where public quest id public quest id or public user quest user id and public user reward verified reward id is not null and public user reward claimed reward id is not null or public user quest user id and public user reward verified reward id is null and public user reward claimed reward id is null or public user quest user id is null as alias there are two problems with this i asked for the names of the fields in the original sql query not the new names it created in the aliased field the new query is invalid because public user quest user id public user reward verified user id public user reward claimed user id are converted into alias user id alias user id alias user id and postgresql complains org jooq exception dataaccessexception sql select alias id alias project id alias quest type id alias name alias description alias summary alias hero img alias card img alias achievement img alias start at alias end at alias created at alias user id alias user id alias user id from select public quest id public quest project id public quest quest type id public quest name public quest description public quest summary public quest hero img public quest card img public quest achievement img public quest start at public quest end at public quest created at public user quest user id public user reward verified user id public user reward claimed user id from public quest join public quest reward on public quest reward quest id public quest id left outer join public user quest on public user quest quest id public quest id and public user quest user id left outer join public user reward verified on public user reward verified reward id public quest reward id and public user reward verified user id left outer join public user reward claimed on public user reward claimed reward id public quest reward id and public user reward claimed user id where public quest id public quest id or public user quest user id and public user reward verified reward id is not null and public user reward claimed reward id is not null or public user quest user id and public user reward verified reward id is null and public user reward claimed reward id is null or public user quest user id is null as alias error column reference user id is ambiguous jooq version database product and version postgresql compiled by visual c build bit java version openjdk version os version microsoft windows jdbc driver name and version include name if unofficial driver org postgresql postgresql
1
9,452
2,615,150,799
IssuesEvent
2015-03-01 06:28:13
chrsmith/reaver-wps
https://api.github.com/repos/chrsmith/reaver-wps
closed
tar.bz 1.09
auto-migrated Priority-Triage Type-Defect
``` Would you please upload the tar.bz file for revision 1.09 ``` Original issue reported on code.google.com by `tiger2...@abv.bg` on 22 Jan 2012 at 2:15
1.0
tar.bz 1.09 - ``` Would you please upload the tar.bz file for revision 1.09 ``` Original issue reported on code.google.com by `tiger2...@abv.bg` on 22 Jan 2012 at 2:15
defect
tar bz would you please upload the tar bz file for revision original issue reported on code google com by abv bg on jan at
1
794,622
28,042,256,558
IssuesEvent
2023-03-28 19:30:08
bounswe/bounswe2023group4
https://api.github.com/repos/bounswe/bounswe2023group4
closed
Searching among polls
Priority: Medium Status: In Review Type: Feature
### Problem Definition We need to determine a way to search or filter polls, such as enabling users to find and vote on specific polls. ### Acceptance Criteria * Discuss solutions * Select the best solution for our project * Get okay from utkan
1.0
Searching among polls - ### Problem Definition We need to determine a way to search or filter polls, such as enabling users to find and vote on specific polls. ### Acceptance Criteria * Discuss solutions * Select the best solution for our project * Get okay from utkan
non_defect
searching among polls problem definition we need to determine a way to search or filter polls such as enabling users to find and vote on specific polls acceptance criteria discuss solutions select the best solution for our project get okay from utkan
0
343,629
30,679,051,475
IssuesEvent
2023-07-26 07:55:21
ray-project/ray
https://api.github.com/repos/ray-project/ray
closed
Release test gcp_cluster_launcher_nightly_image failed
bug P0 core release-test
Release test **gcp_cluster_launcher_nightly_image** failed. See https://buildkite.com/ray-project/release-tests-branch/builds/1986#01898c2c-4eb4-44f9-8219-b6baf5edbeae for more details. Managed by OSS Test Policy
1.0
Release test gcp_cluster_launcher_nightly_image failed - Release test **gcp_cluster_launcher_nightly_image** failed. See https://buildkite.com/ray-project/release-tests-branch/builds/1986#01898c2c-4eb4-44f9-8219-b6baf5edbeae for more details. Managed by OSS Test Policy
non_defect
release test gcp cluster launcher nightly image failed release test gcp cluster launcher nightly image failed see for more details managed by oss test policy
0
66,056
7,963,027,069
IssuesEvent
2018-07-13 16:04:44
nim-lang/Nim
https://api.github.com/repos/nim-lang/Nim
closed
[RFC] Keyword-Only Arguments; leads to more readable code and fwd-compatible changes in API's
Language design RFC
let's start with a quizz: which one of these is easier to understand ? (taken from @citycide's excellent `glob` library) ```nim # from https://citycide.github.io/glob/ walkGlobKinds("*.*", true, true, false, false) walkGlobKinds("*.*", root = "", relative = true, expandDirs = true, includeHidden = false; includeDirs = false) ``` Clearly, the 2nd one. The 1st one pretty much forces you to read the docs at **every single** such function call even if you're familiar with that API. Yet, the 2nd one is not enforced by the compiler and relying on convention sucks. * in python, they solved this problem by introducing keyword only arguments [PEP3102](https://www.python.org/dev/peps/pep-3102/) The use case is to force callers to use keyword calling as opposed to positional calling for these arguments, with benefits: * can result in much more readable code, see above * gives API writer more freedom to evolve API (eg adding params in the middle or reshuffling), all without breaking any code * removal of params in will cause compilation error if caller calls these params as opposed to silently accept wrong code in some cases, see [1] NOTE: keyword-only arguments would make such API evolution and parameter deprecation much easier and less error prone (see https://github.com/citycide/glob/issues/11 [RFC] API simplification for example) ## python's approach here's python's syntax + example from https://stackoverflow.com/questions/2965271/forced-naming-of-parameters-in-python to illustrate: ```python >>> def foo(pos, *, forcenamed): ... print(pos, forcenamed) ... >>> foo(pos=10, forcenamed=20) 10 20 >>> foo(10, forcenamed=20) 10 20 >>> foo(10, 20) Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: foo() takes exactly 1 positional argument (2 given) ``` NOTE: relevant snippet from [PEP3102](https://www.python.org/dev/peps/pep-3102/ introduced keyword only arguments : > Keyword-only arguments are not required to have a default value. Since Python requires that all arguments be bound to a value, and since the only way to bind a value to a keyword-only argument is via keyword, such arguments are therefore 'required keyword' arguments. Such arguments must be supplied by the caller, and they must be supplied via keyword. ## suggested syntax up for discussion: we could use same syntax as python, nice and simple, but which particular syntax doesn't matter much [1] ```nim proc foo(a=100, b=20)=discard foo(3) foo(a=3) # with keyword-only arg # later `a=100` is removed proc foo(b=20)=discard foo(3) # silently accepted with wrong semantics foo(a=3) # with keyword-only arg: better: compilation error ```
1.0
[RFC] Keyword-Only Arguments; leads to more readable code and fwd-compatible changes in API's - let's start with a quizz: which one of these is easier to understand ? (taken from @citycide's excellent `glob` library) ```nim # from https://citycide.github.io/glob/ walkGlobKinds("*.*", true, true, false, false) walkGlobKinds("*.*", root = "", relative = true, expandDirs = true, includeHidden = false; includeDirs = false) ``` Clearly, the 2nd one. The 1st one pretty much forces you to read the docs at **every single** such function call even if you're familiar with that API. Yet, the 2nd one is not enforced by the compiler and relying on convention sucks. * in python, they solved this problem by introducing keyword only arguments [PEP3102](https://www.python.org/dev/peps/pep-3102/) The use case is to force callers to use keyword calling as opposed to positional calling for these arguments, with benefits: * can result in much more readable code, see above * gives API writer more freedom to evolve API (eg adding params in the middle or reshuffling), all without breaking any code * removal of params in will cause compilation error if caller calls these params as opposed to silently accept wrong code in some cases, see [1] NOTE: keyword-only arguments would make such API evolution and parameter deprecation much easier and less error prone (see https://github.com/citycide/glob/issues/11 [RFC] API simplification for example) ## python's approach here's python's syntax + example from https://stackoverflow.com/questions/2965271/forced-naming-of-parameters-in-python to illustrate: ```python >>> def foo(pos, *, forcenamed): ... print(pos, forcenamed) ... >>> foo(pos=10, forcenamed=20) 10 20 >>> foo(10, forcenamed=20) 10 20 >>> foo(10, 20) Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: foo() takes exactly 1 positional argument (2 given) ``` NOTE: relevant snippet from [PEP3102](https://www.python.org/dev/peps/pep-3102/ introduced keyword only arguments : > Keyword-only arguments are not required to have a default value. Since Python requires that all arguments be bound to a value, and since the only way to bind a value to a keyword-only argument is via keyword, such arguments are therefore 'required keyword' arguments. Such arguments must be supplied by the caller, and they must be supplied via keyword. ## suggested syntax up for discussion: we could use same syntax as python, nice and simple, but which particular syntax doesn't matter much [1] ```nim proc foo(a=100, b=20)=discard foo(3) foo(a=3) # with keyword-only arg # later `a=100` is removed proc foo(b=20)=discard foo(3) # silently accepted with wrong semantics foo(a=3) # with keyword-only arg: better: compilation error ```
non_defect
keyword only arguments leads to more readable code and fwd compatible changes in api s let s start with a quizz which one of these is easier to understand taken from citycide s excellent glob library nim from walkglobkinds true true false false walkglobkinds root relative true expanddirs true includehidden false includedirs false clearly the one the one pretty much forces you to read the docs at every single such function call even if you re familiar with that api yet the one is not enforced by the compiler and relying on convention sucks in python they solved this problem by introducing keyword only arguments the use case is to force callers to use keyword calling as opposed to positional calling for these arguments with benefits can result in much more readable code see above gives api writer more freedom to evolve api eg adding params in the middle or reshuffling all without breaking any code removal of params in will cause compilation error if caller calls these params as opposed to silently accept wrong code in some cases see note keyword only arguments would make such api evolution and parameter deprecation much easier and less error prone see api simplification for example python s approach here s python s syntax example from to illustrate python def foo pos forcenamed print pos forcenamed foo pos forcenamed foo forcenamed foo traceback most recent call last file line in typeerror foo takes exactly positional argument given note relevant snippet from introduced keyword only arguments keyword only arguments are not required to have a default value since python requires that all arguments be bound to a value and since the only way to bind a value to a keyword only argument is via keyword such arguments are therefore required keyword arguments such arguments must be supplied by the caller and they must be supplied via keyword suggested syntax up for discussion we could use same syntax as python nice and simple but which particular syntax doesn t matter much nim proc foo a b discard foo foo a with keyword only arg later a is removed proc foo b discard foo silently accepted with wrong semantics foo a with keyword only arg better compilation error
0
95,674
19,728,337,193
IssuesEvent
2022-01-13 22:30:04
dotnet/razor-tooling
https://api.github.com/repos/dotnet/razor-tooling
closed
Javascript not highlighted partials view when using `Html.BeginScripts()`
untriaged vscode vs
Originally reported by @jonatanfelipesiqueira at https://github.com/OmniSharp/omnisharp-vscode/issues/5000 **Describe the bug:** when using code extension to send the javascript from a partial view to the index, the code is not recognized, would this correction be possible? same works in visual studio 2019 **Version used:** C# for VS Code **Expected behavior:** in vs 2019: ![image](https://user-images.githubusercontent.com/43968142/148840150-c19218f5-51c1-4f92-89be-6ad7d61dc9f2.png) **Actual behavior:** in vs code: ![image](https://user-images.githubusercontent.com/43968142/148840136-f942398f-6f93-4328-9baf-f80981935d7e.png)
1.0
Javascript not highlighted partials view when using `Html.BeginScripts()` - Originally reported by @jonatanfelipesiqueira at https://github.com/OmniSharp/omnisharp-vscode/issues/5000 **Describe the bug:** when using code extension to send the javascript from a partial view to the index, the code is not recognized, would this correction be possible? same works in visual studio 2019 **Version used:** C# for VS Code **Expected behavior:** in vs 2019: ![image](https://user-images.githubusercontent.com/43968142/148840150-c19218f5-51c1-4f92-89be-6ad7d61dc9f2.png) **Actual behavior:** in vs code: ![image](https://user-images.githubusercontent.com/43968142/148840136-f942398f-6f93-4328-9baf-f80981935d7e.png)
non_defect
javascript not highlighted partials view when using html beginscripts originally reported by jonatanfelipesiqueira at describe the bug when using code extension to send the javascript from a partial view to the index the code is not recognized would this correction be possible same works in visual studio version used c for vs code expected behavior in vs actual behavior in vs code
0
336,065
30,116,939,746
IssuesEvent
2023-06-30 12:20:12
SWM-Cupid/jikting-backend
https://api.github.com/repos/SWM-Cupid/jikting-backend
opened
[SP-109] 회원 프로필 수정 API 명세서 작성
feature docs test
## Jira Issue [SP-109](https://soma-cupid.atlassian.net/browse/SP-109?atlOrigin=eyJpIjoiN2Q1NDA3YWU5ZTQzNDk0OTgwOGUzZWQ0YmNiOWFjY2MiLCJwIjoiaiJ9) ## 요구사항 - [ ] 회원 프로필 수정 성공 API 명세서 작성 - [ ] 회원 프로필 수정 실패 API 명세서 작성
1.0
[SP-109] 회원 프로필 수정 API 명세서 작성 - ## Jira Issue [SP-109](https://soma-cupid.atlassian.net/browse/SP-109?atlOrigin=eyJpIjoiN2Q1NDA3YWU5ZTQzNDk0OTgwOGUzZWQ0YmNiOWFjY2MiLCJwIjoiaiJ9) ## 요구사항 - [ ] 회원 프로필 수정 성공 API 명세서 작성 - [ ] 회원 프로필 수정 실패 API 명세서 작성
non_defect
회원 프로필 수정 api 명세서 작성 jira issue 요구사항 회원 프로필 수정 성공 api 명세서 작성 회원 프로필 수정 실패 api 명세서 작성
0
23,537
3,837,780,288
IssuesEvent
2016-04-02 00:35:04
bridgedotnet/Bridge
https://api.github.com/repos/bridgedotnet/Bridge
closed
UInt64 division results in infinite loop
defect in progress
### Expected `res = 1` ### Actual Infinite loop ### Steps To Reproduce ```csharp public class App { [Ready] public static void Main() { ulong m = UInt64.MaxValue; ulong m1 = UInt64.MaxValue - 1; ulong res = m / m1; } } ``` Issue reported for dcodeIO long.js repo https://github.com/dcodeIO/long.js/issues/31
1.0
UInt64 division results in infinite loop - ### Expected `res = 1` ### Actual Infinite loop ### Steps To Reproduce ```csharp public class App { [Ready] public static void Main() { ulong m = UInt64.MaxValue; ulong m1 = UInt64.MaxValue - 1; ulong res = m / m1; } } ``` Issue reported for dcodeIO long.js repo https://github.com/dcodeIO/long.js/issues/31
defect
division results in infinite loop expected res actual infinite loop steps to reproduce csharp public class app public static void main ulong m maxvalue ulong maxvalue ulong res m issue reported for dcodeio long js repo
1
66,331
20,153,404,356
IssuesEvent
2022-02-09 14:28:59
scipy/scipy
https://api.github.com/repos/scipy/scipy
closed
False negatives reported by scipy.optimize.linprog
defect scipy.optimize
Sometimes `linprog` `method='interior-point'` reports failure despite successful convergence to a solution. That is, in [`scipy/optimize/_linprog_ip.py`](https://github.com/scipy/scipy/blob/master/scipy/optimize/_linprog_ip.py), `_ip_hsd` convergence criteria are met (`go = rho_p > tol or rho_d > tol or rho_A > tol` is `False`) and the algorithm terminates, but the "sanity check" for preventing false positives `_check_result` in [`scipy/optimize/_linprog_util.py`](https://github.com/scipy/scipy/blob/master/scipy/optimize/_linprog_util.py) reports failure. The sanity check is not related in an obvious way to the algorithm convergence criteria, and the tolerance used in the sanity check is a semi-arbitrary value that doesn't consider problem scaling, so the failure isn't surprising. I think the solution is for the `_check_result` to use a relative tolerance as noted in gh-9671. It could also be prevented by adding the sanity check to the algorithm's convergence criteria, but that might lead to other termination issues. #### Reproducing code example: This can be triggered with a minimally-modified version of the example in gh-6139. ``` from scipy import array, vstack, hstack from scipy.optimize import linprog from scipy.linalg import solve f1 = array([[1., 0., 0.], [-1000., 0., - 1000.]]) g1 = array([5.00000000e+00, -1.00000000e+04]) f2 = -array([[0., 1000000., 1010000000.]]) # added some zeros to f2[2] g2 = -array([10000000.]) sol = solve(vstack([f1, f2]), hstack([g1, g2-1])) assert (f1@sol == g1).all() assert (f2@sol < g2).all() ret = linprog([1]*3, f2, g2, f1, g1, bounds=[(None, None)]*3) print(ret) ``` #### Error message: ``` con: array([ 0.00000000e+00, -8.69476935e-07]) fun: -5030.000000000035 message: 'The solution does not satisfy the constraints within the required tolerance of 3.16E-04, yet no errors were raised and there is no certificate of infeasibility or unboundedness. This is known to occur if the `presolve` option is False and the problem is infeasible. This can also occur due to the limited accuracy of the `interior-point` method. Check whether the slack and constraint residuals are acceptable; if not, consider enabling presolve, reducing option `tol`, and/or using method `revised simplex`. If you encounter this message under different circumstances, please submit a bug report.' nit: 5 slack: array([-0.87733746]) status: 4 success: False x: array([ 5.00e+00, -5.04e+03, 5.00e+00]) ``` Revised simplex has no trouble: ``` ret = linprog([1]*3, f2, g2, f1, g1, bounds=[(None, None)]*3, method='revised simplex') ``` results in: ``` con: array([0., 0.]) fun: -5030.0 message: 'Optimization terminated successfully.' nit: 2 slack: array([0.]) status: 0 success: True x: array([ 5.00e+00, -5.04e+03, 5.00e+00]) ``` #### Scipy/Numpy/Python version information: 1.3.0 1.17.0 sys.version_info(major=3, minor=7, micro=3, releaselevel='final', serial=0) But the same issue is likely experienced in more recent versions.
1.0
False negatives reported by scipy.optimize.linprog - Sometimes `linprog` `method='interior-point'` reports failure despite successful convergence to a solution. That is, in [`scipy/optimize/_linprog_ip.py`](https://github.com/scipy/scipy/blob/master/scipy/optimize/_linprog_ip.py), `_ip_hsd` convergence criteria are met (`go = rho_p > tol or rho_d > tol or rho_A > tol` is `False`) and the algorithm terminates, but the "sanity check" for preventing false positives `_check_result` in [`scipy/optimize/_linprog_util.py`](https://github.com/scipy/scipy/blob/master/scipy/optimize/_linprog_util.py) reports failure. The sanity check is not related in an obvious way to the algorithm convergence criteria, and the tolerance used in the sanity check is a semi-arbitrary value that doesn't consider problem scaling, so the failure isn't surprising. I think the solution is for the `_check_result` to use a relative tolerance as noted in gh-9671. It could also be prevented by adding the sanity check to the algorithm's convergence criteria, but that might lead to other termination issues. #### Reproducing code example: This can be triggered with a minimally-modified version of the example in gh-6139. ``` from scipy import array, vstack, hstack from scipy.optimize import linprog from scipy.linalg import solve f1 = array([[1., 0., 0.], [-1000., 0., - 1000.]]) g1 = array([5.00000000e+00, -1.00000000e+04]) f2 = -array([[0., 1000000., 1010000000.]]) # added some zeros to f2[2] g2 = -array([10000000.]) sol = solve(vstack([f1, f2]), hstack([g1, g2-1])) assert (f1@sol == g1).all() assert (f2@sol < g2).all() ret = linprog([1]*3, f2, g2, f1, g1, bounds=[(None, None)]*3) print(ret) ``` #### Error message: ``` con: array([ 0.00000000e+00, -8.69476935e-07]) fun: -5030.000000000035 message: 'The solution does not satisfy the constraints within the required tolerance of 3.16E-04, yet no errors were raised and there is no certificate of infeasibility or unboundedness. This is known to occur if the `presolve` option is False and the problem is infeasible. This can also occur due to the limited accuracy of the `interior-point` method. Check whether the slack and constraint residuals are acceptable; if not, consider enabling presolve, reducing option `tol`, and/or using method `revised simplex`. If you encounter this message under different circumstances, please submit a bug report.' nit: 5 slack: array([-0.87733746]) status: 4 success: False x: array([ 5.00e+00, -5.04e+03, 5.00e+00]) ``` Revised simplex has no trouble: ``` ret = linprog([1]*3, f2, g2, f1, g1, bounds=[(None, None)]*3, method='revised simplex') ``` results in: ``` con: array([0., 0.]) fun: -5030.0 message: 'Optimization terminated successfully.' nit: 2 slack: array([0.]) status: 0 success: True x: array([ 5.00e+00, -5.04e+03, 5.00e+00]) ``` #### Scipy/Numpy/Python version information: 1.3.0 1.17.0 sys.version_info(major=3, minor=7, micro=3, releaselevel='final', serial=0) But the same issue is likely experienced in more recent versions.
defect
false negatives reported by scipy optimize linprog sometimes linprog method interior point reports failure despite successful convergence to a solution that is in ip hsd convergence criteria are met go rho p tol or rho d tol or rho a tol is false and the algorithm terminates but the sanity check for preventing false positives check result in reports failure the sanity check is not related in an obvious way to the algorithm convergence criteria and the tolerance used in the sanity check is a semi arbitrary value that doesn t consider problem scaling so the failure isn t surprising i think the solution is for the check result to use a relative tolerance as noted in gh it could also be prevented by adding the sanity check to the algorithm s convergence criteria but that might lead to other termination issues reproducing code example this can be triggered with a minimally modified version of the example in gh from scipy import array vstack hstack from scipy optimize import linprog from scipy linalg import solve array array array added some zeros to array sol solve vstack hstack assert sol all assert sol all ret linprog bounds print ret error message con array fun message the solution does not satisfy the constraints within the required tolerance of yet no errors were raised and there is no certificate of infeasibility or unboundedness this is known to occur if the presolve option is false and the problem is infeasible this can also occur due to the limited accuracy of the interior point method check whether the slack and constraint residuals are acceptable if not consider enabling presolve reducing option tol and or using method revised simplex if you encounter this message under different circumstances please submit a bug report nit slack array status success false x array revised simplex has no trouble ret linprog bounds method revised simplex results in con array fun message optimization terminated successfully nit slack array status success true x array scipy numpy python version information sys version info major minor micro releaselevel final serial but the same issue is likely experienced in more recent versions
1
49,977
13,187,302,401
IssuesEvent
2020-08-13 02:59:04
icecube-trac/tix3
https://api.github.com/repos/icecube-trac/tix3
opened
[PROPOSAL] fatal in decay (Trac #2397)
Incomplete Migration Migrated from Trac combo simulation defect
<details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/ticket/2397">https://code.icecube.wisc.edu/ticket/2397</a>, reported by grenzi and owned by jsoedingrekso</em></summary> <p> ```json { "status": "closed", "changetime": "2020-06-24T12:31:42", "description": "I found this fatal error running PROPOSAL via the script [https://code.icecube.wisc.edu/projects/icecube/browser/IceCube/meta-projects/combo/trunk/simprod-scripts/resources/scripts/clsim.py]:\n\n\n{{{\nFATAL (PROPOSAL): Kaellen function is negative. Cannot caluclate momentum (Decay\nChannel.cxx:88 in static double PROPOSAL::DecayChannel::Momentum(double, double,\n double))\nERROR (I3Module): propagator_propagator: Exception thrown (I3Module.cxx:123 in v\noid I3Module::Do(void (I3Module::*)()))\nTraceback (most recent call last):\n File \"/data/user/grenzi/combo-py3/src/simprod-scripts/resources/scripts/clsim.\npy\", line 188, in <module>\n main()\n File \"/data/user/grenzi/combo-py3/src/simprod-scripts/resources/scripts/clsim.\npy\", line 184, in main\n usegslrng=params['usegslrng'])\n File \"/data/user/grenzi/combo-py3/build/lib/icecube/simprod/util/simprodtray.py\", line 150, in RunI3Tray\n _execute(tray, executionmaxcount)\n File \"/data/user/grenzi/combo-py3/build/lib/icecube/simprod/util/simprodtray.py\", line 53, in _execute\n tray.Execute()\n File \"/data/user/grenzi/combo-py3/build/lib/I3Tray.py\", line 256, in Execute\n super(I3Tray, self).Execute()\nRuntimeError: Kaellen function is negative. Cannot caluclate momentum (in static double PROPOSAL::DecayChannel::Momentum(double, double, double))\n}}}\n\nThe error seems to come from here at line 88 [https://code.icecube.wisc.edu/projects/icecube/browser/IceCube/meta-projects/combo/trunk/PROPOSAL/private/PROPOSAL/decay/DecayChannel.cxx]\n\n\n{{{\n79 double DecayChannel::Momentum(double m1, double m2, double m3)\n80\t{\n81\t double kaellen = (m1 - m2 - m3) * (m1 + m2 + m3) * (m1 - m2 + m3) * (m1 + m2 - m3);\n82\t\n83\t if (kaellen > 0.0)\n84\t {\n85\t return std::sqrt(kaellen) / (2.0 * m1);\n86\t } else\n87\t {\n88\t log_fatal(\"Kaellen function is negative. Cannot caluclate momentum\");\n89\t return 0.0;\n90\t }\n91\t}\n}}}\n\n\nThis error prevents the propagation process for all of the following frames. I think the right thing would be just skipping the single wrong one.\n", "reporter": "grenzi", "cc": "", "resolution": "fixed", "_ts": "1593001902142004", "component": "combo simulation", "summary": "[PROPOSAL] fatal in decay", "priority": "major", "keywords": "", "time": "2020-01-08T09:47:52", "milestone": "Autumnal Equinox 2020", "owner": "jsoedingrekso", "type": "defect" } ``` </p> </details>
1.0
[PROPOSAL] fatal in decay (Trac #2397) - <details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/ticket/2397">https://code.icecube.wisc.edu/ticket/2397</a>, reported by grenzi and owned by jsoedingrekso</em></summary> <p> ```json { "status": "closed", "changetime": "2020-06-24T12:31:42", "description": "I found this fatal error running PROPOSAL via the script [https://code.icecube.wisc.edu/projects/icecube/browser/IceCube/meta-projects/combo/trunk/simprod-scripts/resources/scripts/clsim.py]:\n\n\n{{{\nFATAL (PROPOSAL): Kaellen function is negative. Cannot caluclate momentum (Decay\nChannel.cxx:88 in static double PROPOSAL::DecayChannel::Momentum(double, double,\n double))\nERROR (I3Module): propagator_propagator: Exception thrown (I3Module.cxx:123 in v\noid I3Module::Do(void (I3Module::*)()))\nTraceback (most recent call last):\n File \"/data/user/grenzi/combo-py3/src/simprod-scripts/resources/scripts/clsim.\npy\", line 188, in <module>\n main()\n File \"/data/user/grenzi/combo-py3/src/simprod-scripts/resources/scripts/clsim.\npy\", line 184, in main\n usegslrng=params['usegslrng'])\n File \"/data/user/grenzi/combo-py3/build/lib/icecube/simprod/util/simprodtray.py\", line 150, in RunI3Tray\n _execute(tray, executionmaxcount)\n File \"/data/user/grenzi/combo-py3/build/lib/icecube/simprod/util/simprodtray.py\", line 53, in _execute\n tray.Execute()\n File \"/data/user/grenzi/combo-py3/build/lib/I3Tray.py\", line 256, in Execute\n super(I3Tray, self).Execute()\nRuntimeError: Kaellen function is negative. Cannot caluclate momentum (in static double PROPOSAL::DecayChannel::Momentum(double, double, double))\n}}}\n\nThe error seems to come from here at line 88 [https://code.icecube.wisc.edu/projects/icecube/browser/IceCube/meta-projects/combo/trunk/PROPOSAL/private/PROPOSAL/decay/DecayChannel.cxx]\n\n\n{{{\n79 double DecayChannel::Momentum(double m1, double m2, double m3)\n80\t{\n81\t double kaellen = (m1 - m2 - m3) * (m1 + m2 + m3) * (m1 - m2 + m3) * (m1 + m2 - m3);\n82\t\n83\t if (kaellen > 0.0)\n84\t {\n85\t return std::sqrt(kaellen) / (2.0 * m1);\n86\t } else\n87\t {\n88\t log_fatal(\"Kaellen function is negative. Cannot caluclate momentum\");\n89\t return 0.0;\n90\t }\n91\t}\n}}}\n\n\nThis error prevents the propagation process for all of the following frames. I think the right thing would be just skipping the single wrong one.\n", "reporter": "grenzi", "cc": "", "resolution": "fixed", "_ts": "1593001902142004", "component": "combo simulation", "summary": "[PROPOSAL] fatal in decay", "priority": "major", "keywords": "", "time": "2020-01-08T09:47:52", "milestone": "Autumnal Equinox 2020", "owner": "jsoedingrekso", "type": "defect" } ``` </p> </details>
defect
fatal in decay trac migrated from json status closed changetime description i found this fatal error running proposal via the script n n n nfatal proposal kaellen function is negative cannot caluclate momentum decay nchannel cxx in static double proposal decaychannel momentum double double n double nerror propagator propagator exception thrown cxx in v noid do void ntraceback most recent call last n file data user grenzi combo src simprod scripts resources scripts clsim npy line in n main n file data user grenzi combo src simprod scripts resources scripts clsim npy line in main n usegslrng params n file data user grenzi combo build lib icecube simprod util simprodtray py line in n execute tray executionmaxcount n file data user grenzi combo build lib icecube simprod util simprodtray py line in execute n tray execute n file data user grenzi combo build lib py line in execute n super self execute nruntimeerror kaellen function is negative cannot caluclate momentum in static double proposal decaychannel momentum double double double n n nthe error seems to come from here at line n n n double decaychannel momentum double double double t t double kaellen t t if kaellen t t return std sqrt kaellen t else t t log fatal kaellen function is negative cannot caluclate momentum t return t t n n n nthis error prevents the propagation process for all of the following frames i think the right thing would be just skipping the single wrong one n reporter grenzi cc resolution fixed ts component combo simulation summary fatal in decay priority major keywords time milestone autumnal equinox owner jsoedingrekso type defect
1
278,592
30,702,362,437
IssuesEvent
2023-07-27 01:23:40
Satheesh575555/packages_apps_Settings_AOSP10_r33_CVE-2020-0416
https://api.github.com/repos/Satheesh575555/packages_apps_Settings_AOSP10_r33_CVE-2020-0416
reopened
CVE-2020-0201 (Critical) detected in Settingsandroid-10.0.0_r33
Mend: dependency security vulnerability
## CVE-2020-0201 - Critical Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>Settingsandroid-10.0.0_r33</b></p></summary> <p> <p>Library home page: <a href=https://android.googlesource.com/platform/packages/apps/Settings>https://android.googlesource.com/platform/packages/apps/Settings</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>/src/com/android/settings/wifi/WifiConfigController.java</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/critical_vul.png?' width=19 height=20> Vulnerability Details</summary> <p> In showSecurityFields of WifiConfigController.java there is a possible credential leak due to a confused deputy. This could lead to remote escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android-10Android ID: A-143601727 <p>Publish Date: 2020-06-11 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-0201>CVE-2020-0201</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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-0201">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-0201</a></p> <p>Release Date: 2020-06-11</p> <p>Fix Resolution: android-10.0.0_r37</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2020-0201 (Critical) detected in Settingsandroid-10.0.0_r33 - ## CVE-2020-0201 - Critical Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>Settingsandroid-10.0.0_r33</b></p></summary> <p> <p>Library home page: <a href=https://android.googlesource.com/platform/packages/apps/Settings>https://android.googlesource.com/platform/packages/apps/Settings</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>/src/com/android/settings/wifi/WifiConfigController.java</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/critical_vul.png?' width=19 height=20> Vulnerability Details</summary> <p> In showSecurityFields of WifiConfigController.java there is a possible credential leak due to a confused deputy. This could lead to remote escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android-10Android ID: A-143601727 <p>Publish Date: 2020-06-11 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-0201>CVE-2020-0201</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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-0201">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-0201</a></p> <p>Release Date: 2020-06-11</p> <p>Fix Resolution: android-10.0.0_r37</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 critical detected in settingsandroid cve critical severity vulnerability vulnerable library settingsandroid library home page a href found in base branch master vulnerable source files src com android settings wifi wificonfigcontroller java vulnerability details in showsecurityfields of wificonfigcontroller java there is a possible credential leak due to a confused deputy this could lead to remote escalation of privilege with no additional execution privileges needed user interaction is not needed for exploitation product androidversions android id a 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 android step up your open source security game with mend
0
369,054
10,887,703,054
IssuesEvent
2019-11-18 15:00:37
geosolutions-it/MapStore2
https://api.github.com/repos/geosolutions-it/MapStore2
closed
Warning "layer and map projection not compatible" occurs though CRS in WMS requests and map CRS fit
Accepted CRS Selector Priority: Medium bug
### Description We use custom projection EPSG:31468 in our MapStore. When creating an new map and adding a WMS layer from a service that provides this EPSG, a warning occurs: "the current layer(s) and map projection are not completely compatible. Parts or all of the data might not appear in the map." This error now allways occurs when opening the created map. Looking at the network connections, all WMS requests have parameter CRS/SRS=EPSG:31468. All WMS services used offer EPSG:31468 (Check GetCapabilities response). The coordinates measured in MapStore and in QGIS on the geodata used do perfectly fit. *Browser Affected* Chrome 77, IE 11 *Steps to reproduce* See our localConfig.json and new.json attached. *Expected Result* As all requests use EPSG:31468 and the map view and coordinates measured seem correct, there should be no warning message. *Current Result* Warning message occurs: ![add_map-layer_warning](https://user-images.githubusercontent.com/25839469/67927511-1288fd80-fbb9-11e9-9c90-0c3e916975c2.PNG) map CRS settings: ![01_crs_settings](https://user-images.githubusercontent.com/25839469/67927119-18caaa00-fbb8-11e9-8f48-bf7aed30171b.PNG) getMap-Request for map layer used in the map (QGIS Server running in company network): ![getMap_request_map-layer_qgis](https://user-images.githubusercontent.com/25839469/67926233-c7212000-fbb5-11e9-93ff-6e922f8803dd.PNG) getMap-Request for other map layer used in the map: ![getMap_request_map-layer_lfu](https://user-images.githubusercontent.com/25839469/67926380-2c751100-fbb6-11e9-8260-73c74dabe0e9.PNG) getMap-Request for background layer used in the map: ![getMap_request_background-layer](https://user-images.githubusercontent.com/25839469/67926482-6d6d2580-fbb6-11e9-83df-088fb46a0cfd.PNG) ) localConfig.json and new.json: [json.zip](https://github.com/geosolutions-it/MapStore2/files/3792575/json.zip)
1.0
Warning "layer and map projection not compatible" occurs though CRS in WMS requests and map CRS fit - ### Description We use custom projection EPSG:31468 in our MapStore. When creating an new map and adding a WMS layer from a service that provides this EPSG, a warning occurs: "the current layer(s) and map projection are not completely compatible. Parts or all of the data might not appear in the map." This error now allways occurs when opening the created map. Looking at the network connections, all WMS requests have parameter CRS/SRS=EPSG:31468. All WMS services used offer EPSG:31468 (Check GetCapabilities response). The coordinates measured in MapStore and in QGIS on the geodata used do perfectly fit. *Browser Affected* Chrome 77, IE 11 *Steps to reproduce* See our localConfig.json and new.json attached. *Expected Result* As all requests use EPSG:31468 and the map view and coordinates measured seem correct, there should be no warning message. *Current Result* Warning message occurs: ![add_map-layer_warning](https://user-images.githubusercontent.com/25839469/67927511-1288fd80-fbb9-11e9-9c90-0c3e916975c2.PNG) map CRS settings: ![01_crs_settings](https://user-images.githubusercontent.com/25839469/67927119-18caaa00-fbb8-11e9-8f48-bf7aed30171b.PNG) getMap-Request for map layer used in the map (QGIS Server running in company network): ![getMap_request_map-layer_qgis](https://user-images.githubusercontent.com/25839469/67926233-c7212000-fbb5-11e9-93ff-6e922f8803dd.PNG) getMap-Request for other map layer used in the map: ![getMap_request_map-layer_lfu](https://user-images.githubusercontent.com/25839469/67926380-2c751100-fbb6-11e9-8260-73c74dabe0e9.PNG) getMap-Request for background layer used in the map: ![getMap_request_background-layer](https://user-images.githubusercontent.com/25839469/67926482-6d6d2580-fbb6-11e9-83df-088fb46a0cfd.PNG) ) localConfig.json and new.json: [json.zip](https://github.com/geosolutions-it/MapStore2/files/3792575/json.zip)
non_defect
warning layer and map projection not compatible occurs though crs in wms requests and map crs fit description we use custom projection epsg in our mapstore when creating an new map and adding a wms layer from a service that provides this epsg a warning occurs the current layer s and map projection are not completely compatible parts or all of the data might not appear in the map this error now allways occurs when opening the created map looking at the network connections all wms requests have parameter crs srs epsg all wms services used offer epsg check getcapabilities response the coordinates measured in mapstore and in qgis on the geodata used do perfectly fit browser affected chrome ie steps to reproduce see our localconfig json and new json attached expected result as all requests use epsg and the map view and coordinates measured seem correct there should be no warning message current result warning message occurs map crs settings getmap request for map layer used in the map qgis server running in company network getmap request for other map layer used in the map getmap request for background layer used in the map localconfig json and new json
0
476,015
13,732,421,708
IssuesEvent
2020-10-05 04:39:04
wso2/product-apim
https://api.github.com/repos/wso2/product-apim
closed
Issue in changing the life cycle diagram
Affected/3.1.0 Priority/Normal Resolution/Fixed Type/Bug Type/React-UI
### Description: Configuration in [1] needs to be added to change the life-cycle diagram in Publisher. But the `APP_CONTEXT` is not defined here, hence throwing error when un-comment. [1] https://github.com/wso2/carbon-apimgt/blob/master/features/apimgt/org.wso2.carbon.apimgt.publisher.feature/src/main/resources/publisher/site/public/conf/defaultTheme.js#L106
1.0
Issue in changing the life cycle diagram - ### Description: Configuration in [1] needs to be added to change the life-cycle diagram in Publisher. But the `APP_CONTEXT` is not defined here, hence throwing error when un-comment. [1] https://github.com/wso2/carbon-apimgt/blob/master/features/apimgt/org.wso2.carbon.apimgt.publisher.feature/src/main/resources/publisher/site/public/conf/defaultTheme.js#L106
non_defect
issue in changing the life cycle diagram description configuration in needs to be added to change the life cycle diagram in publisher but the app context is not defined here hence throwing error when un comment
0
43,707
11,799,117,133
IssuesEvent
2020-03-18 15:25:03
KenQuin/Lists-Cola
https://api.github.com/repos/KenQuin/Lists-Cola
opened
Slow response times for Card_1_TwoHops_Hist_complete_w_PIN
Defect
This issue has been automatically created from Bot UI Automation. The goal is 3 seconds and the response time Uncached is 16934 milliseconds @KenQuin
1.0
Slow response times for Card_1_TwoHops_Hist_complete_w_PIN - This issue has been automatically created from Bot UI Automation. The goal is 3 seconds and the response time Uncached is 16934 milliseconds @KenQuin
defect
slow response times for card twohops hist complete w pin this issue has been automatically created from bot ui automation the goal is seconds and the response time uncached is milliseconds kenquin
1
79,419
28,213,571,804
IssuesEvent
2023-04-05 07:13:35
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
closed
Integration manager hostname weirdly far away from the section label
T-Defect X-Regression S-Tolerable A-User-Settings A-Integrations O-Uncommon
### Steps to reproduce 1. Open settings 2. Scroll down to "manage integrations" ### Outcome #### What did you expect? The hostname to be near the title #### What happened instead? ![image](https://user-images.githubusercontent.com/1190097/209000535-8804ceaa-15f2-4adf-b8d9-90be5bf0cb9e.png) ### Operating system _No response_ ### Browser information _No response_ ### URL for webapp _No response_ ### Application version _No response_ ### Homeserver _No response_ ### Will you send logs? No
1.0
Integration manager hostname weirdly far away from the section label - ### Steps to reproduce 1. Open settings 2. Scroll down to "manage integrations" ### Outcome #### What did you expect? The hostname to be near the title #### What happened instead? ![image](https://user-images.githubusercontent.com/1190097/209000535-8804ceaa-15f2-4adf-b8d9-90be5bf0cb9e.png) ### Operating system _No response_ ### Browser information _No response_ ### URL for webapp _No response_ ### Application version _No response_ ### Homeserver _No response_ ### Will you send logs? No
defect
integration manager hostname weirdly far away from the section label steps to reproduce open settings scroll down to manage integrations outcome what did you expect the hostname to be near the title what happened instead operating system no response browser information no response url for webapp no response application version no response homeserver no response will you send logs no
1
18,360
3,051,559,861
IssuesEvent
2015-08-12 09:24:38
VsMoroz/tt-system-data
https://api.github.com/repos/VsMoroz/tt-system-data
closed
Фильтрация областей в Форме добавления города в систему ТТ
Type-Defect
Привет ! Система ТТ, Tools -> Options -> перейти на закладку "Таблицы" -> в поле "Выбор таблицы" выбрать "Город" подправь код что бы при выборе в этой форме Страны, соответсвенно менялись значения в форме "Область", а то сейчас независимо от выбора страны - список Областей содержит в себе все области.
1.0
Фильтрация областей в Форме добавления города в систему ТТ - Привет ! Система ТТ, Tools -> Options -> перейти на закладку "Таблицы" -> в поле "Выбор таблицы" выбрать "Город" подправь код что бы при выборе в этой форме Страны, соответсвенно менялись значения в форме "Область", а то сейчас независимо от выбора страны - список Областей содержит в себе все области.
defect
фильтрация областей в форме добавления города в систему тт привет система тт tools options перейти на закладку таблицы в поле выбор таблицы выбрать город подправь код что бы при выборе в этой форме страны соответсвенно менялись значения в форме область а то сейчас независимо от выбора страны список областей содержит в себе все области
1
567,042
16,844,110,528
IssuesEvent
2021-06-19 05:13:55
gnosis/ido-ux
https://api.github.com/repos/gnosis/ido-ux
closed
Orderbook section changes height when switch to a list view + no bids
QA bug medium priority
Related to #527, #674 1. Create an auction 2. Open auction details with no bids 3. switch to the List view of the orderbook **AR**: Orderbook section changes height https://drive.google.com/file/d/1Q5Uj_ULwEsjEg7NmUdHzFS-iirr2SyaA/view + orderbook is jumping when it is loaded https://drive.google.com/file/d/1SFR66r0JBpxdk0cQ-1AKUM9ZNy_4nnRN/view **ER**: height is the same; orderbook is not jumping when it is loaded Please, note, that the 'black' line appears in the Orderbook list when there are orders in it.
1.0
Orderbook section changes height when switch to a list view + no bids - Related to #527, #674 1. Create an auction 2. Open auction details with no bids 3. switch to the List view of the orderbook **AR**: Orderbook section changes height https://drive.google.com/file/d/1Q5Uj_ULwEsjEg7NmUdHzFS-iirr2SyaA/view + orderbook is jumping when it is loaded https://drive.google.com/file/d/1SFR66r0JBpxdk0cQ-1AKUM9ZNy_4nnRN/view **ER**: height is the same; orderbook is not jumping when it is loaded Please, note, that the 'black' line appears in the Orderbook list when there are orders in it.
non_defect
orderbook section changes height when switch to a list view no bids related to create an auction open auction details with no bids switch to the list view of the orderbook ar orderbook section changes height orderbook is jumping when it is loaded er height is the same orderbook is not jumping when it is loaded please note that the black line appears in the orderbook list when there are orders in it
0
601,549
18,416,212,357
IssuesEvent
2021-10-13 11:45:25
Qualys/API_Driven_Migration
https://api.github.com/repos/Qualys/API_Driven_Migration
opened
Asset Group Processor fails due to Networks
bug High Priority
Asset Group Processor assumes that Networks feature is enabled in the subscription. When not enabled this causes the Asset Group Processor to fail because it cannot build the network map.
1.0
Asset Group Processor fails due to Networks - Asset Group Processor assumes that Networks feature is enabled in the subscription. When not enabled this causes the Asset Group Processor to fail because it cannot build the network map.
non_defect
asset group processor fails due to networks asset group processor assumes that networks feature is enabled in the subscription when not enabled this causes the asset group processor to fail because it cannot build the network map
0
34,068
12,238,160,811
IssuesEvent
2020-05-04 19:18:32
icgc-argo/platform-ui
https://api.github.com/repos/icgc-argo/platform-ui
closed
OICR IT Internal Scan Vulnerabilities for ARGO Platform
grooming security
Below are the results of the OICR IT scan: ![image.png](https://images.zenhubusercontent.com/5d55b1b74d335f147c3e6dc0/63057dae-0db4-4949-a4a4-b816709e2f0b) Issue: HTTP Request Smuggling Severity: HIGH Confidence: Tentative Host: https://platform.icgc-argo.org Path: ![image.png](https://images.zenhubusercontent.com/5d55b1b74d335f147c3e6dc0/d2aef365-03ef-4951-874e-6a7ed881bd3f) **Issue description** HTTP request smuggling vulnerabilities arise when websites route HTTP requests through webservers with inconsistent HTTP parsing. By supplying a request that gets interpreted as being different lengths by different servers, an attacker can poison the back-end TCP/TLS socket and prepend arbitrary data to the next request. Depending on the website's functionality, this can be used to bypass front-end security rules, access internal systems, poison web caches, and launch assorted attacks on users who are actively browsing the site. **Issue remediation** You can resolve all variants of this vulnerability by configuring the front-end server to exclusively use HTTP/2 to communicate to back-end systems, or by disabling back-end connection reuse entirely. Alternatively, you could ensure all servers in the chain run the same webserver software with the same configuration. Specific instances of this vulnerability can be resolved by reconfiguring the front-end server to normalize ambiguous requests before routing them onward, or by configuring the back-end server to reject the message and close the connection when it encounters an ambiguous request. **References** HTTP Request Smuggling HTTP Desync Attacks **Vulnerability classifications** CWE-444: Inconsistent Interpretation of HTTP Requests ('HTTP Request Smuggling')
True
OICR IT Internal Scan Vulnerabilities for ARGO Platform - Below are the results of the OICR IT scan: ![image.png](https://images.zenhubusercontent.com/5d55b1b74d335f147c3e6dc0/63057dae-0db4-4949-a4a4-b816709e2f0b) Issue: HTTP Request Smuggling Severity: HIGH Confidence: Tentative Host: https://platform.icgc-argo.org Path: ![image.png](https://images.zenhubusercontent.com/5d55b1b74d335f147c3e6dc0/d2aef365-03ef-4951-874e-6a7ed881bd3f) **Issue description** HTTP request smuggling vulnerabilities arise when websites route HTTP requests through webservers with inconsistent HTTP parsing. By supplying a request that gets interpreted as being different lengths by different servers, an attacker can poison the back-end TCP/TLS socket and prepend arbitrary data to the next request. Depending on the website's functionality, this can be used to bypass front-end security rules, access internal systems, poison web caches, and launch assorted attacks on users who are actively browsing the site. **Issue remediation** You can resolve all variants of this vulnerability by configuring the front-end server to exclusively use HTTP/2 to communicate to back-end systems, or by disabling back-end connection reuse entirely. Alternatively, you could ensure all servers in the chain run the same webserver software with the same configuration. Specific instances of this vulnerability can be resolved by reconfiguring the front-end server to normalize ambiguous requests before routing them onward, or by configuring the back-end server to reject the message and close the connection when it encounters an ambiguous request. **References** HTTP Request Smuggling HTTP Desync Attacks **Vulnerability classifications** CWE-444: Inconsistent Interpretation of HTTP Requests ('HTTP Request Smuggling')
non_defect
oicr it internal scan vulnerabilities for argo platform below are the results of the oicr it scan issue http request smuggling severity high confidence tentative host path issue description http request smuggling vulnerabilities arise when websites route http requests through webservers with inconsistent http parsing by supplying a request that gets interpreted as being different lengths by different servers an attacker can poison the back end tcp tls socket and prepend arbitrary data to the next request depending on the website s functionality this can be used to bypass front end security rules access internal systems poison web caches and launch assorted attacks on users who are actively browsing the site issue remediation you can resolve all variants of this vulnerability by configuring the front end server to exclusively use http to communicate to back end systems or by disabling back end connection reuse entirely alternatively you could ensure all servers in the chain run the same webserver software with the same configuration specific instances of this vulnerability can be resolved by reconfiguring the front end server to normalize ambiguous requests before routing them onward or by configuring the back end server to reject the message and close the connection when it encounters an ambiguous request references http request smuggling http desync attacks vulnerability classifications cwe inconsistent interpretation of http requests http request smuggling
0
135,880
12,692,678,064
IssuesEvent
2020-06-22 00:01:57
Teackens/distribution-bots-2.0
https://api.github.com/repos/Teackens/distribution-bots-2.0
closed
Implement Workflow
documentation no-issue-activity
- [x] investigate workflow - [x] decide needed features - [x] create .yml or .yaml file - [x] add workflow to project
1.0
Implement Workflow - - [x] investigate workflow - [x] decide needed features - [x] create .yml or .yaml file - [x] add workflow to project
non_defect
implement workflow investigate workflow decide needed features create yml or yaml file add workflow to project
0
24,712
4,075,952,208
IssuesEvent
2016-05-29 15:28:27
bridgedotnet/Bridge
https://api.github.com/repos/bridgedotnet/Bridge
closed
Generated constructors' names aren't mangled properly for overloading when one of them has a TemplateAttribute
defect
### Expected ```javascript (function (globals) { "use strict"; Bridge.define('Demo.Thing', { constructor: function (x) { // 2 } }); Bridge.init(); })(this); ``` ### Actual ```javascript (function (globals) { "use strict"; Bridge.define('Demo.Thing', { constructor: function () { // 1 }, constructor: function (x) { // 2 } }); Bridge.init(); })(this); ``` ### Steps To Reproduce ```csharp public class Thing { [Template("{}")] public Thing() { // 1 } public Thing(int x) { // 2 } } ```
1.0
Generated constructors' names aren't mangled properly for overloading when one of them has a TemplateAttribute - ### Expected ```javascript (function (globals) { "use strict"; Bridge.define('Demo.Thing', { constructor: function (x) { // 2 } }); Bridge.init(); })(this); ``` ### Actual ```javascript (function (globals) { "use strict"; Bridge.define('Demo.Thing', { constructor: function () { // 1 }, constructor: function (x) { // 2 } }); Bridge.init(); })(this); ``` ### Steps To Reproduce ```csharp public class Thing { [Template("{}")] public Thing() { // 1 } public Thing(int x) { // 2 } } ```
defect
generated constructors names aren t mangled properly for overloading when one of them has a templateattribute expected javascript function globals use strict bridge define demo thing constructor function x bridge init this actual javascript function globals use strict bridge define demo thing constructor function constructor function x bridge init this steps to reproduce csharp public class thing public thing public thing int x
1
56,984
15,559,580,767
IssuesEvent
2021-03-16 11:40:22
hazelcast/hazelcast
https://api.github.com/repos/hazelcast/hazelcast
opened
Configured logger not used for modular environment warning
Type: Defect
If I code ``` Config config = new Config(); config.setProperty("hazelcast.logging.type", "slf4j"); HazelcastInstance hazelcastInstance = Hazelcast.newHazelcastInstance(config); ``` I get this message from 5.0-SNAPSHOT, even if logging for `com.hazelcast` is set to `ERROR` level ``` Mar 16, 2021 11:32:24 AM com.hazelcast.instance.impl.HazelcastInstanceFactory WARNING: Hazelcast is starting in a Java modular environment (Java 9 and newer) but without proper access to required Java packages. Use additional Java arguments to provide Hazelcast access to Java internal API. The internal API access is used to get the best performance results. Arguments to be used: ``` due to https://github.com/hazelcast/hazelcast/blob/master/hazelcast/src/main/java/com/hazelcast/instance/impl/HazelcastInstanceFactory.java#L61 using the logger prior to any configured logger in properties
1.0
Configured logger not used for modular environment warning - If I code ``` Config config = new Config(); config.setProperty("hazelcast.logging.type", "slf4j"); HazelcastInstance hazelcastInstance = Hazelcast.newHazelcastInstance(config); ``` I get this message from 5.0-SNAPSHOT, even if logging for `com.hazelcast` is set to `ERROR` level ``` Mar 16, 2021 11:32:24 AM com.hazelcast.instance.impl.HazelcastInstanceFactory WARNING: Hazelcast is starting in a Java modular environment (Java 9 and newer) but without proper access to required Java packages. Use additional Java arguments to provide Hazelcast access to Java internal API. The internal API access is used to get the best performance results. Arguments to be used: ``` due to https://github.com/hazelcast/hazelcast/blob/master/hazelcast/src/main/java/com/hazelcast/instance/impl/HazelcastInstanceFactory.java#L61 using the logger prior to any configured logger in properties
defect
configured logger not used for modular environment warning if i code config config new config config setproperty hazelcast logging type hazelcastinstance hazelcastinstance hazelcast newhazelcastinstance config i get this message from snapshot even if logging for com hazelcast is set to error level mar am com hazelcast instance impl hazelcastinstancefactory warning hazelcast is starting in a java modular environment java and newer but without proper access to required java packages use additional java arguments to provide hazelcast access to java internal api the internal api access is used to get the best performance results arguments to be used due to using the logger prior to any configured logger in properties
1
12,450
2,700,454,826
IssuesEvent
2015-04-04 05:34:58
tpounds/mockitopp
https://api.github.com/repos/tpounds/mockitopp
closed
Add functionality to clear expectations
auto-migrated Priority-Medium Type-Defect
``` This is an enhancement request. I've had some use cases where I need to set a block of expectations on a mock_object for a set of unit tests where each unit test wants to use a default set of values while specializing on only one. Currently, mock_object provides no mechanism to override or clear previously-set expectations, so it's not possible to set the default expectations in the setup() function of the unit test framework and then cleanly override the default for any single function in the unit test body itself. There are some workarounds, but they clutter the code and make the flow and intent less clear. I've thought of a few expressions that would be useful to support: 1) Reset all expectations for a given function 2) Reset all expectations for a given function with specific matching args (i.e. args to when()) 3) Reset all expectations for a given function with specific matching args and chain new expectations (thenReturn(), thenThrow()) in the same call iteratively The semantics for one possible solution: // Reset all previously set expectations for ptr2member. // Alternative names: disregard(), cancel(), reject() mock_object::reset(M ptr2member); // Reset all previously set expectations for ptr2member calls // where args match those defined in when(). mock_object::reset(M ptr2member).when(...); // Reset previously set expectations and set new expectations in the same call iteratively mock_object::reset(M ptr2member).when(...).thenReturn(...).thenThrow(...).thenReturn(...); Any comments on these semantics or the general solution? ``` Original issue reported on code.google.com by `nwon...@gmail.com` on 10 Aug 2013 at 5:02
1.0
Add functionality to clear expectations - ``` This is an enhancement request. I've had some use cases where I need to set a block of expectations on a mock_object for a set of unit tests where each unit test wants to use a default set of values while specializing on only one. Currently, mock_object provides no mechanism to override or clear previously-set expectations, so it's not possible to set the default expectations in the setup() function of the unit test framework and then cleanly override the default for any single function in the unit test body itself. There are some workarounds, but they clutter the code and make the flow and intent less clear. I've thought of a few expressions that would be useful to support: 1) Reset all expectations for a given function 2) Reset all expectations for a given function with specific matching args (i.e. args to when()) 3) Reset all expectations for a given function with specific matching args and chain new expectations (thenReturn(), thenThrow()) in the same call iteratively The semantics for one possible solution: // Reset all previously set expectations for ptr2member. // Alternative names: disregard(), cancel(), reject() mock_object::reset(M ptr2member); // Reset all previously set expectations for ptr2member calls // where args match those defined in when(). mock_object::reset(M ptr2member).when(...); // Reset previously set expectations and set new expectations in the same call iteratively mock_object::reset(M ptr2member).when(...).thenReturn(...).thenThrow(...).thenReturn(...); Any comments on these semantics or the general solution? ``` Original issue reported on code.google.com by `nwon...@gmail.com` on 10 Aug 2013 at 5:02
defect
add functionality to clear expectations this is an enhancement request i ve had some use cases where i need to set a block of expectations on a mock object for a set of unit tests where each unit test wants to use a default set of values while specializing on only one currently mock object provides no mechanism to override or clear previously set expectations so it s not possible to set the default expectations in the setup function of the unit test framework and then cleanly override the default for any single function in the unit test body itself there are some workarounds but they clutter the code and make the flow and intent less clear i ve thought of a few expressions that would be useful to support reset all expectations for a given function reset all expectations for a given function with specific matching args i e args to when reset all expectations for a given function with specific matching args and chain new expectations thenreturn thenthrow in the same call iteratively the semantics for one possible solution reset all previously set expectations for alternative names disregard cancel reject mock object reset m reset all previously set expectations for calls where args match those defined in when mock object reset m when reset previously set expectations and set new expectations in the same call iteratively mock object reset m when thenreturn thenthrow thenreturn any comments on these semantics or the general solution original issue reported on code google com by nwon gmail com on aug at
1
22,185
4,778,281,685
IssuesEvent
2016-10-27 18:49:22
broadinstitute/gatk-protected
https://api.github.com/repos/broadinstitute/gatk-protected
closed
Emphasize that CNLoH caller is experimental/unevaluated
Copy Number tools documentation
- [x] Change docs in the CLI - [x] Rename tool to CallAllelicSplits - [x] Change package and class names - [x] Update FH task configuration or file an issue - [x] Update Queue script with better naming - [x] Update wdl
1.0
Emphasize that CNLoH caller is experimental/unevaluated - - [x] Change docs in the CLI - [x] Rename tool to CallAllelicSplits - [x] Change package and class names - [x] Update FH task configuration or file an issue - [x] Update Queue script with better naming - [x] Update wdl
non_defect
emphasize that cnloh caller is experimental unevaluated change docs in the cli rename tool to callallelicsplits change package and class names update fh task configuration or file an issue update queue script with better naming update wdl
0
5,811
8,250,388,913
IssuesEvent
2018-09-12 02:29:08
pingcap/tidb
https://api.github.com/repos/pingcap/tidb
closed
decimal type in `show create table` is not same as MySQL
type/compatibility
## Bug Report Please answer these questions before submitting your issue. Thanks! 1. What did you do? If possible, provide a recipe for reproducing the error. create table decimalschema(x decimal(15)); show create table decimalschema; 2. What did you expect to see? +---------------+-------------------------------------------------------------------------------- ----------------------------------------------+ | Table | Create Table | +---------------+-------------------------------------------------------------------------------- ----------------------------------------------+ | decimalschema | CREATE TABLE `decimalschema` ( `x` decimal(15,0) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci | +---------------+-------------------------------------------------------------------------------- ----------------------------------------------+ 1 row in set (0.00 sec) 3. What did you see instead? +---------------+-------------------------------------------------------------------------------- ----------------------------------------------+ | Table | Create Table | +---------------+-------------------------------------------------------------------------------- ----------------------------------------------+ | decimalschema | CREATE TABLE `decimalschema` ( `x` decimal(15) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci | +---------------+-------------------------------------------------------------------------------- ----------------------------------------------+ 1 row in set (0.00 sec) 4. What version of TiDB are you using (`tidb-server -V` or run `select tidb_version();` on TiDB)? v2.1.0
True
decimal type in `show create table` is not same as MySQL - ## Bug Report Please answer these questions before submitting your issue. Thanks! 1. What did you do? If possible, provide a recipe for reproducing the error. create table decimalschema(x decimal(15)); show create table decimalschema; 2. What did you expect to see? +---------------+-------------------------------------------------------------------------------- ----------------------------------------------+ | Table | Create Table | +---------------+-------------------------------------------------------------------------------- ----------------------------------------------+ | decimalschema | CREATE TABLE `decimalschema` ( `x` decimal(15,0) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci | +---------------+-------------------------------------------------------------------------------- ----------------------------------------------+ 1 row in set (0.00 sec) 3. What did you see instead? +---------------+-------------------------------------------------------------------------------- ----------------------------------------------+ | Table | Create Table | +---------------+-------------------------------------------------------------------------------- ----------------------------------------------+ | decimalschema | CREATE TABLE `decimalschema` ( `x` decimal(15) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci | +---------------+-------------------------------------------------------------------------------- ----------------------------------------------+ 1 row in set (0.00 sec) 4. What version of TiDB are you using (`tidb-server -V` or run `select tidb_version();` on TiDB)? v2.1.0
non_defect
decimal type in show create table is not same as mysql bug report please answer these questions before submitting your issue thanks what did you do if possible provide a recipe for reproducing the error create table decimalschema x decimal show create table decimalschema what did you expect to see table create table decimalschema create table decimalschema x decimal default null engine innodb default charset collate unicode ci row in set sec what did you see instead table create table decimalschema create table decimalschema x decimal default null engine innodb default charset collate unicode ci row in set sec what version of tidb are you using tidb server v or run select tidb version on tidb
0
30,266
6,064,777,140
IssuesEvent
2017-06-14 14:57:19
NewSpring/Holtzman
https://api.github.com/repos/NewSpring/Holtzman
closed
Share Button Load Time
Defect Enhancement iOS
## Steps to Reproduce This bug is present in iOS on iPad 1. Open a piece of content that is shareable 2. Click the sharing icon ### Buggy Behavior After pressing the share button, the share menu takes 3/4 of a second to load and appears broken. ### Expected Behavior Time to share is decreased, or a visual loading state is added.
1.0
Share Button Load Time - ## Steps to Reproduce This bug is present in iOS on iPad 1. Open a piece of content that is shareable 2. Click the sharing icon ### Buggy Behavior After pressing the share button, the share menu takes 3/4 of a second to load and appears broken. ### Expected Behavior Time to share is decreased, or a visual loading state is added.
defect
share button load time steps to reproduce this bug is present in ios on ipad open a piece of content that is shareable click the sharing icon buggy behavior after pressing the share button the share menu takes of a second to load and appears broken expected behavior time to share is decreased or a visual loading state is added
1
14,927
2,831,390,473
IssuesEvent
2015-05-24 15:55:19
nobodyguy/dslrdashboard
https://api.github.com/repos/nobodyguy/dslrdashboard
closed
No recognition of D300
auto-migrated Priority-Medium Type-Defect
``` The DSLRDashboard display "No DSLR camera found on USB". The Camera shows "PC". I'am able to reach the camera as a USB Device via a filemanger and download pictures from the camera. I'am using a Nikon D300 and a Samsung S3 with Android 4.1.1 ``` Original issue reported on code.google.com by `Frank.Do...@googlemail.com` on 31 Dec 2012 at 12:18
1.0
No recognition of D300 - ``` The DSLRDashboard display "No DSLR camera found on USB". The Camera shows "PC". I'am able to reach the camera as a USB Device via a filemanger and download pictures from the camera. I'am using a Nikon D300 and a Samsung S3 with Android 4.1.1 ``` Original issue reported on code.google.com by `Frank.Do...@googlemail.com` on 31 Dec 2012 at 12:18
defect
no recognition of the dslrdashboard display no dslr camera found on usb the camera shows pc i am able to reach the camera as a usb device via a filemanger and download pictures from the camera i am using a nikon and a samsung with android original issue reported on code google com by frank do googlemail com on dec at
1
212,060
23,857,005,561
IssuesEvent
2022-09-07 01:25:03
saurockSaurav/NextGen-CryptoWatcher
https://api.github.com/repos/saurockSaurav/NextGen-CryptoWatcher
opened
CVE-2022-38751 (Medium) detected in snakeyaml-1.27.jar
security vulnerability
## CVE-2022-38751 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>snakeyaml-1.27.jar</b></p></summary> <p>YAML 1.1 parser and emitter for Java</p> <p>Library home page: <a href="http://www.snakeyaml.org">http://www.snakeyaml.org</a></p> <p>Path to dependency file: /tmp/ws-scm/NextCryptoWatcher/Next-Crypto-Watcher/pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/yaml/snakeyaml/1.27/snakeyaml-1.27.jar</p> <p> Dependency Hierarchy: - spring-boot-starter-actuator-2.4.3.jar (Root Library) - spring-boot-starter-2.4.3.jar - :x: **snakeyaml-1.27.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/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Using snakeYAML to parse untrusted YAML files may be vulnerable to Denial of Service attacks (DOS). If the parser is running on user supplied input, an attacker may supply content that causes the parser to crash by stackoverflow. <p>Publish Date: 2022-09-05 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-38751>CVE-2022-38751</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2022-38751 (Medium) detected in snakeyaml-1.27.jar - ## CVE-2022-38751 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>snakeyaml-1.27.jar</b></p></summary> <p>YAML 1.1 parser and emitter for Java</p> <p>Library home page: <a href="http://www.snakeyaml.org">http://www.snakeyaml.org</a></p> <p>Path to dependency file: /tmp/ws-scm/NextCryptoWatcher/Next-Crypto-Watcher/pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/yaml/snakeyaml/1.27/snakeyaml-1.27.jar</p> <p> Dependency Hierarchy: - spring-boot-starter-actuator-2.4.3.jar (Root Library) - spring-boot-starter-2.4.3.jar - :x: **snakeyaml-1.27.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/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Using snakeYAML to parse untrusted YAML files may be vulnerable to Denial of Service attacks (DOS). If the parser is running on user supplied input, an attacker may supply content that causes the parser to crash by stackoverflow. <p>Publish Date: 2022-09-05 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-38751>CVE-2022-38751</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_defect
cve medium detected in snakeyaml jar cve medium severity vulnerability vulnerable library snakeyaml jar yaml parser and emitter for java library home page a href path to dependency file tmp ws scm nextcryptowatcher next crypto watcher pom xml path to vulnerable library home wss scanner repository org yaml snakeyaml snakeyaml jar dependency hierarchy spring boot starter actuator jar root library spring boot starter jar x snakeyaml jar vulnerable library found in base branch master vulnerability details using snakeyaml to parse untrusted yaml files may be vulnerable to denial of service attacks dos if the parser is running on user supplied input an attacker may supply content that causes the parser to crash by stackoverflow publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href step up your open source security game with mend
0
62,200
17,023,871,443
IssuesEvent
2021-07-03 04:17:24
tomhughes/trac-tickets
https://api.github.com/repos/tomhughes/trac-tickets
closed
No house numbers found in part of interpolator bug all tags seem correct
Component: nominatim Priority: minor Resolution: wontfix Type: defect
**[Submitted to the original trac issue database at 10.17pm, Tuesday, 30th July 2013]** Hello, A Brazilian user is reporting that the following interpolator works only for the highest numbers but not for the initial range (555-1855): http://www.openstreetmap.org/browse/way/217367683 I've checked all tags and they all seem correct: all nodes in the interpolator have exactly the same value in the "addr:street" tag, all numbers are odd (matching the way's "addr:interpolation" tag), and all numbers are placed in an increasing sequence. I also believe that Nominatim's sanity checks are unlikely to cause this since there is about 1 house number for every 1 meter of length throughout the whole interpolator, which seems quite acceptable. The user has also reported that initially no numbers yielded results. Then he split the interpolator into segments (one per range) and this made all ranges yield results, but combining the ranges back brought this problem back partially. We decided not to split it again so that you can verify the issue and perhaps tell us if we're doing anything wrong.
1.0
No house numbers found in part of interpolator bug all tags seem correct - **[Submitted to the original trac issue database at 10.17pm, Tuesday, 30th July 2013]** Hello, A Brazilian user is reporting that the following interpolator works only for the highest numbers but not for the initial range (555-1855): http://www.openstreetmap.org/browse/way/217367683 I've checked all tags and they all seem correct: all nodes in the interpolator have exactly the same value in the "addr:street" tag, all numbers are odd (matching the way's "addr:interpolation" tag), and all numbers are placed in an increasing sequence. I also believe that Nominatim's sanity checks are unlikely to cause this since there is about 1 house number for every 1 meter of length throughout the whole interpolator, which seems quite acceptable. The user has also reported that initially no numbers yielded results. Then he split the interpolator into segments (one per range) and this made all ranges yield results, but combining the ranges back brought this problem back partially. We decided not to split it again so that you can verify the issue and perhaps tell us if we're doing anything wrong.
defect
no house numbers found in part of interpolator bug all tags seem correct hello a brazilian user is reporting that the following interpolator works only for the highest numbers but not for the initial range i ve checked all tags and they all seem correct all nodes in the interpolator have exactly the same value in the addr street tag all numbers are odd matching the way s addr interpolation tag and all numbers are placed in an increasing sequence i also believe that nominatim s sanity checks are unlikely to cause this since there is about house number for every meter of length throughout the whole interpolator which seems quite acceptable the user has also reported that initially no numbers yielded results then he split the interpolator into segments one per range and this made all ranges yield results but combining the ranges back brought this problem back partially we decided not to split it again so that you can verify the issue and perhaps tell us if we re doing anything wrong
1
223,284
24,711,746,404
IssuesEvent
2022-10-20 01:44:43
directoryxx/laravel-oauth2-server
https://api.github.com/repos/directoryxx/laravel-oauth2-server
closed
CVE-2022-37599 (Medium) detected in loader-utils-1.2.3.tgz - autoclosed
security vulnerability
## CVE-2022-37599 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>loader-utils-1.2.3.tgz</b></p></summary> <p>utils for webpack loaders</p> <p>Library home page: <a href="https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz">https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/loader-utils/package.json</p> <p> Dependency Hierarchy: - resolve-url-loader-2.3.1.tgz (Root Library) - :x: **loader-utils-1.2.3.tgz** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> A Regular expression denial of service (ReDoS) flaw was found in Function interpolateName in interpolateName.js in webpack loader-utils 2.0.0 via the resourcePath variable in interpolateName.js. <p>Publish Date: 2022-10-11 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-37599>CVE-2022-37599</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2022-37599 (Medium) detected in loader-utils-1.2.3.tgz - autoclosed - ## CVE-2022-37599 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>loader-utils-1.2.3.tgz</b></p></summary> <p>utils for webpack loaders</p> <p>Library home page: <a href="https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz">https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/loader-utils/package.json</p> <p> Dependency Hierarchy: - resolve-url-loader-2.3.1.tgz (Root Library) - :x: **loader-utils-1.2.3.tgz** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> A Regular expression denial of service (ReDoS) flaw was found in Function interpolateName in interpolateName.js in webpack loader-utils 2.0.0 via the resourcePath variable in interpolateName.js. <p>Publish Date: 2022-10-11 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-37599>CVE-2022-37599</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_defect
cve medium detected in loader utils tgz autoclosed cve medium severity vulnerability vulnerable library loader utils tgz utils for webpack loaders library home page a href path to dependency file package json path to vulnerable library node modules loader utils package json dependency hierarchy resolve url loader tgz root library x loader utils tgz vulnerable library vulnerability details a regular expression denial of service redos flaw was found in function interpolatename in interpolatename js in webpack loader utils via the resourcepath variable in interpolatename js publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href step up your open source security game with mend
0
5,459
2,610,188,033
IssuesEvent
2015-02-26 18:59:35
chrsmith/quchuseban
https://api.github.com/repos/chrsmith/quchuseban
opened
资讯色斑如何才能去除
auto-migrated Priority-Medium Type-Defect
``` 《摘要》 哭的时候,我会闭上眼睛不让它流泪;孤独寂寞的时候,我�� �静静的想着某人;伤心的时候,我会找个地方静静的发呆,� ��后告诉自己,还是要面对坚持下去;难过的时候,我会伪装 自己,对别人说:我很好、我很开心;失落的时候,我会笑�� �对自己说,没事的,一切总会过去。黄褐斑最主要的就是不� ��等长了黄褐斑才想要祛斑,那是得不偿失的,劳神费才的事 情。同时在去除黄褐斑的时候你要知道面部黄褐斑是怎么来�� �,这才能有效去除黄褐斑。色斑如何才能去除, 《客户案例》   为了我脸上的黄褐斑,在网上奔波了好长时间。后来发�� �「黛芙薇尔精华液」反响不错,还方便,不用整天涂涂抹抹� ��于是就查了很多相关的资料。看来发现好东西,还得拥有一 双“慧眼”啊,说「黛芙薇尔精华液」好,最主要的还是它�� �我去掉我那些恼人的黄褐斑。<br>   知道了「黛芙薇尔精华液」后,向专家诉说心中的烦恼�� �看是否有专门针对男性的祛斑产品。专家分析说,据我的描� ��,从外在因素看,长斑主要是跟长时间的电脑辐射有关。专 家说「黛芙薇尔精华液」就是从DNA精华我也记不清了,反正�� �挺安全的,而且使用了纳米技术容易吸收,说男孩子完全可� ��用的,可且还可以送我可贝尔面贴膜配合使用效果会更快。 不管了,只要能给我的黄褐斑去掉就行,于是我一狠心订购�� �三个周期,每天坚持,从来没有耽误过。朋友们还笑过跟个� ��人一样还是排毒养颜精华液啊。哎,还真别说,一个周期完 了之后效果还真不错,于是更加有信心了,也不管别人怎么�� �,能去掉黄褐斑就是正事。现在三个周期使用完了脸上的黄� ��斑还真的没了,而且没有留下任何痕迹,皮肤也变得比以前 好了呢。嘿嘿<br>   这就是我的祛斑经历,为了帅气的脸,为了我那罗曼蒂�� �的爱情,我可没少费心思啊,还好最终赢得了胜利。最想感� ��的就是「黛芙薇尔精华液」了,多亏有这么好的产品!最想�� �评的就是自己,以后不能再天天沉迷于游戏了。 阅读了色斑如何才能去除,再看脸上容易长斑的原因: 《色斑形成原因》   内部因素   一、压力   当人受到压力时,就会分泌肾上腺素,为对付压力而做�� �备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏� ��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃 。   二、荷尔蒙分泌失调   避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞�� �分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在� ��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕 中因女性荷尔蒙雌激素的增加,从怀孕4—5个月开始会容易出 现斑,这时候出现的斑点在产后大部分会消失。可是,新陈�� �谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等� ��因,都会使斑加深。有时新长出的斑,产后也不会消失,所 以需要更加注意。   三、新陈代谢缓慢   肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑�� �因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态� ��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是 内分泌失调导致过敏体质而形成的。另外,身体状态不正常�� �时候,紫外线的照射也会加速斑的形成。   四、错误的使用化妆品   使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在�� �疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵� ��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的 问题。   外部因素   一、紫外线   照射紫外线的时候,人体为了保护皮肤,会在基底层产�� �很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更� ��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化, 还会引起黑斑、雀斑等色素沉着的皮肤疾患。   二、不良的清洁习惯   因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。�� �皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦� ��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的 问题。   三、遗传基因   父母中有长斑的,则本人长斑的概率就很高,这种情况�� �一定程度上就可判定是遗传基因的作用。所以家里特别是长� ��有长斑的人,要注意避免引发长斑的重要因素之一——紫外 线照射,这是预防斑必须注意的。 《有疑问帮你解决》   1,黛芙薇尔精华液真的有效果吗?真的可以把脸上的黄褐�� �去掉吗?   答:黛芙薇尔精华液DNA精华能够有效的修复周围难以触�� �的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必� ��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑 ,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时�� �,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的� ��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显 而易见。自产品上市以来,老顾客纷纷介绍新顾客,71%的新�� �客都是通过老顾客介绍而来,口碑由此而来!   2,服用黛芙薇尔美白,会伤身体吗?有副作用吗?   答:黛芙薇尔精华液应用了精纯复合配方和领先的分类�� �斑科技,并将“DNA美肤系统”疗法应用到了该产品中,能彻� ��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有 效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾�� �地的专家通力协作,超过10年的研究以全新的DNA肌肤修复技�� �,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽� ��迹,令每一位爱美的女性都能享受到科技创新所带来的自然 之美。 专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数�� �百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖!   3,去除黄褐斑之后,会反弹吗?   答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔�� �白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家� ��据斑的形成原因精心研制而成用事实说话,让消费者打分。 树立权威品牌!我们的很多新客户都是老客户介绍而来,请问� ��如果效果不好,会有客户转介绍吗?   4,你们的价格有点贵,能不能便宜一点?   答:如果您使用西药最少需要2000元,煎服的药最少需要3 000元,做手术最少是5000元,而这些毫无疑问,不会对彻底去� ��你的斑点有任何帮助!一分价钱,一份价值,我们现在做的�� �是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的� ��褐斑彻底去除,你还会觉得贵吗?你还会再去花那么多冤枉�� �,不但斑没去掉,还把自己的皮肤弄的越来越糟吗   5,我适合用黛芙薇尔精华液吗?   答:黛芙薇尔适用人群:   1、生理紊乱引起的黄褐斑人群   2、生育引起的妊娠斑人群   3、年纪增长引起的老年斑人群   4、化妆品色素沉积、辐射斑人群   5、长期日照引起的日晒斑人群   6、肌肤暗淡急需美白的人群 《祛斑小方法》 色斑如何才能去除,同时为您分享祛斑小方法 茶水去斑美白 方法一:洗脸后,将茶水涂到脸上,并用手轻轻拍脸。 方法二:将蘸了茶水的脱脂棉附在脸上2-3分钟,然后清水洗�� �,有除色斑、美白的效果。 ``` ----- Original issue reported on code.google.com by `additive...@gmail.com` on 1 Jul 2014 at 4:22
1.0
资讯色斑如何才能去除 - ``` 《摘要》 哭的时候,我会闭上眼睛不让它流泪;孤独寂寞的时候,我�� �静静的想着某人;伤心的时候,我会找个地方静静的发呆,� ��后告诉自己,还是要面对坚持下去;难过的时候,我会伪装 自己,对别人说:我很好、我很开心;失落的时候,我会笑�� �对自己说,没事的,一切总会过去。黄褐斑最主要的就是不� ��等长了黄褐斑才想要祛斑,那是得不偿失的,劳神费才的事 情。同时在去除黄褐斑的时候你要知道面部黄褐斑是怎么来�� �,这才能有效去除黄褐斑。色斑如何才能去除, 《客户案例》   为了我脸上的黄褐斑,在网上奔波了好长时间。后来发�� �「黛芙薇尔精华液」反响不错,还方便,不用整天涂涂抹抹� ��于是就查了很多相关的资料。看来发现好东西,还得拥有一 双“慧眼”啊,说「黛芙薇尔精华液」好,最主要的还是它�� �我去掉我那些恼人的黄褐斑。<br>   知道了「黛芙薇尔精华液」后,向专家诉说心中的烦恼�� �看是否有专门针对男性的祛斑产品。专家分析说,据我的描� ��,从外在因素看,长斑主要是跟长时间的电脑辐射有关。专 家说「黛芙薇尔精华液」就是从DNA精华我也记不清了,反正�� �挺安全的,而且使用了纳米技术容易吸收,说男孩子完全可� ��用的,可且还可以送我可贝尔面贴膜配合使用效果会更快。 不管了,只要能给我的黄褐斑去掉就行,于是我一狠心订购�� �三个周期,每天坚持,从来没有耽误过。朋友们还笑过跟个� ��人一样还是排毒养颜精华液啊。哎,还真别说,一个周期完 了之后效果还真不错,于是更加有信心了,也不管别人怎么�� �,能去掉黄褐斑就是正事。现在三个周期使用完了脸上的黄� ��斑还真的没了,而且没有留下任何痕迹,皮肤也变得比以前 好了呢。嘿嘿<br>   这就是我的祛斑经历,为了帅气的脸,为了我那罗曼蒂�� �的爱情,我可没少费心思啊,还好最终赢得了胜利。最想感� ��的就是「黛芙薇尔精华液」了,多亏有这么好的产品!最想�� �评的就是自己,以后不能再天天沉迷于游戏了。 阅读了色斑如何才能去除,再看脸上容易长斑的原因: 《色斑形成原因》   内部因素   一、压力   当人受到压力时,就会分泌肾上腺素,为对付压力而做�� �备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏� ��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃 。   二、荷尔蒙分泌失调   避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞�� �分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在� ��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕 中因女性荷尔蒙雌激素的增加,从怀孕4—5个月开始会容易出 现斑,这时候出现的斑点在产后大部分会消失。可是,新陈�� �谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等� ��因,都会使斑加深。有时新长出的斑,产后也不会消失,所 以需要更加注意。   三、新陈代谢缓慢   肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑�� �因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态� ��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是 内分泌失调导致过敏体质而形成的。另外,身体状态不正常�� �时候,紫外线的照射也会加速斑的形成。   四、错误的使用化妆品   使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在�� �疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵� ��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的 问题。   外部因素   一、紫外线   照射紫外线的时候,人体为了保护皮肤,会在基底层产�� �很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更� ��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化, 还会引起黑斑、雀斑等色素沉着的皮肤疾患。   二、不良的清洁习惯   因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。�� �皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦� ��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的 问题。   三、遗传基因   父母中有长斑的,则本人长斑的概率就很高,这种情况�� �一定程度上就可判定是遗传基因的作用。所以家里特别是长� ��有长斑的人,要注意避免引发长斑的重要因素之一——紫外 线照射,这是预防斑必须注意的。 《有疑问帮你解决》   1,黛芙薇尔精华液真的有效果吗?真的可以把脸上的黄褐�� �去掉吗?   答:黛芙薇尔精华液DNA精华能够有效的修复周围难以触�� �的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必� ��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑 ,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时�� �,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的� ��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显 而易见。自产品上市以来,老顾客纷纷介绍新顾客,71%的新�� �客都是通过老顾客介绍而来,口碑由此而来!   2,服用黛芙薇尔美白,会伤身体吗?有副作用吗?   答:黛芙薇尔精华液应用了精纯复合配方和领先的分类�� �斑科技,并将“DNA美肤系统”疗法应用到了该产品中,能彻� ��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有 效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾�� �地的专家通力协作,超过10年的研究以全新的DNA肌肤修复技�� �,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽� ��迹,令每一位爱美的女性都能享受到科技创新所带来的自然 之美。 专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数�� �百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖!   3,去除黄褐斑之后,会反弹吗?   答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔�� �白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家� ��据斑的形成原因精心研制而成用事实说话,让消费者打分。 树立权威品牌!我们的很多新客户都是老客户介绍而来,请问� ��如果效果不好,会有客户转介绍吗?   4,你们的价格有点贵,能不能便宜一点?   答:如果您使用西药最少需要2000元,煎服的药最少需要3 000元,做手术最少是5000元,而这些毫无疑问,不会对彻底去� ��你的斑点有任何帮助!一分价钱,一份价值,我们现在做的�� �是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的� ��褐斑彻底去除,你还会觉得贵吗?你还会再去花那么多冤枉�� �,不但斑没去掉,还把自己的皮肤弄的越来越糟吗   5,我适合用黛芙薇尔精华液吗?   答:黛芙薇尔适用人群:   1、生理紊乱引起的黄褐斑人群   2、生育引起的妊娠斑人群   3、年纪增长引起的老年斑人群   4、化妆品色素沉积、辐射斑人群   5、长期日照引起的日晒斑人群   6、肌肤暗淡急需美白的人群 《祛斑小方法》 色斑如何才能去除,同时为您分享祛斑小方法 茶水去斑美白 方法一:洗脸后,将茶水涂到脸上,并用手轻轻拍脸。 方法二:将蘸了茶水的脱脂棉附在脸上2-3分钟,然后清水洗�� �,有除色斑、美白的效果。 ``` ----- Original issue reported on code.google.com by `additive...@gmail.com` on 1 Jul 2014 at 4:22
defect
资讯色斑如何才能去除 《摘要》 哭的时候,我会闭上眼睛不让它流泪;孤独寂寞的时候,我�� �静静的想着某人;伤心的时候,我会找个地方静静的发呆,� ��后告诉自己,还是要面对坚持下去;难过的时候,我会伪装 自己,对别人说:我很好、我很开心;失落的时候,我会笑�� �对自己说,没事的,一切总会过去。黄褐斑最主要的就是不� ��等长了黄褐斑才想要祛斑,那是得不偿失的,劳神费才的事 情。同时在去除黄褐斑的时候你要知道面部黄褐斑是怎么来�� �,这才能有效去除黄褐斑。色斑如何才能去除, 《客户案例》   为了我脸上的黄褐斑,在网上奔波了好长时间。后来发�� �「黛芙薇尔精华液」反响不错,还方便,不用整天涂涂抹抹� ��于是就查了很多相关的资料。看来发现好东西,还得拥有一 双“慧眼”啊,说「黛芙薇尔精华液」好,最主要的还是它�� �我去掉我那些恼人的黄褐斑。   知道了「黛芙薇尔精华液」后,向专家诉说心中的烦恼�� �看是否有专门针对男性的祛斑产品。专家分析说,据我的描� ��,从外在因素看,长斑主要是跟长时间的电脑辐射有关。专 家说「黛芙薇尔精华液」就是从dna精华我也记不清了,反正�� �挺安全的,而且使用了纳米技术容易吸收,说男孩子完全可� ��用的,可且还可以送我可贝尔面贴膜配合使用效果会更快。 不管了,只要能给我的黄褐斑去掉就行,于是我一狠心订购�� �三个周期,每天坚持,从来没有耽误过。朋友们还笑过跟个� ��人一样还是排毒养颜精华液啊。哎,还真别说,一个周期完 了之后效果还真不错,于是更加有信心了,也不管别人怎么�� �,能去掉黄褐斑就是正事。现在三个周期使用完了脸上的黄� ��斑还真的没了,而且没有留下任何痕迹,皮肤也变得比以前 好了呢。嘿嘿   这就是我的祛斑经历,为了帅气的脸,为了我那罗曼蒂�� �的爱情,我可没少费心思啊,还好最终赢得了胜利。最想感� ��的就是「黛芙薇尔精华液」了,多亏有这么好的产品 最想�� �评的就是自己,以后不能再天天沉迷于游戏了。 阅读了色斑如何才能去除,再看脸上容易长斑的原因: 《色斑形成原因》   内部因素   一、压力   当人受到压力时,就会分泌肾上腺素,为对付压力而做�� �备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏� ��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃 。   二、荷尔蒙分泌失调   避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞�� �分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在� ��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕 中因女性荷尔蒙雌激素的增加, — 现斑,这时候出现的斑点在产后大部分会消失。可是,新陈�� �谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等� ��因,都会使斑加深。有时新长出的斑,产后也不会消失,所 以需要更加注意。   三、新陈代谢缓慢   肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑�� �因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态� ��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是 内分泌失调导致过敏体质而形成的。另外,身体状态不正常�� �时候,紫外线的照射也会加速斑的形成。   四、错误的使用化妆品   使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在�� �疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵� ��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的 问题。   外部因素   一、紫外线   照射紫外线的时候,人体为了保护皮肤,会在基底层产�� �很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更� ��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化, 还会引起黑斑、雀斑等色素沉着的皮肤疾患。   二、不良的清洁习惯   因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。�� �皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦� ��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的 问题。   三、遗传基因   父母中有长斑的,则本人长斑的概率就很高,这种情况�� �一定程度上就可判定是遗传基因的作用。所以家里特别是长� ��有长斑的人,要注意避免引发长斑的重要因素之一——紫外 线照射,这是预防斑必须注意的。 《有疑问帮你解决》    黛芙薇尔精华液真的有效果吗 真的可以把脸上的黄褐�� �去掉吗   答:黛芙薇尔精华液dna精华能够有效的修复周围难以触�� �的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必� ��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑 ,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时�� �,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的� ��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显 而易见。自产品上市以来,老顾客纷纷介绍新顾客, 的新�� �客都是通过老顾客介绍而来,口碑由此而来    ,服用黛芙薇尔美白,会伤身体吗 有副作用吗   答:黛芙薇尔精华液应用了精纯复合配方和领先的分类�� �斑科技,并将“dna美肤系统”疗法应用到了该产品中,能彻� ��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有 效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾�� �地的专家通力协作, �� �,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽� ��迹,令每一位爱美的女性都能享受到科技创新所带来的自然 之美。 专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数�� �百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖    ,去除黄褐斑之后,会反弹吗   答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔�� �白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家� ��据斑的形成原因精心研制而成用事实说话,让消费者打分。 树立权威品牌 我们的很多新客户都是老客户介绍而来,请问� ��如果效果不好,会有客户转介绍吗    ,你们的价格有点贵,能不能便宜一点   答: , , ,而这些毫无疑问,不会对彻底去� ��你的斑点有任何帮助 一分价钱,一份价值,我们现在做的�� �是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的� ��褐斑彻底去除,你还会觉得贵吗 你还会再去花那么多冤枉�� �,不但斑没去掉,还把自己的皮肤弄的越来越糟吗    ,我适合用黛芙薇尔精华液吗   答:黛芙薇尔适用人群:    、生理紊乱引起的黄褐斑人群    、生育引起的妊娠斑人群    、年纪增长引起的老年斑人群    、化妆品色素沉积、辐射斑人群    、长期日照引起的日晒斑人群    、肌肤暗淡急需美白的人群 《祛斑小方法》 色斑如何才能去除,同时为您分享祛斑小方法 茶水去斑美白 方法一:洗脸后,将茶水涂到脸上,并用手轻轻拍脸。 方法二: ,然后清水洗�� �,有除色斑、美白的效果。 original issue reported on code google com by additive gmail com on jul at
1
79,116
27,995,584,404
IssuesEvent
2023-03-27 08:14:13
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
closed
pills pop into shape when rendered in the timeline
T-Defect P2 S-Major S-Tolerable A-Pills
it looks like the react component is getting weirdly re-rendered somehow
1.0
pills pop into shape when rendered in the timeline - it looks like the react component is getting weirdly re-rendered somehow
defect
pills pop into shape when rendered in the timeline it looks like the react component is getting weirdly re rendered somehow
1
212,220
23,879,689,201
IssuesEvent
2022-09-07 23:19:29
MicrosoftDocs/azure-docs
https://api.github.com/repos/MicrosoftDocs/azure-docs
closed
image quality are very poor and unreadable
sql-database/svc triaged cxp doc-enhancement security/subsvc Pri2
[[Enter feedback here]](https://docs.microsoft.com/en-us/azure/azure-sql/database/private-endpoint-overview?view=azuresql#approval-process) Image is not readable, please put high definition picture. the current one is of not much use --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: 6c7151f8-cebf-0019-b028-b414faa1ac24 * Version Independent ID: 01d4f188-aefa-5f5a-d0dc-1f4ab54ab2a4 * Content: [Azure Private Link - Azure SQL Database and Azure Synapse Analytics](https://docs.microsoft.com/en-us/azure/azure-sql/database/private-endpoint-overview?view=azuresql) * Content Source: [azure-sql/database/private-endpoint-overview.md](https://github.com/MicrosoftDocs/sql-docs/blob/live/azure-sql/database/private-endpoint-overview.md) * Service: **sql-database** * Sub-service: **security** * GitHub Login: @rohitnayakmsft * Microsoft Alias: **rohitna**
True
image quality are very poor and unreadable - [[Enter feedback here]](https://docs.microsoft.com/en-us/azure/azure-sql/database/private-endpoint-overview?view=azuresql#approval-process) Image is not readable, please put high definition picture. the current one is of not much use --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: 6c7151f8-cebf-0019-b028-b414faa1ac24 * Version Independent ID: 01d4f188-aefa-5f5a-d0dc-1f4ab54ab2a4 * Content: [Azure Private Link - Azure SQL Database and Azure Synapse Analytics](https://docs.microsoft.com/en-us/azure/azure-sql/database/private-endpoint-overview?view=azuresql) * Content Source: [azure-sql/database/private-endpoint-overview.md](https://github.com/MicrosoftDocs/sql-docs/blob/live/azure-sql/database/private-endpoint-overview.md) * Service: **sql-database** * Sub-service: **security** * GitHub Login: @rohitnayakmsft * Microsoft Alias: **rohitna**
non_defect
image quality are very poor and unreadable image is not readable please put high definition picture the current one is of not much use document details ⚠ do not edit this section it is required for docs microsoft com ➟ github issue linking id cebf version independent id aefa content content source service sql database sub service security github login rohitnayakmsft microsoft alias rohitna
0
212,683
23,934,100,595
IssuesEvent
2022-09-11 01:03:21
brightcove/cloud-custodian
https://api.github.com/repos/brightcove/cloud-custodian
closed
CVE-2016-9123 (High) detected in github.com/docker/distribution-v2.8.0 - autoclosed
security vulnerability
## CVE-2016-9123 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>github.com/docker/distribution-v2.8.0</b></p></summary> <p>The toolkit to pack, ship, store, and deliver container content</p> <p> Dependency Hierarchy: - github.com/docker/docker-v20.10.12 (Root Library) - :x: **github.com/docker/distribution-v2.8.0** (Vulnerable Library) <p>Found in base branch: <b>brightcove</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> go-jose before 1.0.5 suffers from a CBC-HMAC integer overflow on 32-bit architectures. An integer overflow could lead to authentication bypass for CBC-HMAC encrypted ciphertexts on 32-bit architectures. <p>Publish Date: 2017-03-28 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2016-9123>CVE-2016-9123</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: High - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://osv.dev/vulnerability/GO-2020-0009">https://osv.dev/vulnerability/GO-2020-0009</a></p> <p>Release Date: 2017-03-28</p> <p>Fix Resolution: v1.0.5</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"GO","packageName":"github.com/docker/distribution","packageVersion":"v2.8.0","packageFilePaths":[],"isTransitiveDependency":true,"dependencyTree":"github.com/docker/docker:v20.10.12;github.com/docker/distribution:v2.8.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"v1.0.5","isBinary":true}],"baseBranches":["brightcove"],"vulnerabilityIdentifier":"CVE-2016-9123","vulnerabilityDetails":"go-jose before 1.0.5 suffers from a CBC-HMAC integer overflow on 32-bit architectures. An integer overflow could lead to authentication bypass for CBC-HMAC encrypted ciphertexts on 32-bit architectures.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2016-9123","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> -->
True
CVE-2016-9123 (High) detected in github.com/docker/distribution-v2.8.0 - autoclosed - ## CVE-2016-9123 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>github.com/docker/distribution-v2.8.0</b></p></summary> <p>The toolkit to pack, ship, store, and deliver container content</p> <p> Dependency Hierarchy: - github.com/docker/docker-v20.10.12 (Root Library) - :x: **github.com/docker/distribution-v2.8.0** (Vulnerable Library) <p>Found in base branch: <b>brightcove</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> go-jose before 1.0.5 suffers from a CBC-HMAC integer overflow on 32-bit architectures. An integer overflow could lead to authentication bypass for CBC-HMAC encrypted ciphertexts on 32-bit architectures. <p>Publish Date: 2017-03-28 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2016-9123>CVE-2016-9123</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: High - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://osv.dev/vulnerability/GO-2020-0009">https://osv.dev/vulnerability/GO-2020-0009</a></p> <p>Release Date: 2017-03-28</p> <p>Fix Resolution: v1.0.5</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"GO","packageName":"github.com/docker/distribution","packageVersion":"v2.8.0","packageFilePaths":[],"isTransitiveDependency":true,"dependencyTree":"github.com/docker/docker:v20.10.12;github.com/docker/distribution:v2.8.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"v1.0.5","isBinary":true}],"baseBranches":["brightcove"],"vulnerabilityIdentifier":"CVE-2016-9123","vulnerabilityDetails":"go-jose before 1.0.5 suffers from a CBC-HMAC integer overflow on 32-bit architectures. An integer overflow could lead to authentication bypass for CBC-HMAC encrypted ciphertexts on 32-bit architectures.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2016-9123","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> -->
non_defect
cve high detected in github com docker distribution autoclosed cve high severity vulnerability vulnerable library github com docker distribution the toolkit to pack ship store and deliver container content dependency hierarchy github com docker docker root library x github com docker distribution vulnerable library found in base branch brightcove vulnerability details go jose before suffers from a cbc hmac integer overflow on bit architectures an integer overflow could lead to authentication bypass for cbc hmac encrypted ciphertexts on bit architectures publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact high availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution isopenpronvulnerability false ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree github com docker docker github com docker distribution isminimumfixversionavailable true minimumfixversion isbinary true basebranches vulnerabilityidentifier cve vulnerabilitydetails go jose before suffers from a cbc hmac integer overflow on bit architectures an integer overflow could lead to authentication bypass for cbc hmac encrypted ciphertexts on bit architectures vulnerabilityurl
0
73,823
24,814,180,437
IssuesEvent
2022-10-25 11:53:58
bgd-labs/seatbelt-for-ghosts
https://api.github.com/repos/bgd-labs/seatbelt-for-ghosts
opened
Targets on fx reports
defect
@erensto reported that `targets` on fx reports are wrong (rendering targets from main reports) After some digging seems like the issue is that we simply pass the wrong(mainnet) proposal [here](https://github.com/bgd-labs/seatbelt-for-ghosts/blob/main/index.ts#L156). While the problem is clear it's not easily fixable right now. The underlying issue is that the crosschain proposals don't yet exist on the l2 until they are executed on mainnet. This results in seatbelt having to do some rather complex storage overwrites for running the simulations which lead to unreadable storage diffs from tenderly. This will be fixable at some point(when issues are resolved at tenderly) but not right now. --- To make this less confusing will remove the wrong targets though and render the correct ones once the proposal exists on l2.
1.0
Targets on fx reports - @erensto reported that `targets` on fx reports are wrong (rendering targets from main reports) After some digging seems like the issue is that we simply pass the wrong(mainnet) proposal [here](https://github.com/bgd-labs/seatbelt-for-ghosts/blob/main/index.ts#L156). While the problem is clear it's not easily fixable right now. The underlying issue is that the crosschain proposals don't yet exist on the l2 until they are executed on mainnet. This results in seatbelt having to do some rather complex storage overwrites for running the simulations which lead to unreadable storage diffs from tenderly. This will be fixable at some point(when issues are resolved at tenderly) but not right now. --- To make this less confusing will remove the wrong targets though and render the correct ones once the proposal exists on l2.
defect
targets on fx reports erensto reported that targets on fx reports are wrong rendering targets from main reports after some digging seems like the issue is that we simply pass the wrong mainnet proposal while the problem is clear it s not easily fixable right now the underlying issue is that the crosschain proposals don t yet exist on the until they are executed on mainnet this results in seatbelt having to do some rather complex storage overwrites for running the simulations which lead to unreadable storage diffs from tenderly this will be fixable at some point when issues are resolved at tenderly but not right now to make this less confusing will remove the wrong targets though and render the correct ones once the proposal exists on
1
69,973
30,513,569,180
IssuesEvent
2023-07-18 23:38:30
StevenBarre/zh-test-auto
https://api.github.com/repos/StevenBarre/zh-test-auto
closed
OCP 4.13 KLAB Upgrade
*team/ ops and shared services* *team/ DXC*
Describe the epic Epic to track all work upgrading KLAB to OCP 4.13 Additional context Definition of done - [ ] KLAB upgraded to OCP 4.13 - [ ] Backport any required changes to PRs and/or documentation if applicable.
1.0
OCP 4.13 KLAB Upgrade - Describe the epic Epic to track all work upgrading KLAB to OCP 4.13 Additional context Definition of done - [ ] KLAB upgraded to OCP 4.13 - [ ] Backport any required changes to PRs and/or documentation if applicable.
non_defect
ocp klab upgrade describe the epic epic to track all work upgrading klab to ocp additional context definition of done klab upgraded to ocp backport any required changes to prs and or documentation if applicable
0
496,170
14,334,001,505
IssuesEvent
2020-11-27 07:13:13
darktable-org/darktable
https://api.github.com/repos/darktable-org/darktable
closed
regression : color picker error on console
bug: pending priority: high
<!-- IMPORTANT Bug reports that do not make an effort to help the developers will be closed without notice. Make sure that this bug has not already been opened and/or closed by searching the issues on GitHub, as duplicate bug reports will be closed. A bug report simply stating that Darktable crashes is unhelpful, so please fill in most of the items below and provide detailed information. --> **Describe the bug** color picker issue error on console, this was fixed and it is back **To Reproduce** 1. Go to 'darkroom' 2. Click on the color picker and select a point or area on image 3. See error ``` [_transform_matrix] invalid conversion from 1 to -1 [dt_ioppr_transform_image_colorspace] invalid conversion from 1 to -1 [_transform_matrix] invalid conversion from 2 to -1 [dt_ioppr_transform_image_colorspace] invalid conversion from 2 to -1 ``` **Expected behavior** no error on console **Platform (please complete the following information):** - Darktable Version: master - OS: GNU/Linux
1.0
regression : color picker error on console - <!-- IMPORTANT Bug reports that do not make an effort to help the developers will be closed without notice. Make sure that this bug has not already been opened and/or closed by searching the issues on GitHub, as duplicate bug reports will be closed. A bug report simply stating that Darktable crashes is unhelpful, so please fill in most of the items below and provide detailed information. --> **Describe the bug** color picker issue error on console, this was fixed and it is back **To Reproduce** 1. Go to 'darkroom' 2. Click on the color picker and select a point or area on image 3. See error ``` [_transform_matrix] invalid conversion from 1 to -1 [dt_ioppr_transform_image_colorspace] invalid conversion from 1 to -1 [_transform_matrix] invalid conversion from 2 to -1 [dt_ioppr_transform_image_colorspace] invalid conversion from 2 to -1 ``` **Expected behavior** no error on console **Platform (please complete the following information):** - Darktable Version: master - OS: GNU/Linux
non_defect
regression color picker error on console important bug reports that do not make an effort to help the developers will be closed without notice make sure that this bug has not already been opened and or closed by searching the issues on github as duplicate bug reports will be closed a bug report simply stating that darktable crashes is unhelpful so please fill in most of the items below and provide detailed information describe the bug color picker issue error on console this was fixed and it is back to reproduce go to darkroom click on the color picker and select a point or area on image see error invalid conversion from to invalid conversion from to invalid conversion from to invalid conversion from to expected behavior no error on console platform please complete the following information darktable version master os gnu linux
0
47,003
13,056,012,995
IssuesEvent
2020-07-30 03:23:25
icecube-trac/tix2
https://api.github.com/repos/icecube-trac/tix2
opened
[steamshovel] doesn't work on macos with python3 (Trac #2250)
Incomplete Migration Migrated from Trac combo core defect
Migrated from https://code.icecube.wisc.edu/ticket/2250 ```json { "status": "closed", "changetime": "2020-06-24T12:31:42", "description": "Steamshovel works fine with python2.7 but fails with python3.7.2. On macOS Mojave Version 10.14.3. Qt version 5.12.1.\n\nThe exception that is thrown is `boost::python::error_already_set` which is boost::python catching an error and not telling you which one, see #2221.\n\nNote that the interactive console does not run as well (which is not causing the crash), even though that works fine in python2 as well.\n\nThe exception involving 'DOMLabel' also appears to be unrelated and not present in python2. \n\n{{{\n$ steamshovel\nNo module named 'IPython'\nWARN (steamshovel): Cannot embed IPython Qt widget, falling back to tty-based console (embed.cpp:95 in scripting::PyConsole::PyConsole(const scripting::PyInterpreter &, scripting::PyConsole::Type))\nWARN (steamshovel): Could not use IPython, falling back to vanilla python console (embed.cpp:103 in scripting::PyConsole::PyConsole(const scripting::PyInterpreter &, scripting::PyConsole::Type))\nPython 3.7.2 (default, Feb 12 2019, 08:15:36) \n[Clang 10.0.0 (clang-1000.11.45.5)] on darwin\nType \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n(InteractiveConsole)\n>>> ERROR (ShovelMainWindow): Problem executing scenario code:\nTraceback (most recent call last):\n File \"<string>\", line 25, in _dumpScenario\nRuntimeError: No such factory name: 'DOMLabel'\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File \"<string>\", line 113, in <module>\n File \"<string>\", line 30, in _dumpScenario\nNameError: name 'StandardError' is not defined\nString was:\ndef _dumpScenario():\n from icecube.shovelart import ActivePixmapOverlay, Arrow, ArtistHandle, ArtistHandleList, ArtistKeylist, BaseLineObject, ChoiceSetting, ColorMap, ColoredObject, ConstantColorMap, ConstantFloat, ConstantQColor, ConstantTime, ConstantVec3d, Cylinder, DynamicLines, FileSetting, I3TimeColorMap, KeySetting, LinterpFunctionFloat, LinterpFunctionQColor, LinterpFunctionVec3d, OMKeySet, OverlayLine, OverlaySizeHint, OverlaySizeHints, ParticlePath, ParticlePoint, Phantom, PixmapOverlay, PyArtist, PyQColor, PyQFont, PyVariantFloat, PyVariantQColor, PyVariantTime, PyVariantVec3d, RangeSetting, Scenario, SceneGroup, SceneObject, SceneOverlay, SolidObject, Sphere, StaticLines, StepFunctionFloat, StepFunctionQColor, StepFunctionTime, StepFunctionVec3d, Text, TextOverlay, TimePoint, TimeWindow, TimeWindowColor, VariantFloat, VariantQColor, VariantTime, VariantVec3d, VariantVec3dList, Vec3dList, ZPlane, vec3d\n from icecube.icetray import OMKey\n from icecube.icetray import logging\n scenario = window.gl.scenario\n scenario.clear()\n try:\n artist = scenario.add( 'Detector', ['I3Geometry', ] )\n scenario.setIsActive( artist, False )\n scenario.changeSetting( artist, 'DOM color', PyQColor(255,255,255,255) )\n scenario.changeSetting( artist, 'DOM radius', 1 )\n scenario.changeSetting( artist, 'outline width', 0 )\n scenario.changeSetting( artist, 'high quality DOMs', True )\n scenario.changeSetting( artist, 'string cross', False )\n scenario.changeSetting( artist, 'string color', PyQColor(255,255,255,76) )\n scenario.changeSetting( artist, 'string width', 1 )\n scenario.changeSetting( artist, 'hide', 0 )\n scenario.changeSetting( artist, 'DOM labels', False )\n scenario.setIsActive( artist, True )\n except StandardError as e:\n logging.log_error( e.__class__.__name__ + \" occured while loading saved state of Detector: \" + str(e) )\n except:\n logging.log_error( \"Unknown error occured while loading saved state of Detector: \" + str(e) )\n try:\n artist = scenario.add( 'DOMLabel', ['I3Geometry', ] )\n scenario.setIsActive( artist, False )\n scenario.changeSetting( artist, 'font', PyQFont.fromString('Arial,13,-1,5,50,0,0,0,0,0') )\n scenario.changeSetting( artist, 'selection', [] )\n scenario.changeSetting( artist, 'fontsize', 13 )\n except StandardError as e:\n logging.log_error( e.__class__.__name__ + \" occured while loading saved state of DOMLabel: \" + str(e) )\n except:\n logging.log_error( \"Unknown error occured while loading saved state of DOMLabel: \" + str(e) )\n try:\n artist = scenario.add( 'DOMOrientation', ['I3Geometry', ] )\n scenario.setIsActive( artist, False )\n scenario.changeSetting( artist, 'opacity', 1 )\n scenario.changeSetting( artist, 'Label Axes', False )\n scenario.changeSetting( artist, 'Draw Orthogonal Direction', True )\n scenario.changeSetting( artist, 'ortho length', '10m' )\n scenario.changeSetting( artist, 'Draw DOM Direction', True )\n scenario.changeSetting( artist, 'Draw Flasher Direction', True )\n scenario.changeSetting( artist, 'dom length', '10m' )\n scenario.changeSetting( artist, 'flasher length', '10m' )\n scenario.changeSetting( artist, 'line width', 10 )\n scenario.changeSetting( artist, 'head angle', 20 )\n scenario.changeSetting( artist, 'Draw Default Orientation', False )\n scenario.changeSetting( artist, 'head length', 1 )\n except StandardError as e:\n logging.log_error( e.__class__.__name__ + \" occured while loading saved state of DOMOrientation: \" + str(e) )\n except:\n logging.log_error( \"Unknown error occured while loading saved state of DOMOrientation: \" + str(e) )\n try:\n artist = scenario.add( 'Particles', ['I3MCTree', ] )\n scenario.setIsActive( artist, False )\n scenario.changeSetting( artist, 'min. energy [track]', '' )\n scenario.changeSetting( artist, 'scale', 10 )\n scenario.changeSetting( artist, 'show light fronts', False )\n scenario.changeSetting( artist, 'colormap', I3TimeColorMap() )\n scenario.changeSetting( artist, 'power', 0.15 )\n scenario.changeSetting( artist, 'color', PyQColor(243,51,51,153) )\n scenario.changeSetting( artist, 'vertex size', 0 )\n scenario.changeSetting( artist, 'labels', True )\n scenario.changeSetting( artist, 'Cherenkov cone size', 0 )\n scenario.changeSetting( artist, 'blue light fronts', True )\n scenario.changeSetting( artist, 'incoming/outgoing', True )\n scenario.changeSetting( artist, 'color by type', True )\n scenario.changeSetting( artist, 'arrow head size', 120 )\n scenario.changeSetting( artist, 'linewidth', 3 )\n scenario.changeSetting( artist, 'min. energy [cascade]', '' )\n scenario.setIsActive( artist, True )\n except StandardError as e:\n logging.log_error( e.__class__.__name__ + \" occured while loading saved state of Particles: \" + str(e) )\n except:\n logging.log_error( \"Unknown error occured while loading saved state of Particles: \" + str(e) )\n try:\n artist = scenario.add( 'Bubbles', ['I3Geometry', 'IceTopRawData', ] )\n scenario.setIsActive( artist, False )\n scenario.changeSetting( artist, 'scale', 10 )\n scenario.changeSetting( artist, 'colormap', I3TimeColorMap() )\n scenario.changeSetting( artist, 'power', 0.15 )\n scenario.changeSetting( artist, 'custom color window', '' )\n scenario.changeSetting( artist, 'log10(delay/ns)', 5 )\n scenario.changeSetting( artist, 'static', PyQColor(255,0,255,255) )\n scenario.setIsActive( artist, True )\n except StandardError as e:\n logging.log_error( e.__class__.__name__ + \" occured while loading saved state of Bubbles: \" + str(e) )\n except:\n logging.log_error( \"Unknown error occured while loading saved state of Bubbles: \" + str(e) )\n try:\n artist = scenario.add( 'Bubbles', ['I3Geometry', 'InIceRawData', ] )\n scenario.setIsActive( artist, False )\n scenario.changeSetting( artist, 'scale', 10 )\n scenario.changeSetting( artist, 'colormap', I3TimeColorMap() )\n scenario.changeSetting( artist, 'power', 0.15 )\n scenario.changeSetting( artist, 'custom color window', '' )\n scenario.changeSetting( artist, 'log10(delay/ns)', 5 )\n scenario.changeSetting( artist, 'static', PyQColor(255,0,255,255) )\n scenario.setIsActive( artist, True )\n except StandardError as e:\n logging.log_error( e.__class__.__name__ + \" occured while loading saved state of Bubbles: \" + str(e) )\n except:\n logging.log_error( \"Unknown error occured while loading saved state of Bubbles: \" + str(e) )\n window.gl.setCameraPivot(0.0, 0.0, 0.0)\n window.gl.setCameraLoc(-1864.75549316, -362.478149414, 590.385009766)\n window.gl.setCameraOrientation(0.190808907151, -0.981627702713, 3.51667404175e-06)\n window.gl.cameraLock = False\n window.gl.perspectiveView = True\n window.gl.backgroundColor = PyQColor(38,38,38,255)\n window.timeline.rangeFinder = \"Default\"\n window.frame_filter.code = \"\"\n window.activeView = 0\n_dumpScenario()\ndel _dumpScenario (ShovelMainWindow.cpp:333 in bool ShovelMainWindow::loadScenarioCode(const QString &))\nobjc[43690]: Class FIFinderSyncExtensionHost is implemented in both /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit (0x7fff99c38210) and /System/Library/PrivateFrameworks/FileProvider.framework/OverrideBundles/FinderSyncCollaborationFileProviderOverride.bundle/Contents/MacOS/FinderSyncCollaborationFileProviderOverride (0x12c0eadc8). One of the two will be used. Which one is undefined.\nlibc++abi.dylib: terminating with uncaught exception of type boost::python::error_already_set\nAbort trap: 6\n\n}}}\n", "reporter": "kjmeagher", "cc": "", "resolution": "fixed", "_ts": "1593001902142004", "component": "combo core", "summary": "[steamshovel] doesn't work on macos with python3", "priority": "normal", "keywords": "", "time": "2019-03-14T16:46:49", "milestone": "Autumnal Equinox 2020", "owner": "", "type": "defect" } ```
1.0
[steamshovel] doesn't work on macos with python3 (Trac #2250) - Migrated from https://code.icecube.wisc.edu/ticket/2250 ```json { "status": "closed", "changetime": "2020-06-24T12:31:42", "description": "Steamshovel works fine with python2.7 but fails with python3.7.2. On macOS Mojave Version 10.14.3. Qt version 5.12.1.\n\nThe exception that is thrown is `boost::python::error_already_set` which is boost::python catching an error and not telling you which one, see #2221.\n\nNote that the interactive console does not run as well (which is not causing the crash), even though that works fine in python2 as well.\n\nThe exception involving 'DOMLabel' also appears to be unrelated and not present in python2. \n\n{{{\n$ steamshovel\nNo module named 'IPython'\nWARN (steamshovel): Cannot embed IPython Qt widget, falling back to tty-based console (embed.cpp:95 in scripting::PyConsole::PyConsole(const scripting::PyInterpreter &, scripting::PyConsole::Type))\nWARN (steamshovel): Could not use IPython, falling back to vanilla python console (embed.cpp:103 in scripting::PyConsole::PyConsole(const scripting::PyInterpreter &, scripting::PyConsole::Type))\nPython 3.7.2 (default, Feb 12 2019, 08:15:36) \n[Clang 10.0.0 (clang-1000.11.45.5)] on darwin\nType \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n(InteractiveConsole)\n>>> ERROR (ShovelMainWindow): Problem executing scenario code:\nTraceback (most recent call last):\n File \"<string>\", line 25, in _dumpScenario\nRuntimeError: No such factory name: 'DOMLabel'\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File \"<string>\", line 113, in <module>\n File \"<string>\", line 30, in _dumpScenario\nNameError: name 'StandardError' is not defined\nString was:\ndef _dumpScenario():\n from icecube.shovelart import ActivePixmapOverlay, Arrow, ArtistHandle, ArtistHandleList, ArtistKeylist, BaseLineObject, ChoiceSetting, ColorMap, ColoredObject, ConstantColorMap, ConstantFloat, ConstantQColor, ConstantTime, ConstantVec3d, Cylinder, DynamicLines, FileSetting, I3TimeColorMap, KeySetting, LinterpFunctionFloat, LinterpFunctionQColor, LinterpFunctionVec3d, OMKeySet, OverlayLine, OverlaySizeHint, OverlaySizeHints, ParticlePath, ParticlePoint, Phantom, PixmapOverlay, PyArtist, PyQColor, PyQFont, PyVariantFloat, PyVariantQColor, PyVariantTime, PyVariantVec3d, RangeSetting, Scenario, SceneGroup, SceneObject, SceneOverlay, SolidObject, Sphere, StaticLines, StepFunctionFloat, StepFunctionQColor, StepFunctionTime, StepFunctionVec3d, Text, TextOverlay, TimePoint, TimeWindow, TimeWindowColor, VariantFloat, VariantQColor, VariantTime, VariantVec3d, VariantVec3dList, Vec3dList, ZPlane, vec3d\n from icecube.icetray import OMKey\n from icecube.icetray import logging\n scenario = window.gl.scenario\n scenario.clear()\n try:\n artist = scenario.add( 'Detector', ['I3Geometry', ] )\n scenario.setIsActive( artist, False )\n scenario.changeSetting( artist, 'DOM color', PyQColor(255,255,255,255) )\n scenario.changeSetting( artist, 'DOM radius', 1 )\n scenario.changeSetting( artist, 'outline width', 0 )\n scenario.changeSetting( artist, 'high quality DOMs', True )\n scenario.changeSetting( artist, 'string cross', False )\n scenario.changeSetting( artist, 'string color', PyQColor(255,255,255,76) )\n scenario.changeSetting( artist, 'string width', 1 )\n scenario.changeSetting( artist, 'hide', 0 )\n scenario.changeSetting( artist, 'DOM labels', False )\n scenario.setIsActive( artist, True )\n except StandardError as e:\n logging.log_error( e.__class__.__name__ + \" occured while loading saved state of Detector: \" + str(e) )\n except:\n logging.log_error( \"Unknown error occured while loading saved state of Detector: \" + str(e) )\n try:\n artist = scenario.add( 'DOMLabel', ['I3Geometry', ] )\n scenario.setIsActive( artist, False )\n scenario.changeSetting( artist, 'font', PyQFont.fromString('Arial,13,-1,5,50,0,0,0,0,0') )\n scenario.changeSetting( artist, 'selection', [] )\n scenario.changeSetting( artist, 'fontsize', 13 )\n except StandardError as e:\n logging.log_error( e.__class__.__name__ + \" occured while loading saved state of DOMLabel: \" + str(e) )\n except:\n logging.log_error( \"Unknown error occured while loading saved state of DOMLabel: \" + str(e) )\n try:\n artist = scenario.add( 'DOMOrientation', ['I3Geometry', ] )\n scenario.setIsActive( artist, False )\n scenario.changeSetting( artist, 'opacity', 1 )\n scenario.changeSetting( artist, 'Label Axes', False )\n scenario.changeSetting( artist, 'Draw Orthogonal Direction', True )\n scenario.changeSetting( artist, 'ortho length', '10m' )\n scenario.changeSetting( artist, 'Draw DOM Direction', True )\n scenario.changeSetting( artist, 'Draw Flasher Direction', True )\n scenario.changeSetting( artist, 'dom length', '10m' )\n scenario.changeSetting( artist, 'flasher length', '10m' )\n scenario.changeSetting( artist, 'line width', 10 )\n scenario.changeSetting( artist, 'head angle', 20 )\n scenario.changeSetting( artist, 'Draw Default Orientation', False )\n scenario.changeSetting( artist, 'head length', 1 )\n except StandardError as e:\n logging.log_error( e.__class__.__name__ + \" occured while loading saved state of DOMOrientation: \" + str(e) )\n except:\n logging.log_error( \"Unknown error occured while loading saved state of DOMOrientation: \" + str(e) )\n try:\n artist = scenario.add( 'Particles', ['I3MCTree', ] )\n scenario.setIsActive( artist, False )\n scenario.changeSetting( artist, 'min. energy [track]', '' )\n scenario.changeSetting( artist, 'scale', 10 )\n scenario.changeSetting( artist, 'show light fronts', False )\n scenario.changeSetting( artist, 'colormap', I3TimeColorMap() )\n scenario.changeSetting( artist, 'power', 0.15 )\n scenario.changeSetting( artist, 'color', PyQColor(243,51,51,153) )\n scenario.changeSetting( artist, 'vertex size', 0 )\n scenario.changeSetting( artist, 'labels', True )\n scenario.changeSetting( artist, 'Cherenkov cone size', 0 )\n scenario.changeSetting( artist, 'blue light fronts', True )\n scenario.changeSetting( artist, 'incoming/outgoing', True )\n scenario.changeSetting( artist, 'color by type', True )\n scenario.changeSetting( artist, 'arrow head size', 120 )\n scenario.changeSetting( artist, 'linewidth', 3 )\n scenario.changeSetting( artist, 'min. energy [cascade]', '' )\n scenario.setIsActive( artist, True )\n except StandardError as e:\n logging.log_error( e.__class__.__name__ + \" occured while loading saved state of Particles: \" + str(e) )\n except:\n logging.log_error( \"Unknown error occured while loading saved state of Particles: \" + str(e) )\n try:\n artist = scenario.add( 'Bubbles', ['I3Geometry', 'IceTopRawData', ] )\n scenario.setIsActive( artist, False )\n scenario.changeSetting( artist, 'scale', 10 )\n scenario.changeSetting( artist, 'colormap', I3TimeColorMap() )\n scenario.changeSetting( artist, 'power', 0.15 )\n scenario.changeSetting( artist, 'custom color window', '' )\n scenario.changeSetting( artist, 'log10(delay/ns)', 5 )\n scenario.changeSetting( artist, 'static', PyQColor(255,0,255,255) )\n scenario.setIsActive( artist, True )\n except StandardError as e:\n logging.log_error( e.__class__.__name__ + \" occured while loading saved state of Bubbles: \" + str(e) )\n except:\n logging.log_error( \"Unknown error occured while loading saved state of Bubbles: \" + str(e) )\n try:\n artist = scenario.add( 'Bubbles', ['I3Geometry', 'InIceRawData', ] )\n scenario.setIsActive( artist, False )\n scenario.changeSetting( artist, 'scale', 10 )\n scenario.changeSetting( artist, 'colormap', I3TimeColorMap() )\n scenario.changeSetting( artist, 'power', 0.15 )\n scenario.changeSetting( artist, 'custom color window', '' )\n scenario.changeSetting( artist, 'log10(delay/ns)', 5 )\n scenario.changeSetting( artist, 'static', PyQColor(255,0,255,255) )\n scenario.setIsActive( artist, True )\n except StandardError as e:\n logging.log_error( e.__class__.__name__ + \" occured while loading saved state of Bubbles: \" + str(e) )\n except:\n logging.log_error( \"Unknown error occured while loading saved state of Bubbles: \" + str(e) )\n window.gl.setCameraPivot(0.0, 0.0, 0.0)\n window.gl.setCameraLoc(-1864.75549316, -362.478149414, 590.385009766)\n window.gl.setCameraOrientation(0.190808907151, -0.981627702713, 3.51667404175e-06)\n window.gl.cameraLock = False\n window.gl.perspectiveView = True\n window.gl.backgroundColor = PyQColor(38,38,38,255)\n window.timeline.rangeFinder = \"Default\"\n window.frame_filter.code = \"\"\n window.activeView = 0\n_dumpScenario()\ndel _dumpScenario (ShovelMainWindow.cpp:333 in bool ShovelMainWindow::loadScenarioCode(const QString &))\nobjc[43690]: Class FIFinderSyncExtensionHost is implemented in both /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit (0x7fff99c38210) and /System/Library/PrivateFrameworks/FileProvider.framework/OverrideBundles/FinderSyncCollaborationFileProviderOverride.bundle/Contents/MacOS/FinderSyncCollaborationFileProviderOverride (0x12c0eadc8). One of the two will be used. Which one is undefined.\nlibc++abi.dylib: terminating with uncaught exception of type boost::python::error_already_set\nAbort trap: 6\n\n}}}\n", "reporter": "kjmeagher", "cc": "", "resolution": "fixed", "_ts": "1593001902142004", "component": "combo core", "summary": "[steamshovel] doesn't work on macos with python3", "priority": "normal", "keywords": "", "time": "2019-03-14T16:46:49", "milestone": "Autumnal Equinox 2020", "owner": "", "type": "defect" } ```
defect
doesn t work on macos with trac migrated from json status closed changetime description steamshovel works fine with but fails with on macos mojave version qt version n nthe exception that is thrown is boost python error already set which is boost python catching an error and not telling you which one see n nnote that the interactive console does not run as well which is not causing the crash even though that works fine in as well n nthe exception involving domlabel also appears to be unrelated and not present in n n n steamshovel nno module named ipython nwarn steamshovel cannot embed ipython qt widget falling back to tty based console embed cpp in scripting pyconsole pyconsole const scripting pyinterpreter scripting pyconsole type nwarn steamshovel could not use ipython falling back to vanilla python console embed cpp in scripting pyconsole pyconsole const scripting pyinterpreter scripting pyconsole type npython default feb n on darwin ntype help copyright credits or license for more information n interactiveconsole n error shovelmainwindow problem executing scenario code ntraceback most recent call last n file line in dumpscenario nruntimeerror no such factory name domlabel n nduring handling of the above exception another exception occurred n ntraceback most recent call last n file line in n file line in dumpscenario nnameerror name standarderror is not defined nstring was ndef dumpscenario n from icecube shovelart import activepixmapoverlay arrow artisthandle artisthandlelist artistkeylist baselineobject choicesetting colormap coloredobject constantcolormap constantfloat constantqcolor constanttime cylinder dynamiclines filesetting keysetting linterpfunctionfloat linterpfunctionqcolor omkeyset overlayline overlaysizehint overlaysizehints particlepath particlepoint phantom pixmapoverlay pyartist pyqcolor pyqfont pyvariantfloat pyvariantqcolor pyvarianttime rangesetting scenario scenegroup sceneobject sceneoverlay solidobject sphere staticlines stepfunctionfloat stepfunctionqcolor stepfunctiontime text textoverlay timepoint timewindow timewindowcolor variantfloat variantqcolor varianttime zplane n from icecube icetray import omkey n from icecube icetray import logging n scenario window gl scenario n scenario clear n try n artist scenario add detector n scenario setisactive artist false n scenario changesetting artist dom color pyqcolor n scenario changesetting artist dom radius n scenario changesetting artist outline width n scenario changesetting artist high quality doms true n scenario changesetting artist string cross false n scenario changesetting artist string color pyqcolor n scenario changesetting artist string width n scenario changesetting artist hide n scenario changesetting artist dom labels false n scenario setisactive artist true n except standarderror as e n logging log error e class name occured while loading saved state of detector str e n except n logging log error unknown error occured while loading saved state of detector str e n try n artist scenario add domlabel n scenario setisactive artist false n scenario changesetting artist font pyqfont fromstring arial n scenario changesetting artist selection n scenario changesetting artist fontsize n except standarderror as e n logging log error e class name occured while loading saved state of domlabel str e n except n logging log error unknown error occured while loading saved state of domlabel str e n try n artist scenario add domorientation n scenario setisactive artist false n scenario changesetting artist opacity n scenario changesetting artist label axes false n scenario changesetting artist draw orthogonal direction true n scenario changesetting artist ortho length n scenario changesetting artist draw dom direction true n scenario changesetting artist draw flasher direction true n scenario changesetting artist dom length n scenario changesetting artist flasher length n scenario changesetting artist line width n scenario changesetting artist head angle n scenario changesetting artist draw default orientation false n scenario changesetting artist head length n except standarderror as e n logging log error e class name occured while loading saved state of domorientation str e n except n logging log error unknown error occured while loading saved state of domorientation str e n try n artist scenario add particles n scenario setisactive artist false n scenario changesetting artist min energy n scenario changesetting artist scale n scenario changesetting artist show light fronts false n scenario changesetting artist colormap n scenario changesetting artist power n scenario changesetting artist color pyqcolor n scenario changesetting artist vertex size n scenario changesetting artist labels true n scenario changesetting artist cherenkov cone size n scenario changesetting artist blue light fronts true n scenario changesetting artist incoming outgoing true n scenario changesetting artist color by type true n scenario changesetting artist arrow head size n scenario changesetting artist linewidth n scenario changesetting artist min energy n scenario setisactive artist true n except standarderror as e n logging log error e class name occured while loading saved state of particles str e n except n logging log error unknown error occured while loading saved state of particles str e n try n artist scenario add bubbles n scenario setisactive artist false n scenario changesetting artist scale n scenario changesetting artist colormap n scenario changesetting artist power n scenario changesetting artist custom color window n scenario changesetting artist delay ns n scenario changesetting artist static pyqcolor n scenario setisactive artist true n except standarderror as e n logging log error e class name occured while loading saved state of bubbles str e n except n logging log error unknown error occured while loading saved state of bubbles str e n try n artist scenario add bubbles n scenario setisactive artist false n scenario changesetting artist scale n scenario changesetting artist colormap n scenario changesetting artist power n scenario changesetting artist custom color window n scenario changesetting artist delay ns n scenario changesetting artist static pyqcolor n scenario setisactive artist true n except standarderror as e n logging log error e class name occured while loading saved state of bubbles str e n except n logging log error unknown error occured while loading saved state of bubbles str e n window gl setcamerapivot n window gl setcameraloc n window gl setcameraorientation n window gl cameralock false n window gl perspectiveview true n window gl backgroundcolor pyqcolor n window timeline rangefinder default n window frame filter code n window activeview n dumpscenario ndel dumpscenario shovelmainwindow cpp in bool shovelmainwindow loadscenariocode const qstring nobjc class fifindersyncextensionhost is implemented in both system library privateframeworks finderkit framework versions a finderkit and system library privateframeworks fileprovider framework overridebundles findersynccollaborationfileprovideroverride bundle contents macos findersynccollaborationfileprovideroverride one of the two will be used which one is undefined nlibc abi dylib terminating with uncaught exception of type boost python error already set nabort trap n n n reporter kjmeagher cc resolution fixed ts component combo core summary doesn t work on macos with priority normal keywords time milestone autumnal equinox owner type defect
1
23,166
3,774,011,961
IssuesEvent
2016-03-17 06:47:42
daelsepara/sofia-ml
https://api.github.com/repos/daelsepara/sofia-ml
closed
make all_test : Assertion `x1.GetGroupId() == "2"' failed
auto-migrated Priority-Medium Type-Defect
``` What steps will reproduce the problem? Follow the instructions in the README "Quick Start" section and on (on Ubuntu 14.04) 1. svn checkout http://sofia-ml.googlecode.com/svn/trunk/ sofia-ml-read-only 2. cd sofia-ml-read-only/src 3. make clean 4. make all_test What is the expected output? What do you see instead? Expecting success in all tests Seeing instead: Test is failing immediately with: g++ -O3 -lm -Wall -o sf-sparse-vector_test sf-sparse-vector_test.cc sf-sparse-vector.cc ./sf-sparse-vector_test sf-sparse-vector_test: sf-sparse-vector_test.cc:27: int main(int, char**): Assertion `x1.GetGroupId() == "2"' failed. make: *** [sf-sparse-vector_test] Aborted (core dumped) make: *** Deleting file `sf-sparse-vector_test' What version of the product are you using? On what operating system? Latest source: r31 | dsculley@google.com | 2010-07-26 14:17:11 -0700 (Mon, 26 Jul 2010) | 1 line On Ubuntu 14.04 (LTS) Please provide any additional information below. ``` Original issue reported on code.google.com by `ariel.fa...@gmail.com` on 4 May 2015 at 9:22
1.0
make all_test : Assertion `x1.GetGroupId() == "2"' failed - ``` What steps will reproduce the problem? Follow the instructions in the README "Quick Start" section and on (on Ubuntu 14.04) 1. svn checkout http://sofia-ml.googlecode.com/svn/trunk/ sofia-ml-read-only 2. cd sofia-ml-read-only/src 3. make clean 4. make all_test What is the expected output? What do you see instead? Expecting success in all tests Seeing instead: Test is failing immediately with: g++ -O3 -lm -Wall -o sf-sparse-vector_test sf-sparse-vector_test.cc sf-sparse-vector.cc ./sf-sparse-vector_test sf-sparse-vector_test: sf-sparse-vector_test.cc:27: int main(int, char**): Assertion `x1.GetGroupId() == "2"' failed. make: *** [sf-sparse-vector_test] Aborted (core dumped) make: *** Deleting file `sf-sparse-vector_test' What version of the product are you using? On what operating system? Latest source: r31 | dsculley@google.com | 2010-07-26 14:17:11 -0700 (Mon, 26 Jul 2010) | 1 line On Ubuntu 14.04 (LTS) Please provide any additional information below. ``` Original issue reported on code.google.com by `ariel.fa...@gmail.com` on 4 May 2015 at 9:22
defect
make all test assertion getgroupid failed what steps will reproduce the problem follow the instructions in the readme quick start section and on on ubuntu svn checkout sofia ml read only cd sofia ml read only src make clean make all test what is the expected output what do you see instead expecting success in all tests seeing instead test is failing immediately with g lm wall o sf sparse vector test sf sparse vector test cc sf sparse vector cc sf sparse vector test sf sparse vector test sf sparse vector test cc int main int char assertion getgroupid failed make aborted core dumped make deleting file sf sparse vector test what version of the product are you using on what operating system latest source dsculley google com mon jul line on ubuntu lts please provide any additional information below original issue reported on code google com by ariel fa gmail com on may at
1
76,813
26,608,307,077
IssuesEvent
2023-01-23 21:21:10
dotCMS/core
https://api.github.com/repos/dotCMS/core
opened
Update FieldVariableResource
Type : Defect OKR : Security Triage
### Problem Statement We need to update the FieldVariableResource to use the WebResource Builder Method. ### Steps to Reproduce See above ### Acceptance Criteria See above ### dotCMS Version See above ### Proposed Objective Security ### Proposed Priority Priority 2 - Important ### External Links... Slack Conversations, Support Tickets, Figma Designs, etc. _No response_ ### Assumptions & Initiation Needs _No response_ ### Sub-Tasks & Estimates _No response_
1.0
Update FieldVariableResource - ### Problem Statement We need to update the FieldVariableResource to use the WebResource Builder Method. ### Steps to Reproduce See above ### Acceptance Criteria See above ### dotCMS Version See above ### Proposed Objective Security ### Proposed Priority Priority 2 - Important ### External Links... Slack Conversations, Support Tickets, Figma Designs, etc. _No response_ ### Assumptions & Initiation Needs _No response_ ### Sub-Tasks & Estimates _No response_
defect
update fieldvariableresource problem statement we need to update the fieldvariableresource to use the webresource builder method steps to reproduce see above acceptance criteria see above dotcms version see above proposed objective security proposed priority priority important external links slack conversations support tickets figma designs etc no response assumptions initiation needs no response sub tasks estimates no response
1
258,609
22,332,265,038
IssuesEvent
2022-06-14 15:23:18
Reference-LAPACK/lapack
https://api.github.com/repos/Reference-LAPACK/lapack
opened
stest_rfp: STFSM test is very sensitive to small numeric errors in BLAS STRSM
Type: Question Related: Testing
As originally reported in https://github.com/xianyi/OpenBLAS/issues/3648 , the test for STFSM in sdrvrf3.f compares against the result of STRSM with a fairly small default threshold. While this happens to work with the reference implementation of the BLAS, spurious failure may occur with a user-supplied BLAS (as observed with OpenBLAS) although the deviation is within the expectations for a single precision calculation making use of FMA or similar hardware features. While this situation is more or less described in the FAQ as a "minor testing failure" (http://www.netlib.org/lapack/faq.html#_how_do_i_interpret_lapack_testing_failures) it may be causing unnecessary concern for distribution packagers etc. Suggested options would be to compare against DTRSM, or trivially to increase the threshold. The same (non?)issue very likely exists with ctest_rfp/CTFSM
1.0
stest_rfp: STFSM test is very sensitive to small numeric errors in BLAS STRSM - As originally reported in https://github.com/xianyi/OpenBLAS/issues/3648 , the test for STFSM in sdrvrf3.f compares against the result of STRSM with a fairly small default threshold. While this happens to work with the reference implementation of the BLAS, spurious failure may occur with a user-supplied BLAS (as observed with OpenBLAS) although the deviation is within the expectations for a single precision calculation making use of FMA or similar hardware features. While this situation is more or less described in the FAQ as a "minor testing failure" (http://www.netlib.org/lapack/faq.html#_how_do_i_interpret_lapack_testing_failures) it may be causing unnecessary concern for distribution packagers etc. Suggested options would be to compare against DTRSM, or trivially to increase the threshold. The same (non?)issue very likely exists with ctest_rfp/CTFSM
non_defect
stest rfp stfsm test is very sensitive to small numeric errors in blas strsm as originally reported in the test for stfsm in f compares against the result of strsm with a fairly small default threshold while this happens to work with the reference implementation of the blas spurious failure may occur with a user supplied blas as observed with openblas although the deviation is within the expectations for a single precision calculation making use of fma or similar hardware features while this situation is more or less described in the faq as a minor testing failure it may be causing unnecessary concern for distribution packagers etc suggested options would be to compare against dtrsm or trivially to increase the threshold the same non issue very likely exists with ctest rfp ctfsm
0
593,875
18,019,096,620
IssuesEvent
2021-09-16 17:02:13
mo7amedehab97/Rock-Paper-Scissors
https://api.github.com/repos/mo7amedehab97/Rock-Paper-Scissors
closed
create the login style and functionality
To-Do front-end priority-1 in-progress T-4h
_tasks_ - create the Html structure - give the element pretty style - create a function that login to the app and show the username in the main page
1.0
create the login style and functionality - _tasks_ - create the Html structure - give the element pretty style - create a function that login to the app and show the username in the main page
non_defect
create the login style and functionality tasks create the html structure give the element pretty style create a function that login to the app and show the username in the main page
0
69,152
17,581,020,191
IssuesEvent
2021-08-16 07:26:55
telerik/kendo-themes
https://api.github.com/repos/telerik/kendo-themes
closed
Themes do not color the loading sign, text and icons of the Upload
bug C:Upload FW:Blazor C:Loader ThemeBuilder integration
**Describe the bug** The text color and loader color of the upload header remain black. **To reproduce** Steps to reproduce the behavior: 1. Go to the theme builder https://themebuilder.telerik.com/blazor-ui 1. Choose the Bootstrap theme (might manifest with others too) 1. Select all components 1. Choose a dark theme (it is easier to see the issue) 1. Use that theme with an upload, such as the snippet below 1. Click the Upload button on that snippet (it will fail with the upload itself but you can see the loading sign and the text in the header - they are black). The icons are also black and should probably be white **Expected behavior** The text color and loader color from the theme are applied to the upload too **Screenshots** ![8f967160-17f5-4904-ab30-b47e70ae9638_img1](https://user-images.githubusercontent.com/5746515/106158586-92bb5b80-618c-11eb-995d-59eec4d60127.png) ![8f4b4023-8031-4dbe-8d60-3b8c1b06f7c7_img2](https://user-images.githubusercontent.com/5746515/106158588-9353f200-618c-11eb-8d2e-1da0dc58087d.png) **Affected package (please remove the unneeded items)** * theme-bootstrap * theme-material - the icon becomes gray so that may be OK **Affected suites (please remove the unneeded items)** * Telerik UI for Blazor - I have not tested others, likely there too **Affected browsers (please remove the unneeded items)** * All **Build system information (please remove the unneeded items)** * Not Applicable **Additional information** A workaround could be using some additional CSS to change the colors: ``` div.k-upload .k-file-group.k-icon, div.k-upload .k-dropzone .k-upload-status, div.k-upload .k-dropzone .k-dropzone-hint { color: #fff; } ```
1.0
Themes do not color the loading sign, text and icons of the Upload - **Describe the bug** The text color and loader color of the upload header remain black. **To reproduce** Steps to reproduce the behavior: 1. Go to the theme builder https://themebuilder.telerik.com/blazor-ui 1. Choose the Bootstrap theme (might manifest with others too) 1. Select all components 1. Choose a dark theme (it is easier to see the issue) 1. Use that theme with an upload, such as the snippet below 1. Click the Upload button on that snippet (it will fail with the upload itself but you can see the loading sign and the text in the header - they are black). The icons are also black and should probably be white **Expected behavior** The text color and loader color from the theme are applied to the upload too **Screenshots** ![8f967160-17f5-4904-ab30-b47e70ae9638_img1](https://user-images.githubusercontent.com/5746515/106158586-92bb5b80-618c-11eb-995d-59eec4d60127.png) ![8f4b4023-8031-4dbe-8d60-3b8c1b06f7c7_img2](https://user-images.githubusercontent.com/5746515/106158588-9353f200-618c-11eb-8d2e-1da0dc58087d.png) **Affected package (please remove the unneeded items)** * theme-bootstrap * theme-material - the icon becomes gray so that may be OK **Affected suites (please remove the unneeded items)** * Telerik UI for Blazor - I have not tested others, likely there too **Affected browsers (please remove the unneeded items)** * All **Build system information (please remove the unneeded items)** * Not Applicable **Additional information** A workaround could be using some additional CSS to change the colors: ``` div.k-upload .k-file-group.k-icon, div.k-upload .k-dropzone .k-upload-status, div.k-upload .k-dropzone .k-dropzone-hint { color: #fff; } ```
non_defect
themes do not color the loading sign text and icons of the upload describe the bug the text color and loader color of the upload header remain black to reproduce steps to reproduce the behavior go to the theme builder choose the bootstrap theme might manifest with others too select all components choose a dark theme it is easier to see the issue use that theme with an upload such as the snippet below click the upload button on that snippet it will fail with the upload itself but you can see the loading sign and the text in the header they are black the icons are also black and should probably be white expected behavior the text color and loader color from the theme are applied to the upload too screenshots affected package please remove the unneeded items theme bootstrap theme material the icon becomes gray so that may be ok affected suites please remove the unneeded items telerik ui for blazor i have not tested others likely there too affected browsers please remove the unneeded items all build system information please remove the unneeded items not applicable additional information a workaround could be using some additional css to change the colors div k upload k file group k icon div k upload k dropzone k upload status div k upload k dropzone k dropzone hint color fff
0
30,513
7,208,190,604
IssuesEvent
2018-02-07 01:40:46
WayofTime/BloodMagic
https://api.github.com/repos/WayofTime/BloodMagic
closed
(1.12.2) Crash After Trying to Use Teleposer
1.12 bug code complete
Spawned in a teleposer sigil in creative mode, bound it to myself, placed a teleposer block, right clicked the sigil on the block to link the two, moved a small distance away, used right-click to teleport, game crashed. Crashlog once again: https://pastebin.com/hhQ7W6D2 I suppose this is to be expected from an item that has a big 'WIP' in the guide book page about it, and I did see a mention of a rewrite for the teleposer in the roadmap anyway. - BloodMagic: 1.12.2-2.2.0-82 - Minecraft: 1.12.2 - Forge: 14.23.1.2611
1.0
(1.12.2) Crash After Trying to Use Teleposer - Spawned in a teleposer sigil in creative mode, bound it to myself, placed a teleposer block, right clicked the sigil on the block to link the two, moved a small distance away, used right-click to teleport, game crashed. Crashlog once again: https://pastebin.com/hhQ7W6D2 I suppose this is to be expected from an item that has a big 'WIP' in the guide book page about it, and I did see a mention of a rewrite for the teleposer in the roadmap anyway. - BloodMagic: 1.12.2-2.2.0-82 - Minecraft: 1.12.2 - Forge: 14.23.1.2611
non_defect
crash after trying to use teleposer spawned in a teleposer sigil in creative mode bound it to myself placed a teleposer block right clicked the sigil on the block to link the two moved a small distance away used right click to teleport game crashed crashlog once again i suppose this is to be expected from an item that has a big wip in the guide book page about it and i did see a mention of a rewrite for the teleposer in the roadmap anyway bloodmagic minecraft forge
0
256,675
8,128,427,126
IssuesEvent
2018-08-17 11:46:20
mozilla/addons-server
https://api.github.com/repos/mozilla/addons-server
closed
User is forced to select a Thunderbird and Seamonkey category during dictionary submission
component: devhub priority: p3
STR 1. Log in to Developer hub 2. Submit a new listed dictionary (webextension) 3. After your file is validated, Continue to the next submission step 4. Observe the Category selection sections Actual result: There are two mandatory category fields for Thunderbird and Seamonkey Expected result: Thunderbird and Seamonkey category selection should be removed, Notes: - ideally, the entire Category section should not be present at dictionary submission, as proposed in https://github.com/mozilla/addons-server/issues/7113 - additionally, Thunderbird and Seamonkey compatibility should be removed from the Edit information page - reproduced on AMO -dev with FF61, Win10x64 ![image](https://user-images.githubusercontent.com/31961530/43776613-0e80a55c-9a59-11e8-8f83-1d1ed763f6ff.png) ![image](https://user-images.githubusercontent.com/31961530/43776643-24e2d702-9a59-11e8-9c66-cc154848e937.png)
1.0
User is forced to select a Thunderbird and Seamonkey category during dictionary submission - STR 1. Log in to Developer hub 2. Submit a new listed dictionary (webextension) 3. After your file is validated, Continue to the next submission step 4. Observe the Category selection sections Actual result: There are two mandatory category fields for Thunderbird and Seamonkey Expected result: Thunderbird and Seamonkey category selection should be removed, Notes: - ideally, the entire Category section should not be present at dictionary submission, as proposed in https://github.com/mozilla/addons-server/issues/7113 - additionally, Thunderbird and Seamonkey compatibility should be removed from the Edit information page - reproduced on AMO -dev with FF61, Win10x64 ![image](https://user-images.githubusercontent.com/31961530/43776613-0e80a55c-9a59-11e8-8f83-1d1ed763f6ff.png) ![image](https://user-images.githubusercontent.com/31961530/43776643-24e2d702-9a59-11e8-9c66-cc154848e937.png)
non_defect
user is forced to select a thunderbird and seamonkey category during dictionary submission str log in to developer hub submit a new listed dictionary webextension after your file is validated continue to the next submission step observe the category selection sections actual result there are two mandatory category fields for thunderbird and seamonkey expected result thunderbird and seamonkey category selection should be removed notes ideally the entire category section should not be present at dictionary submission as proposed in additionally thunderbird and seamonkey compatibility should be removed from the edit information page reproduced on amo dev with
0
9,573
2,615,162,816
IssuesEvent
2015-03-01 06:42:15
chrsmith/reaver-wps
https://api.github.com/repos/chrsmith/reaver-wps
opened
Wash commands work but all RSSI are showing 0s.
auto-migrated Priority-Triage Type-Defect
``` A few things to consider before submitting an issue: 0. We write documentation for a reason, if you have not read it and are having problems with Reaver these pages are required reading before submitting an issue: http://code.google.com/p/reaver-wps/wiki/HintsAndTips http://code.google.com/p/reaver-wps/wiki/README http://code.google.com/p/reaver-wps/wiki/FAQ http://code.google.com/p/reaver-wps/wiki/SupportedWirelessDrivers 1. Reaver will only work if your card is in monitor mode. If you do not know what monitor mode is then you should learn more about 802.11 hacking in linux before using Reaver. 2. Using Reaver against access points you do not own or have permission to attack is illegal. If you cannot answer basic questions (i.e. model number, distance away, etc) about the device you are attacking then do not post your issue here. We will not help you break the law. 3. Please look through issues that have already been posted and make sure your question has not already been asked here: http://code.google.com/p /reaver-wps/issues/list 4. Often times we need packet captures of mon0 while Reaver is running to troubleshoot the issue (tcpdump -i mon0 -s0 -w broken_reaver.pcap). Issue reports with pcap files attached will receive more serious consideration. Answer the following questions for every issue submitted: 0. What version of Reaver are you using? (Only defects against the latest version will be considered.) Tried both the 1.3 and 1.4/ 1. What operating system are you using (Linux is the only supported OS)? CDLinux 0.9.6.1 2. Is your wireless card in monitor mode (yes/no)? Yes 3. What is the signal strength of the Access Point you are trying to crack? I can see signal strength of -60, -70 using other tools like spoonwep and spoonwpa. But the wash command gives me values of 0s. 4. What is the manufacturer and model # of the device you are trying to crack? TP-Link 5. What is the entire command line string you are supplying to reaver? wash -i mon0 6. Please describe what you think the issue is. I have no idea 7. Paste the output from Reaver below. http://www.freeimagehosting.net/x72qg http://www.freeimagehosting.net/zrf4p ``` Original issue reported on code.google.com by `skmch...@gmail.com` on 5 Jun 2012 at 12:18
1.0
Wash commands work but all RSSI are showing 0s. - ``` A few things to consider before submitting an issue: 0. We write documentation for a reason, if you have not read it and are having problems with Reaver these pages are required reading before submitting an issue: http://code.google.com/p/reaver-wps/wiki/HintsAndTips http://code.google.com/p/reaver-wps/wiki/README http://code.google.com/p/reaver-wps/wiki/FAQ http://code.google.com/p/reaver-wps/wiki/SupportedWirelessDrivers 1. Reaver will only work if your card is in monitor mode. If you do not know what monitor mode is then you should learn more about 802.11 hacking in linux before using Reaver. 2. Using Reaver against access points you do not own or have permission to attack is illegal. If you cannot answer basic questions (i.e. model number, distance away, etc) about the device you are attacking then do not post your issue here. We will not help you break the law. 3. Please look through issues that have already been posted and make sure your question has not already been asked here: http://code.google.com/p /reaver-wps/issues/list 4. Often times we need packet captures of mon0 while Reaver is running to troubleshoot the issue (tcpdump -i mon0 -s0 -w broken_reaver.pcap). Issue reports with pcap files attached will receive more serious consideration. Answer the following questions for every issue submitted: 0. What version of Reaver are you using? (Only defects against the latest version will be considered.) Tried both the 1.3 and 1.4/ 1. What operating system are you using (Linux is the only supported OS)? CDLinux 0.9.6.1 2. Is your wireless card in monitor mode (yes/no)? Yes 3. What is the signal strength of the Access Point you are trying to crack? I can see signal strength of -60, -70 using other tools like spoonwep and spoonwpa. But the wash command gives me values of 0s. 4. What is the manufacturer and model # of the device you are trying to crack? TP-Link 5. What is the entire command line string you are supplying to reaver? wash -i mon0 6. Please describe what you think the issue is. I have no idea 7. Paste the output from Reaver below. http://www.freeimagehosting.net/x72qg http://www.freeimagehosting.net/zrf4p ``` Original issue reported on code.google.com by `skmch...@gmail.com` on 5 Jun 2012 at 12:18
defect
wash commands work but all rssi are showing a few things to consider before submitting an issue we write documentation for a reason if you have not read it and are having problems with reaver these pages are required reading before submitting an issue reaver will only work if your card is in monitor mode if you do not know what monitor mode is then you should learn more about hacking in linux before using reaver using reaver against access points you do not own or have permission to attack is illegal if you cannot answer basic questions i e model number distance away etc about the device you are attacking then do not post your issue here we will not help you break the law please look through issues that have already been posted and make sure your question has not already been asked here reaver wps issues list often times we need packet captures of while reaver is running to troubleshoot the issue tcpdump i w broken reaver pcap issue reports with pcap files attached will receive more serious consideration answer the following questions for every issue submitted what version of reaver are you using only defects against the latest version will be considered tried both the and what operating system are you using linux is the only supported os cdlinux is your wireless card in monitor mode yes no yes what is the signal strength of the access point you are trying to crack i can see signal strength of using other tools like spoonwep and spoonwpa but the wash command gives me values of what is the manufacturer and model of the device you are trying to crack tp link what is the entire command line string you are supplying to reaver wash i please describe what you think the issue is i have no idea paste the output from reaver below original issue reported on code google com by skmch gmail com on jun at
1
2,551
2,607,927,530
IssuesEvent
2015-02-26 00:25:17
chrsmithdemos/minify
https://api.github.com/repos/chrsmithdemos/minify
closed
Can't Run from Command Line
auto-migrated Priority-Medium Type-Defect
``` With V.1, I was able to hack my usage of minify a bit such that I could pass it a list of files and it would echo the minified result out to the command line. This no longer seems feasible (or at least is much harder) in V.2 All I want minify to do is accept a list of files, minify them, and return the result. We have our own static server which takes care of all the fancy encoding and header issues. Minify does not seem to work at all from the command line however. Can this issue be addressed? ``` ----- Original issue reported on code.google.com by `man...@gmail.com` on 30 May 2008 at 10:12
1.0
Can't Run from Command Line - ``` With V.1, I was able to hack my usage of minify a bit such that I could pass it a list of files and it would echo the minified result out to the command line. This no longer seems feasible (or at least is much harder) in V.2 All I want minify to do is accept a list of files, minify them, and return the result. We have our own static server which takes care of all the fancy encoding and header issues. Minify does not seem to work at all from the command line however. Can this issue be addressed? ``` ----- Original issue reported on code.google.com by `man...@gmail.com` on 30 May 2008 at 10:12
defect
can t run from command line with v i was able to hack my usage of minify a bit such that i could pass it a list of files and it would echo the minified result out to the command line this no longer seems feasible or at least is much harder in v all i want minify to do is accept a list of files minify them and return the result we have our own static server which takes care of all the fancy encoding and header issues minify does not seem to work at all from the command line however can this issue be addressed original issue reported on code google com by man gmail com on may at
1
79,506
28,315,875,759
IssuesEvent
2023-04-10 19:32:17
DependencyTrack/frontend
https://api.github.com/repos/DependencyTrack/frontend
closed
Unable to change page number in project list in some cases when 'show inactive projects' button is clicked
defect
### Current Behavior In the project list, when one clicks on 'show inactive projects', one can end up in a state where `No matching records found` is displayed, and the buttons to change the page numbers disappear ### Steps to Reproduce 1. Go to the project list and activate "Show inactive projects". 2. Go to a page number that is high enough so that it wouldn't exist if the option "Show inactive projects" was not on 3. Deactivate "Show inactive projects". ### Expected Behavior The proposal to fix this issue is to return to the first page whenever this button is clicked. ### Dependency-Track Frontend Version 4.7.0 ### Browser Google Chrome ### Browser Version _No response_ ### Operating System Windows ### Checklist - [X] I have read and understand the [contributing guidelines](https://github.com/DependencyTrack/dependency-track/blob/master/CONTRIBUTING.md#filing-issues) - [X] I have checked the [existing issues](https://github.com/DependencyTrack/frontend/issues) for whether this defect was already reported
1.0
Unable to change page number in project list in some cases when 'show inactive projects' button is clicked - ### Current Behavior In the project list, when one clicks on 'show inactive projects', one can end up in a state where `No matching records found` is displayed, and the buttons to change the page numbers disappear ### Steps to Reproduce 1. Go to the project list and activate "Show inactive projects". 2. Go to a page number that is high enough so that it wouldn't exist if the option "Show inactive projects" was not on 3. Deactivate "Show inactive projects". ### Expected Behavior The proposal to fix this issue is to return to the first page whenever this button is clicked. ### Dependency-Track Frontend Version 4.7.0 ### Browser Google Chrome ### Browser Version _No response_ ### Operating System Windows ### Checklist - [X] I have read and understand the [contributing guidelines](https://github.com/DependencyTrack/dependency-track/blob/master/CONTRIBUTING.md#filing-issues) - [X] I have checked the [existing issues](https://github.com/DependencyTrack/frontend/issues) for whether this defect was already reported
defect
unable to change page number in project list in some cases when show inactive projects button is clicked current behavior in the project list when one clicks on show inactive projects one can end up in a state where no matching records found is displayed and the buttons to change the page numbers disappear steps to reproduce go to the project list and activate show inactive projects go to a page number that is high enough so that it wouldn t exist if the option show inactive projects was not on deactivate show inactive projects expected behavior the proposal to fix this issue is to return to the first page whenever this button is clicked dependency track frontend version browser google chrome browser version no response operating system windows checklist i have read and understand the i have checked the for whether this defect was already reported
1
52,402
13,224,715,744
IssuesEvent
2020-08-17 19:42:01
icecube-trac/tix4
https://api.github.com/repos/icecube-trac/tix4
opened
I3HiveSplitter fails when running in non-writeable environment (Trac #2165)
Incomplete Migration Migrated from Trac combo reconstruction defect
<details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/2165">https://code.icecube.wisc.edu/projects/icecube/ticket/2165</a>, reported by chaackand owned by kjmeagher</em></summary> <p> ```json { "status": "closed", "changetime": "2019-09-26T09:43:23", "_ts": "1569491003666194", "description": "Can be reproduced by running muonl3 using an icerec from /cvmfs", "reporter": "chaack", "cc": "", "resolution": "fixed", "time": "2018-06-21T16:04:46", "component": "combo reconstruction", "summary": "I3HiveSplitter fails when running in non-writeable environment", "priority": "normal", "keywords": "", "milestone": "", "owner": "kjmeagher", "type": "defect" } ``` </p> </details>
1.0
I3HiveSplitter fails when running in non-writeable environment (Trac #2165) - <details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/2165">https://code.icecube.wisc.edu/projects/icecube/ticket/2165</a>, reported by chaackand owned by kjmeagher</em></summary> <p> ```json { "status": "closed", "changetime": "2019-09-26T09:43:23", "_ts": "1569491003666194", "description": "Can be reproduced by running muonl3 using an icerec from /cvmfs", "reporter": "chaack", "cc": "", "resolution": "fixed", "time": "2018-06-21T16:04:46", "component": "combo reconstruction", "summary": "I3HiveSplitter fails when running in non-writeable environment", "priority": "normal", "keywords": "", "milestone": "", "owner": "kjmeagher", "type": "defect" } ``` </p> </details>
defect
fails when running in non writeable environment trac migrated from json status closed changetime ts description can be reproduced by running using an icerec from cvmfs reporter chaack cc resolution fixed time component combo reconstruction summary fails when running in non writeable environment priority normal keywords milestone owner kjmeagher type defect
1
545,929
15,977,883,034
IssuesEvent
2021-04-17 07:20:48
thenewboston-developers/Website
https://api.github.com/repos/thenewboston-developers/Website
closed
Add New Contributor to Website
priority.Low
You need to add a new contributor to the website, as the current template for adding a new contributor is out of date(kindly update that as well), that's why I'm listing the necessary things you will need to add this contributor onto the website. 1. **Display name:** Andrey Bortnikov 2. **Title:** Blockchain Developer 3. **Team:** Blockchain 4. **Discord username:** andbortnik#8958 5. **Github username:** andbortnik 6. **Hourly rate:** 1000 7. **Profile image:** https://avatars.githubusercontent.com/u/17045710?v=4 8. **is lead or not?:** False Kindly let me know if you need anything else(I think I didnt send the correct link for his profile picture, can you get it from his profile: https://github.com/andbortnik), on discord or in the comments of this issue.
1.0
Add New Contributor to Website - You need to add a new contributor to the website, as the current template for adding a new contributor is out of date(kindly update that as well), that's why I'm listing the necessary things you will need to add this contributor onto the website. 1. **Display name:** Andrey Bortnikov 2. **Title:** Blockchain Developer 3. **Team:** Blockchain 4. **Discord username:** andbortnik#8958 5. **Github username:** andbortnik 6. **Hourly rate:** 1000 7. **Profile image:** https://avatars.githubusercontent.com/u/17045710?v=4 8. **is lead or not?:** False Kindly let me know if you need anything else(I think I didnt send the correct link for his profile picture, can you get it from his profile: https://github.com/andbortnik), on discord or in the comments of this issue.
non_defect
add new contributor to website you need to add a new contributor to the website as the current template for adding a new contributor is out of date kindly update that as well that s why i m listing the necessary things you will need to add this contributor onto the website display name andrey bortnikov title blockchain developer team blockchain discord username andbortnik github username andbortnik hourly rate profile image is lead or not false kindly let me know if you need anything else i think i didnt send the correct link for his profile picture can you get it from his profile on discord or in the comments of this issue
0
152,963
19,702,052,574
IssuesEvent
2022-01-12 17:34:41
harrinry/serverless-s3-local
https://api.github.com/repos/harrinry/serverless-s3-local
opened
WS-2020-0032 (High) detected in subtext-5.0.0.tgz
security vulnerability
## WS-2020-0032 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>subtext-5.0.0.tgz</b></p></summary> <p>HTTP payload parsing</p> <p>Library home page: <a href="https://registry.npmjs.org/subtext/-/subtext-5.0.0.tgz">https://registry.npmjs.org/subtext/-/subtext-5.0.0.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/subtext/package.json</p> <p> Dependency Hierarchy: - serverless-offline-3.33.0.tgz (Root Library) - hapi-16.7.0.tgz - :x: **subtext-5.0.0.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/harrinry/serverless-s3-local/commit/507b173aed811d0cf6803c485e5541679b085b68">507b173aed811d0cf6803c485e5541679b085b68</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Versions of subtext >=4.1.0 are vulnerable to Denial of Service. The Content-Encoding HTTP header parser has a vulnerability which will cause the function to throw a system error if the header contains some invalid values. Because hapi rethrows system errors (as opposed to catching expected application errors), the error is thrown all the way up the stack. If no unhandled exception handler is available, the application will exist, allowing an attacker to shut down services. <p>Publish Date: 2020-02-18 <p>URL: <a href=https://www.npmjs.com/package/subtext>WS-2020-0032</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"subtext","packageVersion":"5.0.0","packageFilePaths":["/package.json"],"isTransitiveDependency":true,"dependencyTree":"serverless-offline:3.33.0;hapi:16.7.0;subtext:5.0.0","isMinimumFixVersionAvailable":false,"isBinary":false}],"baseBranches":["master"],"vulnerabilityIdentifier":"WS-2020-0032","vulnerabilityDetails":"Versions of subtext \u003e\u003d4.1.0 are vulnerable to Denial of Service. The Content-Encoding HTTP header parser has a vulnerability which will cause the function to throw a system error if the header contains some invalid values. Because hapi rethrows system errors (as opposed to catching expected application errors), the error is thrown all the way up the stack. If no unhandled exception handler is available, the application will exist, allowing an attacker to shut down services.","vulnerabilityUrl":"https://www.npmjs.com/package/subtext","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Unchanged","C":"High","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
True
WS-2020-0032 (High) detected in subtext-5.0.0.tgz - ## WS-2020-0032 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>subtext-5.0.0.tgz</b></p></summary> <p>HTTP payload parsing</p> <p>Library home page: <a href="https://registry.npmjs.org/subtext/-/subtext-5.0.0.tgz">https://registry.npmjs.org/subtext/-/subtext-5.0.0.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/subtext/package.json</p> <p> Dependency Hierarchy: - serverless-offline-3.33.0.tgz (Root Library) - hapi-16.7.0.tgz - :x: **subtext-5.0.0.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/harrinry/serverless-s3-local/commit/507b173aed811d0cf6803c485e5541679b085b68">507b173aed811d0cf6803c485e5541679b085b68</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Versions of subtext >=4.1.0 are vulnerable to Denial of Service. The Content-Encoding HTTP header parser has a vulnerability which will cause the function to throw a system error if the header contains some invalid values. Because hapi rethrows system errors (as opposed to catching expected application errors), the error is thrown all the way up the stack. If no unhandled exception handler is available, the application will exist, allowing an attacker to shut down services. <p>Publish Date: 2020-02-18 <p>URL: <a href=https://www.npmjs.com/package/subtext>WS-2020-0032</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"subtext","packageVersion":"5.0.0","packageFilePaths":["/package.json"],"isTransitiveDependency":true,"dependencyTree":"serverless-offline:3.33.0;hapi:16.7.0;subtext:5.0.0","isMinimumFixVersionAvailable":false,"isBinary":false}],"baseBranches":["master"],"vulnerabilityIdentifier":"WS-2020-0032","vulnerabilityDetails":"Versions of subtext \u003e\u003d4.1.0 are vulnerable to Denial of Service. The Content-Encoding HTTP header parser has a vulnerability which will cause the function to throw a system error if the header contains some invalid values. Because hapi rethrows system errors (as opposed to catching expected application errors), the error is thrown all the way up the stack. If no unhandled exception handler is available, the application will exist, allowing an attacker to shut down services.","vulnerabilityUrl":"https://www.npmjs.com/package/subtext","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Unchanged","C":"High","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
non_defect
ws high detected in subtext tgz ws high severity vulnerability vulnerable library subtext tgz http payload parsing library home page a href path to dependency file package json path to vulnerable library node modules subtext package json dependency hierarchy serverless offline tgz root library hapi tgz x subtext tgz vulnerable library found in head commit a href found in base branch master vulnerability details versions of subtext are vulnerable to denial of service the content encoding http header parser has a vulnerability which will cause the function to throw a system error if the header contains some invalid values because hapi rethrows system errors as opposed to catching expected application errors the error is thrown all the way up the stack if no unhandled exception handler is available the application will exist allowing an attacker to shut down services publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact none availability impact none for more information on scores click a href isopenpronvulnerability true ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree serverless offline hapi subtext isminimumfixversionavailable false isbinary false basebranches vulnerabilityidentifier ws vulnerabilitydetails versions of subtext are vulnerable to denial of service the content encoding http header parser has a vulnerability which will cause the function to throw a system error if the header contains some invalid values because hapi rethrows system errors as opposed to catching expected application errors the error is thrown all the way up the stack if no unhandled exception handler is available the application will exist allowing an attacker to shut down services vulnerabilityurl
0
52,204
13,211,407,023
IssuesEvent
2020-08-15 22:55:23
icecube-trac/tix4
https://api.github.com/repos/icecube-trac/tix4
opened
[truncated-energy] test failing (Trac #1848)
Incomplete Migration Migrated from Trac combo reconstruction defect
<details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/1848">https://code.icecube.wisc.edu/projects/icecube/ticket/1848</a>, reported by negaand owned by tpalczewski</em></summary> <p> ```json { "status": "closed", "changetime": "2019-02-13T14:13:18", "_ts": "1550067198646291", "description": "{{{\n Start 408: truncated_energy::test_truncated.py\n408/423 Test #408: truncated_energy::test_truncated.py ............................***Failed 11.07 sec\nINFO (I3Tray): Adding Anonymous Module of type 'I3TruncatedEnergy' with name 'I3TruncatedEnergy_0000' (I3Tray.py:75 in _create_name)\nINFO (I3Tray): Adding Anonymous Module of type '<function test at 0x7ff3d6219c80>' with name 'test_0000' (I3Tray.py:75 in _create_name)\nINFO (I3PhotonicsL2Reader): Photonics Level2: Version 'I3PhotonicsReader $Rev: 142977 $' (I3PhotonicsL2Reader.cxx:433 in int I3PhotonicsL2Reader::load_level2_tables(const char *))\nINFO (I3PhotonicsL2Reader): Photonics Level2: Using 'Photorec' mode. (I3PhotonicsL2Reader.cxx:565 in int I3PhotonicsL2Reader::load_level2_tables(const char *))\nINFO (I3PhotonicsL2Reader): Photonics Level2: loaded 1539 starting tables, setid 0 photorec mode (I3PhotonicsL2Reader.cxx:728 in int I3PhotonicsL2Reader::load_level2_tables(const char *))\nINFO (I3PhotonicsL2Reader): Photonics Level2: Active interval: (setid: 0) 0<=th<= 180 -800<=z<= 800 (I3PhotonicsL2Reader.cxx:840 in int I3PhotonicsL2Reader::load_level2_tables(const char *))\nINFO (I3Module): Opened file /build/ports/test-data/sim/GeoCalibDetectorStatus_2012.56063_V0.i3.gz (I3Reader.cxx:180 in void I3Reader::OpenNextFile())\nINFO (I3Module): Opened file /build/ports/test-data/sim/Level3_nugen_numu_IC86.2012.011069.000000_20events.i3.bz2 (I3Reader.cxx:180 in void I3Reader::OpenNextFile())\nERROR (PythonFunction): Error running python function as module: (PythonFunction.cxx:173 in virtual void PythonFunction::Process())\nERROR (I3Module): test_0000: Exception thrown (I3Module.cxx:118 in void I3Module::Do(void (I3Module::*)()))\nSplineMPETruncatedEnergy_SPICEMie_AllDOMS_MuEres 0.0\nSplineMPETruncatedEnergy_SPICEMie_DOMS_Neutrino 0.342341098934\nTraceback (most recent call last):\n File \"/build/buildslave/kipple_cvmfs/Scientific_Linux_6__new___cvmfs_/source/truncated_energy/resources/test/test_truncated.py\", line 59, in <module>\n tray.Execute()\n File \"/build/buildslave/kipple_cvmfs/Scientific_Linux_6__new___cvmfs_/build/lib/I3Tray.py\", line 240, in Execute\n super(I3Tray, self).Execute()\n File \"/build/buildslave/kipple_cvmfs/Scientific_Linux_6__new___cvmfs_/source/truncated_energy/resources/test/test_truncated.py\", line 55, in test\n assert d < 1e-4\nAssertionError\nINFO (I3PhotonicsService): Destructor called for I3PhotonicsTableService \n (I3PhotonicsTableService.cxx:100 in virtual I3PhotonicsTableService::~I3PhotonicsTableService())\n}}}\n", "reporter": "nega", "cc": "", "resolution": "fixed", "time": "2016-09-01T14:54:17", "component": "combo reconstruction", "summary": "[truncated-energy] test failing", "priority": "blocker", "keywords": "", "milestone": "", "owner": "tpalczewski", "type": "defect" } ``` </p> </details>
1.0
[truncated-energy] test failing (Trac #1848) - <details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/1848">https://code.icecube.wisc.edu/projects/icecube/ticket/1848</a>, reported by negaand owned by tpalczewski</em></summary> <p> ```json { "status": "closed", "changetime": "2019-02-13T14:13:18", "_ts": "1550067198646291", "description": "{{{\n Start 408: truncated_energy::test_truncated.py\n408/423 Test #408: truncated_energy::test_truncated.py ............................***Failed 11.07 sec\nINFO (I3Tray): Adding Anonymous Module of type 'I3TruncatedEnergy' with name 'I3TruncatedEnergy_0000' (I3Tray.py:75 in _create_name)\nINFO (I3Tray): Adding Anonymous Module of type '<function test at 0x7ff3d6219c80>' with name 'test_0000' (I3Tray.py:75 in _create_name)\nINFO (I3PhotonicsL2Reader): Photonics Level2: Version 'I3PhotonicsReader $Rev: 142977 $' (I3PhotonicsL2Reader.cxx:433 in int I3PhotonicsL2Reader::load_level2_tables(const char *))\nINFO (I3PhotonicsL2Reader): Photonics Level2: Using 'Photorec' mode. (I3PhotonicsL2Reader.cxx:565 in int I3PhotonicsL2Reader::load_level2_tables(const char *))\nINFO (I3PhotonicsL2Reader): Photonics Level2: loaded 1539 starting tables, setid 0 photorec mode (I3PhotonicsL2Reader.cxx:728 in int I3PhotonicsL2Reader::load_level2_tables(const char *))\nINFO (I3PhotonicsL2Reader): Photonics Level2: Active interval: (setid: 0) 0<=th<= 180 -800<=z<= 800 (I3PhotonicsL2Reader.cxx:840 in int I3PhotonicsL2Reader::load_level2_tables(const char *))\nINFO (I3Module): Opened file /build/ports/test-data/sim/GeoCalibDetectorStatus_2012.56063_V0.i3.gz (I3Reader.cxx:180 in void I3Reader::OpenNextFile())\nINFO (I3Module): Opened file /build/ports/test-data/sim/Level3_nugen_numu_IC86.2012.011069.000000_20events.i3.bz2 (I3Reader.cxx:180 in void I3Reader::OpenNextFile())\nERROR (PythonFunction): Error running python function as module: (PythonFunction.cxx:173 in virtual void PythonFunction::Process())\nERROR (I3Module): test_0000: Exception thrown (I3Module.cxx:118 in void I3Module::Do(void (I3Module::*)()))\nSplineMPETruncatedEnergy_SPICEMie_AllDOMS_MuEres 0.0\nSplineMPETruncatedEnergy_SPICEMie_DOMS_Neutrino 0.342341098934\nTraceback (most recent call last):\n File \"/build/buildslave/kipple_cvmfs/Scientific_Linux_6__new___cvmfs_/source/truncated_energy/resources/test/test_truncated.py\", line 59, in <module>\n tray.Execute()\n File \"/build/buildslave/kipple_cvmfs/Scientific_Linux_6__new___cvmfs_/build/lib/I3Tray.py\", line 240, in Execute\n super(I3Tray, self).Execute()\n File \"/build/buildslave/kipple_cvmfs/Scientific_Linux_6__new___cvmfs_/source/truncated_energy/resources/test/test_truncated.py\", line 55, in test\n assert d < 1e-4\nAssertionError\nINFO (I3PhotonicsService): Destructor called for I3PhotonicsTableService \n (I3PhotonicsTableService.cxx:100 in virtual I3PhotonicsTableService::~I3PhotonicsTableService())\n}}}\n", "reporter": "nega", "cc": "", "resolution": "fixed", "time": "2016-09-01T14:54:17", "component": "combo reconstruction", "summary": "[truncated-energy] test failing", "priority": "blocker", "keywords": "", "milestone": "", "owner": "tpalczewski", "type": "defect" } ``` </p> </details>
defect
test failing trac migrated from json status closed changetime ts description n start truncated energy test truncated py test truncated energy test truncated py failed sec ninfo adding anonymous module of type with name py in create name ninfo adding anonymous module of type with name test py in create name ninfo photonics version rev cxx in int load tables const char ninfo photonics using photorec mode cxx in int load tables const char ninfo photonics loaded starting tables setid photorec mode cxx in int load tables const char ninfo photonics active interval setid n tray execute n file build buildslave kipple cvmfs scientific linux new cvmfs build lib py line in execute n super self execute n file build buildslave kipple cvmfs scientific linux new cvmfs source truncated energy resources test test truncated py line in test n assert d nassertionerror ninfo destructor called for n cxx in virtual n n reporter nega cc resolution fixed time component combo reconstruction summary test failing priority blocker keywords milestone owner tpalczewski type defect
1
45,159
12,604,296,195
IssuesEvent
2020-06-11 14:45:57
googlefonts/noto-fonts
https://api.github.com/repos/googlefonts/noto-fonts
closed
chondrobindu in NotoSansBengali
Android Priority-Medium Script-Bengali Type-Defect
I noticed one problem of NotoSansBengali in rendering "ঁ". e.g. তাঁদের should be rendered like this. [tader](https://cloud.githubusercontent.com/assets/738955/12138414/00773976-b483-11e5-9ff0-0c92f361a533.png) It would be great if we can fix this rendering issue. .
1.0
chondrobindu in NotoSansBengali - I noticed one problem of NotoSansBengali in rendering "ঁ". e.g. তাঁদের should be rendered like this. [tader](https://cloud.githubusercontent.com/assets/738955/12138414/00773976-b483-11e5-9ff0-0c92f361a533.png) It would be great if we can fix this rendering issue. .
defect
chondrobindu in notosansbengali i noticed one problem of notosansbengali in rendering ঁ e g তাঁদের should be rendered like this it would be great if we can fix this rendering issue
1
65,108
19,097,473,371
IssuesEvent
2021-11-29 18:14:38
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
opened
Clicking a notification dot on a space takes you somewhere else than clicking the space
T-Defect
### Steps to reproduce Clicking a notification dot on a space takes you somewhere else than clicking the space. There is no hint that this is a feature: that the dot and space itself are different buttons. There should be a tooltip, animation, other UI thingy that tells me about it. It's not extremely bad, but it confused my enough to think that opening spaces was broken and are switching to random rooms, before figuring it out. ### Outcome #### What did you expect? Just go to the space #### What happened instead? I am confused why I am landing in random unread rooms when switching to a space instead of the recently opened room. ### Operating system arch ### Application version Element Nightly version: 2021112501 Olm version: 3.2.3 ### How did you install the app? aur ### Homeserver _No response_ ### Will you send logs? No
1.0
Clicking a notification dot on a space takes you somewhere else than clicking the space - ### Steps to reproduce Clicking a notification dot on a space takes you somewhere else than clicking the space. There is no hint that this is a feature: that the dot and space itself are different buttons. There should be a tooltip, animation, other UI thingy that tells me about it. It's not extremely bad, but it confused my enough to think that opening spaces was broken and are switching to random rooms, before figuring it out. ### Outcome #### What did you expect? Just go to the space #### What happened instead? I am confused why I am landing in random unread rooms when switching to a space instead of the recently opened room. ### Operating system arch ### Application version Element Nightly version: 2021112501 Olm version: 3.2.3 ### How did you install the app? aur ### Homeserver _No response_ ### Will you send logs? No
defect
clicking a notification dot on a space takes you somewhere else than clicking the space steps to reproduce clicking a notification dot on a space takes you somewhere else than clicking the space there is no hint that this is a feature that the dot and space itself are different buttons there should be a tooltip animation other ui thingy that tells me about it it s not extremely bad but it confused my enough to think that opening spaces was broken and are switching to random rooms before figuring it out outcome what did you expect just go to the space what happened instead i am confused why i am landing in random unread rooms when switching to a space instead of the recently opened room operating system arch application version element nightly version olm version how did you install the app aur homeserver no response will you send logs no
1
87,553
15,784,970,449
IssuesEvent
2021-04-01 15:45:32
MicrosoftDocs/azure-docs
https://api.github.com/repos/MicrosoftDocs/azure-docs
closed
here link in FAQ about purview replacing data classification does not work
Pri2 cxp doc-enhancement security/subsvc sql-db-mi/svc triaged
[Enter feedback here] The policies link is not enabled that describes Microsoft retiring any products --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: 9ca439af-510f-303c-e72c-424b78ac0ac7 * Version Independent ID: 616d8cf5-1631-1179-0c59-f8b4f6c1f7bb * Content: [Data Discovery & Classification - Azure SQL Database, Azure SQL Managed Instance, and Azure Synapse](https://docs.microsoft.com/en-us/azure/azure-sql/database/data-discovery-and-classification-overview) * Content Source: [articles/azure-sql/database/data-discovery-and-classification-overview.md](https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/azure-sql/database/data-discovery-and-classification-overview.md) * Service: **sql-db-mi** * Sub-service: **security** * GitHub Login: @DavidTrigano * Microsoft Alias: **datrigan**
True
here link in FAQ about purview replacing data classification does not work - [Enter feedback here] The policies link is not enabled that describes Microsoft retiring any products --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: 9ca439af-510f-303c-e72c-424b78ac0ac7 * Version Independent ID: 616d8cf5-1631-1179-0c59-f8b4f6c1f7bb * Content: [Data Discovery & Classification - Azure SQL Database, Azure SQL Managed Instance, and Azure Synapse](https://docs.microsoft.com/en-us/azure/azure-sql/database/data-discovery-and-classification-overview) * Content Source: [articles/azure-sql/database/data-discovery-and-classification-overview.md](https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/azure-sql/database/data-discovery-and-classification-overview.md) * Service: **sql-db-mi** * Sub-service: **security** * GitHub Login: @DavidTrigano * Microsoft Alias: **datrigan**
non_defect
here link in faq about purview replacing data classification does not work the policies link is not enabled that describes microsoft retiring any products 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 sql db mi sub service security github login davidtrigano microsoft alias datrigan
0
69,793
22,676,500,297
IssuesEvent
2022-07-04 05:28:15
cakephp/cakephp
https://api.github.com/repos/cakephp/cakephp
closed
Code Generation Single Model CRUD have issue during add process
defect
### Description I have one table called districts such as below ![Alter-table-districts-Adminer](https://user-images.githubusercontent.com/97268905/177083192-15532416-ed32-4a89-97c7-280eb4183234.png) Then i do the code generation using bake by using this comman `bin\cake bake all Districts`. And it running good Then i have a page like this ![CakePHP-the-rapid-development-php-framework-Districts](https://user-images.githubusercontent.com/97268905/177083310-99ee7d1b-6d5c-4e43-8388-34a616e2cfdd.png) But as soon as i fill like above image, i get an error like this. ![Error-Database-Error](https://user-images.githubusercontent.com/97268905/177083346-95089a7a-c15a-411b-9f27-92c3f95231a4.png) Is there something that i do wrong? P/S: I haven't done any customization to the code. This code comes from baking. ### CakePHP Version 4.4.* ### PHP Version 8.1.3
1.0
Code Generation Single Model CRUD have issue during add process - ### Description I have one table called districts such as below ![Alter-table-districts-Adminer](https://user-images.githubusercontent.com/97268905/177083192-15532416-ed32-4a89-97c7-280eb4183234.png) Then i do the code generation using bake by using this comman `bin\cake bake all Districts`. And it running good Then i have a page like this ![CakePHP-the-rapid-development-php-framework-Districts](https://user-images.githubusercontent.com/97268905/177083310-99ee7d1b-6d5c-4e43-8388-34a616e2cfdd.png) But as soon as i fill like above image, i get an error like this. ![Error-Database-Error](https://user-images.githubusercontent.com/97268905/177083346-95089a7a-c15a-411b-9f27-92c3f95231a4.png) Is there something that i do wrong? P/S: I haven't done any customization to the code. This code comes from baking. ### CakePHP Version 4.4.* ### PHP Version 8.1.3
defect
code generation single model crud have issue during add process description i have one table called districts such as below then i do the code generation using bake by using this comman bin cake bake all districts and it running good then i have a page like this but as soon as i fill like above image i get an error like this is there something that i do wrong p s i haven t done any customization to the code this code comes from baking cakephp version php version
1
374,592
11,092,877,737
IssuesEvent
2019-12-15 21:58:50
googleapis/nodejs-firestore
https://api.github.com/repos/googleapis/nodejs-firestore
closed
HUGE memory leak problem
external priority: p2 type: bug
#### Environment details - OS: Mac OS 10.15 Beta (19A573a) - Node.js version: v12.10.0 - npm version: 6.10.3 - `@google-cloud/firestore` version: 2.3.0 I'm still experiencing a memory leak potentially related to #661. The following is from my yarn.lock: ``` "@grpc/grpc-js@^0.5.2": version "0.5.2" resolved "https://registry.yarnpkg.com/@grpc/grpc-js/-/grpc-js-0.5.2.tgz#8e39876033749e1611fe9fa181d9535077805abe" integrity sha512-NE1tP/1AF6BqhLdILElnF7aOBfoky+4ZOdZU/0NmKo2d+9F9QD8zGoElpBk/5BfyQZ3u1Zs+wFbDOFpVUzDx1w== dependencies: semver "^6.0.0" "@grpc/proto-loader@^0.5.0", "@grpc/proto-loader@^0.5.1": version "0.5.1" resolved "https://registry.yarnpkg.com/@grpc/proto-loader/-/proto-loader-0.5.1.tgz#48492b53cdda353110b51a4b02f465974729c76f" integrity sha512-3y0FhacYAwWvyXshH18eDkUI40wT/uGio7MAegzY8lO5+wVsc19+1A7T0pPptae4kl7bdITL+0cHpnAPmryBjQ== dependencies: lodash.camelcase "^4.3.0" protobufjs "^6.8.6" ``` _Quick note: because of the grpc problems that keep appearing here, we should probably put grpc version as part of the issue template_ So it is clear that I'm actually using the "correct" grpc. My application makes many calls to firestore and I'm experiencing massive memory leaks. <img width="1673" alt="Screen Shot 2019-09-28 at 6 53 37 PM" src="https://user-images.githubusercontent.com/15133828/65825228-779fab00-e229-11e9-95c5-1c6b2c922ab3.png"> I'm not actually seeing the error message described previously (`MaxListenersExceededWarning`), however, the memory usage on my application slowly and steady is increasing. I've taken several heap snapshots from local tests over the course of several hours and when comparing snapshots from a few hours apart, I notice that the top culprits for memory allocations are all related to grpc. Here you can clearly see that the top 4 culprits for the memory delta between snapshots 12 and 4 are vastly more than everything else <img width="857" alt="Screen Shot 2019-09-28 at 7 08 24 PM" src="https://user-images.githubusercontent.com/15133828/65824794-59cf4780-e223-11e9-88d4-3b0838aac54f.png"> Here are the contents of each from largest to smallest: 1. (string): This by far is the fastest growing constructor. As you can see, there are 920k new allocations in the comparison between the two snapshots. Practically every single string here is `""(function anonymous( ) { return function BeginTransactionRequest(p){ if(p)for(var ks=Object.keys(p),i=0;i<ks.length;++i)if(p[ks[i]]!=null) this[ks[i]]=p[ks[i]] } })"`. And this all comes from `message.js:13`. This is a a file from the package `protobufjs` which is a dependency of grpc. <img width="1450" alt="Screen Shot 2019-09-28 at 7 47 17 PM" src="https://user-images.githubusercontent.com/15133828/65825180-c8fb6a80-e228-11e9-952b-4400fb90c1f9.png"> 2. (system): Essentially everything here seems to be coming from from the same `message.js:13`. <img width="1587" alt="Screen Shot 2019-09-28 at 7 29 51 PM" src="https://user-images.githubusercontent.com/15133828/65825014-7faa1b80-e226-11e9-80b7-f05ec9ac5071.png"> I also have tens of thousands of objects that look like this (from grpc) <img width="1154" alt="Screen Shot 2019-09-28 at 8 10 43 PM" src="https://user-images.githubusercontent.com/15133828/65825477-36f56100-e22c-11e9-9a3a-5b432c315114.png"> 3. (array): Practically every single array allocation here is a alloc size 32 and is linked to `type.js:31` and `namespace.js:95`, both of which are also part of protobufjs. <img width="1431" alt="Screen Shot 2019-09-28 at 8 18 42 PM" src="https://user-images.githubusercontent.com/15133828/65825569-2b566a00-e22d-11e9-83db-8246a84c5346.png"> "Field" is also related to the same line numbers and is actually directly linked to grpc <img width="1416" alt="Screen Shot 2019-09-28 at 8 20 38 PM" src="https://user-images.githubusercontent.com/15133828/65825584-76707d00-e22d-11e9-9e60-7370ee9b1574.png"> 4. Array: There are 235k of these and they all look the same - Array with an alloc size of 32 with some connection to grpc <img width="1600" alt="Screen Shot 2019-09-28 at 7 12 35 PM" src="https://user-images.githubusercontent.com/15133828/65824827-ff82b680-e223-11e9-8283-919e27cf25dd.png">
1.0
HUGE memory leak problem - #### Environment details - OS: Mac OS 10.15 Beta (19A573a) - Node.js version: v12.10.0 - npm version: 6.10.3 - `@google-cloud/firestore` version: 2.3.0 I'm still experiencing a memory leak potentially related to #661. The following is from my yarn.lock: ``` "@grpc/grpc-js@^0.5.2": version "0.5.2" resolved "https://registry.yarnpkg.com/@grpc/grpc-js/-/grpc-js-0.5.2.tgz#8e39876033749e1611fe9fa181d9535077805abe" integrity sha512-NE1tP/1AF6BqhLdILElnF7aOBfoky+4ZOdZU/0NmKo2d+9F9QD8zGoElpBk/5BfyQZ3u1Zs+wFbDOFpVUzDx1w== dependencies: semver "^6.0.0" "@grpc/proto-loader@^0.5.0", "@grpc/proto-loader@^0.5.1": version "0.5.1" resolved "https://registry.yarnpkg.com/@grpc/proto-loader/-/proto-loader-0.5.1.tgz#48492b53cdda353110b51a4b02f465974729c76f" integrity sha512-3y0FhacYAwWvyXshH18eDkUI40wT/uGio7MAegzY8lO5+wVsc19+1A7T0pPptae4kl7bdITL+0cHpnAPmryBjQ== dependencies: lodash.camelcase "^4.3.0" protobufjs "^6.8.6" ``` _Quick note: because of the grpc problems that keep appearing here, we should probably put grpc version as part of the issue template_ So it is clear that I'm actually using the "correct" grpc. My application makes many calls to firestore and I'm experiencing massive memory leaks. <img width="1673" alt="Screen Shot 2019-09-28 at 6 53 37 PM" src="https://user-images.githubusercontent.com/15133828/65825228-779fab00-e229-11e9-95c5-1c6b2c922ab3.png"> I'm not actually seeing the error message described previously (`MaxListenersExceededWarning`), however, the memory usage on my application slowly and steady is increasing. I've taken several heap snapshots from local tests over the course of several hours and when comparing snapshots from a few hours apart, I notice that the top culprits for memory allocations are all related to grpc. Here you can clearly see that the top 4 culprits for the memory delta between snapshots 12 and 4 are vastly more than everything else <img width="857" alt="Screen Shot 2019-09-28 at 7 08 24 PM" src="https://user-images.githubusercontent.com/15133828/65824794-59cf4780-e223-11e9-88d4-3b0838aac54f.png"> Here are the contents of each from largest to smallest: 1. (string): This by far is the fastest growing constructor. As you can see, there are 920k new allocations in the comparison between the two snapshots. Practically every single string here is `""(function anonymous( ) { return function BeginTransactionRequest(p){ if(p)for(var ks=Object.keys(p),i=0;i<ks.length;++i)if(p[ks[i]]!=null) this[ks[i]]=p[ks[i]] } })"`. And this all comes from `message.js:13`. This is a a file from the package `protobufjs` which is a dependency of grpc. <img width="1450" alt="Screen Shot 2019-09-28 at 7 47 17 PM" src="https://user-images.githubusercontent.com/15133828/65825180-c8fb6a80-e228-11e9-952b-4400fb90c1f9.png"> 2. (system): Essentially everything here seems to be coming from from the same `message.js:13`. <img width="1587" alt="Screen Shot 2019-09-28 at 7 29 51 PM" src="https://user-images.githubusercontent.com/15133828/65825014-7faa1b80-e226-11e9-80b7-f05ec9ac5071.png"> I also have tens of thousands of objects that look like this (from grpc) <img width="1154" alt="Screen Shot 2019-09-28 at 8 10 43 PM" src="https://user-images.githubusercontent.com/15133828/65825477-36f56100-e22c-11e9-9a3a-5b432c315114.png"> 3. (array): Practically every single array allocation here is a alloc size 32 and is linked to `type.js:31` and `namespace.js:95`, both of which are also part of protobufjs. <img width="1431" alt="Screen Shot 2019-09-28 at 8 18 42 PM" src="https://user-images.githubusercontent.com/15133828/65825569-2b566a00-e22d-11e9-83db-8246a84c5346.png"> "Field" is also related to the same line numbers and is actually directly linked to grpc <img width="1416" alt="Screen Shot 2019-09-28 at 8 20 38 PM" src="https://user-images.githubusercontent.com/15133828/65825584-76707d00-e22d-11e9-9e60-7370ee9b1574.png"> 4. Array: There are 235k of these and they all look the same - Array with an alloc size of 32 with some connection to grpc <img width="1600" alt="Screen Shot 2019-09-28 at 7 12 35 PM" src="https://user-images.githubusercontent.com/15133828/65824827-ff82b680-e223-11e9-8283-919e27cf25dd.png">
non_defect
huge memory leak problem environment details os mac os beta node js version npm version google cloud firestore version i m still experiencing a memory leak potentially related to the following is from my yarn lock grpc grpc js version resolved integrity dependencies semver grpc proto loader grpc proto loader version resolved integrity dependencies lodash camelcase protobufjs quick note because of the grpc problems that keep appearing here we should probably put grpc version as part of the issue template so it is clear that i m actually using the correct grpc my application makes many calls to firestore and i m experiencing massive memory leaks img width alt screen shot at pm src i m not actually seeing the error message described previously maxlistenersexceededwarning however the memory usage on my application slowly and steady is increasing i ve taken several heap snapshots from local tests over the course of several hours and when comparing snapshots from a few hours apart i notice that the top culprits for memory allocations are all related to grpc here you can clearly see that the top culprits for the memory delta between snapshots and are vastly more than everything else img width alt screen shot at pm src here are the contents of each from largest to smallest string this by far is the fastest growing constructor as you can see there are new allocations in the comparison between the two snapshots practically every single string here is function anonymous return function begintransactionrequest p if p for var ks object keys p i i ks length i if p null this p and this all comes from message js this is a a file from the package protobufjs which is a dependency of grpc img width alt screen shot at pm src system essentially everything here seems to be coming from from the same message js img width alt screen shot at pm src i also have tens of thousands of objects that look like this from grpc img width alt screen shot at pm src array practically every single array allocation here is a alloc size and is linked to type js and namespace js both of which are also part of protobufjs img width alt screen shot at pm src field is also related to the same line numbers and is actually directly linked to grpc img width alt screen shot at pm src array there are of these and they all look the same array with an alloc size of with some connection to grpc img width alt screen shot at pm src
0
12,143
7,794,394,017
IssuesEvent
2018-06-08 02:21:51
MarkBind/markbind
https://api.github.com/repos/MarkBind/markbind
closed
Delay loading results until the search terms are non-trivial
a-Performance c.Enhancement f-Search p.Low s.UnderDiscussion
Current: search results start loading as soon as the user types one char Suggested: wait until the search term is at least 3 chars long or there is a space Reason: this might alleviate the initial lag the user experience when searching
True
Delay loading results until the search terms are non-trivial - Current: search results start loading as soon as the user types one char Suggested: wait until the search term is at least 3 chars long or there is a space Reason: this might alleviate the initial lag the user experience when searching
non_defect
delay loading results until the search terms are non trivial current search results start loading as soon as the user types one char suggested wait until the search term is at least chars long or there is a space reason this might alleviate the initial lag the user experience when searching
0
395,435
27,069,668,071
IssuesEvent
2023-02-14 05:17:22
rainhu7/todo-app-repo
https://api.github.com/repos/rainhu7/todo-app-repo
reopened
todo app 요구사항 명세서 작성
documentation
### 만들고자 하는 기능이 무엇인가요? todo 생성 기능 ### 해당 기능을 구현하기 위해 할 일이 무엇인가요? 1. [] job1 2. []job2 3. []job3 ### 예상 작업 시간 3h
1.0
todo app 요구사항 명세서 작성 - ### 만들고자 하는 기능이 무엇인가요? todo 생성 기능 ### 해당 기능을 구현하기 위해 할 일이 무엇인가요? 1. [] job1 2. []job2 3. []job3 ### 예상 작업 시간 3h
non_defect
todo app 요구사항 명세서 작성 만들고자 하는 기능이 무엇인가요 todo 생성 기능 해당 기능을 구현하기 위해 할 일이 무엇인가요 예상 작업 시간
0