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
1k
labels
stringlengths
4
1.38k
body
stringlengths
1
262k
index
stringclasses
16 values
text_combine
stringlengths
96
262k
label
stringclasses
2 values
text
stringlengths
96
252k
binary_label
int64
0
1
78,307
27,421,344,607
IssuesEvent
2023-03-01 16:56:02
vector-im/element-x-ios
https://api.github.com/repos/vector-im/element-x-ios
closed
DMs don't show the avatar of the other member.
A-Room-List T-Defect X-Needs-Backend S-Minor O-Frequent
### Steps to reproduce 1. Start on the home screen. 2. Scroll down to a room that is a DM with someone else. ### Outcome #### What did you expect? That the room's icon, both on the home screen and the room screen's toolbar is the other user's avatar. #### What happened instead? The room's icon is the first letter of the room name. This has been discussed before and ideal should be sent in the Sliding Sync response at the same point that it computes the room's name. ### Your phone model iPhone 14 ### Operating system version iOS 16.3 ### Application version 1.0.23 TF ### Homeserver _No response_ ### Will you send logs? No
1.0
DMs don't show the avatar of the other member. - ### Steps to reproduce 1. Start on the home screen. 2. Scroll down to a room that is a DM with someone else. ### Outcome #### What did you expect? That the room's icon, both on the home screen and the room screen's toolbar is the other user's avatar. #### What happened instead? The room's icon is the first letter of the room name. This has been discussed before and ideal should be sent in the Sliding Sync response at the same point that it computes the room's name. ### Your phone model iPhone 14 ### Operating system version iOS 16.3 ### Application version 1.0.23 TF ### Homeserver _No response_ ### Will you send logs? No
non_priority
dms don t show the avatar of the other member steps to reproduce start on the home screen scroll down to a room that is a dm with someone else outcome what did you expect that the room s icon both on the home screen and the room screen s toolbar is the other user s avatar what happened instead the room s icon is the first letter of the room name this has been discussed before and ideal should be sent in the sliding sync response at the same point that it computes the room s name your phone model iphone operating system version ios application version tf homeserver no response will you send logs no
0
761,151
26,668,885,848
IssuesEvent
2023-01-26 08:24:22
wso2/api-manager
https://api.github.com/repos/wso2/api-manager
opened
APIM 4.2.0 Pre-Beta Testing
Type/Task Priority/Normal Component/APIM 4.2.0-beta
### Description Description This is to track the APIM 4.2.0 beta release testing progress of @Tharanidk Local Setup Tests - [ ] Pass a Custom Authorization Token to the Backend - [ ] Application properties - Creating a new version - [ ] Old API has no scopes - [ ] Old API has scopes - [ ] Open API 2 and 3 - [ ] API Key - [ ] Swagger/GraphqL to Postman Collection - [ ] Nested Commenting Feature - [ ] Advanced Configurations section for Admin portal - [ ] Third Party APIs - [ ] Operation Level Mediation Policy Support ### Affected Component APIM ### Version 4.2.0-beta ### Related Issues _No response_ ### Suggested Labels _No response_
1.0
APIM 4.2.0 Pre-Beta Testing - ### Description Description This is to track the APIM 4.2.0 beta release testing progress of @Tharanidk Local Setup Tests - [ ] Pass a Custom Authorization Token to the Backend - [ ] Application properties - Creating a new version - [ ] Old API has no scopes - [ ] Old API has scopes - [ ] Open API 2 and 3 - [ ] API Key - [ ] Swagger/GraphqL to Postman Collection - [ ] Nested Commenting Feature - [ ] Advanced Configurations section for Admin portal - [ ] Third Party APIs - [ ] Operation Level Mediation Policy Support ### Affected Component APIM ### Version 4.2.0-beta ### Related Issues _No response_ ### Suggested Labels _No response_
priority
apim pre beta testing description description this is to track the apim beta release testing progress of tharanidk local setup tests pass a custom authorization token to the backend application properties creating a new version old api has no scopes old api has scopes open api and api key swagger graphql to postman collection nested commenting feature advanced configurations section for admin portal third party apis operation level mediation policy support affected component apim version beta related issues no response suggested labels no response
1
16,017
2,870,251,728
IssuesEvent
2015-06-07 00:36:34
pdelia/away3d
https://api.github.com/repos/pdelia/away3d
closed
[Away3DLite] Collada script parsing timeouts on bone animated models
auto-migrated Priority-Medium Type-Defect
#70 Issue by __GoogleCodeExporter__, created on: 2015-04-24T07:51:34Z ``` What steps will reproduce the problem? 1. Export a large bone animated model (my example is 4500 faces/2600 verts) 2. Import with away3dlite What is the expected output? What do you see instead? I expected a model of this size to parse quickly enough to avoid triggering a player timeout. I am seeing: Error #1502: A script has executed for longer than the default timeout period of 15 seconds. What version of the product are you using? On what operating system? URL: http://away3d.googlecode.com/svn/trunk/fp10/Away3DLite/src/away3dlite Revision: 1945 Please provide any additional information below. As it turns out, the error is getting triggered in BonesAnimator.as:addSkinController() There is an On^2 search across the vertices each time the method is invoked, and this list can become large. I was able to eliminate this error in my case (and significantly reduce the overall parse time) by removing this search and replacing the skin vertices list with a dictionary lookup. In order to prevent the switch to a dictionary from degrading runtime performance, I also added a method to dump the collected values back into a Vector for fast iteration in update(). I have attached a patch against r1945 to illustrate. ``` Original issue reported on code.google.com by `ken.rai...@gmail.com` on 13 Oct 2009 at 11:30 Attachments: * [bones_animator.patch](https://storage.googleapis.com/google-code-attachments/away3d/issue-70/comment-0/bones_animator.patch)
1.0
[Away3DLite] Collada script parsing timeouts on bone animated models - #70 Issue by __GoogleCodeExporter__, created on: 2015-04-24T07:51:34Z ``` What steps will reproduce the problem? 1. Export a large bone animated model (my example is 4500 faces/2600 verts) 2. Import with away3dlite What is the expected output? What do you see instead? I expected a model of this size to parse quickly enough to avoid triggering a player timeout. I am seeing: Error #1502: A script has executed for longer than the default timeout period of 15 seconds. What version of the product are you using? On what operating system? URL: http://away3d.googlecode.com/svn/trunk/fp10/Away3DLite/src/away3dlite Revision: 1945 Please provide any additional information below. As it turns out, the error is getting triggered in BonesAnimator.as:addSkinController() There is an On^2 search across the vertices each time the method is invoked, and this list can become large. I was able to eliminate this error in my case (and significantly reduce the overall parse time) by removing this search and replacing the skin vertices list with a dictionary lookup. In order to prevent the switch to a dictionary from degrading runtime performance, I also added a method to dump the collected values back into a Vector for fast iteration in update(). I have attached a patch against r1945 to illustrate. ``` Original issue reported on code.google.com by `ken.rai...@gmail.com` on 13 Oct 2009 at 11:30 Attachments: * [bones_animator.patch](https://storage.googleapis.com/google-code-attachments/away3d/issue-70/comment-0/bones_animator.patch)
non_priority
collada script parsing timeouts on bone animated models issue by googlecodeexporter created on what steps will reproduce the problem export a large bone animated model my example is faces verts import with what is the expected output what do you see instead i expected a model of this size to parse quickly enough to avoid triggering a player timeout i am seeing error a script has executed for longer than the default timeout period of seconds what version of the product are you using on what operating system url revision please provide any additional information below as it turns out the error is getting triggered in bonesanimator as addskincontroller there is an on search across the vertices each time the method is invoked and this list can become large i was able to eliminate this error in my case and significantly reduce the overall parse time by removing this search and replacing the skin vertices list with a dictionary lookup in order to prevent the switch to a dictionary from degrading runtime performance i also added a method to dump the collected values back into a vector for fast iteration in update i have attached a patch against to illustrate original issue reported on code google com by ken rai gmail com on oct at attachments
0
2,060
2,523,031,468
IssuesEvent
2015-01-20 05:51:43
syl20bnr/spacemacs
https://api.github.com/repos/syl20bnr/spacemacs
closed
Local bindings overridden by evil-escape-key
bug :-( High Priority
In emacs state, `f` now appears to be universally bound to `evil-escape-emacs-state`. This overrides whatever the key is meant to be bound to. As a concrete example, in Magit, `f` is meant to fetch, but it is now overridden.
1.0
Local bindings overridden by evil-escape-key - In emacs state, `f` now appears to be universally bound to `evil-escape-emacs-state`. This overrides whatever the key is meant to be bound to. As a concrete example, in Magit, `f` is meant to fetch, but it is now overridden.
priority
local bindings overridden by evil escape key in emacs state f now appears to be universally bound to evil escape emacs state this overrides whatever the key is meant to be bound to as a concrete example in magit f is meant to fetch but it is now overridden
1
374,186
26,104,523,178
IssuesEvent
2022-12-27 11:28:42
ita-social-projects/GreenCity
https://api.github.com/repos/ita-social-projects/GreenCity
closed
[API] [Eco news] Lack of response 404 in Swagger when user wants to like eco news and enter invalid ID
Pri: low back-end Bug API Sev: trivial Create news Like News Documentation Econews
**Environment:** all **Reproducible:** always **Build found:** 18.08.2022 **Preconditions** Postman is opened Swagger is opened https://greencity.testgreencity.ga/swagger-ui.html#/ ( [/econews/like](https://greencity.testgreencity.ga/swagger-ui.html#/operations/eco-news-controller/likeUsingPOST_1)) **Steps to reproduce** 1. Write method POST greencity.testgreencity.ga/econews/like?id= 2. Enter invalid ID (for example "-53") 3. Send request **Actual result** The status code 404 (but we have not such in Swagger) **Expected result** Status code 404 exists in Swagger **Labels to be added** "Bug", Priority ("law: "), Severity ("trivial:"), Type ("Functional"), "API" (for back-end bugs).
1.0
[API] [Eco news] Lack of response 404 in Swagger when user wants to like eco news and enter invalid ID - **Environment:** all **Reproducible:** always **Build found:** 18.08.2022 **Preconditions** Postman is opened Swagger is opened https://greencity.testgreencity.ga/swagger-ui.html#/ ( [/econews/like](https://greencity.testgreencity.ga/swagger-ui.html#/operations/eco-news-controller/likeUsingPOST_1)) **Steps to reproduce** 1. Write method POST greencity.testgreencity.ga/econews/like?id= 2. Enter invalid ID (for example "-53") 3. Send request **Actual result** The status code 404 (but we have not such in Swagger) **Expected result** Status code 404 exists in Swagger **Labels to be added** "Bug", Priority ("law: "), Severity ("trivial:"), Type ("Functional"), "API" (for back-end bugs).
non_priority
lack of response in swagger when user wants to like eco news and enter invalid id environment all reproducible always build found preconditions postman is opened swagger is opened steps to reproduce write method post greencity testgreencity ga econews like id enter invalid id for example send request actual result the status code but we have not such in swagger expected result status code exists in swagger labels to be added bug priority law severity trivial type functional api for back end bugs
0
393,967
11,627,395,778
IssuesEvent
2020-02-27 16:27:53
pytorch/pytorch
https://api.github.com/repos/pytorch/pytorch
closed
Conda install from pytorch-nightly channel with cpu-only option delivers 1.3.1 version
high priority module: binaries triaged
## 🐛 Bug Conda install from pytorch-nightly channel with cpu-only options delivers 1.3.1 version instead of 1.5.0 (python 3.7) ## To Reproduce ``` user:/# python --version Python 3.7.5 user:/# conda install pytorch torchvision cpuonly -c pytorch-nightly The following packages will be downloaded: package | build ---------------------------|----------------- _pytorch_select-0.2 | gpu_0 2 KB cpuonly-1.0 | 0 2 KB pytorch-nightly cudatoolkit-10.0.130 | 0 261.2 MB cudnn-7.6.5 | cuda10.0_0 165.0 MB intel-openmp-2020.0 | 166 756 KB mkl-2020.0 | 166 128.9 MB numpy-1.18.1 | py37h4f9e942_0 5 KB numpy-base-1.18.1 | py37hde5b4d6_1 4.2 MB pytorch-1.3.1 |cuda100py37h53c1284_0 169.0 MB six-1.14.0 | py37_0 27 KB torchvision-0.4.2 |cuda100py37hecfc37a_0 6.4 MB ------------------------------------------------------------ Total: 735.4 MB ``` ## Expected behavior Conda should install 1.5.0 CPU-only version from pytorch-nightly channel. ## Environment - OS (e.g., Linux): Ubuntu - How you installed PyTorch (`conda`, `pip`, source): conda - Build command you used (if compiling from source): - Python version: 3.7. - CUDA/cuDNN version: No - GPU models and configuration: No - Any other relevant information: cc @ezyang @gchanan @zou3519 @seemethere PS: Ignite's CI relies on this. Cross-link: https://github.com/pytorch/ignite/pull/768#issuecomment-583444440
1.0
Conda install from pytorch-nightly channel with cpu-only option delivers 1.3.1 version - ## 🐛 Bug Conda install from pytorch-nightly channel with cpu-only options delivers 1.3.1 version instead of 1.5.0 (python 3.7) ## To Reproduce ``` user:/# python --version Python 3.7.5 user:/# conda install pytorch torchvision cpuonly -c pytorch-nightly The following packages will be downloaded: package | build ---------------------------|----------------- _pytorch_select-0.2 | gpu_0 2 KB cpuonly-1.0 | 0 2 KB pytorch-nightly cudatoolkit-10.0.130 | 0 261.2 MB cudnn-7.6.5 | cuda10.0_0 165.0 MB intel-openmp-2020.0 | 166 756 KB mkl-2020.0 | 166 128.9 MB numpy-1.18.1 | py37h4f9e942_0 5 KB numpy-base-1.18.1 | py37hde5b4d6_1 4.2 MB pytorch-1.3.1 |cuda100py37h53c1284_0 169.0 MB six-1.14.0 | py37_0 27 KB torchvision-0.4.2 |cuda100py37hecfc37a_0 6.4 MB ------------------------------------------------------------ Total: 735.4 MB ``` ## Expected behavior Conda should install 1.5.0 CPU-only version from pytorch-nightly channel. ## Environment - OS (e.g., Linux): Ubuntu - How you installed PyTorch (`conda`, `pip`, source): conda - Build command you used (if compiling from source): - Python version: 3.7. - CUDA/cuDNN version: No - GPU models and configuration: No - Any other relevant information: cc @ezyang @gchanan @zou3519 @seemethere PS: Ignite's CI relies on this. Cross-link: https://github.com/pytorch/ignite/pull/768#issuecomment-583444440
priority
conda install from pytorch nightly channel with cpu only option delivers version 🐛 bug conda install from pytorch nightly channel with cpu only options delivers version instead of python to reproduce user python version python user conda install pytorch torchvision cpuonly c pytorch nightly the following packages will be downloaded package build pytorch select gpu kb cpuonly kb pytorch nightly cudatoolkit mb cudnn mb intel openmp kb mkl mb numpy kb numpy base mb pytorch mb six kb torchvision mb total mb expected behavior conda should install cpu only version from pytorch nightly channel environment os e g linux ubuntu how you installed pytorch conda pip source conda build command you used if compiling from source python version cuda cudnn version no gpu models and configuration no any other relevant information cc ezyang gchanan seemethere ps ignite s ci relies on this cross link
1
523,674
15,187,603,871
IssuesEvent
2021-02-15 14:01:39
ethereum/sourcify
https://api.github.com/repos/ethereum/sourcify
opened
Hardhat deploy support
enhancement high priority
Hardhat still does not support deploying natively but there are some workarounds that make that possible. https://hardhat.org/guides/deploying.html We should support hardhat metadata and project structure because it is getting more popular.
1.0
Hardhat deploy support - Hardhat still does not support deploying natively but there are some workarounds that make that possible. https://hardhat.org/guides/deploying.html We should support hardhat metadata and project structure because it is getting more popular.
priority
hardhat deploy support hardhat still does not support deploying natively but there are some workarounds that make that possible we should support hardhat metadata and project structure because it is getting more popular
1
193,875
22,217,946,599
IssuesEvent
2022-06-08 05:02:33
istio/istio
https://api.github.com/repos/istio/istio
closed
Failing to fetch jwks when first request fails
area/networking area/security lifecycle/stale
### Bug Description **Descibe the bug** We have an issue using the jwksUri in the Request Authentication resource. When we deploy to new environment istiod tries to get the jwks before our authentication service that hosts the jwks is up. This leads to istiod failing to fetch the jwks from our authentication service and in turn use a cached empty jwk to distribute to the envoy sidecars. This means all jwt validation will fail until the istiod successfully fetches the jwk from the jwksUri and that takes at best 20 minutes but usually more. Istiod keep failing to send the requests even after the authentication service is up with the error shown in the log below. ``` 2022-02-18T11:36:54.335425Z error model Failed to fetch public key from "{jwksuri}": Get "{jwksuri}": dial tcp: lookup ... on 10.43.0.10:53: no such host 2022-02-18T11:36:54.335484Z error model Failed to fetch jwt public key from issuer "https://authentication.pr-7419.tst.iasystemet.se/", jwks uri "{jwksuri}": Get "{jwksuri}": dial tcp: lookup curity-runtime.ia-pr-7419-authentication.svc on 10.43.0.10:53: no such host 2022-02-18T11:36:54.335585Z error model Failed to fetch jwt public key from issuer "https://authentication.pr-7419.tst.iasystemet.se/", jwks uri "{jwksuri}": empty public key found in cache ``` How can we configure istiod to retry to get the jwks? ### Version ```prose Istio version: /usr/local/bin/pilot-discovery version version.BuildInfo{Version:"1.11.0", GitRevision:"57d639a4fd19ee8c3559b9a4032f91e4d23c6f14", GolangVersion:"go1.16.7", BuildStatus:"Clean", GitTag:"1.11.0"} kubectl version --short Client Version: v1.21.0 Server Version: v1.20.5 ``` ### Additional Information _No response_
True
Failing to fetch jwks when first request fails - ### Bug Description **Descibe the bug** We have an issue using the jwksUri in the Request Authentication resource. When we deploy to new environment istiod tries to get the jwks before our authentication service that hosts the jwks is up. This leads to istiod failing to fetch the jwks from our authentication service and in turn use a cached empty jwk to distribute to the envoy sidecars. This means all jwt validation will fail until the istiod successfully fetches the jwk from the jwksUri and that takes at best 20 minutes but usually more. Istiod keep failing to send the requests even after the authentication service is up with the error shown in the log below. ``` 2022-02-18T11:36:54.335425Z error model Failed to fetch public key from "{jwksuri}": Get "{jwksuri}": dial tcp: lookup ... on 10.43.0.10:53: no such host 2022-02-18T11:36:54.335484Z error model Failed to fetch jwt public key from issuer "https://authentication.pr-7419.tst.iasystemet.se/", jwks uri "{jwksuri}": Get "{jwksuri}": dial tcp: lookup curity-runtime.ia-pr-7419-authentication.svc on 10.43.0.10:53: no such host 2022-02-18T11:36:54.335585Z error model Failed to fetch jwt public key from issuer "https://authentication.pr-7419.tst.iasystemet.se/", jwks uri "{jwksuri}": empty public key found in cache ``` How can we configure istiod to retry to get the jwks? ### Version ```prose Istio version: /usr/local/bin/pilot-discovery version version.BuildInfo{Version:"1.11.0", GitRevision:"57d639a4fd19ee8c3559b9a4032f91e4d23c6f14", GolangVersion:"go1.16.7", BuildStatus:"Clean", GitTag:"1.11.0"} kubectl version --short Client Version: v1.21.0 Server Version: v1.20.5 ``` ### Additional Information _No response_
non_priority
failing to fetch jwks when first request fails bug description descibe the bug we have an issue using the jwksuri in the request authentication resource when we deploy to new environment istiod tries to get the jwks before our authentication service that hosts the jwks is up this leads to istiod failing to fetch the jwks from our authentication service and in turn use a cached empty jwk to distribute to the envoy sidecars this means all jwt validation will fail until the istiod successfully fetches the jwk from the jwksuri and that takes at best minutes but usually more istiod keep failing to send the requests even after the authentication service is up with the error shown in the log below error model failed to fetch public key from jwksuri get jwksuri dial tcp lookup on no such host error model failed to fetch jwt public key from issuer jwks uri jwksuri get jwksuri dial tcp lookup curity runtime ia pr authentication svc on no such host error model failed to fetch jwt public key from issuer jwks uri jwksuri empty public key found in cache how can we configure istiod to retry to get the jwks version prose istio version usr local bin pilot discovery version version buildinfo version gitrevision golangversion buildstatus clean gittag kubectl version short client version server version additional information no response
0
249,876
7,964,907,005
IssuesEvent
2018-07-14 00:31:22
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
USER ISSUE: Takes minutes to access chests or anything else with items in it
Medium Priority Optimization
**Version:** 0.7.2.5 beta **Steps to Reproduce:** Just click any chest e.g. **Expected behavior:** It should appear directly **Actual behavior:** Im waiting 10 seconds at least
1.0
USER ISSUE: Takes minutes to access chests or anything else with items in it - **Version:** 0.7.2.5 beta **Steps to Reproduce:** Just click any chest e.g. **Expected behavior:** It should appear directly **Actual behavior:** Im waiting 10 seconds at least
priority
user issue takes minutes to access chests or anything else with items in it version beta steps to reproduce just click any chest e g expected behavior it should appear directly actual behavior im waiting seconds at least
1
772,842
27,138,437,748
IssuesEvent
2023-02-16 14:47:45
consta-design-system/uikit
https://api.github.com/repos/consta-design-system/uikit
closed
Песочница к новым компонентам
docs feature 🔥🔥 priority
- [x] AutoComplete - [x] List - [x] MegaMenu - [x] useChoiceGroupIndexed - [x] useComponentBreakpoints - [x] reactSlickAdapter - [x] GlobalMenu - [x] NavBar - [x] BannerBar - [ ] ChoiceGroup (не та песочница)
1.0
Песочница к новым компонентам - - [x] AutoComplete - [x] List - [x] MegaMenu - [x] useChoiceGroupIndexed - [x] useComponentBreakpoints - [x] reactSlickAdapter - [x] GlobalMenu - [x] NavBar - [x] BannerBar - [ ] ChoiceGroup (не та песочница)
priority
песочница к новым компонентам autocomplete list megamenu usechoicegroupindexed usecomponentbreakpoints reactslickadapter globalmenu navbar bannerbar choicegroup не та песочница
1
94,944
3,933,558,069
IssuesEvent
2016-04-25 19:33:10
ghutchis/avogadro
https://api.github.com/repos/ghutchis/avogadro
closed
Molecules rendering as octahedra
auto-migrated low priority v_0.1.0
When opening a molecule as a .FChk file, the atoms no longer render as sphere in ball and stick mode, instead they're roughly icosahedral polyhedra. I've used this software to make publication quality orbital renderings in the past. I've attempted uninstalling and reinstalling without change. Cheers, Nick Reported by: *anonymous
1.0
Molecules rendering as octahedra - When opening a molecule as a .FChk file, the atoms no longer render as sphere in ball and stick mode, instead they're roughly icosahedral polyhedra. I've used this software to make publication quality orbital renderings in the past. I've attempted uninstalling and reinstalling without change. Cheers, Nick Reported by: *anonymous
priority
molecules rendering as octahedra when opening a molecule as a fchk file the atoms no longer render as sphere in ball and stick mode instead they re roughly icosahedral polyhedra i ve used this software to make publication quality orbital renderings in the past i ve attempted uninstalling and reinstalling without change cheers nick reported by anonymous
1
55,949
3,075,570,032
IssuesEvent
2015-08-20 14:19:39
RobotiumTech/robotium
https://api.github.com/repos/RobotiumTech/robotium
closed
Can't click on contextual actionbar overflow menu item
bug imported invalid Priority-Medium
_From [glamour....@gmail.com](https://code.google.com/u/118006805662722538912/) on March 30, 2014 04:02:08_ 1.I want to select "Delete" or any action from contextual actionbar overflow menu in my app to test. 2.I tried to use many functions: Solo.ClickOnMenuItem("Delete"); Solo.ClickOnText("Delete"); And sure I tried ClickOnView but all are not working. What Shall I do ?!! What version of the product are you using? On what operating system? Android 4.0.3 Please provide any additional information below. _Original issue: http://code.google.com/p/robotium/issues/detail?id=593_
1.0
Can't click on contextual actionbar overflow menu item - _From [glamour....@gmail.com](https://code.google.com/u/118006805662722538912/) on March 30, 2014 04:02:08_ 1.I want to select "Delete" or any action from contextual actionbar overflow menu in my app to test. 2.I tried to use many functions: Solo.ClickOnMenuItem("Delete"); Solo.ClickOnText("Delete"); And sure I tried ClickOnView but all are not working. What Shall I do ?!! What version of the product are you using? On what operating system? Android 4.0.3 Please provide any additional information below. _Original issue: http://code.google.com/p/robotium/issues/detail?id=593_
priority
can t click on contextual actionbar overflow menu item from on march i want to select delete or any action from contextual actionbar overflow menu in my app to test i tried to use many functions solo clickonmenuitem delete solo clickontext delete and sure i tried clickonview but all are not working what shall i do what version of the product are you using on what operating system android please provide any additional information below original issue
1
1,324
2,511,709,857
IssuesEvent
2015-01-14 10:34:41
PeaceGeeks/amani
https://api.github.com/repos/PeaceGeeks/amani
closed
Ajudst Partners logo size to accommodate different dims
Top Priority
'Lead Image' for Partners was square, but this was often not working well when it came to partners with very different logo dimensions. The preset was never wide enough and left blank space, which displays oddly on Amani views.
1.0
Ajudst Partners logo size to accommodate different dims - 'Lead Image' for Partners was square, but this was often not working well when it came to partners with very different logo dimensions. The preset was never wide enough and left blank space, which displays oddly on Amani views.
priority
ajudst partners logo size to accommodate different dims lead image for partners was square but this was often not working well when it came to partners with very different logo dimensions the preset was never wide enough and left blank space which displays oddly on amani views
1
348,507
31,623,124,221
IssuesEvent
2023-09-06 01:47:54
microsoft/AzureStorageExplorer
https://api.github.com/repos/microsoft/AzureStorageExplorer
closed
Nothing happens when clicking 'Manage Versions' action in the new ADLS Gen2 blob explorer
🧪 testing :gear: adls gen2
**Storage Explorer Version**: 1.32.0-dev (93) **Build Number**: 20230904.1 **Branch**: main **Platform/OS**: Windows 10/Linux Ubuntu 20.04/MacOS Ventura 13.5 (Apple M1 Pro) **Architecture**: x64/x64/x64 **How Found**: From running testing **Regression From**: Not a regression ## Steps to Reproduce ## 1. Expand one ADLS Gen2 storage account -> Blob Containers. 2. Right click one blob container -> Click 'Open Gen2 as Blob Explorer (test)'. 3. Upload one blob -> Right click the blob. 4. Click 'Manage History' -> Click 'Manage Versions'. 5. Check whether switches to versions view. ## Expected Experience ## Switch to versions view. ## Actual Experience ## Nothing happens.
1.0
Nothing happens when clicking 'Manage Versions' action in the new ADLS Gen2 blob explorer - **Storage Explorer Version**: 1.32.0-dev (93) **Build Number**: 20230904.1 **Branch**: main **Platform/OS**: Windows 10/Linux Ubuntu 20.04/MacOS Ventura 13.5 (Apple M1 Pro) **Architecture**: x64/x64/x64 **How Found**: From running testing **Regression From**: Not a regression ## Steps to Reproduce ## 1. Expand one ADLS Gen2 storage account -> Blob Containers. 2. Right click one blob container -> Click 'Open Gen2 as Blob Explorer (test)'. 3. Upload one blob -> Right click the blob. 4. Click 'Manage History' -> Click 'Manage Versions'. 5. Check whether switches to versions view. ## Expected Experience ## Switch to versions view. ## Actual Experience ## Nothing happens.
non_priority
nothing happens when clicking manage versions action in the new adls blob explorer storage explorer version dev build number branch main platform os windows linux ubuntu macos ventura apple pro architecture how found from running testing regression from not a regression steps to reproduce expand one adls storage account blob containers right click one blob container click open as blob explorer test upload one blob right click the blob click manage history click manage versions check whether switches to versions view expected experience switch to versions view actual experience nothing happens
0
14,917
2,611,044,078
IssuesEvent
2015-02-27 00:19:50
biocore/emperor
https://api.github.com/repos/biocore/emperor
closed
Compare plots fails if input directory contains files _other than_ pc.txt
bug CLI high-priority quick fix
For some reason, the transform coordinates file posted a "Icon?" file in the output directory, leading to the error: if not lines[0].startswith('pc vector number'): IndexError: list index out of range Removing the non _pc.txt files solves this.
1.0
Compare plots fails if input directory contains files _other than_ pc.txt - For some reason, the transform coordinates file posted a "Icon?" file in the output directory, leading to the error: if not lines[0].startswith('pc vector number'): IndexError: list index out of range Removing the non _pc.txt files solves this.
priority
compare plots fails if input directory contains files other than pc txt for some reason the transform coordinates file posted a icon file in the output directory leading to the error if not lines startswith pc vector number indexerror list index out of range removing the non pc txt files solves this
1
34,438
9,376,420,120
IssuesEvent
2019-04-04 07:54:18
Dreyri/matter
https://api.github.com/repos/Dreyri/matter
closed
Support CI again
bug build system
The old CI logo on the README is broken. It's getting to a point where this will eventually happen and the sooner the better, since the build system isn't changing and doing things by hand will be cumbersome in the future.
1.0
Support CI again - The old CI logo on the README is broken. It's getting to a point where this will eventually happen and the sooner the better, since the build system isn't changing and doing things by hand will be cumbersome in the future.
non_priority
support ci again the old ci logo on the readme is broken it s getting to a point where this will eventually happen and the sooner the better since the build system isn t changing and doing things by hand will be cumbersome in the future
0
460,362
13,208,665,774
IssuesEvent
2020-08-15 06:22:12
magento/adobe-stock-integration
https://api.github.com/repos/magento/adobe-stock-integration
closed
Placeholders correction
Priority: P1 Progress: dev in progress Severity: S1
- ui-select empty options placeholder should be corrected - keyword field placeholder should be corrected ### Steps to Reproduce 1 1. Open Media Gallery 2. Expand filter section 3. Open any ui-select filter ### Expected Result 1 Correct placeholder text is displayed when no options are loaded ### Steps to Reproduce 2 1. Open Media Gallery 2. Edit details for any image 3. See placeholder on the field preceding "Add New Tag" button ### Expected Result 2 The placeholder should be "New Tag" (instead of "New Keyword")
1.0
Placeholders correction - - ui-select empty options placeholder should be corrected - keyword field placeholder should be corrected ### Steps to Reproduce 1 1. Open Media Gallery 2. Expand filter section 3. Open any ui-select filter ### Expected Result 1 Correct placeholder text is displayed when no options are loaded ### Steps to Reproduce 2 1. Open Media Gallery 2. Edit details for any image 3. See placeholder on the field preceding "Add New Tag" button ### Expected Result 2 The placeholder should be "New Tag" (instead of "New Keyword")
priority
placeholders correction ui select empty options placeholder should be corrected keyword field placeholder should be corrected steps to reproduce open media gallery expand filter section open any ui select filter expected result correct placeholder text is displayed when no options are loaded steps to reproduce open media gallery edit details for any image see placeholder on the field preceding add new tag button expected result the placeholder should be new tag instead of new keyword
1
274,890
30,188,255,864
IssuesEvent
2023-07-04 13:34:22
gabriel-milan/denoising-autoencoder
https://api.github.com/repos/gabriel-milan/denoising-autoencoder
opened
CVE-2023-25675 (High) detected in tensorflow-2.5.0-cp37-cp37m-manylinux2010_x86_64.whl
Mend: dependency security vulnerability
## CVE-2023-25675 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>tensorflow-2.5.0-cp37-cp37m-manylinux2010_x86_64.whl</b></p></summary> <p>TensorFlow is an open source machine learning framework for everyone.</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/aa/fd/993aa1333eb54d9f000863fe8ec61e41d12eb833dea51484c76c038718b5/tensorflow-2.5.0-cp37-cp37m-manylinux2010_x86_64.whl">https://files.pythonhosted.org/packages/aa/fd/993aa1333eb54d9f000863fe8ec61e41d12eb833dea51484c76c038718b5/tensorflow-2.5.0-cp37-cp37m-manylinux2010_x86_64.whl</a></p> <p>Path to dependency file: /training/requirements.txt</p> <p>Path to vulnerable library: /training/requirements.txt</p> <p> Dependency Hierarchy: - :x: **tensorflow-2.5.0-cp37-cp37m-manylinux2010_x86_64.whl** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/gabriel-milan/denoising-autoencoder/commit/ee5b7840072a1fc880b0723210f781f0b23412df">ee5b7840072a1fc880b0723210f781f0b23412df</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> TensorFlow is an open source machine learning platform. When running versions prior to 2.12.0 and 2.11.1 with XLA, `tf.raw_ops.Bincount` segfaults when given a parameter `weights` that is neither the same shape as parameter `arr` nor a length-0 tensor. A fix is included in TensorFlow 2.12.0 and 2.11.1. <p>Publish Date: 2023-03-25 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-25675>CVE-2023-25675</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/tensorflow/tensorflow/security/advisories/GHSA-7x4v-9gxg-9hwj">https://github.com/tensorflow/tensorflow/security/advisories/GHSA-7x4v-9gxg-9hwj</a></p> <p>Release Date: 2023-03-24</p> <p>Fix Resolution: tensorflow - 2.11.1,2.12.0, tensorflow-cpu - 2.11.1,2.12.0, tensorflow-gpu - 2.11.1,2.12.0</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-2023-25675 (High) detected in tensorflow-2.5.0-cp37-cp37m-manylinux2010_x86_64.whl - ## CVE-2023-25675 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>tensorflow-2.5.0-cp37-cp37m-manylinux2010_x86_64.whl</b></p></summary> <p>TensorFlow is an open source machine learning framework for everyone.</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/aa/fd/993aa1333eb54d9f000863fe8ec61e41d12eb833dea51484c76c038718b5/tensorflow-2.5.0-cp37-cp37m-manylinux2010_x86_64.whl">https://files.pythonhosted.org/packages/aa/fd/993aa1333eb54d9f000863fe8ec61e41d12eb833dea51484c76c038718b5/tensorflow-2.5.0-cp37-cp37m-manylinux2010_x86_64.whl</a></p> <p>Path to dependency file: /training/requirements.txt</p> <p>Path to vulnerable library: /training/requirements.txt</p> <p> Dependency Hierarchy: - :x: **tensorflow-2.5.0-cp37-cp37m-manylinux2010_x86_64.whl** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/gabriel-milan/denoising-autoencoder/commit/ee5b7840072a1fc880b0723210f781f0b23412df">ee5b7840072a1fc880b0723210f781f0b23412df</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> TensorFlow is an open source machine learning platform. When running versions prior to 2.12.0 and 2.11.1 with XLA, `tf.raw_ops.Bincount` segfaults when given a parameter `weights` that is neither the same shape as parameter `arr` nor a length-0 tensor. A fix is included in TensorFlow 2.12.0 and 2.11.1. <p>Publish Date: 2023-03-25 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-25675>CVE-2023-25675</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/tensorflow/tensorflow/security/advisories/GHSA-7x4v-9gxg-9hwj">https://github.com/tensorflow/tensorflow/security/advisories/GHSA-7x4v-9gxg-9hwj</a></p> <p>Release Date: 2023-03-24</p> <p>Fix Resolution: tensorflow - 2.11.1,2.12.0, tensorflow-cpu - 2.11.1,2.12.0, tensorflow-gpu - 2.11.1,2.12.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_priority
cve high detected in tensorflow whl cve high severity vulnerability vulnerable library tensorflow whl tensorflow is an open source machine learning framework for everyone library home page a href path to dependency file training requirements txt path to vulnerable library training requirements txt dependency hierarchy x tensorflow whl vulnerable library found in head commit a href found in base branch master vulnerability details tensorflow is an open source machine learning platform when running versions prior to and with xla tf raw ops bincount segfaults when given a parameter weights that is neither the same shape as parameter arr nor a length tensor a fix is included in tensorflow and publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution tensorflow tensorflow cpu tensorflow gpu step up your open source security game with mend
0
654,468
21,653,265,228
IssuesEvent
2022-05-06 11:39:58
cjkrolak/ThermostatSupervisor
https://api.github.com/repos/cjkrolak/ThermostatSupervisor
opened
add verbosity toggle to util.is_host_on_local_net()
enhancement Priority-2
sht31_config is calling function during import and printing status of sht31 client even though other client is being used, add a verbosity flag to prevent confusing status messages from being printed.
1.0
add verbosity toggle to util.is_host_on_local_net() - sht31_config is calling function during import and printing status of sht31 client even though other client is being used, add a verbosity flag to prevent confusing status messages from being printed.
priority
add verbosity toggle to util is host on local net config is calling function during import and printing status of client even though other client is being used add a verbosity flag to prevent confusing status messages from being printed
1
711,797
24,475,615,417
IssuesEvent
2022-10-08 05:48:11
returntocorp/semgrep
https://api.github.com/repos/returntocorp/semgrep
closed
Permission denied when using semgrep docker image in pre-commit
priority:medium devops docker
``` [pad@thinkstation semgrep (precommit_jsonnet)]$ pre-commit run --verbose --hook-stage manual semgrep-docker-develop --all Semgrep Develop Python...................................................Failed - hook id: semgrep-docker-develop - duration: 10.98s - exit code: 1 ======= DEPRECATION WARNING ======= The returntocorp/semgrep Docker image's custom entrypoint will be removed by June 2022. Please update your command to explicitly call semgrep. Change from: docker run -v $(pwd):/src returntocorp/semgrep --config p/python --error cli/src/semgrep/formatter/base.py cli/src/semgrep/core_output.py cli/src/semgrep/verbose_logging.py cli/src/semgrep/target_manager.py cli/src/semgrep/bytesize.py perf/corpus.py Change to: docker run -v $(pwd):/src returntocorp/semgrep semgrep --config p/python --error cli/src/semgrep/formatter/base.py cli/src/semgrep/core_output.py cli/src/semgrep/verbose_logging.py cli/src/semgrep/target_manager.py cli/src/semgrep/bytesize.py perf/corpus.py Traceback (most recent call last): File "/usr/local/bin/semgrep", line 8, in <module> sys.exit(main()) File "/usr/local/lib/python3.10/site-packages/semgrep/__main__.py", line 8, in main cli() File "/usr/local/lib/python3.10/site-packages/click/core.py", line 1130, in __call__ return self.main(*args, **kwargs) File "/usr/local/lib/python3.10/site-packages/click/core.py", line 1055, in main rv = self.invoke(ctx) File "/usr/local/lib/python3.10/site-packages/click/core.py", line 1654, in invoke super().invoke(ctx) File "/usr/local/lib/python3.10/site-packages/click/core.py", line 1404, in invoke return ctx.invoke(self.callback, **ctx.params) File "/usr/local/lib/python3.10/site-packages/click/core.py", line 760, in invoke return __callback(*args, **kwargs) File "/usr/local/lib/python3.10/site-packages/click/decorators.py", line 26, in new_func return f(get_current_context(), *args, **kwargs) File "/usr/local/lib/python3.10/site-packages/semgrep/cli.py", line 58, in cli state = get_state() File "/usr/local/lib/python3.10/site-packages/semgrep/state.py", line 40, in get_state return ctx.ensure_object(SemgrepState) File "/usr/local/lib/python3.10/site-packages/click/core.py", line 638, in ensure_object self.obj = rv = object_type() File "<attrs generated init semgrep.state.SemgrepState>", line 26, in __init__ File "<attrs generated init semgrep.terminal.Terminal>", line 5, in __init__ File "/usr/local/lib/python3.10/site-packages/semgrep/terminal.py", line 24, in __attrs_post_init__ self.configure() File "/usr/local/lib/python3.10/site-packages/semgrep/terminal.py", line 62, in configure env.user_log_file.parent.mkdir(parents=True, exist_ok=True) File "/usr/local/lib/python3.10/pathlib.py", line 1175, in mkdir self._accessor.mkdir(self, mode) PermissionError: [Errno 13] Permission denied: '/.semgrep' ```
1.0
Permission denied when using semgrep docker image in pre-commit - ``` [pad@thinkstation semgrep (precommit_jsonnet)]$ pre-commit run --verbose --hook-stage manual semgrep-docker-develop --all Semgrep Develop Python...................................................Failed - hook id: semgrep-docker-develop - duration: 10.98s - exit code: 1 ======= DEPRECATION WARNING ======= The returntocorp/semgrep Docker image's custom entrypoint will be removed by June 2022. Please update your command to explicitly call semgrep. Change from: docker run -v $(pwd):/src returntocorp/semgrep --config p/python --error cli/src/semgrep/formatter/base.py cli/src/semgrep/core_output.py cli/src/semgrep/verbose_logging.py cli/src/semgrep/target_manager.py cli/src/semgrep/bytesize.py perf/corpus.py Change to: docker run -v $(pwd):/src returntocorp/semgrep semgrep --config p/python --error cli/src/semgrep/formatter/base.py cli/src/semgrep/core_output.py cli/src/semgrep/verbose_logging.py cli/src/semgrep/target_manager.py cli/src/semgrep/bytesize.py perf/corpus.py Traceback (most recent call last): File "/usr/local/bin/semgrep", line 8, in <module> sys.exit(main()) File "/usr/local/lib/python3.10/site-packages/semgrep/__main__.py", line 8, in main cli() File "/usr/local/lib/python3.10/site-packages/click/core.py", line 1130, in __call__ return self.main(*args, **kwargs) File "/usr/local/lib/python3.10/site-packages/click/core.py", line 1055, in main rv = self.invoke(ctx) File "/usr/local/lib/python3.10/site-packages/click/core.py", line 1654, in invoke super().invoke(ctx) File "/usr/local/lib/python3.10/site-packages/click/core.py", line 1404, in invoke return ctx.invoke(self.callback, **ctx.params) File "/usr/local/lib/python3.10/site-packages/click/core.py", line 760, in invoke return __callback(*args, **kwargs) File "/usr/local/lib/python3.10/site-packages/click/decorators.py", line 26, in new_func return f(get_current_context(), *args, **kwargs) File "/usr/local/lib/python3.10/site-packages/semgrep/cli.py", line 58, in cli state = get_state() File "/usr/local/lib/python3.10/site-packages/semgrep/state.py", line 40, in get_state return ctx.ensure_object(SemgrepState) File "/usr/local/lib/python3.10/site-packages/click/core.py", line 638, in ensure_object self.obj = rv = object_type() File "<attrs generated init semgrep.state.SemgrepState>", line 26, in __init__ File "<attrs generated init semgrep.terminal.Terminal>", line 5, in __init__ File "/usr/local/lib/python3.10/site-packages/semgrep/terminal.py", line 24, in __attrs_post_init__ self.configure() File "/usr/local/lib/python3.10/site-packages/semgrep/terminal.py", line 62, in configure env.user_log_file.parent.mkdir(parents=True, exist_ok=True) File "/usr/local/lib/python3.10/pathlib.py", line 1175, in mkdir self._accessor.mkdir(self, mode) PermissionError: [Errno 13] Permission denied: '/.semgrep' ```
priority
permission denied when using semgrep docker image in pre commit pre commit run verbose hook stage manual semgrep docker develop all semgrep develop python failed hook id semgrep docker develop duration exit code deprecation warning the returntocorp semgrep docker image s custom entrypoint will be removed by june please update your command to explicitly call semgrep change from docker run v pwd src returntocorp semgrep config p python error cli src semgrep formatter base py cli src semgrep core output py cli src semgrep verbose logging py cli src semgrep target manager py cli src semgrep bytesize py perf corpus py change to docker run v pwd src returntocorp semgrep semgrep config p python error cli src semgrep formatter base py cli src semgrep core output py cli src semgrep verbose logging py cli src semgrep target manager py cli src semgrep bytesize py perf corpus py traceback most recent call last file usr local bin semgrep line in sys exit main file usr local lib site packages semgrep main py line in main cli file usr local lib site packages click core py line in call return self main args kwargs file usr local lib site packages click core py line in main rv self invoke ctx file usr local lib site packages click core py line in invoke super invoke ctx file usr local lib site packages click core py line in invoke return ctx invoke self callback ctx params file usr local lib site packages click core py line in invoke return callback args kwargs file usr local lib site packages click decorators py line in new func return f get current context args kwargs file usr local lib site packages semgrep cli py line in cli state get state file usr local lib site packages semgrep state py line in get state return ctx ensure object semgrepstate file usr local lib site packages click core py line in ensure object self obj rv object type file line in init file line in init file usr local lib site packages semgrep terminal py line in attrs post init self configure file usr local lib site packages semgrep terminal py line in configure env user log file parent mkdir parents true exist ok true file usr local lib pathlib py line in mkdir self accessor mkdir self mode permissionerror permission denied semgrep
1
467,539
13,450,266,252
IssuesEvent
2020-09-08 18:14:39
scality/metalk8s
https://api.github.com/repos/scality/metalk8s
closed
Configure the node-exporter to get the metrics for partitioned disk
priority:high topic:monitoring
<!-- Please only use this template for submitting improvement requests, and make sure it is linked to the relevant GitHub Project. --> **Component**: <!-- E.g. 'salt', 'containers', 'kubernetes', 'build', 'tests'... --> **Why this is needed**: I would like to get the `IOPS/Throughput/Latency` for a specific `Volume`. But the metrics expose by Prometheus are the whole disk(device) before the partition. After the job done by #2615 I could be able to get the device name from `Volume status.` **What should be done**: Configure the node-exporter to expose the metric for the partitioned disk. **Implementation proposal** (strongly recommended): A workaround could be: 1. `kubectl get -n metalk8s-monitoring daemonset` 2. Edit `kubectl edit -n metalk8s-monitoring daemonset prometheus-operator-prometheus-node-exporter` 3. ` --collector.diskstats.ignored-devices="^(ram|fd|(h|s|v|xv)d[a-z]|nvme\\d+n\\d+p)$":` Update the regexp: ` --collector.diskstats.ignored-devices="^(ram|fd)\d+$"` **Test plan**: TBD
1.0
Configure the node-exporter to get the metrics for partitioned disk - <!-- Please only use this template for submitting improvement requests, and make sure it is linked to the relevant GitHub Project. --> **Component**: <!-- E.g. 'salt', 'containers', 'kubernetes', 'build', 'tests'... --> **Why this is needed**: I would like to get the `IOPS/Throughput/Latency` for a specific `Volume`. But the metrics expose by Prometheus are the whole disk(device) before the partition. After the job done by #2615 I could be able to get the device name from `Volume status.` **What should be done**: Configure the node-exporter to expose the metric for the partitioned disk. **Implementation proposal** (strongly recommended): A workaround could be: 1. `kubectl get -n metalk8s-monitoring daemonset` 2. Edit `kubectl edit -n metalk8s-monitoring daemonset prometheus-operator-prometheus-node-exporter` 3. ` --collector.diskstats.ignored-devices="^(ram|fd|(h|s|v|xv)d[a-z]|nvme\\d+n\\d+p)$":` Update the regexp: ` --collector.diskstats.ignored-devices="^(ram|fd)\d+$"` **Test plan**: TBD
priority
configure the node exporter to get the metrics for partitioned disk component why this is needed i would like to get the iops throughput latency for a specific volume but the metrics expose by prometheus are the whole disk device before the partition after the job done by i could be able to get the device name from volume status what should be done configure the node exporter to expose the metric for the partitioned disk implementation proposal strongly recommended a workaround could be kubectl get n monitoring daemonset edit kubectl edit n monitoring daemonset prometheus operator prometheus node exporter collector diskstats ignored devices ram fd h s v xv d nvme d n d p update the regexp collector diskstats ignored devices ram fd d test plan tbd
1
66,436
3,253,849,592
IssuesEvent
2015-10-19 20:55:36
washingtontrails/vms
https://api.github.com/repos/washingtontrails/vms
closed
Add Captcha tool to reduce chance of bots signing up for Work Parties
Enhancement High Priority Pyramid Reviewing VMS BUDGET
We need to add a re-Captcha tool to the WP Registration form to reduce change of BOTS signing up for Work Parties. Note that we are not using this when a My Backpack is created. Just add for the Guest registration page.
1.0
Add Captcha tool to reduce chance of bots signing up for Work Parties - We need to add a re-Captcha tool to the WP Registration form to reduce change of BOTS signing up for Work Parties. Note that we are not using this when a My Backpack is created. Just add for the Guest registration page.
priority
add captcha tool to reduce chance of bots signing up for work parties we need to add a re captcha tool to the wp registration form to reduce change of bots signing up for work parties note that we are not using this when a my backpack is created just add for the guest registration page
1
19,314
3,758,362,986
IssuesEvent
2016-03-14 08:31:54
voxpupuli/puppet-corosync
https://api.github.com/repos/voxpupuli/puppet-corosync
closed
Beaker tests results are irrelevant
tests-fail
When PCCI runs the tests it first send a failure because tests fail on Centos then it sends a success because tests work on Ubuntu and we only see the Ubuntu success at the end.
1.0
Beaker tests results are irrelevant - When PCCI runs the tests it first send a failure because tests fail on Centos then it sends a success because tests work on Ubuntu and we only see the Ubuntu success at the end.
non_priority
beaker tests results are irrelevant when pcci runs the tests it first send a failure because tests fail on centos then it sends a success because tests work on ubuntu and we only see the ubuntu success at the end
0
8,354
3,725,464,218
IssuesEvent
2016-03-05 01:33:50
phetsims/rutherford-scattering
https://api.github.com/repos/phetsims/rutherford-scattering
opened
delete unused dispose
dev:code-review
Related to #30 (code review). It looks like instances of RutherfordAtomNode and RSBaseModel exist for the lifetime of the sim, and their `dispose` functions are never exercised. If that's indeed the case, then recommend to delete code related to dispose, and simply add a comment that instances of these types exist for the lifetime of the sim. In general: • For common code, always implement `dispose`, unless you are implement something that can only exist for the lifetime of the sim. • For sim-specific code, implement `dispose` only for types that don't exist for the lifetime of the sim. Otherwise you're writing code unnecessary code that's never exercised and therefore never tested.
1.0
delete unused dispose - Related to #30 (code review). It looks like instances of RutherfordAtomNode and RSBaseModel exist for the lifetime of the sim, and their `dispose` functions are never exercised. If that's indeed the case, then recommend to delete code related to dispose, and simply add a comment that instances of these types exist for the lifetime of the sim. In general: • For common code, always implement `dispose`, unless you are implement something that can only exist for the lifetime of the sim. • For sim-specific code, implement `dispose` only for types that don't exist for the lifetime of the sim. Otherwise you're writing code unnecessary code that's never exercised and therefore never tested.
non_priority
delete unused dispose related to code review it looks like instances of rutherfordatomnode and rsbasemodel exist for the lifetime of the sim and their dispose functions are never exercised if that s indeed the case then recommend to delete code related to dispose and simply add a comment that instances of these types exist for the lifetime of the sim in general • for common code always implement dispose unless you are implement something that can only exist for the lifetime of the sim • for sim specific code implement dispose only for types that don t exist for the lifetime of the sim otherwise you re writing code unnecessary code that s never exercised and therefore never tested
0
298,393
9,199,646,280
IssuesEvent
2019-03-07 15:22:48
bdecon/econ_data
https://api.github.com/repos/bdecon/econ_data
opened
bd CPS: reader switch to use outside .py file to check/prepare data
enhancement priority:low
`bd_CPS_reader.ipynb` has become too long and is set to get longer when the IND and OCC variables are complete. It might be better to switch to a system that has a .py script with tons of functions and uses them to check whether the data and background materials are ready (and if they are not, to prepare them). This would save me some steps and make the programs easier for someone else to use. Long-term/ low-priority.
1.0
bd CPS: reader switch to use outside .py file to check/prepare data - `bd_CPS_reader.ipynb` has become too long and is set to get longer when the IND and OCC variables are complete. It might be better to switch to a system that has a .py script with tons of functions and uses them to check whether the data and background materials are ready (and if they are not, to prepare them). This would save me some steps and make the programs easier for someone else to use. Long-term/ low-priority.
priority
bd cps reader switch to use outside py file to check prepare data bd cps reader ipynb has become too long and is set to get longer when the ind and occ variables are complete it might be better to switch to a system that has a py script with tons of functions and uses them to check whether the data and background materials are ready and if they are not to prepare them this would save me some steps and make the programs easier for someone else to use long term low priority
1
639,333
20,751,488,701
IssuesEvent
2022-03-15 08:05:13
bounswe/bounswe2022group4
https://api.github.com/repos/bounswe/bounswe2022group4
closed
Listing security requirements for system requirements
Priority - Medium Status: Review Needed Status: In Progress Difficulty - Easy
Security requirements for the system will be listed.
1.0
Listing security requirements for system requirements - Security requirements for the system will be listed.
priority
listing security requirements for system requirements security requirements for the system will be listed
1
17,083
23,585,058,359
IssuesEvent
2022-08-23 10:53:22
Jon-Kle/DB-Manager
https://api.github.com/repos/Jon-Kle/DB-Manager
opened
windows consol has two cursors after restarting
bug compatibility
when I open the projekt in windows consol and use the restart command you now have the normal "cursor" after ---(DB-Manager)> | but also next line open in the middle but in the position where my parh from the Projekt would end. ![image](https://user-images.githubusercontent.com/104869480/186139010-45aab226-894f-45cf-80b9-1cdba3f9a979.png) So boath are aktiv at the same time. Idk When I try to tab complete it show the DB-manager command! Pritty much its messed up. If you ctro+c you can get this error message: ```Traceback (most recent call last): File "C:\Users\Leander\Desktop\Wetterstation Projekt\DB-Manager\src\main.py", line 1139, in <module> cli.cmdloop() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.10_3.10.1776.0_x64__qbz5n2kfra8p0\lib\cmd.py", line 126, in cmdloop line = input(self.prompt) KeyboardInterrupt```
True
windows consol has two cursors after restarting - when I open the projekt in windows consol and use the restart command you now have the normal "cursor" after ---(DB-Manager)> | but also next line open in the middle but in the position where my parh from the Projekt would end. ![image](https://user-images.githubusercontent.com/104869480/186139010-45aab226-894f-45cf-80b9-1cdba3f9a979.png) So boath are aktiv at the same time. Idk When I try to tab complete it show the DB-manager command! Pritty much its messed up. If you ctro+c you can get this error message: ```Traceback (most recent call last): File "C:\Users\Leander\Desktop\Wetterstation Projekt\DB-Manager\src\main.py", line 1139, in <module> cli.cmdloop() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.10_3.10.1776.0_x64__qbz5n2kfra8p0\lib\cmd.py", line 126, in cmdloop line = input(self.prompt) KeyboardInterrupt```
non_priority
windows consol has two cursors after restarting when i open the projekt in windows consol and use the restart command you now have the normal cursor after db manager but also next line open in the middle but in the position where my parh from the projekt would end so boath are aktiv at the same time idk when i try to tab complete it show the db manager command pritty much its messed up if you ctro c you can get this error message traceback most recent call last file c users leander desktop wetterstation projekt db manager src main py line in cli cmdloop file c program files windowsapps pythonsoftwarefoundation python lib cmd py line in cmdloop line input self prompt keyboardinterrupt
0
485,236
13,963,002,984
IssuesEvent
2020-10-25 12:16:46
AY2021S1-CS2103-T16-3/tp
https://api.github.com/repos/AY2021S1-CS2103-T16-3/tp
closed
Allow user to view rooms and students side by side
priority.Medium
This will make it easier for users to add room allocations.
1.0
Allow user to view rooms and students side by side - This will make it easier for users to add room allocations.
priority
allow user to view rooms and students side by side this will make it easier for users to add room allocations
1
693,990
23,798,127,335
IssuesEvent
2022-09-02 23:14:18
bcgov/foi-flow
https://api.github.com/repos/bcgov/foi-flow
opened
AXIS 10.7 Upgrade on Last week of September!
devops Task high priority
Title of ticket: #### Description AXIS 10.7 Upgrade on Last week of September! #### Dependencies Are there any dependencies? #### DOD - [ ] SSIS , ETL UDPATE required? - [ ] AXIS Sync API updates- Do we? No!!? - [ ] Test on DEv, TEST environments - [ ] All Sync up done with IMB, Business
1.0
AXIS 10.7 Upgrade on Last week of September! - Title of ticket: #### Description AXIS 10.7 Upgrade on Last week of September! #### Dependencies Are there any dependencies? #### DOD - [ ] SSIS , ETL UDPATE required? - [ ] AXIS Sync API updates- Do we? No!!? - [ ] Test on DEv, TEST environments - [ ] All Sync up done with IMB, Business
priority
axis upgrade on last week of september title of ticket description axis upgrade on last week of september dependencies are there any dependencies dod ssis etl udpate required axis sync api updates do we no test on dev test environments all sync up done with imb business
1
89,696
11,274,263,930
IssuesEvent
2020-01-14 18:11:40
phetsims/natural-selection
https://api.github.com/repos/phetsims/natural-selection
closed
requirements for "Values Marker"
design:general
The Population graph has a "Values Marker", which displays the values for each plot at a position on the x (Generation) axis. This feature is underspecified in the design doc, and we haven't made progress discussing it via comments in the design doc, so I'm creating this issue. Here's the most recent mockup from the design doc, for context: <img width="661" alt="screenshot_1696" src="https://user-images.githubusercontent.com/3046552/68796404-087eea00-0610-11ea-83e3-f012c142d2a1.png"> Notes in the design doc that have not been resolved, with my questions: - [x] 8/7/2019 meeting notes: Keep option to swipe to previous generation- need to figure out how the picture updates (or doesn’t). Need to figure out if we want to also include. _@pixelzoom: What does "swipe to previous generation" mean? Are we doing this?_ **This is about the Proportion view, ignore.** - [x] 8/14/2019 meeting notes: Do we want the values marker to snap to certain points? Maybe we can add little dots where those points are. _@pixelzoom: Are we doing this?_ **We are not doing this.** - [x] 8/21/2019 meeting notes: What happens to the marker when we drag the graph? Does it stick on the generation, or stick on the graph? We like the idea of it sticking to the generation, and if it gets to the edge of the graph, at that point it sticks to the graph (in this case, on generation 7) _@pixelzoom: This the first reference I've seen to being able to "drag the graph". What does this mean? And how does it stick to (e.g.) generation 7 when that x-axis value is no longer visible?_ **Ignore this, there is no dragging of the graph. And marker will not stick to a value, it will stick to a screen location.** - [x] 10/11/19 comment thread attached to "The values marker can go as far as the current line for generation 7". CM: I'm not clear on this. Are you saying that the Values Marker can only be moved as far right as the rightmost generation shown on the graph? (which happens to be 7 in this mockup). Is this so that the values displayed on the marker stay inside the graph bounds? AM: yes, we want the values inside the graph bounds. Upon reading your question, I realize this constraint limits the data the user can actually read. Could you have the flags flip to the other side of the marker? CM:Yes, values ("flags") could move to the left or right side of the marker as space permits. _@pixelzoom: Are we flipping which side of the marker values are displayed on at the left/right edges of the graph?_ **Marker will stick to a screen location, not an x-axis value.** - [ ] 10/14/19 comment thread attached to "the side arrow", asking about what happens when the Value Marker's position goes off the graph. CM: What happens to the Value Marker when pressing one of the arrows would move the marker's location off the graph? Same question for when the sim is playing, and the Value Marker's position would no longer be visible on the graph. Perhaps the Values Marker stays at a generation value until that value is no longer on the graph, and then stay stuck to the left/right of the graph if the generation value goes off-graph? AM: the values marker sticks to that location (previous sentence in this paragraph). I would like to consider the possibility of having the marker be allowed to be anywhere on the graph, not constrained at the "generation 7" line, so if we can flip the flags then the marker can scan the entire graph. CM: Let me try to clarify... If the marker is at "7", and pressing one of the arrow buttons causes "7" to go outside the visible bounds of the graph, what happens to the value marker? If it stays stuck to location "7" (as you've said), them it will not be visible and the user won't be able to use it (or drag it) until they make it visible again with the arrow buttons. _@pixelzoom: What do we do when the graph x-axis scrolls (either as the sim runs, or the user presses one of the arrow buttons), and the x value that the Value Marker is on is no longer visible on the graph?_ **Marker will stick to a screen location, not an x-axis value.**
1.0
requirements for "Values Marker" - The Population graph has a "Values Marker", which displays the values for each plot at a position on the x (Generation) axis. This feature is underspecified in the design doc, and we haven't made progress discussing it via comments in the design doc, so I'm creating this issue. Here's the most recent mockup from the design doc, for context: <img width="661" alt="screenshot_1696" src="https://user-images.githubusercontent.com/3046552/68796404-087eea00-0610-11ea-83e3-f012c142d2a1.png"> Notes in the design doc that have not been resolved, with my questions: - [x] 8/7/2019 meeting notes: Keep option to swipe to previous generation- need to figure out how the picture updates (or doesn’t). Need to figure out if we want to also include. _@pixelzoom: What does "swipe to previous generation" mean? Are we doing this?_ **This is about the Proportion view, ignore.** - [x] 8/14/2019 meeting notes: Do we want the values marker to snap to certain points? Maybe we can add little dots where those points are. _@pixelzoom: Are we doing this?_ **We are not doing this.** - [x] 8/21/2019 meeting notes: What happens to the marker when we drag the graph? Does it stick on the generation, or stick on the graph? We like the idea of it sticking to the generation, and if it gets to the edge of the graph, at that point it sticks to the graph (in this case, on generation 7) _@pixelzoom: This the first reference I've seen to being able to "drag the graph". What does this mean? And how does it stick to (e.g.) generation 7 when that x-axis value is no longer visible?_ **Ignore this, there is no dragging of the graph. And marker will not stick to a value, it will stick to a screen location.** - [x] 10/11/19 comment thread attached to "The values marker can go as far as the current line for generation 7". CM: I'm not clear on this. Are you saying that the Values Marker can only be moved as far right as the rightmost generation shown on the graph? (which happens to be 7 in this mockup). Is this so that the values displayed on the marker stay inside the graph bounds? AM: yes, we want the values inside the graph bounds. Upon reading your question, I realize this constraint limits the data the user can actually read. Could you have the flags flip to the other side of the marker? CM:Yes, values ("flags") could move to the left or right side of the marker as space permits. _@pixelzoom: Are we flipping which side of the marker values are displayed on at the left/right edges of the graph?_ **Marker will stick to a screen location, not an x-axis value.** - [ ] 10/14/19 comment thread attached to "the side arrow", asking about what happens when the Value Marker's position goes off the graph. CM: What happens to the Value Marker when pressing one of the arrows would move the marker's location off the graph? Same question for when the sim is playing, and the Value Marker's position would no longer be visible on the graph. Perhaps the Values Marker stays at a generation value until that value is no longer on the graph, and then stay stuck to the left/right of the graph if the generation value goes off-graph? AM: the values marker sticks to that location (previous sentence in this paragraph). I would like to consider the possibility of having the marker be allowed to be anywhere on the graph, not constrained at the "generation 7" line, so if we can flip the flags then the marker can scan the entire graph. CM: Let me try to clarify... If the marker is at "7", and pressing one of the arrow buttons causes "7" to go outside the visible bounds of the graph, what happens to the value marker? If it stays stuck to location "7" (as you've said), them it will not be visible and the user won't be able to use it (or drag it) until they make it visible again with the arrow buttons. _@pixelzoom: What do we do when the graph x-axis scrolls (either as the sim runs, or the user presses one of the arrow buttons), and the x value that the Value Marker is on is no longer visible on the graph?_ **Marker will stick to a screen location, not an x-axis value.**
non_priority
requirements for values marker the population graph has a values marker which displays the values for each plot at a position on the x generation axis this feature is underspecified in the design doc and we haven t made progress discussing it via comments in the design doc so i m creating this issue here s the most recent mockup from the design doc for context img width alt screenshot src notes in the design doc that have not been resolved with my questions meeting notes keep option to swipe to previous generation need to figure out how the picture updates or doesn’t need to figure out if we want to also include pixelzoom what does swipe to previous generation mean are we doing this this is about the proportion view ignore meeting notes do we want the values marker to snap to certain points maybe we can add little dots where those points are pixelzoom are we doing this we are not doing this meeting notes what happens to the marker when we drag the graph does it stick on the generation or stick on the graph we like the idea of it sticking to the generation and if it gets to the edge of the graph at that point it sticks to the graph in this case on generation pixelzoom this the first reference i ve seen to being able to drag the graph what does this mean and how does it stick to e g generation when that x axis value is no longer visible ignore this there is no dragging of the graph and marker will not stick to a value it will stick to a screen location comment thread attached to the values marker can go as far as the current line for generation cm i m not clear on this are you saying that the values marker can only be moved as far right as the rightmost generation shown on the graph which happens to be in this mockup is this so that the values displayed on the marker stay inside the graph bounds am yes we want the values inside the graph bounds upon reading your question i realize this constraint limits the data the user can actually read could you have the flags flip to the other side of the marker cm yes values flags could move to the left or right side of the marker as space permits pixelzoom are we flipping which side of the marker values are displayed on at the left right edges of the graph marker will stick to a screen location not an x axis value comment thread attached to the side arrow asking about what happens when the value marker s position goes off the graph cm what happens to the value marker when pressing one of the arrows would move the marker s location off the graph same question for when the sim is playing and the value marker s position would no longer be visible on the graph perhaps the values marker stays at a generation value until that value is no longer on the graph and then stay stuck to the left right of the graph if the generation value goes off graph am the values marker sticks to that location previous sentence in this paragraph i would like to consider the possibility of having the marker be allowed to be anywhere on the graph not constrained at the generation line so if we can flip the flags then the marker can scan the entire graph cm let me try to clarify if the marker is at and pressing one of the arrow buttons causes to go outside the visible bounds of the graph what happens to the value marker if it stays stuck to location as you ve said them it will not be visible and the user won t be able to use it or drag it until they make it visible again with the arrow buttons pixelzoom what do we do when the graph x axis scrolls either as the sim runs or the user presses one of the arrow buttons and the x value that the value marker is on is no longer visible on the graph marker will stick to a screen location not an x axis value
0
155,444
24,466,191,793
IssuesEvent
2022-10-07 15:12:41
Badger-Finance/v2-ui
https://api.github.com/repos/Badger-Finance/v2-ui
closed
feat: Analytics site (Mainnet & Arbitrum metrics)
enhancement on hold design
## Summary The general idea is to consolidate a wide single source of data in our site (i.e: `https://app.badger.com/analyticis` unless that architecture wise is better to have a completely different site), which will serve users and internal members to have a peak of the most relevant metrics around setts, emissions, harvest health, ops cost and treasury positions. ## Requirements 1. Treasury - Visualize treasury holdings on each of the relevant msig (where is located, token, amount) - Historical profit of the treasury, accrued and current claimable yield (expressed in dollar denomination) - Allow inspection per individual msig/contract, for granularity 2. Operations cost - Total ops cost breakdown in different time frames (1d, 1w, 1m) - Ops breakdown by: tree, harvest tx and msig cost. 3. Harvest performance. Similar info as [bounty site](https://badger-dao-analytics.herokuapp.com/) - Tx breakdown of asset sent to tree and msig (perf fee gov) - Allow csv generation of the table data (for specific timeframe explored). Weekly, monthly, quarterly and yearly - Gas spent per tx - Calc comparison between amount harvested vs gas cost - Contain information on both: dollar denomination and raw token amounts for references 4. Emissions schedules historical - Present schedules in table format, properly formatted units and dates. Content similar as [csv](https://docs.google.com/spreadsheets/d/1_QvMZQTR4un78rmgAub2-3pzL-OtuGktkNkO1aYI7f0/edit#gid=1357326547) - Expose total breakdown per sett & token in different timeframes (1w, 1m ,1q) - Allow downloading from UI the CSV table content for exploration 5. Sett tx history overview - Identify action type (deposit or withdraw) - Show amounts (also dollar value at the block height) - Anchor tag to tx hash, account and time (similar columns as tx in uniswap info site for [transaction section](https://info.uniswap.org/#/pools/0xe15e6583425700993bd08f51bf6e7b73cd5da91b) ## Documentation General scope: https://docs.google.com/document/d/19SwDOtfWQ3GaMxF3A-Vin-ymIhn828PM9qugJEuM7W8/edit Endpoint architecture: TBD ## Tasks - [ ] Create endpoint architecture - [ ] Validity of data and accuracy - [ ] Mock-up designs - [ ] F/e integration with endpoints after design deliverables
1.0
feat: Analytics site (Mainnet & Arbitrum metrics) - ## Summary The general idea is to consolidate a wide single source of data in our site (i.e: `https://app.badger.com/analyticis` unless that architecture wise is better to have a completely different site), which will serve users and internal members to have a peak of the most relevant metrics around setts, emissions, harvest health, ops cost and treasury positions. ## Requirements 1. Treasury - Visualize treasury holdings on each of the relevant msig (where is located, token, amount) - Historical profit of the treasury, accrued and current claimable yield (expressed in dollar denomination) - Allow inspection per individual msig/contract, for granularity 2. Operations cost - Total ops cost breakdown in different time frames (1d, 1w, 1m) - Ops breakdown by: tree, harvest tx and msig cost. 3. Harvest performance. Similar info as [bounty site](https://badger-dao-analytics.herokuapp.com/) - Tx breakdown of asset sent to tree and msig (perf fee gov) - Allow csv generation of the table data (for specific timeframe explored). Weekly, monthly, quarterly and yearly - Gas spent per tx - Calc comparison between amount harvested vs gas cost - Contain information on both: dollar denomination and raw token amounts for references 4. Emissions schedules historical - Present schedules in table format, properly formatted units and dates. Content similar as [csv](https://docs.google.com/spreadsheets/d/1_QvMZQTR4un78rmgAub2-3pzL-OtuGktkNkO1aYI7f0/edit#gid=1357326547) - Expose total breakdown per sett & token in different timeframes (1w, 1m ,1q) - Allow downloading from UI the CSV table content for exploration 5. Sett tx history overview - Identify action type (deposit or withdraw) - Show amounts (also dollar value at the block height) - Anchor tag to tx hash, account and time (similar columns as tx in uniswap info site for [transaction section](https://info.uniswap.org/#/pools/0xe15e6583425700993bd08f51bf6e7b73cd5da91b) ## Documentation General scope: https://docs.google.com/document/d/19SwDOtfWQ3GaMxF3A-Vin-ymIhn828PM9qugJEuM7W8/edit Endpoint architecture: TBD ## Tasks - [ ] Create endpoint architecture - [ ] Validity of data and accuracy - [ ] Mock-up designs - [ ] F/e integration with endpoints after design deliverables
non_priority
feat analytics site mainnet arbitrum metrics summary the general idea is to consolidate a wide single source of data in our site i e unless that architecture wise is better to have a completely different site which will serve users and internal members to have a peak of the most relevant metrics around setts emissions harvest health ops cost and treasury positions requirements treasury visualize treasury holdings on each of the relevant msig where is located token amount historical profit of the treasury accrued and current claimable yield expressed in dollar denomination allow inspection per individual msig contract for granularity operations cost total ops cost breakdown in different time frames ops breakdown by tree harvest tx and msig cost harvest performance similar info as tx breakdown of asset sent to tree and msig perf fee gov allow csv generation of the table data for specific timeframe explored weekly monthly quarterly and yearly gas spent per tx calc comparison between amount harvested vs gas cost contain information on both dollar denomination and raw token amounts for references emissions schedules historical present schedules in table format properly formatted units and dates content similar as expose total breakdown per sett token in different timeframes allow downloading from ui the csv table content for exploration sett tx history overview identify action type deposit or withdraw show amounts also dollar value at the block height anchor tag to tx hash account and time similar columns as tx in uniswap info site for documentation general scope endpoint architecture tbd tasks create endpoint architecture validity of data and accuracy mock up designs f e integration with endpoints after design deliverables
0
734,036
25,336,398,366
IssuesEvent
2022-11-18 17:12:27
kubernetes/release
https://api.github.com/repos/kubernetes/release
closed
ci-signal-reporter, Store CI Signal report artifacts
kind/feature lifecycle/rotten needs-priority
:green_circle: ci-signal-report-cli **Summary:** Store Ci Signal reports in a repository for a better record and future automation possibilities **Current situation**: Currently the CI Signal report is getting generated automatically and distributed manually to k/dev & slack release-ci-signal. **Desired outcome**: In addition to manually releasing the report to k/dev and #release-ci-signal, the report artifacts should be stored in a repository. This enables automation and long-term analysis of the artifacts. **Notes**: before starting with this issue, the report should get automatically created see https://github.com/kubernetes/release/issues/2443 /kind feature
1.0
ci-signal-reporter, Store CI Signal report artifacts - :green_circle: ci-signal-report-cli **Summary:** Store Ci Signal reports in a repository for a better record and future automation possibilities **Current situation**: Currently the CI Signal report is getting generated automatically and distributed manually to k/dev & slack release-ci-signal. **Desired outcome**: In addition to manually releasing the report to k/dev and #release-ci-signal, the report artifacts should be stored in a repository. This enables automation and long-term analysis of the artifacts. **Notes**: before starting with this issue, the report should get automatically created see https://github.com/kubernetes/release/issues/2443 /kind feature
priority
ci signal reporter store ci signal report artifacts green circle ci signal report cli summary store ci signal reports in a repository for a better record and future automation possibilities current situation currently the ci signal report is getting generated automatically and distributed manually to k dev slack release ci signal desired outcome in addition to manually releasing the report to k dev and release ci signal the report artifacts should be stored in a repository this enables automation and long term analysis of the artifacts notes before starting with this issue the report should get automatically created see kind feature
1
107,434
16,761,589,333
IssuesEvent
2021-06-13 22:24:16
gms-ws-demo/nibrs
https://api.github.com/repos/gms-ws-demo/nibrs
closed
CVE-2018-14721 (High) detected in multiple libraries - autoclosed
security vulnerability
## CVE-2018-14721 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>jackson-databind-2.9.6.jar</b>, <b>jackson-databind-2.8.0.jar</b>, <b>jackson-databind-2.8.10.jar</b>, <b>jackson-databind-2.9.5.jar</b></p></summary> <p> <details><summary><b>jackson-databind-2.9.6.jar</b></p></summary> <p>General data-binding functionality for Jackson: works on core streaming API</p> <p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p> <p>Path to dependency file: nibrs/tools/nibrs-staging-data/pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.6/jackson-databind-2.9.6.jar,nibrs/web/nibrs-web/target/nibrs-web/WEB-INF/lib/jackson-databind-2.9.6.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.6/jackson-databind-2.9.6.jar,canner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.6/jackson-databind-2.9.6.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.6/jackson-databind-2.9.6.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.6/jackson-databind-2.9.6.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.6/jackson-databind-2.9.6.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.6/jackson-databind-2.9.6.jar</p> <p> Dependency Hierarchy: - :x: **jackson-databind-2.9.6.jar** (Vulnerable Library) </details> <details><summary><b>jackson-databind-2.8.0.jar</b></p></summary> <p>General data-binding functionality for Jackson: works on core streaming API</p> <p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p> <p>Path to dependency file: nibrs/tools/nibrs-common/pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.0/jackson-databind-2.8.0.jar</p> <p> Dependency Hierarchy: - tika-parsers-1.18.jar (Root Library) - :x: **jackson-databind-2.8.0.jar** (Vulnerable Library) </details> <details><summary><b>jackson-databind-2.8.10.jar</b></p></summary> <p>General data-binding functionality for Jackson: works on core streaming API</p> <p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p> <p>Path to dependency file: nibrs/tools/nibrs-fbi-service/pom.xml</p> <p>Path to vulnerable library: canner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.10/jackson-databind-2.8.10.jar,nibrs/tools/nibrs-fbi-service/target/nibrs-fbi-service-1.0.0/WEB-INF/lib/jackson-databind-2.8.10.jar</p> <p> Dependency Hierarchy: - :x: **jackson-databind-2.8.10.jar** (Vulnerable Library) </details> <details><summary><b>jackson-databind-2.9.5.jar</b></p></summary> <p>General data-binding functionality for Jackson: works on core streaming API</p> <p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p> <p>Path to dependency file: nibrs/tools/nibrs-flatfile/pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.5/jackson-databind-2.9.5.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.5/jackson-databind-2.9.5.jar</p> <p> Dependency Hierarchy: - tika-parsers-1.18.jar (Root Library) - :x: **jackson-databind-2.9.5.jar** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/gms-ws-demo/nibrs/commit/9fb1c19bd26c2113d1961640de126a33eacdc946">9fb1c19bd26c2113d1961640de126a33eacdc946</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> FasterXML jackson-databind 2.x before 2.9.7 might allow remote attackers to conduct server-side request forgery (SSRF) attacks by leveraging failure to block the axis2-jaxws class from polymorphic deserialization. <p>Publish Date: 2019-01-02 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-14721>CVE-2018-14721</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>10.0</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Changed - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-14721">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-14721</a></p> <p>Release Date: 2019-01-02</p> <p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.9.7,2.8.11.3,2.7.9.5,2.6.7.3</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"com.fasterxml.jackson.core","packageName":"jackson-databind","packageVersion":"2.9.6","packageFilePaths":["/tools/nibrs-staging-data/pom.xml","/tools/nibrs-summary-report/pom.xml","/tools/nibrs-route/pom.xml","/tools/nibrs-staging-data-common/pom.xml","/tools/nibrs-xmlfile/pom.xml","/tools/nibrs-validation/pom.xml"],"isTransitiveDependency":false,"dependencyTree":"com.fasterxml.jackson.core:jackson-databind:2.9.6","isMinimumFixVersionAvailable":true,"minimumFixVersion":"com.fasterxml.jackson.core:jackson-databind:2.9.7,2.8.11.3,2.7.9.5,2.6.7.3"},{"packageType":"Java","groupId":"com.fasterxml.jackson.core","packageName":"jackson-databind","packageVersion":"2.8.0","packageFilePaths":["/tools/nibrs-common/pom.xml"],"isTransitiveDependency":true,"dependencyTree":"org.apache.tika:tika-parsers:1.18;com.fasterxml.jackson.core:jackson-databind:2.8.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"com.fasterxml.jackson.core:jackson-databind:2.9.7,2.8.11.3,2.7.9.5,2.6.7.3"},{"packageType":"Java","groupId":"com.fasterxml.jackson.core","packageName":"jackson-databind","packageVersion":"2.8.10","packageFilePaths":["/tools/nibrs-fbi-service/pom.xml"],"isTransitiveDependency":false,"dependencyTree":"com.fasterxml.jackson.core:jackson-databind:2.8.10","isMinimumFixVersionAvailable":true,"minimumFixVersion":"com.fasterxml.jackson.core:jackson-databind:2.9.7,2.8.11.3,2.7.9.5,2.6.7.3"},{"packageType":"Java","groupId":"com.fasterxml.jackson.core","packageName":"jackson-databind","packageVersion":"2.9.5","packageFilePaths":["/tools/nibrs-flatfile/pom.xml","/tools/nibrs-validate-common/pom.xml"],"isTransitiveDependency":true,"dependencyTree":"org.apache.tika:tika-parsers:1.18;com.fasterxml.jackson.core:jackson-databind:2.9.5","isMinimumFixVersionAvailable":true,"minimumFixVersion":"com.fasterxml.jackson.core:jackson-databind:2.9.7,2.8.11.3,2.7.9.5,2.6.7.3"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2018-14721","vulnerabilityDetails":"FasterXML jackson-databind 2.x before 2.9.7 might allow remote attackers to conduct server-side request forgery (SSRF) attacks by leveraging failure to block the axis2-jaxws class from polymorphic deserialization.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-14721","cvss3Severity":"high","cvss3Score":"10.0","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Changed","C":"High","UI":"None","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> -->
True
CVE-2018-14721 (High) detected in multiple libraries - autoclosed - ## CVE-2018-14721 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>jackson-databind-2.9.6.jar</b>, <b>jackson-databind-2.8.0.jar</b>, <b>jackson-databind-2.8.10.jar</b>, <b>jackson-databind-2.9.5.jar</b></p></summary> <p> <details><summary><b>jackson-databind-2.9.6.jar</b></p></summary> <p>General data-binding functionality for Jackson: works on core streaming API</p> <p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p> <p>Path to dependency file: nibrs/tools/nibrs-staging-data/pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.6/jackson-databind-2.9.6.jar,nibrs/web/nibrs-web/target/nibrs-web/WEB-INF/lib/jackson-databind-2.9.6.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.6/jackson-databind-2.9.6.jar,canner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.6/jackson-databind-2.9.6.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.6/jackson-databind-2.9.6.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.6/jackson-databind-2.9.6.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.6/jackson-databind-2.9.6.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.6/jackson-databind-2.9.6.jar</p> <p> Dependency Hierarchy: - :x: **jackson-databind-2.9.6.jar** (Vulnerable Library) </details> <details><summary><b>jackson-databind-2.8.0.jar</b></p></summary> <p>General data-binding functionality for Jackson: works on core streaming API</p> <p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p> <p>Path to dependency file: nibrs/tools/nibrs-common/pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.0/jackson-databind-2.8.0.jar</p> <p> Dependency Hierarchy: - tika-parsers-1.18.jar (Root Library) - :x: **jackson-databind-2.8.0.jar** (Vulnerable Library) </details> <details><summary><b>jackson-databind-2.8.10.jar</b></p></summary> <p>General data-binding functionality for Jackson: works on core streaming API</p> <p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p> <p>Path to dependency file: nibrs/tools/nibrs-fbi-service/pom.xml</p> <p>Path to vulnerable library: canner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.10/jackson-databind-2.8.10.jar,nibrs/tools/nibrs-fbi-service/target/nibrs-fbi-service-1.0.0/WEB-INF/lib/jackson-databind-2.8.10.jar</p> <p> Dependency Hierarchy: - :x: **jackson-databind-2.8.10.jar** (Vulnerable Library) </details> <details><summary><b>jackson-databind-2.9.5.jar</b></p></summary> <p>General data-binding functionality for Jackson: works on core streaming API</p> <p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p> <p>Path to dependency file: nibrs/tools/nibrs-flatfile/pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.5/jackson-databind-2.9.5.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.5/jackson-databind-2.9.5.jar</p> <p> Dependency Hierarchy: - tika-parsers-1.18.jar (Root Library) - :x: **jackson-databind-2.9.5.jar** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/gms-ws-demo/nibrs/commit/9fb1c19bd26c2113d1961640de126a33eacdc946">9fb1c19bd26c2113d1961640de126a33eacdc946</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> FasterXML jackson-databind 2.x before 2.9.7 might allow remote attackers to conduct server-side request forgery (SSRF) attacks by leveraging failure to block the axis2-jaxws class from polymorphic deserialization. <p>Publish Date: 2019-01-02 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-14721>CVE-2018-14721</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>10.0</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Changed - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-14721">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-14721</a></p> <p>Release Date: 2019-01-02</p> <p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.9.7,2.8.11.3,2.7.9.5,2.6.7.3</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"com.fasterxml.jackson.core","packageName":"jackson-databind","packageVersion":"2.9.6","packageFilePaths":["/tools/nibrs-staging-data/pom.xml","/tools/nibrs-summary-report/pom.xml","/tools/nibrs-route/pom.xml","/tools/nibrs-staging-data-common/pom.xml","/tools/nibrs-xmlfile/pom.xml","/tools/nibrs-validation/pom.xml"],"isTransitiveDependency":false,"dependencyTree":"com.fasterxml.jackson.core:jackson-databind:2.9.6","isMinimumFixVersionAvailable":true,"minimumFixVersion":"com.fasterxml.jackson.core:jackson-databind:2.9.7,2.8.11.3,2.7.9.5,2.6.7.3"},{"packageType":"Java","groupId":"com.fasterxml.jackson.core","packageName":"jackson-databind","packageVersion":"2.8.0","packageFilePaths":["/tools/nibrs-common/pom.xml"],"isTransitiveDependency":true,"dependencyTree":"org.apache.tika:tika-parsers:1.18;com.fasterxml.jackson.core:jackson-databind:2.8.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"com.fasterxml.jackson.core:jackson-databind:2.9.7,2.8.11.3,2.7.9.5,2.6.7.3"},{"packageType":"Java","groupId":"com.fasterxml.jackson.core","packageName":"jackson-databind","packageVersion":"2.8.10","packageFilePaths":["/tools/nibrs-fbi-service/pom.xml"],"isTransitiveDependency":false,"dependencyTree":"com.fasterxml.jackson.core:jackson-databind:2.8.10","isMinimumFixVersionAvailable":true,"minimumFixVersion":"com.fasterxml.jackson.core:jackson-databind:2.9.7,2.8.11.3,2.7.9.5,2.6.7.3"},{"packageType":"Java","groupId":"com.fasterxml.jackson.core","packageName":"jackson-databind","packageVersion":"2.9.5","packageFilePaths":["/tools/nibrs-flatfile/pom.xml","/tools/nibrs-validate-common/pom.xml"],"isTransitiveDependency":true,"dependencyTree":"org.apache.tika:tika-parsers:1.18;com.fasterxml.jackson.core:jackson-databind:2.9.5","isMinimumFixVersionAvailable":true,"minimumFixVersion":"com.fasterxml.jackson.core:jackson-databind:2.9.7,2.8.11.3,2.7.9.5,2.6.7.3"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2018-14721","vulnerabilityDetails":"FasterXML jackson-databind 2.x before 2.9.7 might allow remote attackers to conduct server-side request forgery (SSRF) attacks by leveraging failure to block the axis2-jaxws class from polymorphic deserialization.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-14721","cvss3Severity":"high","cvss3Score":"10.0","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Changed","C":"High","UI":"None","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> -->
non_priority
cve high detected in multiple libraries autoclosed cve high severity vulnerability vulnerable libraries jackson databind jar jackson databind jar jackson databind jar jackson databind jar jackson databind jar general data binding functionality for jackson works on core streaming api library home page a href path to dependency file nibrs tools nibrs staging data pom xml path to vulnerable library home wss scanner repository com fasterxml jackson core jackson databind jackson databind jar nibrs web nibrs web target nibrs web web inf lib jackson databind jar home wss scanner repository com fasterxml jackson core jackson databind jackson databind jar canner repository com fasterxml jackson core jackson databind jackson databind jar home wss scanner repository com fasterxml jackson core jackson databind jackson databind jar home wss scanner repository com fasterxml jackson core jackson databind jackson databind jar home wss scanner repository com fasterxml jackson core jackson databind jackson databind jar home wss scanner repository com fasterxml jackson core jackson databind jackson databind jar dependency hierarchy x jackson databind jar vulnerable library jackson databind jar general data binding functionality for jackson works on core streaming api library home page a href path to dependency file nibrs tools nibrs common pom xml path to vulnerable library home wss scanner repository com fasterxml jackson core jackson databind jackson databind jar dependency hierarchy tika parsers jar root library x jackson databind jar vulnerable library jackson databind jar general data binding functionality for jackson works on core streaming api library home page a href path to dependency file nibrs tools nibrs fbi service pom xml path to vulnerable library canner repository com fasterxml jackson core jackson databind jackson databind jar nibrs tools nibrs fbi service target nibrs fbi service web inf lib jackson databind jar dependency hierarchy x jackson databind jar vulnerable library jackson databind jar general data binding functionality for jackson works on core streaming api library home page a href path to dependency file nibrs tools nibrs flatfile pom xml path to vulnerable library home wss scanner repository com fasterxml jackson core jackson databind jackson databind jar home wss scanner repository com fasterxml jackson core jackson databind jackson databind jar dependency hierarchy tika parsers jar root library x jackson databind jar vulnerable library found in head commit a href found in base branch master vulnerability details fasterxml jackson databind x before might allow remote attackers to conduct server side request forgery ssrf attacks by leveraging failure to block the jaxws class from polymorphic deserialization 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 changed impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution com fasterxml jackson core jackson databind isopenpronvulnerability false ispackagebased true isdefaultbranch true packages istransitivedependency false dependencytree com fasterxml jackson core jackson databind isminimumfixversionavailable true minimumfixversion com fasterxml jackson core jackson databind packagetype java groupid com fasterxml jackson core packagename jackson databind packageversion packagefilepaths istransitivedependency true dependencytree org apache tika tika parsers com fasterxml jackson core jackson databind isminimumfixversionavailable true minimumfixversion com fasterxml jackson core jackson databind packagetype java groupid com fasterxml jackson core packagename jackson databind packageversion packagefilepaths istransitivedependency false dependencytree com fasterxml jackson core jackson databind isminimumfixversionavailable true minimumfixversion com fasterxml jackson core jackson databind packagetype java groupid com fasterxml jackson core packagename jackson databind packageversion packagefilepaths istransitivedependency true dependencytree org apache tika tika parsers com fasterxml jackson core jackson databind isminimumfixversionavailable true minimumfixversion com fasterxml jackson core jackson databind basebranches vulnerabilityidentifier cve vulnerabilitydetails fasterxml jackson databind x before might allow remote attackers to conduct server side request forgery ssrf attacks by leveraging failure to block the jaxws class from polymorphic deserialization vulnerabilityurl
0
726,377
24,997,104,402
IssuesEvent
2022-11-03 02:11:14
pilot-light/pilotlight
https://api.github.com/repos/pilot-light/pilotlight
closed
[BUG]: Mouse wheel broken on Linux
platform: Linux priority: High type: bug system: io backend: All
### Contact Details _No response_ ### What is the issue? Linux mouse wheel is not correct. ### How to reproduce? Steps to reproduce the behavior: 1. Scroll mouse ### Platform Linux ### Graphics Backend Vulkan ### Relevant log output _No response_
1.0
[BUG]: Mouse wheel broken on Linux - ### Contact Details _No response_ ### What is the issue? Linux mouse wheel is not correct. ### How to reproduce? Steps to reproduce the behavior: 1. Scroll mouse ### Platform Linux ### Graphics Backend Vulkan ### Relevant log output _No response_
priority
mouse wheel broken on linux contact details no response what is the issue linux mouse wheel is not correct how to reproduce steps to reproduce the behavior scroll mouse platform linux graphics backend vulkan relevant log output no response
1
48,500
2,998,299,412
IssuesEvent
2015-07-23 13:25:57
jayway/powermock
https://api.github.com/repos/jayway/powermock
closed
Check compliance with JUnit 4.6
enhancement imported Milestone-Release1.3 Priority-High
_From [johan.ha...@gmail.com](https://code.google.com/u/105676376875942041029/) on May 19, 2009 22:57:03_ Check compliance with JUnit 4.6 _Original issue: http://code.google.com/p/powermock/issues/detail?id=106_
1.0
Check compliance with JUnit 4.6 - _From [johan.ha...@gmail.com](https://code.google.com/u/105676376875942041029/) on May 19, 2009 22:57:03_ Check compliance with JUnit 4.6 _Original issue: http://code.google.com/p/powermock/issues/detail?id=106_
priority
check compliance with junit from on may check compliance with junit original issue
1
241,402
7,811,826,170
IssuesEvent
2018-06-12 11:27:55
xwikisas/application-forum
https://api.github.com/repos/xwikisas/application-forum
closed
Uncaught error when adding an answer
Priority: Major Type: Bug
STEPS TO REPRODUCE 1. Go to a forum 2. Click on a topic 3. Click 'Add answer' button and write an answer 4. Click 'Add answer' 5. Observe the console (from Dev tools) EXPECTED RESULTS The answer is added without any errors. ACTUAL RESULTS When the answer is added to the topic, the following error occurs in console: `Uncaught Error: Syntax error, unrecognized expression: #This is a good way to promote the company's values... .comment at Function.B.error (prototype.js:19) at n (prototype.js:19) at B.select (prototype.js:19) at B (prototype.js:19) at Object.a [as select] (prototype.js:19) at $$ (prototype.js:8) at e.loadIDs (JavascriptExtension?language=en&docVersion=1.1&defer=false&minify=false:54) at e.startup (JavascriptExtension?language=en&docVersion=1.1&defer=false&minify=false:34) at e.initialize (JavascriptExtension?language=en&docVersion=1.1&defer=false&minify=false:21) at new e (prototype.js:8)` Environment: Windows 10 Pro 64 bit, Chrome 65
1.0
Uncaught error when adding an answer - STEPS TO REPRODUCE 1. Go to a forum 2. Click on a topic 3. Click 'Add answer' button and write an answer 4. Click 'Add answer' 5. Observe the console (from Dev tools) EXPECTED RESULTS The answer is added without any errors. ACTUAL RESULTS When the answer is added to the topic, the following error occurs in console: `Uncaught Error: Syntax error, unrecognized expression: #This is a good way to promote the company's values... .comment at Function.B.error (prototype.js:19) at n (prototype.js:19) at B.select (prototype.js:19) at B (prototype.js:19) at Object.a [as select] (prototype.js:19) at $$ (prototype.js:8) at e.loadIDs (JavascriptExtension?language=en&docVersion=1.1&defer=false&minify=false:54) at e.startup (JavascriptExtension?language=en&docVersion=1.1&defer=false&minify=false:34) at e.initialize (JavascriptExtension?language=en&docVersion=1.1&defer=false&minify=false:21) at new e (prototype.js:8)` Environment: Windows 10 Pro 64 bit, Chrome 65
priority
uncaught error when adding an answer steps to reproduce go to a forum click on a topic click add answer button and write an answer click add answer observe the console from dev tools expected results the answer is added without any errors actual results when the answer is added to the topic the following error occurs in console uncaught error syntax error unrecognized expression this is a good way to promote the company s values comment at function b error prototype js at n prototype js at b select prototype js at b prototype js at object a prototype js at prototype js at e loadids javascriptextension language en docversion defer false minify false at e startup javascriptextension language en docversion defer false minify false at e initialize javascriptextension language en docversion defer false minify false at new e prototype js environment windows pro bit chrome
1
468,615
13,486,670,659
IssuesEvent
2020-09-11 09:47:17
thanos-io/thanos
https://api.github.com/repos/thanos-io/thanos
reopened
limits: Add generic layer of limits (e.g interceptors) for StoreAPI.
GSoC/Community Bridge difficulty: hard feature request / improvement priority: P1 stale
We can leverage gRPC interceptors to ensure configuring limits per chunks, series etc of StoreAPI Open questions: * partial result or total cancel?
1.0
limits: Add generic layer of limits (e.g interceptors) for StoreAPI. - We can leverage gRPC interceptors to ensure configuring limits per chunks, series etc of StoreAPI Open questions: * partial result or total cancel?
priority
limits add generic layer of limits e g interceptors for storeapi we can leverage grpc interceptors to ensure configuring limits per chunks series etc of storeapi open questions partial result or total cancel
1
20,565
10,524,933,188
IssuesEvent
2019-09-30 14:12:29
jesopo/bitbot
https://api.github.com/repos/jesopo/bitbot
closed
Block titling of localhost and local networks (DNS and IP)
security
Apparently BitBot correctly titles sites if the DNS points to a localhost address, say `0.0.0.0`, it titles for `localhost` instead of erroring or ignoring, might want to extend the localhost block to that. Localhost block also not implemented for the most part for localhost IP ranges - `127.*.*.*` - `0.*.*.*` Also maybe add the local network ranges - `10.*.*.*` - `192.168.*.*` to an optional ignore list, as these aren't accessible from the internet, so may also leak services
True
Block titling of localhost and local networks (DNS and IP) - Apparently BitBot correctly titles sites if the DNS points to a localhost address, say `0.0.0.0`, it titles for `localhost` instead of erroring or ignoring, might want to extend the localhost block to that. Localhost block also not implemented for the most part for localhost IP ranges - `127.*.*.*` - `0.*.*.*` Also maybe add the local network ranges - `10.*.*.*` - `192.168.*.*` to an optional ignore list, as these aren't accessible from the internet, so may also leak services
non_priority
block titling of localhost and local networks dns and ip apparently bitbot correctly titles sites if the dns points to a localhost address say it titles for localhost instead of erroring or ignoring might want to extend the localhost block to that localhost block also not implemented for the most part for localhost ip ranges also maybe add the local network ranges to an optional ignore list as these aren t accessible from the internet so may also leak services
0
106,545
4,274,241,199
IssuesEvent
2016-07-13 19:53:14
USGCRP/gcis
https://api.github.com/repos/USGCRP/gcis
opened
Automated url checker
enhancement priority low
Develop a script to automatically check external urls on a periodic basis (~monthly) to make sure they still exist.
1.0
Automated url checker - Develop a script to automatically check external urls on a periodic basis (~monthly) to make sure they still exist.
priority
automated url checker develop a script to automatically check external urls on a periodic basis monthly to make sure they still exist
1
288,481
24,906,708,625
IssuesEvent
2022-10-29 10:45:13
IntellectualSites/FastAsyncWorldEdit
https://api.github.com/repos/IntellectualSites/FastAsyncWorldEdit
opened
Lighting glitches when removing blocks
Requires Testing
### Server Implementation Paper ### Server Version 1.19.2 ### Describe the bug Paper build: git-Paper-245 I don't know if this is because of the latest paper build but when removing an area with WorldEdit lighting glitches appear: Example of `//set 0` on the ground: ![2022-10-29_11 41 38](https://user-images.githubusercontent.com/10485646/198827006-c7752d62-a06c-4344-807c-3b6fc2b93ae6.png) ### To Reproduce 1. Select a region on the ground 2. Use //set 0 ### Expected behaviour There should not be any lighting glitches ### Screenshots / Videos _No response_ ### Error log (if applicable) _No response_ ### Fawe Debugpaste https://athion.net/ISPaster/paste/view/426550cb049a4b36b747bc9abb874a96 ### Fawe Version FastAsyncWorldEdit version 2.4.9-SNAPSHOT-296;0d112b2 ### Checklist - [X] I have included a Fawe debugpaste. - [X] I am using the newest build from https://ci.athion.net/job/FastAsyncWorldEdit/ and the issue still persists. ### Anything else? _No response_
1.0
Lighting glitches when removing blocks - ### Server Implementation Paper ### Server Version 1.19.2 ### Describe the bug Paper build: git-Paper-245 I don't know if this is because of the latest paper build but when removing an area with WorldEdit lighting glitches appear: Example of `//set 0` on the ground: ![2022-10-29_11 41 38](https://user-images.githubusercontent.com/10485646/198827006-c7752d62-a06c-4344-807c-3b6fc2b93ae6.png) ### To Reproduce 1. Select a region on the ground 2. Use //set 0 ### Expected behaviour There should not be any lighting glitches ### Screenshots / Videos _No response_ ### Error log (if applicable) _No response_ ### Fawe Debugpaste https://athion.net/ISPaster/paste/view/426550cb049a4b36b747bc9abb874a96 ### Fawe Version FastAsyncWorldEdit version 2.4.9-SNAPSHOT-296;0d112b2 ### Checklist - [X] I have included a Fawe debugpaste. - [X] I am using the newest build from https://ci.athion.net/job/FastAsyncWorldEdit/ and the issue still persists. ### Anything else? _No response_
non_priority
lighting glitches when removing blocks server implementation paper server version describe the bug paper build git paper i don t know if this is because of the latest paper build but when removing an area with worldedit lighting glitches appear example of set on the ground to reproduce select a region on the ground use set expected behaviour there should not be any lighting glitches screenshots videos no response error log if applicable no response fawe debugpaste fawe version fastasyncworldedit version snapshot checklist i have included a fawe debugpaste i am using the newest build from and the issue still persists anything else no response
0
221,296
17,011,448,512
IssuesEvent
2021-07-02 05:35:55
JAreyes98/nomina
https://api.github.com/repos/JAreyes98/nomina
closed
Empleado
documentation new feature required
Trabajar en la nueva caracteristica Empleado. Explicación: El proyecto se divide en 3 capas. Vista, modelo, negocio. Las capas de Modelo y Negocio ya estan realizadas por lo que toca trabajar en la capa de Vista (corresponde a la interacción con el usuario). En tu caso, te toca trabajar sobre la clase EmpleadoConsole.java en el que se maneja la información de los Empleados (se lee su información para ser almacenada). Tomar como referencia CargoConsole.java sigue la misma lógica. Trabajar sobre la rama feature_empleados
1.0
Empleado - Trabajar en la nueva caracteristica Empleado. Explicación: El proyecto se divide en 3 capas. Vista, modelo, negocio. Las capas de Modelo y Negocio ya estan realizadas por lo que toca trabajar en la capa de Vista (corresponde a la interacción con el usuario). En tu caso, te toca trabajar sobre la clase EmpleadoConsole.java en el que se maneja la información de los Empleados (se lee su información para ser almacenada). Tomar como referencia CargoConsole.java sigue la misma lógica. Trabajar sobre la rama feature_empleados
non_priority
empleado trabajar en la nueva caracteristica empleado explicación el proyecto se divide en capas vista modelo negocio las capas de modelo y negocio ya estan realizadas por lo que toca trabajar en la capa de vista corresponde a la interacción con el usuario en tu caso te toca trabajar sobre la clase empleadoconsole java en el que se maneja la información de los empleados se lee su información para ser almacenada tomar como referencia cargoconsole java sigue la misma lógica trabajar sobre la rama feature empleados
0
623,602
19,673,460,142
IssuesEvent
2022-01-11 09:53:19
ossarioglu/SWE573-repo
https://api.github.com/repos/ossarioglu/SWE573-repo
closed
Add Unit Tests
learning priority_medium effort_size_medium coding
- Learn how to do unit tests on Python - Add unit tests for all coding - Check tests are properly working
1.0
Add Unit Tests - - Learn how to do unit tests on Python - Add unit tests for all coding - Check tests are properly working
priority
add unit tests learn how to do unit tests on python add unit tests for all coding check tests are properly working
1
207,486
16,085,841,426
IssuesEvent
2021-04-26 11:05:11
microsoft/fluentui
https://api.github.com/repos/microsoft/fluentui
closed
Docs need a Switching Themes page
Area: Documentation Needs: Backlog review Priority 2: Normal Resolution: Soft Close Theme: Dark Type: Feature
#### Describe the feature that you would like added Below [Theme Slots](https://developer.microsoft.com/en-us/fluentui#/styles/web/colors/theme-slots) in the docs, a page should be created that explains that themes such as light and dark can be switched using `Customizations.applySettings()`. At time of writing this, this key piece of information is _really hard to discover online_, and switching between light & dark themes is a highly desirable bit of functionality when vetting UI systems. Example: Currently, typing the word 'dark' into the 'search styles' bar draws a blank. By way of contrast, typing 'dark' into Material UI's search bar yields a top result called ["Dark Mode"](https://material-ui.com/customization/palette/#dark-mode) and they also have a toggle at the top of the page that switches to dark mode. Thanks for considering this addition! I'd offer a PR if I were experienced enough with Fluent UI to write it myself. 😀
1.0
Docs need a Switching Themes page - #### Describe the feature that you would like added Below [Theme Slots](https://developer.microsoft.com/en-us/fluentui#/styles/web/colors/theme-slots) in the docs, a page should be created that explains that themes such as light and dark can be switched using `Customizations.applySettings()`. At time of writing this, this key piece of information is _really hard to discover online_, and switching between light & dark themes is a highly desirable bit of functionality when vetting UI systems. Example: Currently, typing the word 'dark' into the 'search styles' bar draws a blank. By way of contrast, typing 'dark' into Material UI's search bar yields a top result called ["Dark Mode"](https://material-ui.com/customization/palette/#dark-mode) and they also have a toggle at the top of the page that switches to dark mode. Thanks for considering this addition! I'd offer a PR if I were experienced enough with Fluent UI to write it myself. 😀
non_priority
docs need a switching themes page describe the feature that you would like added below in the docs a page should be created that explains that themes such as light and dark can be switched using customizations applysettings at time of writing this this key piece of information is really hard to discover online and switching between light dark themes is a highly desirable bit of functionality when vetting ui systems example currently typing the word dark into the search styles bar draws a blank by way of contrast typing dark into material ui s search bar yields a top result called and they also have a toggle at the top of the page that switches to dark mode thanks for considering this addition i d offer a pr if i were experienced enough with fluent ui to write it myself 😀
0
99,944
12,491,085,271
IssuesEvent
2020-06-01 02:47:24
WestpacGEL/GEL
https://api.github.com/repos/WestpacGEL/GEL
closed
Component: Button
KTM-Design bug KTM-Potential Backlog item button
## Features - [x] Appearance prop - [x] Size prop: Small, medium, large, xlarge - [x] Soft prop - [x] Block prop - [x] Trim prop - [x] iconAfter prop - [x] iconBefore prop - [x] Justify prop - [x] SrOnlyText prop - [x] Tag prop - [x] onClick prop - [x] Disabled - [x] Active - [x] Responsive block - [x] Responsive size - [ ] Button dropdowns – this may not be required?? - [x] ButtonWrap? Best approach? - [x] Examples - [ ] Jest tests - [ ] Cypress tests - [x] Docs ## To discuss - [ ] Inline button `ButtonWrap` component? Make generic to wrap all inline inputs (incl. TextInput)? Append marginLeft to child elements individually? - [ ] Are button dropdowns required? - [ ] Our approach with this has been to maximise the use of tokens; but since Button is quite complex, it can take numerous prop options (incl. `appearance` and `soft`) plus requiring :hover and :active state styling, it has made for a rather verbose token structure. Verbose tokens yes, but much simpler component code (and the power of publicly exposed button styling). Thoughts? - [ ] Icons: Buttons take `Icon` children. How are we best to style these? I've taken a leaf from Atlaskit's book, using iconAfter/iconBefore props. Simple enough. - [ ] Do we actually need to be able to take a `tag="input"` prop? We could simplify the codebase a little if this requirement was dropped and Buttons are either `<button>`, `<a>` or `<span>` (but not `<input>`). Nb. `<input>` elements add code complexity because they can't take children elements (they use a `value` attribute). Worth mentioning... they can't take Icons. - [ ] Active styling is now leaning on `pointer-events: none` to handle styling for active plus hover (ie. we don't want hover styling applied on an active button). Are there any issues with this? Or should our solution handle this without use of this property (ie. using a `:hover:not(:active)` styling). - [ ] Removed `.disabled` styling (via class name). Disabled styling only provided via `disabled` attribute. You can no longer disable a `<a>` button (`<a>` can't take a `disabled` attribute); but really probably shouldn't be doing this anyway as it's bad practice to disable links. ## Feedback from Kate's review - **Button general comment** - Need to update the name of the 'Faint' button to 'Light' to align the naming convention. _JPS: probs best to wait until we decide on primary/accent naming_ - **Button/look** - _Text button within text_ not needed _JPS: removed_ - **Button/group** - BACKLOG - Is it possible to add a button group type that makes the buttons of equal size regardless on the button label length? ie all match the width of the largest? _JPS: not really, large-ish effort and code bloat for something that doesn't really work well for long button names anyway because they don't wrap. We should be using radios for nearly all instances really_
1.0
Component: Button - ## Features - [x] Appearance prop - [x] Size prop: Small, medium, large, xlarge - [x] Soft prop - [x] Block prop - [x] Trim prop - [x] iconAfter prop - [x] iconBefore prop - [x] Justify prop - [x] SrOnlyText prop - [x] Tag prop - [x] onClick prop - [x] Disabled - [x] Active - [x] Responsive block - [x] Responsive size - [ ] Button dropdowns – this may not be required?? - [x] ButtonWrap? Best approach? - [x] Examples - [ ] Jest tests - [ ] Cypress tests - [x] Docs ## To discuss - [ ] Inline button `ButtonWrap` component? Make generic to wrap all inline inputs (incl. TextInput)? Append marginLeft to child elements individually? - [ ] Are button dropdowns required? - [ ] Our approach with this has been to maximise the use of tokens; but since Button is quite complex, it can take numerous prop options (incl. `appearance` and `soft`) plus requiring :hover and :active state styling, it has made for a rather verbose token structure. Verbose tokens yes, but much simpler component code (and the power of publicly exposed button styling). Thoughts? - [ ] Icons: Buttons take `Icon` children. How are we best to style these? I've taken a leaf from Atlaskit's book, using iconAfter/iconBefore props. Simple enough. - [ ] Do we actually need to be able to take a `tag="input"` prop? We could simplify the codebase a little if this requirement was dropped and Buttons are either `<button>`, `<a>` or `<span>` (but not `<input>`). Nb. `<input>` elements add code complexity because they can't take children elements (they use a `value` attribute). Worth mentioning... they can't take Icons. - [ ] Active styling is now leaning on `pointer-events: none` to handle styling for active plus hover (ie. we don't want hover styling applied on an active button). Are there any issues with this? Or should our solution handle this without use of this property (ie. using a `:hover:not(:active)` styling). - [ ] Removed `.disabled` styling (via class name). Disabled styling only provided via `disabled` attribute. You can no longer disable a `<a>` button (`<a>` can't take a `disabled` attribute); but really probably shouldn't be doing this anyway as it's bad practice to disable links. ## Feedback from Kate's review - **Button general comment** - Need to update the name of the 'Faint' button to 'Light' to align the naming convention. _JPS: probs best to wait until we decide on primary/accent naming_ - **Button/look** - _Text button within text_ not needed _JPS: removed_ - **Button/group** - BACKLOG - Is it possible to add a button group type that makes the buttons of equal size regardless on the button label length? ie all match the width of the largest? _JPS: not really, large-ish effort and code bloat for something that doesn't really work well for long button names anyway because they don't wrap. We should be using radios for nearly all instances really_
non_priority
component button features appearance prop size prop small medium large xlarge soft prop block prop trim prop iconafter prop iconbefore prop justify prop sronlytext prop tag prop onclick prop disabled active responsive block responsive size button dropdowns – this may not be required buttonwrap best approach examples jest tests cypress tests docs to discuss inline button buttonwrap component make generic to wrap all inline inputs incl textinput append marginleft to child elements individually are button dropdowns required our approach with this has been to maximise the use of tokens but since button is quite complex it can take numerous prop options incl appearance and soft plus requiring hover and active state styling it has made for a rather verbose token structure verbose tokens yes but much simpler component code and the power of publicly exposed button styling thoughts icons buttons take icon children how are we best to style these i ve taken a leaf from atlaskit s book using iconafter iconbefore props simple enough do we actually need to be able to take a tag input prop we could simplify the codebase a little if this requirement was dropped and buttons are either or but not nb elements add code complexity because they can t take children elements they use a value attribute worth mentioning they can t take icons active styling is now leaning on pointer events none to handle styling for active plus hover ie we don t want hover styling applied on an active button are there any issues with this or should our solution handle this without use of this property ie using a hover not active styling removed disabled styling via class name disabled styling only provided via disabled attribute you can no longer disable a button can t take a disabled attribute but really probably shouldn t be doing this anyway as it s bad practice to disable links feedback from kate s review button general comment need to update the name of the faint button to light to align the naming convention jps probs best to wait until we decide on primary accent naming button look text button within text not needed jps removed button group backlog is it possible to add a button group type that makes the buttons of equal size regardless on the button label length ie all match the width of the largest jps not really large ish effort and code bloat for something that doesn t really work well for long button names anyway because they don t wrap we should be using radios for nearly all instances really
0
556,363
16,482,590,763
IssuesEvent
2021-05-24 13:44:16
Zettlr/Zettlr
https://api.github.com/repos/Zettlr/Zettlr
closed
[Develop] Breakages due to Webpack 5 migration
develop pinned priority:high
Electron forge has finally released the webpack 5 update, so I have taken the liberty of merging all the dangling PRs from dependabot for the plugins that were progressively switching to webpack 5 in the past half year. I knew that this would cause breakages, but we definitely should use Webpack 5, both to silence dependabot and because more and more plugins wouldn't get any more updates for webpack 4. What is going wrong? So, first, somehow this process broke `archiver`. I don't quite know why but there is a module that archiver can't resolve right now (or, to put it correct: Somehow TS fails at resolving the module). Please note that VS Code's resolver _does_ correctly find the module, so I'm guessing that this might be a configuration we have to change in tsconfig. Then, a second thing is that all the Node module resolutions broke during the update, because webpack 5 doesn't include silent fallbacks for these anymore. We have to specifically ignore these imports (rather, most of these are, if I have seen it correctly, caused by `require`s, not `import`s). So we probably get away with some config tweaks. I'm opening this issue because right now I have to get back to work, but I'm pretty happy that we could finally update all those outdated dependencies, which additionally made a security advisory go away on the repo 💁🏻 CC @tobiasdiez
1.0
[Develop] Breakages due to Webpack 5 migration - Electron forge has finally released the webpack 5 update, so I have taken the liberty of merging all the dangling PRs from dependabot for the plugins that were progressively switching to webpack 5 in the past half year. I knew that this would cause breakages, but we definitely should use Webpack 5, both to silence dependabot and because more and more plugins wouldn't get any more updates for webpack 4. What is going wrong? So, first, somehow this process broke `archiver`. I don't quite know why but there is a module that archiver can't resolve right now (or, to put it correct: Somehow TS fails at resolving the module). Please note that VS Code's resolver _does_ correctly find the module, so I'm guessing that this might be a configuration we have to change in tsconfig. Then, a second thing is that all the Node module resolutions broke during the update, because webpack 5 doesn't include silent fallbacks for these anymore. We have to specifically ignore these imports (rather, most of these are, if I have seen it correctly, caused by `require`s, not `import`s). So we probably get away with some config tweaks. I'm opening this issue because right now I have to get back to work, but I'm pretty happy that we could finally update all those outdated dependencies, which additionally made a security advisory go away on the repo 💁🏻 CC @tobiasdiez
priority
breakages due to webpack migration electron forge has finally released the webpack update so i have taken the liberty of merging all the dangling prs from dependabot for the plugins that were progressively switching to webpack in the past half year i knew that this would cause breakages but we definitely should use webpack both to silence dependabot and because more and more plugins wouldn t get any more updates for webpack what is going wrong so first somehow this process broke archiver i don t quite know why but there is a module that archiver can t resolve right now or to put it correct somehow ts fails at resolving the module please note that vs code s resolver does correctly find the module so i m guessing that this might be a configuration we have to change in tsconfig then a second thing is that all the node module resolutions broke during the update because webpack doesn t include silent fallbacks for these anymore we have to specifically ignore these imports rather most of these are if i have seen it correctly caused by require s not import s so we probably get away with some config tweaks i m opening this issue because right now i have to get back to work but i m pretty happy that we could finally update all those outdated dependencies which additionally made a security advisory go away on the repo 💁🏻 cc tobiasdiez
1
22,495
11,628,469,070
IssuesEvent
2020-02-27 18:23:53
microsoft/onnxruntime
https://api.github.com/repos/microsoft/onnxruntime
closed
Yolo v3 inference 100x slower than expected
performance
**Describe the bug** Running an inference with the Yolov3 model from onnx model zoo is 100x slower than expected. The original paper estimates inference time of 22 ms. Using CUDA onnx runtime takes around 2 seconds. **Urgency** We are blocked from using the ONNX runtime until this is fixed **System information** - OS Platform and Distribution: Windows 10 Pro - ONNX Runtime installed from source (built locally with Sep 27, 2019 source code) - Visual Studio version (if applicable): 2019 - CUDA/cuDNN version: 10.0 / 7.3 - GPU model and memory: nVidia GTX 1080ti **To Reproduce** Get latest source code (or Sep 27 version, if not reproduced) Build locally with cuda similar to: .\build.bat --msvc_toolset 14.11 --use_cuda --cuda_home "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0" --cudnn_home C:\local\cudnn-7.3\cuda --build_csharp Download yolov3 model from onnx model zoo, and ensure files on disk here (or alter source code in unit test appropriately if files in different location): D:\modelsyolov3\yolov3\yolov3.onnx D:\modelsyolov3\yolov3\test_data_set_0\input_0.pb Open the following solution in VS 2019: C:\local\onnx\onnxruntime\csharp\OnnxRuntime.CSharp.sln Add a unit test (see code below) and run in debug mode: C:\local\onnx\onnxruntime\csharp\test\Microsoft.ML.OnnxRuntime.Tests\InferenceTest.cs Look at debug output to see median run time. Running with GPU takes around 2 seconds, running with CPU takes around 16 seconds. The unit test code to add to InferenceTest.cs: ``` [Fact] private void mytest() { var modelsDir = @"D:\modelsyolov3"; var modelRoot = new DirectoryInfo(Path.Combine(modelsDir)); foreach (var modelDir in modelRoot.EnumerateDirectories()) { var onnxModelNames = modelDir.GetFiles("*.onnx"); var onnxModelFileName = Path.Combine(modelsDir, modelDir.Name, onnxModelNames[0].Name); SessionOptions opts = new SessionOptions(); //SessionOptions opts = SessionOptions.MakeSessionOptionWithCudaProvider(0); using (var session = new InferenceSession(onnxModelFileName, opts)) { var testRoot = new DirectoryInfo(Path.Combine(modelsDir, modelDir.Name)); var testData = testRoot.EnumerateDirectories("test_data*").First(); //// Load test data var testDataFile = Path.Combine(modelsDir, modelDir.Name, testData.ToString(), "input_0.pb"); var dataIn = LoadTensorFromFilePb(testDataFile); ///// Create Inputs var nov = new List<NamedOnnxValue>(); nov.Add( NamedOnnxValue.CreateFromTensor<float> ("input_1", new DenseTensor<float>(dataIn, new int[] { 1, 3, 416, 416 }))); nov.Add( NamedOnnxValue.CreateFromTensor<float> ("image_shape", new DenseTensor<float>(new float[] { 416, 416 }, new int[] { 1, 2 }))); int count = 5; List<double> timesMs = new List<double>(count); Stopwatch sw = new Stopwatch(); for (int i = 0; i < count; i++) { sw.Restart(); ///// Run Session using (var resnov = session.Run(nov)) { timesMs.Add(sw.ElapsedMilliseconds); var res = resnov.ToArray()[0].AsTensor<float>().ToArray<float>(); } } timesMs.Sort(); double medianTime = timesMs[count / 2]; Console.Out.WriteLine($"Median time: {medianTime:0.00} ms"); Debug.WriteLine($"Median time: {medianTime:0.00} ms"); } } //model } ```` **Expected behavior** On a GTX 1080ti GPU, inference should be less than 20ms
True
Yolo v3 inference 100x slower than expected - **Describe the bug** Running an inference with the Yolov3 model from onnx model zoo is 100x slower than expected. The original paper estimates inference time of 22 ms. Using CUDA onnx runtime takes around 2 seconds. **Urgency** We are blocked from using the ONNX runtime until this is fixed **System information** - OS Platform and Distribution: Windows 10 Pro - ONNX Runtime installed from source (built locally with Sep 27, 2019 source code) - Visual Studio version (if applicable): 2019 - CUDA/cuDNN version: 10.0 / 7.3 - GPU model and memory: nVidia GTX 1080ti **To Reproduce** Get latest source code (or Sep 27 version, if not reproduced) Build locally with cuda similar to: .\build.bat --msvc_toolset 14.11 --use_cuda --cuda_home "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0" --cudnn_home C:\local\cudnn-7.3\cuda --build_csharp Download yolov3 model from onnx model zoo, and ensure files on disk here (or alter source code in unit test appropriately if files in different location): D:\modelsyolov3\yolov3\yolov3.onnx D:\modelsyolov3\yolov3\test_data_set_0\input_0.pb Open the following solution in VS 2019: C:\local\onnx\onnxruntime\csharp\OnnxRuntime.CSharp.sln Add a unit test (see code below) and run in debug mode: C:\local\onnx\onnxruntime\csharp\test\Microsoft.ML.OnnxRuntime.Tests\InferenceTest.cs Look at debug output to see median run time. Running with GPU takes around 2 seconds, running with CPU takes around 16 seconds. The unit test code to add to InferenceTest.cs: ``` [Fact] private void mytest() { var modelsDir = @"D:\modelsyolov3"; var modelRoot = new DirectoryInfo(Path.Combine(modelsDir)); foreach (var modelDir in modelRoot.EnumerateDirectories()) { var onnxModelNames = modelDir.GetFiles("*.onnx"); var onnxModelFileName = Path.Combine(modelsDir, modelDir.Name, onnxModelNames[0].Name); SessionOptions opts = new SessionOptions(); //SessionOptions opts = SessionOptions.MakeSessionOptionWithCudaProvider(0); using (var session = new InferenceSession(onnxModelFileName, opts)) { var testRoot = new DirectoryInfo(Path.Combine(modelsDir, modelDir.Name)); var testData = testRoot.EnumerateDirectories("test_data*").First(); //// Load test data var testDataFile = Path.Combine(modelsDir, modelDir.Name, testData.ToString(), "input_0.pb"); var dataIn = LoadTensorFromFilePb(testDataFile); ///// Create Inputs var nov = new List<NamedOnnxValue>(); nov.Add( NamedOnnxValue.CreateFromTensor<float> ("input_1", new DenseTensor<float>(dataIn, new int[] { 1, 3, 416, 416 }))); nov.Add( NamedOnnxValue.CreateFromTensor<float> ("image_shape", new DenseTensor<float>(new float[] { 416, 416 }, new int[] { 1, 2 }))); int count = 5; List<double> timesMs = new List<double>(count); Stopwatch sw = new Stopwatch(); for (int i = 0; i < count; i++) { sw.Restart(); ///// Run Session using (var resnov = session.Run(nov)) { timesMs.Add(sw.ElapsedMilliseconds); var res = resnov.ToArray()[0].AsTensor<float>().ToArray<float>(); } } timesMs.Sort(); double medianTime = timesMs[count / 2]; Console.Out.WriteLine($"Median time: {medianTime:0.00} ms"); Debug.WriteLine($"Median time: {medianTime:0.00} ms"); } } //model } ```` **Expected behavior** On a GTX 1080ti GPU, inference should be less than 20ms
non_priority
yolo inference slower than expected describe the bug running an inference with the model from onnx model zoo is slower than expected the original paper estimates inference time of ms using cuda onnx runtime takes around seconds urgency we are blocked from using the onnx runtime until this is fixed system information os platform and distribution windows pro onnx runtime installed from source built locally with sep source code visual studio version if applicable cuda cudnn version gpu model and memory nvidia gtx to reproduce get latest source code or sep version if not reproduced build locally with cuda similar to build bat msvc toolset use cuda cuda home c program files nvidia gpu computing toolkit cuda cudnn home c local cudnn cuda build csharp download model from onnx model zoo and ensure files on disk here or alter source code in unit test appropriately if files in different location d onnx d test data set input pb open the following solution in vs c local onnx onnxruntime csharp onnxruntime csharp sln add a unit test see code below and run in debug mode c local onnx onnxruntime csharp test microsoft ml onnxruntime tests inferencetest cs look at debug output to see median run time running with gpu takes around seconds running with cpu takes around seconds the unit test code to add to inferencetest cs private void mytest var modelsdir d var modelroot new directoryinfo path combine modelsdir foreach var modeldir in modelroot enumeratedirectories var onnxmodelnames modeldir getfiles onnx var onnxmodelfilename path combine modelsdir modeldir name onnxmodelnames name sessionoptions opts new sessionoptions sessionoptions opts sessionoptions makesessionoptionwithcudaprovider using var session new inferencesession onnxmodelfilename opts var testroot new directoryinfo path combine modelsdir modeldir name var testdata testroot enumeratedirectories test data first load test data var testdatafile path combine modelsdir modeldir name testdata tostring input pb var datain loadtensorfromfilepb testdatafile create inputs var nov new list nov add namedonnxvalue createfromtensor input new densetensor datain new int nov add namedonnxvalue createfromtensor image shape new densetensor new float new int int count list timesms new list count stopwatch sw new stopwatch for int i i count i sw restart run session using var resnov session run nov timesms add sw elapsedmilliseconds var res resnov toarray astensor toarray timesms sort double mediantime timesms console out writeline median time mediantime ms debug writeline median time mediantime ms model expected behavior on a gtx gpu inference should be less than
0
1,373
2,615,225,790
IssuesEvent
2015-03-01 08:37:05
MichaelRFairhurst/wake-compiler
https://api.github.com/repos/MichaelRFairhurst/wake-compiler
opened
Create extern js wrappers automatically
codegen enhancement semantics
Js interop plans are detailed here: wakelang.com/interop-plans.html ================================================== Create a runtime function for ahead-of-time generation of wake/js linking on certain functions. This will accept a function and an array of ctors, and return a function with a premade wake/js link. The arguments will be wrapped in extern classes decided b y the ctor that matches the argument index (if any). Other arguments (and the return value) must be handled as other functions exposed to js are. Lastly we track down methods/functions in wake that accept extern js wrappers as arguments, and insert the proper ctors to make everything work.
1.0
Create extern js wrappers automatically - Js interop plans are detailed here: wakelang.com/interop-plans.html ================================================== Create a runtime function for ahead-of-time generation of wake/js linking on certain functions. This will accept a function and an array of ctors, and return a function with a premade wake/js link. The arguments will be wrapped in extern classes decided b y the ctor that matches the argument index (if any). Other arguments (and the return value) must be handled as other functions exposed to js are. Lastly we track down methods/functions in wake that accept extern js wrappers as arguments, and insert the proper ctors to make everything work.
non_priority
create extern js wrappers automatically js interop plans are detailed here wakelang com interop plans html create a runtime function for ahead of time generation of wake js linking on certain functions this will accept a function and an array of ctors and return a function with a premade wake js link the arguments will be wrapped in extern classes decided b y the ctor that matches the argument index if any other arguments and the return value must be handled as other functions exposed to js are lastly we track down methods functions in wake that accept extern js wrappers as arguments and insert the proper ctors to make everything work
0
302,721
9,285,594,054
IssuesEvent
2019-03-21 07:48:19
Luca1152/gravity-box
https://api.github.com/repos/Luca1152/gravity-box
closed
Center on player button
Priority: Low Status: In Progress Type: Enhancement
## Description In the level editor, you may pan the map in such a way that you can't find your way back to it. A "Center on player" button should help with this small issue. ## Tasks - [x] Add the button itself - [x] Add its functionality
1.0
Center on player button - ## Description In the level editor, you may pan the map in such a way that you can't find your way back to it. A "Center on player" button should help with this small issue. ## Tasks - [x] Add the button itself - [x] Add its functionality
priority
center on player button description in the level editor you may pan the map in such a way that you can t find your way back to it a center on player button should help with this small issue tasks add the button itself add its functionality
1
242,250
7,840,043,080
IssuesEvent
2018-06-18 15:16:00
inverse-inc/packetfence
https://api.github.com/repos/inverse-inc/packetfence
closed
Configurator cannot start services
Priority: Medium Type: Bug
According to an external source, the configurator on the latest devel doesn't seem to be started. We would need to confirm this in the Inverse lab and correct this if needed. @atran-inverse, can you build a new machine on the latest devel package and try it out
1.0
Configurator cannot start services - According to an external source, the configurator on the latest devel doesn't seem to be started. We would need to confirm this in the Inverse lab and correct this if needed. @atran-inverse, can you build a new machine on the latest devel package and try it out
priority
configurator cannot start services according to an external source the configurator on the latest devel doesn t seem to be started we would need to confirm this in the inverse lab and correct this if needed atran inverse can you build a new machine on the latest devel package and try it out
1
432,346
12,491,643,063
IssuesEvent
2020-06-01 04:52:17
open-learning-exchange/planet
https://api.github.com/repos/open-learning-exchange/planet
closed
Service link title unique
low priority
When adding link of service (team or enterprise). it is possible to have same title which might be confusing to figure out which link is what? ![Screen Shot 2020-02-27 at 8 36 34 PM](https://user-images.githubusercontent.com/2909490/75456055-28110700-59a2-11ea-80d3-62817d5bd388.png)
1.0
Service link title unique - When adding link of service (team or enterprise). it is possible to have same title which might be confusing to figure out which link is what? ![Screen Shot 2020-02-27 at 8 36 34 PM](https://user-images.githubusercontent.com/2909490/75456055-28110700-59a2-11ea-80d3-62817d5bd388.png)
priority
service link title unique when adding link of service team or enterprise it is possible to have same title which might be confusing to figure out which link is what
1
221,219
7,374,673,112
IssuesEvent
2018-03-13 21:06:48
kubernetes/kubernetes
https://api.github.com/repos/kubernetes/kubernetes
closed
Subpath tests don't work in multizone GCE
kind/bug priority/critical-urgent sig/storage status/approved-for-milestone status/in-progress
New tests for subpath consistently fail in ci-kubernetes-e2e-gce-multizone: ``` [sig-storage] Subpath [Volume type: gcePD] should support existing single file 5m29s go run hack/e2e.go -v --test --test_args='--ginkgo.focus=\[sig\-storage\]\sSubpath\s\[Volume\stype\:\sgcePD\]\sshould\ssupport\sexisting\ssingle\sfile$' /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/storage/subpath.go:127 Expected error: <*errors.errorString | 0xc4216eef90>: { s: "expected pod \"pod-subpath-test-gcepd-wspg\" success: Gave up after waiting 5m0s for pod \"pod-subpath-test-gcepd-wspg\" to be \"success or failure\"", } expected pod "pod-subpath-test-gcepd-wspg" success: Gave up after waiting 5m0s for pod "pod-subpath-test-gcepd-wspg" to be "success or failure" not to have occurred /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/util.go:2280 ``` https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/ci-kubernetes-e2e-gce-multizone/18398/ /kind bug /sig storage @msau42 @verult
1.0
Subpath tests don't work in multizone GCE - New tests for subpath consistently fail in ci-kubernetes-e2e-gce-multizone: ``` [sig-storage] Subpath [Volume type: gcePD] should support existing single file 5m29s go run hack/e2e.go -v --test --test_args='--ginkgo.focus=\[sig\-storage\]\sSubpath\s\[Volume\stype\:\sgcePD\]\sshould\ssupport\sexisting\ssingle\sfile$' /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/storage/subpath.go:127 Expected error: <*errors.errorString | 0xc4216eef90>: { s: "expected pod \"pod-subpath-test-gcepd-wspg\" success: Gave up after waiting 5m0s for pod \"pod-subpath-test-gcepd-wspg\" to be \"success or failure\"", } expected pod "pod-subpath-test-gcepd-wspg" success: Gave up after waiting 5m0s for pod "pod-subpath-test-gcepd-wspg" to be "success or failure" not to have occurred /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/util.go:2280 ``` https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/ci-kubernetes-e2e-gce-multizone/18398/ /kind bug /sig storage @msau42 @verult
priority
subpath tests don t work in multizone gce new tests for subpath consistently fail in ci kubernetes gce multizone subpath should support existing single file go run hack go v test test args ginkgo focus ssubpath s sshould ssupport sexisting ssingle sfile go src io kubernetes output dockerized go src io kubernetes test storage subpath go expected error s expected pod pod subpath test gcepd wspg success gave up after waiting for pod pod subpath test gcepd wspg to be success or failure expected pod pod subpath test gcepd wspg success gave up after waiting for pod pod subpath test gcepd wspg to be success or failure not to have occurred go src io kubernetes output dockerized go src io kubernetes test framework util go kind bug sig storage verult
1
101,351
21,659,761,059
IssuesEvent
2022-05-06 17:52:08
astro-projects/astro
https://api.github.com/repos/astro-projects/astro
opened
Deepsource - Enable selected checks only
code-quality
Currently, deepsource fails for certain cases which we don't want to test. Example: It expects us to not have any comments including TODO, for instance. This Github issue involves ignoring the checks that we deem not necessary on their portal. ![image](https://user-images.githubusercontent.com/8811558/167188662-b13c60f4-fdef-4a35-84e1-490bb61ccd94.png)
1.0
Deepsource - Enable selected checks only - Currently, deepsource fails for certain cases which we don't want to test. Example: It expects us to not have any comments including TODO, for instance. This Github issue involves ignoring the checks that we deem not necessary on their portal. ![image](https://user-images.githubusercontent.com/8811558/167188662-b13c60f4-fdef-4a35-84e1-490bb61ccd94.png)
non_priority
deepsource enable selected checks only currently deepsource fails for certain cases which we don t want to test example it expects us to not have any comments including todo for instance this github issue involves ignoring the checks that we deem not necessary on their portal
0
119,209
10,028,266,671
IssuesEvent
2019-07-17 11:13:56
spacetelescope/jwst
https://api.github.com/repos/spacetelescope/jwst
closed
Make snapshot of 0.13.7 (Build 7.3) regression test data for future testing
jira testing
Issue [JP-852](https://jira.stsci.edu/browse/JP-852) was created by James Davies: When jwst 0.13.7 was delivered to SDP, it passed our regression tests that day, and we made a snapshot of the input and truth files tagged 0.13.7 on our Artifactory server so that we could run these same tests in the future if needed. [https://bytesalad.stsci.edu/artifactory/jwst-pipeline/0.13.7] In order to allow running the regression tests on Jenkins so that they pull the 0.13.7 data from Artifactory and build it using the conda spec file we delivered to SDP for 0.13.7, some changes in ci_watson and the test infrastructure of the jwst package are required.  This ticket captures that work.
1.0
Make snapshot of 0.13.7 (Build 7.3) regression test data for future testing - Issue [JP-852](https://jira.stsci.edu/browse/JP-852) was created by James Davies: When jwst 0.13.7 was delivered to SDP, it passed our regression tests that day, and we made a snapshot of the input and truth files tagged 0.13.7 on our Artifactory server so that we could run these same tests in the future if needed. [https://bytesalad.stsci.edu/artifactory/jwst-pipeline/0.13.7] In order to allow running the regression tests on Jenkins so that they pull the 0.13.7 data from Artifactory and build it using the conda spec file we delivered to SDP for 0.13.7, some changes in ci_watson and the test infrastructure of the jwst package are required.  This ticket captures that work.
non_priority
make snapshot of build regression test data for future testing issue was created by james davies when jwst was delivered to sdp it passed our regression tests that day and we made a snapshot of the input and truth files tagged on our artifactory server so that we could run these same tests in the future if needed in order to allow running the regression tests on jenkins so that they pull the data from artifactory and build it using the conda spec file we delivered to sdp for some changes in ci watson and the test infrastructure of the jwst package are required  this ticket captures that work
0
2,647
2,607,933,932
IssuesEvent
2015-02-26 00:27:59
chrsmithdemos/minify
https://api.github.com/repos/chrsmithdemos/minify
closed
JSMin fails on jQuery UI (1.8.1) preminified with Google Closure Compiler
auto-migrated Priority-Medium Type-Defect
``` Minify version: 2.1.3 PHP version: 5.2.13 What steps will reproduce the problem? 1. Download latest version of jQuery UI (1.8.1) http://jquery-ui.googlecode.com/files/jquery-ui-1.8.1.zip which uses Google Closure Compiler (instead of YUI Compressor) 2. Minify the ui/jquery-ui.js (passed with some example from the packed) 3. Minify the ui/minified/jquery-ui.min.js (failed) Expected output: jquery-ui.js and jquery-ui.min.js, both files should work with minify Actual output: jquery-ui.min.js doesn't work (but older versions compressed by YUI Compressor works properly), I checked (for sure) and this file works properly with &debug=1 Did any unit tests FAIL? no ``` ----- Original issue reported on code.google.com by `SmallPar...@gmail.com` on 4 May 2010 at 4:19 * Merged into: #144
1.0
JSMin fails on jQuery UI (1.8.1) preminified with Google Closure Compiler - ``` Minify version: 2.1.3 PHP version: 5.2.13 What steps will reproduce the problem? 1. Download latest version of jQuery UI (1.8.1) http://jquery-ui.googlecode.com/files/jquery-ui-1.8.1.zip which uses Google Closure Compiler (instead of YUI Compressor) 2. Minify the ui/jquery-ui.js (passed with some example from the packed) 3. Minify the ui/minified/jquery-ui.min.js (failed) Expected output: jquery-ui.js and jquery-ui.min.js, both files should work with minify Actual output: jquery-ui.min.js doesn't work (but older versions compressed by YUI Compressor works properly), I checked (for sure) and this file works properly with &debug=1 Did any unit tests FAIL? no ``` ----- Original issue reported on code.google.com by `SmallPar...@gmail.com` on 4 May 2010 at 4:19 * Merged into: #144
non_priority
jsmin fails on jquery ui preminified with google closure compiler minify version php version what steps will reproduce the problem download latest version of jquery ui which uses google closure compiler instead of yui compressor minify the ui jquery ui js passed with some example from the packed minify the ui minified jquery ui min js failed expected output jquery ui js and jquery ui min js both files should work with minify actual output jquery ui min js doesn t work but older versions compressed by yui compressor works properly i checked for sure and this file works properly with debug did any unit tests fail no original issue reported on code google com by smallpar gmail com on may at merged into
0
502,905
14,569,893,996
IssuesEvent
2020-12-17 13:42:20
webcompat/web-bugs
https://api.github.com/repos/webcompat/web-bugs
closed
www.messenger.com - see bug description
browser-firefox engine-gecko priority-important
<!-- @browser: Firefox 84.0 --> <!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0 --> <!-- @reported_with: unknown --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/63800 --> **URL**: https://www.messenger.com/groupcall/create?source=whatsapp&ep=4 **Browser / Version**: Firefox 84.0 **Operating System**: Windows 10 **Tested Another Browser**: Yes Other **Problem type**: Something else **Description**: site don't work on firefox but on New microsoft edge. **Steps to Reproduce**: <details> <summary>View the screenshot</summary> <img alt="Screenshot" src="https://webcompat.com/uploads/2020/12/c94ce344-f089-4472-babe-55fae9c6e051.jpg"> </details> <details> <summary>Browser Configuration</summary> <ul> <li>None</li> </ul> </details> _From [webcompat.com](https://webcompat.com/) with ❤️_
1.0
www.messenger.com - see bug description - <!-- @browser: Firefox 84.0 --> <!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0 --> <!-- @reported_with: unknown --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/63800 --> **URL**: https://www.messenger.com/groupcall/create?source=whatsapp&ep=4 **Browser / Version**: Firefox 84.0 **Operating System**: Windows 10 **Tested Another Browser**: Yes Other **Problem type**: Something else **Description**: site don't work on firefox but on New microsoft edge. **Steps to Reproduce**: <details> <summary>View the screenshot</summary> <img alt="Screenshot" src="https://webcompat.com/uploads/2020/12/c94ce344-f089-4472-babe-55fae9c6e051.jpg"> </details> <details> <summary>Browser Configuration</summary> <ul> <li>None</li> </ul> </details> _From [webcompat.com](https://webcompat.com/) with ❤️_
priority
see bug description url browser version firefox operating system windows tested another browser yes other problem type something else description site don t work on firefox but on new microsoft edge steps to reproduce view the screenshot img alt screenshot src browser configuration none from with ❤️
1
174,239
21,259,424,598
IssuesEvent
2022-04-13 01:20:46
Souparnee/WebGoat2_20022020
https://api.github.com/repos/Souparnee/WebGoat2_20022020
opened
CVE-2021-3749 (High) detected in axios-0.17.1.tgz
security vulnerability
## CVE-2021-3749 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>axios-0.17.1.tgz</b></p></summary> <p>Promise based HTTP client for the browser and node.js</p> <p>Library home page: <a href="https://registry.npmjs.org/axios/-/axios-0.17.1.tgz">https://registry.npmjs.org/axios/-/axios-0.17.1.tgz</a></p> <p>Path to dependency file: /docs/package.json</p> <p>Path to vulnerable library: /docs/node_modules/axios/package.json</p> <p> Dependency Hierarchy: - browser-sync-2.26.3.tgz (Root Library) - localtunnel-1.9.1.tgz - :x: **axios-0.17.1.tgz** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> axios is vulnerable to Inefficient Regular Expression Complexity <p>Publish Date: 2021-08-31 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3749>CVE-2021-3749</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://huntr.dev/bounties/1e8f07fc-c384-4ff9-8498-0690de2e8c31/">https://huntr.dev/bounties/1e8f07fc-c384-4ff9-8498-0690de2e8c31/</a></p> <p>Release Date: 2021-08-31</p> <p>Fix Resolution: axios - 0.21.2</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2021-3749 (High) detected in axios-0.17.1.tgz - ## CVE-2021-3749 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>axios-0.17.1.tgz</b></p></summary> <p>Promise based HTTP client for the browser and node.js</p> <p>Library home page: <a href="https://registry.npmjs.org/axios/-/axios-0.17.1.tgz">https://registry.npmjs.org/axios/-/axios-0.17.1.tgz</a></p> <p>Path to dependency file: /docs/package.json</p> <p>Path to vulnerable library: /docs/node_modules/axios/package.json</p> <p> Dependency Hierarchy: - browser-sync-2.26.3.tgz (Root Library) - localtunnel-1.9.1.tgz - :x: **axios-0.17.1.tgz** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> axios is vulnerable to Inefficient Regular Expression Complexity <p>Publish Date: 2021-08-31 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3749>CVE-2021-3749</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://huntr.dev/bounties/1e8f07fc-c384-4ff9-8498-0690de2e8c31/">https://huntr.dev/bounties/1e8f07fc-c384-4ff9-8498-0690de2e8c31/</a></p> <p>Release Date: 2021-08-31</p> <p>Fix Resolution: axios - 0.21.2</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_priority
cve high detected in axios tgz cve high severity vulnerability vulnerable library axios tgz promise based http client for the browser and node js library home page a href path to dependency file docs package json path to vulnerable library docs node modules axios package json dependency hierarchy browser sync tgz root library localtunnel tgz x axios tgz vulnerable library vulnerability details axios is vulnerable to inefficient regular expression complexity publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution axios step up your open source security game with whitesource
0
6,329
4,221,125,603
IssuesEvent
2016-07-01 03:01:33
lionheart/openradar-mirror
https://api.github.com/repos/lionheart/openradar-mirror
opened
27122043: NSDateInterval Documentation Not Colorblind-Friendly
classification:ui/usability reproducible:always status:open
#### Description Summary: The documentation for NSDateInterval uses colors only to refer to items in a diagram. For colorblind developers, this can make it difficult to distinguish between them. Steps to Reproduce: 1. Visit the NSDateInterval documentation here and scroll to Discussion. Expected Results: The diagram under “Discussion” uses more than colors to disambiguate items. Actual Results: Only colors are used. Version: NSDateInterval https://developer.apple.com/reference/foundation/nsdateinterval/1641636-compare?language=objc Notes: See screenshot - Product Version: Created: 2016-07-01T02:24:23.168040 Originated: 2016-06-30T22:23:00 Open Radar Link: http://www.openradar.me/27122043
True
27122043: NSDateInterval Documentation Not Colorblind-Friendly - #### Description Summary: The documentation for NSDateInterval uses colors only to refer to items in a diagram. For colorblind developers, this can make it difficult to distinguish between them. Steps to Reproduce: 1. Visit the NSDateInterval documentation here and scroll to Discussion. Expected Results: The diagram under “Discussion” uses more than colors to disambiguate items. Actual Results: Only colors are used. Version: NSDateInterval https://developer.apple.com/reference/foundation/nsdateinterval/1641636-compare?language=objc Notes: See screenshot - Product Version: Created: 2016-07-01T02:24:23.168040 Originated: 2016-06-30T22:23:00 Open Radar Link: http://www.openradar.me/27122043
non_priority
nsdateinterval documentation not colorblind friendly description summary the documentation for nsdateinterval uses colors only to refer to items in a diagram for colorblind developers this can make it difficult to distinguish between them steps to reproduce visit the nsdateinterval documentation here and scroll to discussion expected results the diagram under “discussion” uses more than colors to disambiguate items actual results only colors are used version nsdateinterval notes see screenshot product version created originated open radar link
0
721,573
24,831,794,288
IssuesEvent
2022-10-26 04:39:47
Progrunning/BoardGamesCompanion
https://api.github.com/repos/Progrunning/BoardGamesCompanion
closed
Logged game notes
enhancement feedback high priority
# Description > <...> is to allow for additional player notes for a particular game. For example, in the game SmashUp, each player plays two factions. It would be nice to keep not only the score, but which factions each player was playing for the game. > It would be nice if there was a comment section when logging games. My wife and I played Villainous but there was no spot to logged what character we played as. I know it would be to difficult to integrate all the characters for all the games with different characters/roles. > it doesn't have an option to write down some details of the game, like a good move, an anecdote, or what strategy I used in that round # ACs - [x] add ability to leave notes for the logged game - [ ] [idea] notes in a form of a draw with your finger rather then text box entry? # Questions/Unknowns - Notes should be per player? - Maybe taking photos would be sufficient?
1.0
Logged game notes - # Description > <...> is to allow for additional player notes for a particular game. For example, in the game SmashUp, each player plays two factions. It would be nice to keep not only the score, but which factions each player was playing for the game. > It would be nice if there was a comment section when logging games. My wife and I played Villainous but there was no spot to logged what character we played as. I know it would be to difficult to integrate all the characters for all the games with different characters/roles. > it doesn't have an option to write down some details of the game, like a good move, an anecdote, or what strategy I used in that round # ACs - [x] add ability to leave notes for the logged game - [ ] [idea] notes in a form of a draw with your finger rather then text box entry? # Questions/Unknowns - Notes should be per player? - Maybe taking photos would be sufficient?
priority
logged game notes description is to allow for additional player notes for a particular game for example in the game smashup each player plays two factions it would be nice to keep not only the score but which factions each player was playing for the game it would be nice if there was a comment section when logging games my wife and i played villainous but there was no spot to logged what character we played as i know it would be to difficult to integrate all the characters for all the games with different characters roles it doesn t have an option to write down some details of the game like a good move an anecdote or what strategy i used in that round acs add ability to leave notes for the logged game notes in a form of a draw with your finger rather then text box entry questions unknowns notes should be per player maybe taking photos would be sufficient
1
828,691
31,839,095,792
IssuesEvent
2023-09-14 15:10:13
E3SM-Project/scream
https://api.github.com/repos/E3SM-Project/scream
closed
Figure out why ETI messes up make dependencies on blake
bug cmake priority:wishlist
This is my wish list, to get rid of something really annoying when doing debugging via edit-build-run cycles. For ETI, we should have no inter-dependency of p3 impl files, since the impl files are not included in `p3_functions.hpp`. However, on blake, `depends.make` shows dependency of all files on all other files, so that a mod in `p3_x_impl.hpp` triggers a rebuild of `p3_y.cpp`. This is quite annoying in a release build, where certain files can take 1.5 minutes to build. On mappy, this is not a problem, so I suspect we might just have to suck it up and hope we don't have to debug release builds that much. However, it would be nice to spend a few cycles to see if there's anything we can do better to help cmake/make generate a correct dependency.
1.0
Figure out why ETI messes up make dependencies on blake - This is my wish list, to get rid of something really annoying when doing debugging via edit-build-run cycles. For ETI, we should have no inter-dependency of p3 impl files, since the impl files are not included in `p3_functions.hpp`. However, on blake, `depends.make` shows dependency of all files on all other files, so that a mod in `p3_x_impl.hpp` triggers a rebuild of `p3_y.cpp`. This is quite annoying in a release build, where certain files can take 1.5 minutes to build. On mappy, this is not a problem, so I suspect we might just have to suck it up and hope we don't have to debug release builds that much. However, it would be nice to spend a few cycles to see if there's anything we can do better to help cmake/make generate a correct dependency.
priority
figure out why eti messes up make dependencies on blake this is my wish list to get rid of something really annoying when doing debugging via edit build run cycles for eti we should have no inter dependency of impl files since the impl files are not included in functions hpp however on blake depends make shows dependency of all files on all other files so that a mod in x impl hpp triggers a rebuild of y cpp this is quite annoying in a release build where certain files can take minutes to build on mappy this is not a problem so i suspect we might just have to suck it up and hope we don t have to debug release builds that much however it would be nice to spend a few cycles to see if there s anything we can do better to help cmake make generate a correct dependency
1
407,269
11,911,436,996
IssuesEvent
2020-03-31 08:37:28
incognitochain/incognito-chain
https://api.github.com/repos/incognitochain/incognito-chain
closed
[testnet] Account not stake but received reward
Priority: High Type: Bug
Account ``` privatekey : 112t8roafGgHL1rhAP9632Yef3sx5k8xgp8cwK4MCJsCL1UWcxXvpzg97N4dwvcD735iKf31Q2ZgrAvKfVjeSUEvnzKJyyJD3GqqSZdxN4or payment address: 12S5Lrs1XeQLbqN4ySyKtjAjd2d7sBP2tjFijzmp6avrrkQCNFMpkXm3FPzj2Wcu2ZNqJEmh9JriVuRErVwhuQnLmWSaggobEWsBEci publickey : 12kmiLFDSxaezVQe32Ze7D9TFm9TLs1Rx5cgh4ix5Eh4hZrvtXB ``` has reward every epoch, ``` { "id": 1, "jsonrpc": "1.0", "method": "getrewardamount", "params": ["12S5Lrs1XeQLbqN4ySyKtjAjd2d7sBP2tjFijzmp6avrrkQCNFMpkXm3FPzj2Wcu2ZNqJEmh9JriVuRErVwhuQnLmWSaggobEWsBEci"] } ``` but its publickey not found in ``` { "id": 1, "jsonrpc": "1.0", "method": "getbeaconbeststatedetail", "params": [] } ```
1.0
[testnet] Account not stake but received reward - Account ``` privatekey : 112t8roafGgHL1rhAP9632Yef3sx5k8xgp8cwK4MCJsCL1UWcxXvpzg97N4dwvcD735iKf31Q2ZgrAvKfVjeSUEvnzKJyyJD3GqqSZdxN4or payment address: 12S5Lrs1XeQLbqN4ySyKtjAjd2d7sBP2tjFijzmp6avrrkQCNFMpkXm3FPzj2Wcu2ZNqJEmh9JriVuRErVwhuQnLmWSaggobEWsBEci publickey : 12kmiLFDSxaezVQe32Ze7D9TFm9TLs1Rx5cgh4ix5Eh4hZrvtXB ``` has reward every epoch, ``` { "id": 1, "jsonrpc": "1.0", "method": "getrewardamount", "params": ["12S5Lrs1XeQLbqN4ySyKtjAjd2d7sBP2tjFijzmp6avrrkQCNFMpkXm3FPzj2Wcu2ZNqJEmh9JriVuRErVwhuQnLmWSaggobEWsBEci"] } ``` but its publickey not found in ``` { "id": 1, "jsonrpc": "1.0", "method": "getbeaconbeststatedetail", "params": [] } ```
priority
account not stake but received reward account privatekey payment address publickey has reward every epoch id jsonrpc method getrewardamount params but its publickey not found in id jsonrpc method getbeaconbeststatedetail params
1
46,611
11,861,679,419
IssuesEvent
2020-03-25 16:42:50
quicklisp/quicklisp-projects
https://api.github.com/repos/quicklisp/quicklisp-projects
closed
Please add cl-catmull-rom-spline
canbuild
cl-catmull-rom-spline is a small library exposing a spline class, useful for interpolating a smooth path of points on a plane given some control points along the path. Author: Kevin Secretan Source: https://github.com/Jach/cl-catmull-rom-spline.git Documentation: https://github.com/Jach/cl-catmull-rom-spline/blob/master/README.md
1.0
Please add cl-catmull-rom-spline - cl-catmull-rom-spline is a small library exposing a spline class, useful for interpolating a smooth path of points on a plane given some control points along the path. Author: Kevin Secretan Source: https://github.com/Jach/cl-catmull-rom-spline.git Documentation: https://github.com/Jach/cl-catmull-rom-spline/blob/master/README.md
non_priority
please add cl catmull rom spline cl catmull rom spline is a small library exposing a spline class useful for interpolating a smooth path of points on a plane given some control points along the path author kevin secretan source documentation
0
251,405
8,014,955,797
IssuesEvent
2018-07-25 08:29:40
zgynhqf/Rafy
https://api.github.com/repos/zgynhqf/Rafy
closed
SqlServerSqlGenerator生成Sql语句对于Unicode字符集字段(NChar/NVarchar)没有增加N前缀
Priority-1 area-orm bug
Unicode字符集字段(NChar/NVarchar)没有增加N前缀导致中文(或非英文)查询失败或显示乱码。
1.0
SqlServerSqlGenerator生成Sql语句对于Unicode字符集字段(NChar/NVarchar)没有增加N前缀 - Unicode字符集字段(NChar/NVarchar)没有增加N前缀导致中文(或非英文)查询失败或显示乱码。
priority
sqlserversqlgenerator生成sql语句对于unicode字符集字段 nchar nvarchar 没有增加n前缀 unicode字符集字段 nchar nvarchar 没有增加n前缀导致中文(或非英文)查询失败或显示乱码。
1
58,043
11,826,848,572
IssuesEvent
2020-03-21 20:00:12
psygo/flutter_firebase_auth_benchmark
https://api.github.com/repos/psygo/flutter_firebase_auth_benchmark
closed
Email Field is not being Rebuilt when Switching Workflows
backend bug code improvement
This causing the user to have to, for example, press the reset email button twice to get `labelText` feedback from Firebase.
1.0
Email Field is not being Rebuilt when Switching Workflows - This causing the user to have to, for example, press the reset email button twice to get `labelText` feedback from Firebase.
non_priority
email field is not being rebuilt when switching workflows this causing the user to have to for example press the reset email button twice to get labeltext feedback from firebase
0
138,842
31,072,356,022
IssuesEvent
2023-08-12 04:09:45
h4sh5/pypi-auto-scanner
https://api.github.com/repos/h4sh5/pypi-auto-scanner
opened
tator 1.1.1 has 3 GuardDog issues
guarddog code-execution
https://pypi.org/project/tator https://inspector.pypi.io/project/tator ```{ "dependency": "tator", "version": "1.1.1", "result": { "issues": 3, "errors": {}, "results": { "code-execution": [ { "location": "tator-1.1.1/setup.py:59", "code": " git_rev = subprocess.check_output(cmd).strip().decode('utf-8')", "message": "This package is executing OS commands in the setup.py file" }, { "location": "tator-1.1.1/setup.py:74", "code": " subprocess.run(cmd, check=True)", "message": "This package is executing OS commands in the setup.py file" }, { "location": "tator-1.1.1/setup.py:101", "code": " subprocess.run(cmd, check=True)", "message": "This package is executing OS commands in the setup.py file" } ] }, "path": "/tmp/tmp61h3op81/tator" } }```
1.0
tator 1.1.1 has 3 GuardDog issues - https://pypi.org/project/tator https://inspector.pypi.io/project/tator ```{ "dependency": "tator", "version": "1.1.1", "result": { "issues": 3, "errors": {}, "results": { "code-execution": [ { "location": "tator-1.1.1/setup.py:59", "code": " git_rev = subprocess.check_output(cmd).strip().decode('utf-8')", "message": "This package is executing OS commands in the setup.py file" }, { "location": "tator-1.1.1/setup.py:74", "code": " subprocess.run(cmd, check=True)", "message": "This package is executing OS commands in the setup.py file" }, { "location": "tator-1.1.1/setup.py:101", "code": " subprocess.run(cmd, check=True)", "message": "This package is executing OS commands in the setup.py file" } ] }, "path": "/tmp/tmp61h3op81/tator" } }```
non_priority
tator has guarddog issues dependency tator version result issues errors results code execution location tator setup py code git rev subprocess check output cmd strip decode utf message this package is executing os commands in the setup py file location tator setup py code subprocess run cmd check true message this package is executing os commands in the setup py file location tator setup py code subprocess run cmd check true message this package is executing os commands in the setup py file path tmp tator
0
29,247
5,619,590,590
IssuesEvent
2017-04-04 02:23:03
mean-expert-official/fire-starter
https://api.github.com/repos/mean-expert-official/fire-starter
closed
docs: Issue Template
documentation enhancement
# ![FireLoop](http://fireloop.io/img/logo-wide.svg) ### What type of issue are you creating? - [ ] Bug - [x] Enhancement - [ ] Question ### What version of this module are you using? - [x] 1.0.0-alpha.0 - [ ] pre-alpha - [ ] other ### Add a description for your issue: A template is needed for GitHub issues
1.0
docs: Issue Template - # ![FireLoop](http://fireloop.io/img/logo-wide.svg) ### What type of issue are you creating? - [ ] Bug - [x] Enhancement - [ ] Question ### What version of this module are you using? - [x] 1.0.0-alpha.0 - [ ] pre-alpha - [ ] other ### Add a description for your issue: A template is needed for GitHub issues
non_priority
docs issue template what type of issue are you creating bug enhancement question what version of this module are you using alpha pre alpha other add a description for your issue a template is needed for github issues
0
392,979
11,598,626,244
IssuesEvent
2020-02-24 23:38:54
VisBOL/visbol-js
https://api.github.com/repos/VisBOL/visbol-js
closed
Hovering info box can't follow horizontal scrolling
Priority bug question
Particularly large constructs often don't fit horizontally onto the screen. To look at such a construct, one has to scroll to the right, which is fine. The black "info box" that pops up when one hovers over a glyph, however, gets stuck maxing out at the window width and cannot follow the scroll. This prevents the user from seeing "pop-up" information about large constructs, because it appears way off to the left of where the mouse cursor is, often entirely off the left side of the window. Reported by @jakebeal
1.0
Hovering info box can't follow horizontal scrolling - Particularly large constructs often don't fit horizontally onto the screen. To look at such a construct, one has to scroll to the right, which is fine. The black "info box" that pops up when one hovers over a glyph, however, gets stuck maxing out at the window width and cannot follow the scroll. This prevents the user from seeing "pop-up" information about large constructs, because it appears way off to the left of where the mouse cursor is, often entirely off the left side of the window. Reported by @jakebeal
priority
hovering info box can t follow horizontal scrolling particularly large constructs often don t fit horizontally onto the screen to look at such a construct one has to scroll to the right which is fine the black info box that pops up when one hovers over a glyph however gets stuck maxing out at the window width and cannot follow the scroll this prevents the user from seeing pop up information about large constructs because it appears way off to the left of where the mouse cursor is often entirely off the left side of the window reported by jakebeal
1
312,685
9,551,560,584
IssuesEvent
2019-05-02 14:42:55
strapi/strapi
https://api.github.com/repos/strapi/strapi
closed
Rate limit for both REST and GraphQL
priority: low type: feature request 🙏
<!-- ⚠️ If you do not respect this template your issue will be closed. --> <!-- ⚠️ Make sure to browse the opened and closed issues before submitting your issue. --> <!-- Please also submit your idea on the Strapi Product Board: https://portal.productboard.com/strapi/tabs/2-under-consideration/submit-idea If your request on the product board is accepted this feature request issue will be closed, but will still accept public discussion. --> - [ ] **I have created my request on the Product Board before I submitted this issue** - [x] **I have looked at all the other requests on the Product Board before I submitted this issue** **Please describe your feature request:** Adding in the option for a custom defined rate limit either via requests per hour or via the Leaky Bucket system: https://en.wikipedia.org/wiki/Leaky_bucket. The goal being to prevent abuse, note that there should also be the option for an "IP Whitelist" that can bypass this limit.
1.0
Rate limit for both REST and GraphQL - <!-- ⚠️ If you do not respect this template your issue will be closed. --> <!-- ⚠️ Make sure to browse the opened and closed issues before submitting your issue. --> <!-- Please also submit your idea on the Strapi Product Board: https://portal.productboard.com/strapi/tabs/2-under-consideration/submit-idea If your request on the product board is accepted this feature request issue will be closed, but will still accept public discussion. --> - [ ] **I have created my request on the Product Board before I submitted this issue** - [x] **I have looked at all the other requests on the Product Board before I submitted this issue** **Please describe your feature request:** Adding in the option for a custom defined rate limit either via requests per hour or via the Leaky Bucket system: https://en.wikipedia.org/wiki/Leaky_bucket. The goal being to prevent abuse, note that there should also be the option for an "IP Whitelist" that can bypass this limit.
priority
rate limit for both rest and graphql please also submit your idea on the strapi product board if your request on the product board is accepted this feature request issue will be closed but will still accept public discussion i have created my request on the product board before i submitted this issue i have looked at all the other requests on the product board before i submitted this issue please describe your feature request adding in the option for a custom defined rate limit either via requests per hour or via the leaky bucket system the goal being to prevent abuse note that there should also be the option for an ip whitelist that can bypass this limit
1
141,490
5,436,823,292
IssuesEvent
2017-03-06 03:23:40
JeremyRolleston/active8me
https://api.github.com/repos/JeremyRolleston/active8me
opened
88 - Change colour on home page completed animation
Priority 3
When you complete a meal or workout, there is an animation on the home page. It is dark green with a white tick. This colour should be changed to the standard white background with an orange tick. That way it is consistent with registration & My Progress & Tools & Customise & Swap This also relates to the UI on Customise and Swap ![img_6889](https://cloud.githubusercontent.com/assets/20980200/23595602/34f26458-025e-11e7-8e20-0613047c6752.PNG) ![img_6890](https://cloud.githubusercontent.com/assets/20980200/23595604/368866dc-025e-11e7-8878-29b17038f055.PNG) ![img_6894](https://cloud.githubusercontent.com/assets/20980200/23595760/56066b66-025f-11e7-975c-ebaad8617088.PNG)
1.0
88 - Change colour on home page completed animation - When you complete a meal or workout, there is an animation on the home page. It is dark green with a white tick. This colour should be changed to the standard white background with an orange tick. That way it is consistent with registration & My Progress & Tools & Customise & Swap This also relates to the UI on Customise and Swap ![img_6889](https://cloud.githubusercontent.com/assets/20980200/23595602/34f26458-025e-11e7-8e20-0613047c6752.PNG) ![img_6890](https://cloud.githubusercontent.com/assets/20980200/23595604/368866dc-025e-11e7-8878-29b17038f055.PNG) ![img_6894](https://cloud.githubusercontent.com/assets/20980200/23595760/56066b66-025f-11e7-975c-ebaad8617088.PNG)
priority
change colour on home page completed animation when you complete a meal or workout there is an animation on the home page it is dark green with a white tick this colour should be changed to the standard white background with an orange tick that way it is consistent with registration my progress tools customise swap this also relates to the ui on customise and swap
1
663,337
22,173,673,170
IssuesEvent
2022-06-06 05:38:12
googleapis/nodejs-spanner
https://api.github.com/repos/googleapis/nodejs-spanner
closed
Spanner types: "before all" hook for "GOOGLE_STANDARD_SQL should throw an error for incorrect value types" failed
type: bug priority: p1 :rotating_light: api: spanner flakybot: issue
This test failed! To configure my behavior, see [the Flaky Bot documentation](https://github.com/googleapis/repo-automation-bots/tree/main/packages/flakybot). If I'm commenting on this issue too often, add the `flakybot: quiet` label and I will stop commenting. --- commit: 1367aa7dc9818be5610dfc5ae67d09652e7009e5 buildURL: [Build Status](https://source.cloud.google.com/results/invocations/e32ac716-0af2-496a-8e4e-25ba71683f7e), [Sponge](http://sponge2/e32ac716-0af2-496a-8e4e-25ba71683f7e) status: failed <details><summary>Test output</summary><br><pre>Duplicate name in schema: typecheck. Error: Duplicate name in schema: typecheck. at Operation._unpackResponse (node_modules/google-gax/build/src/longRunningCalls/longrunning.js:136:31) -> /workspace/node_modules/google-gax/src/longRunningCalls/longrunning.ts:211:23 at /workspace/node_modules/google-gax/build/src/longRunningCalls/longrunning.js:122:18 -> /workspace/node_modules/google-gax/src/longRunningCalls/longrunning.ts:194:12</pre></details>
1.0
Spanner types: "before all" hook for "GOOGLE_STANDARD_SQL should throw an error for incorrect value types" failed - This test failed! To configure my behavior, see [the Flaky Bot documentation](https://github.com/googleapis/repo-automation-bots/tree/main/packages/flakybot). If I'm commenting on this issue too often, add the `flakybot: quiet` label and I will stop commenting. --- commit: 1367aa7dc9818be5610dfc5ae67d09652e7009e5 buildURL: [Build Status](https://source.cloud.google.com/results/invocations/e32ac716-0af2-496a-8e4e-25ba71683f7e), [Sponge](http://sponge2/e32ac716-0af2-496a-8e4e-25ba71683f7e) status: failed <details><summary>Test output</summary><br><pre>Duplicate name in schema: typecheck. Error: Duplicate name in schema: typecheck. at Operation._unpackResponse (node_modules/google-gax/build/src/longRunningCalls/longrunning.js:136:31) -> /workspace/node_modules/google-gax/src/longRunningCalls/longrunning.ts:211:23 at /workspace/node_modules/google-gax/build/src/longRunningCalls/longrunning.js:122:18 -> /workspace/node_modules/google-gax/src/longRunningCalls/longrunning.ts:194:12</pre></details>
priority
spanner types before all hook for google standard sql should throw an error for incorrect value types failed this test failed to configure my behavior see if i m commenting on this issue too often add the flakybot quiet label and i will stop commenting commit buildurl status failed test output duplicate name in schema typecheck error duplicate name in schema typecheck at operation unpackresponse node modules google gax build src longrunningcalls longrunning js workspace node modules google gax src longrunningcalls longrunning ts at workspace node modules google gax build src longrunningcalls longrunning js workspace node modules google gax src longrunningcalls longrunning ts
1
300,591
25,978,981,031
IssuesEvent
2022-12-19 17:04:46
hazelcast/hazelcast
https://api.github.com/repos/hazelcast/hazelcast
closed
com.hazelcast.connector.Hz3* tests fail with Problem in invoking Maven dependency:get OS_TEST_JAR:3.12.13
Type: Test-Failure Source: Internal Team: Platform
_master_ (commit 6108cba3d8622fe56fe98b5edb03796c0dc3359e) Failed on Windows - MicrosoftJDK17: https://jenkins.hazelcast.com/job/Hazelcast-master-Windows-MicrosoftJDK17/41/ The following examples of this issue are from `com.hazelcast.connector.Hz3EnrichmentTest.when_enrichFromInstanceDown_then_shouldThrowJetException` <details><summary>Example Stacktrace:</summary> ``` java.lang.RuntimeException: Problem in invoking Maven dependency:get OS_TEST_JAR:3.12.13 at com.hazelcast.test.starter.HazelcastVersionLocator.downloadArtifact(HazelcastVersionLocator.java:96) at com.hazelcast.test.starter.HazelcastVersionLocator.locateArtifact(HazelcastVersionLocator.java:81) at com.hazelcast.test.starter.HazelcastVersionLocator.locateVersion(HazelcastVersionLocator.java:67) at com.hazelcast.test.starter.hz3.Hazelcast3Proxy.newHazelcastInstance(Hazelcast3Proxy.java:61) at com.hazelcast.test.starter.hz3.Hazelcast3Starter.newHazelcastInstance(Hazelcast3Starter.java:34) at com.hazelcast.connector.BaseHz3Test.setUp(BaseHz3Test.java:107) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.RunBefores.invokeMethod(RunBefores.java:33) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:24) at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) at com.hazelcast.test.DumpBuildInfoOnFailureRule$1.evaluate(DumpBuildInfoOnFailureRule.java:37) at com.hazelcast.test.jitter.JitterRule$1.evaluate(JitterRule.java:104) at com.hazelcast.test.metrics.MetricsRule$1.evaluate(MetricsRule.java:63) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) at org.junit.rules.TestWatcher$1.evaluate(TestWatcher.java:61) at org.junit.rules.RunRules.evaluate(RunRules.java:20) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.ParentRunner.run(ParentRunner.java:413) at org.junit.runners.Suite.runChild(Suite.java:128) at org.junit.runners.Suite.runChild(Suite.java:27) at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.ParentRunner.run(ParentRunner.java:413) at org.apache.maven.surefire.junitcore.JUnitCore.run(JUnitCore.java:55) at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.createRequestAndRun(JUnitCoreWrapper.java:137) at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.executeEager(JUnitCoreWrapper.java:107) at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:83) at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:75) at org.apache.maven.surefire.junitcore.JUnitCoreProvider.invoke(JUnitCoreProvider.java:157) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:428) at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:162) at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:562) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:548) Caused by: java.io.IOException: Cannot run program "mvn": CreateProcess error=2, The system cannot find the file specified at java.base/java.lang.ProcessBuilder.start(ProcessBuilder.java:1143) at java.base/java.lang.ProcessBuilder.start(ProcessBuilder.java:1073) at com.hazelcast.test.starter.HazelcastVersionLocator.downloadArtifact(HazelcastVersionLocator.java:91) ... 51 more Caused by: java.io.IOException: CreateProcess error=2, The system cannot find the file specified at java.base/java.lang.ProcessImpl.create(Native Method) at java.base/java.lang.ProcessImpl.<init>(ProcessImpl.java:494) at java.base/java.lang.ProcessImpl.start(ProcessImpl.java:159) at java.base/java.lang.ProcessBuilder.start(ProcessBuilder.java:1110) ... 53 more ``` </details> <details><summary>Example Standard output:</summary> ``` BuildInfo right after when_enrichFromInstanceDown_then_shouldThrowJetException(com.hazelcast.connector.Hz3EnrichmentTest): BuildInfo{version='5.3.0-SNAPSHOT', build='20221215', buildNumber=20221215, revision=6108cba, enterprise=false, serializationVersion=1} Hiccups measured while running test 'when_enrichFromInstanceDown_then_shouldThrowJetException(com.hazelcast.connector.Hz3EnrichmentTest):' 11:15:00, accumulated pauses: 17 ms, max pause: 1 ms, pauses over 1000 ms: 0 No metrics recorded during the test ``` </details>
1.0
com.hazelcast.connector.Hz3* tests fail with Problem in invoking Maven dependency:get OS_TEST_JAR:3.12.13 - _master_ (commit 6108cba3d8622fe56fe98b5edb03796c0dc3359e) Failed on Windows - MicrosoftJDK17: https://jenkins.hazelcast.com/job/Hazelcast-master-Windows-MicrosoftJDK17/41/ The following examples of this issue are from `com.hazelcast.connector.Hz3EnrichmentTest.when_enrichFromInstanceDown_then_shouldThrowJetException` <details><summary>Example Stacktrace:</summary> ``` java.lang.RuntimeException: Problem in invoking Maven dependency:get OS_TEST_JAR:3.12.13 at com.hazelcast.test.starter.HazelcastVersionLocator.downloadArtifact(HazelcastVersionLocator.java:96) at com.hazelcast.test.starter.HazelcastVersionLocator.locateArtifact(HazelcastVersionLocator.java:81) at com.hazelcast.test.starter.HazelcastVersionLocator.locateVersion(HazelcastVersionLocator.java:67) at com.hazelcast.test.starter.hz3.Hazelcast3Proxy.newHazelcastInstance(Hazelcast3Proxy.java:61) at com.hazelcast.test.starter.hz3.Hazelcast3Starter.newHazelcastInstance(Hazelcast3Starter.java:34) at com.hazelcast.connector.BaseHz3Test.setUp(BaseHz3Test.java:107) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) at org.junit.internal.runners.statements.RunBefores.invokeMethod(RunBefores.java:33) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:24) at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) at com.hazelcast.test.DumpBuildInfoOnFailureRule$1.evaluate(DumpBuildInfoOnFailureRule.java:37) at com.hazelcast.test.jitter.JitterRule$1.evaluate(JitterRule.java:104) at com.hazelcast.test.metrics.MetricsRule$1.evaluate(MetricsRule.java:63) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) at org.junit.rules.TestWatcher$1.evaluate(TestWatcher.java:61) at org.junit.rules.RunRules.evaluate(RunRules.java:20) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.ParentRunner.run(ParentRunner.java:413) at org.junit.runners.Suite.runChild(Suite.java:128) at org.junit.runners.Suite.runChild(Suite.java:27) at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) at org.junit.runners.ParentRunner.run(ParentRunner.java:413) at org.apache.maven.surefire.junitcore.JUnitCore.run(JUnitCore.java:55) at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.createRequestAndRun(JUnitCoreWrapper.java:137) at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.executeEager(JUnitCoreWrapper.java:107) at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:83) at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:75) at org.apache.maven.surefire.junitcore.JUnitCoreProvider.invoke(JUnitCoreProvider.java:157) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:428) at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:162) at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:562) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:548) Caused by: java.io.IOException: Cannot run program "mvn": CreateProcess error=2, The system cannot find the file specified at java.base/java.lang.ProcessBuilder.start(ProcessBuilder.java:1143) at java.base/java.lang.ProcessBuilder.start(ProcessBuilder.java:1073) at com.hazelcast.test.starter.HazelcastVersionLocator.downloadArtifact(HazelcastVersionLocator.java:91) ... 51 more Caused by: java.io.IOException: CreateProcess error=2, The system cannot find the file specified at java.base/java.lang.ProcessImpl.create(Native Method) at java.base/java.lang.ProcessImpl.<init>(ProcessImpl.java:494) at java.base/java.lang.ProcessImpl.start(ProcessImpl.java:159) at java.base/java.lang.ProcessBuilder.start(ProcessBuilder.java:1110) ... 53 more ``` </details> <details><summary>Example Standard output:</summary> ``` BuildInfo right after when_enrichFromInstanceDown_then_shouldThrowJetException(com.hazelcast.connector.Hz3EnrichmentTest): BuildInfo{version='5.3.0-SNAPSHOT', build='20221215', buildNumber=20221215, revision=6108cba, enterprise=false, serializationVersion=1} Hiccups measured while running test 'when_enrichFromInstanceDown_then_shouldThrowJetException(com.hazelcast.connector.Hz3EnrichmentTest):' 11:15:00, accumulated pauses: 17 ms, max pause: 1 ms, pauses over 1000 ms: 0 No metrics recorded during the test ``` </details>
non_priority
com hazelcast connector tests fail with problem in invoking maven dependency get os test jar master commit failed on windows the following examples of this issue are from com hazelcast connector when enrichfrominstancedown then shouldthrowjetexception example stacktrace java lang runtimeexception problem in invoking maven dependency get os test jar at com hazelcast test starter hazelcastversionlocator downloadartifact hazelcastversionlocator java at com hazelcast test starter hazelcastversionlocator locateartifact hazelcastversionlocator java at com hazelcast test starter hazelcastversionlocator locateversion hazelcastversionlocator java at com hazelcast test starter newhazelcastinstance java at com hazelcast test starter newhazelcastinstance java at com hazelcast connector setup java at java base jdk internal reflect nativemethodaccessorimpl native method at java base jdk internal reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at java base jdk internal reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java base java lang reflect method invoke method java at org junit runners model frameworkmethod runreflectivecall frameworkmethod java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners model frameworkmethod invokeexplosively frameworkmethod java at org junit internal runners statements runbefores invokemethod runbefores java at org junit internal runners statements runbefores evaluate runbefores java at org junit internal runners statements runafters evaluate runafters java at com hazelcast test dumpbuildinfoonfailurerule evaluate dumpbuildinfoonfailurerule java at com hazelcast test jitter jitterrule evaluate jitterrule java at com hazelcast test metrics metricsrule evaluate metricsrule java at org junit runners parentrunner evaluate parentrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at org junit runners runchild java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit rules testwatcher evaluate testwatcher java at org junit rules runrules evaluate runrules java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org apache maven surefire junitcore junitcore run junitcore java at org apache maven surefire junitcore junitcorewrapper createrequestandrun junitcorewrapper java at org apache maven surefire junitcore junitcorewrapper executeeager junitcorewrapper java at org apache maven surefire junitcore junitcorewrapper execute junitcorewrapper java at org apache maven surefire junitcore junitcorewrapper execute junitcorewrapper java at org apache maven surefire junitcore junitcoreprovider invoke junitcoreprovider java at org apache maven surefire booter forkedbooter runsuitesinprocess forkedbooter java at org apache maven surefire booter forkedbooter execute forkedbooter java at org apache maven surefire booter forkedbooter run forkedbooter java at org apache maven surefire booter forkedbooter main forkedbooter java caused by java io ioexception cannot run program mvn createprocess error the system cannot find the file specified at java base java lang processbuilder start processbuilder java at java base java lang processbuilder start processbuilder java at com hazelcast test starter hazelcastversionlocator downloadartifact hazelcastversionlocator java more caused by java io ioexception createprocess error the system cannot find the file specified at java base java lang processimpl create native method at java base java lang processimpl processimpl java at java base java lang processimpl start processimpl java at java base java lang processbuilder start processbuilder java more example standard output buildinfo right after when enrichfrominstancedown then shouldthrowjetexception com hazelcast connector buildinfo version snapshot build buildnumber revision enterprise false serializationversion hiccups measured while running test when enrichfrominstancedown then shouldthrowjetexception com hazelcast connector accumulated pauses ms max pause ms pauses over ms no metrics recorded during the test
0
135,645
30,332,604,384
IssuesEvent
2023-07-11 07:31:58
eclipse-theia/theia
https://api.github.com/repos/eclipse-theia/theia
closed
Complete terminal(pseudoTerminal) api
enhancement help wanted vscode
### Description VSCode has new pseudo-terminal api https://github.com/microsoft/vscode/blob/master/src/vs/vscode.d.ts#L7518 We need implement it. **OS and Theia version:** **Diagnostics:** <!-- Provide logs and any other relevant diagnostic information -->
1.0
Complete terminal(pseudoTerminal) api - ### Description VSCode has new pseudo-terminal api https://github.com/microsoft/vscode/blob/master/src/vs/vscode.d.ts#L7518 We need implement it. **OS and Theia version:** **Diagnostics:** <!-- Provide logs and any other relevant diagnostic information -->
non_priority
complete terminal pseudoterminal api description vscode has new pseudo terminal api we need implement it os and theia version diagnostics
0
149,337
23,462,869,797
IssuesEvent
2022-08-16 14:25:35
readthedocs/readthedocs.org
https://api.github.com/repos/readthedocs/readthedocs.org
closed
Docs: Remove rstcheck from linting
Needed: design decision Priority: low
Proposing to remove `rstcheck` from builds and tox.ini: Our documentation is already built with Sphinx and will fail if reST files do not compile. The tool `rstcheck` is supposed to check reStructuredText but it doesn't work without a huge amount of exceptions for the many extensions added to Sphinx. This requires a lot of maintenance but it also makes us ultimately not rely on `rstcheck` since it won't check all the roles and directives that are omitted via [.rstcheck.cfg](https://github.com/readthedocs/readthedocs.org/blob/e2e055b4ba5bf3d6afbce08e9b50911e0f8991b9/docs/.rstcheck.cfg) I'd also like to add that as a contributor, I spent a lot of time figuring out how to fix errors in `:external+<mapping-key>:ref:<label>` because the location of the file isn't obvious.. a copy of the file can exist at any point in the documentation folder hierarchy. ## Drawbacks I don't think removing it has any draw-backs, since we ultimately rely on builds from Read the Docs, and even an entry in tox.ini will build the documentation and fail when there are warnings. `rstcheck` might be great for a quicker validation of large documentation builds, but since we are doing the other builds no matter what, I don't think we are really benefiting from this aspect. Did I miss something here?
1.0
Docs: Remove rstcheck from linting - Proposing to remove `rstcheck` from builds and tox.ini: Our documentation is already built with Sphinx and will fail if reST files do not compile. The tool `rstcheck` is supposed to check reStructuredText but it doesn't work without a huge amount of exceptions for the many extensions added to Sphinx. This requires a lot of maintenance but it also makes us ultimately not rely on `rstcheck` since it won't check all the roles and directives that are omitted via [.rstcheck.cfg](https://github.com/readthedocs/readthedocs.org/blob/e2e055b4ba5bf3d6afbce08e9b50911e0f8991b9/docs/.rstcheck.cfg) I'd also like to add that as a contributor, I spent a lot of time figuring out how to fix errors in `:external+<mapping-key>:ref:<label>` because the location of the file isn't obvious.. a copy of the file can exist at any point in the documentation folder hierarchy. ## Drawbacks I don't think removing it has any draw-backs, since we ultimately rely on builds from Read the Docs, and even an entry in tox.ini will build the documentation and fail when there are warnings. `rstcheck` might be great for a quicker validation of large documentation builds, but since we are doing the other builds no matter what, I don't think we are really benefiting from this aspect. Did I miss something here?
non_priority
docs remove rstcheck from linting proposing to remove rstcheck from builds and tox ini our documentation is already built with sphinx and will fail if rest files do not compile the tool rstcheck is supposed to check restructuredtext but it doesn t work without a huge amount of exceptions for the many extensions added to sphinx this requires a lot of maintenance but it also makes us ultimately not rely on rstcheck since it won t check all the roles and directives that are omitted via i d also like to add that as a contributor i spent a lot of time figuring out how to fix errors in external ref because the location of the file isn t obvious a copy of the file can exist at any point in the documentation folder hierarchy drawbacks i don t think removing it has any draw backs since we ultimately rely on builds from read the docs and even an entry in tox ini will build the documentation and fail when there are warnings rstcheck might be great for a quicker validation of large documentation builds but since we are doing the other builds no matter what i don t think we are really benefiting from this aspect did i miss something here
0
96,441
16,129,640,870
IssuesEvent
2021-04-29 01:07:48
RG4421/ampere-centos-kernel
https://api.github.com/repos/RG4421/ampere-centos-kernel
opened
CVE-2020-27675 (Medium) detected in linuxv5.2
security vulnerability
## CVE-2020-27675 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxv5.2</b></p></summary> <p> <p>Linux kernel source tree</p> <p>Library home page: <a href=https://github.com/torvalds/linux.git>https://github.com/torvalds/linux.git</a></p> <p>Found in base branch: <b>amp-centos-8.0-kernel</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 (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>ampere-centos-kernel/drivers/xen/events/events_base.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>ampere-centos-kernel/drivers/xen/events/events_base.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> An issue was discovered in the Linux kernel through 5.9.1, as used with Xen through 4.14.x. drivers/xen/events/events_base.c allows event-channel removal during the event-handling loop (a race condition). This can cause a use-after-free or NULL pointer dereference, as demonstrated by a dom0 crash via events for an in-reconfiguration paravirtualized device, aka CID-073d0552ead5. <p>Publish Date: 2020-10-22 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-27675>CVE-2020-27675</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>4.7</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: High - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://security.gentoo.org/glsa/202011-06">https://security.gentoo.org/glsa/202011-06</a></p> <p>Fix Resolution: All Xen users should upgrade to the latest version # emerge --sync # emerge --ask --oneshot --verbose >=app-emulation/xen-4.13.1-r5 All Xen Tools users should upgrade to the latest version # emerge --sync # emerge --ask --oneshot --verbose >=app-emulation/xen-tools-4.13.1-r5 >= </p> </p> </details> <p></p>
True
CVE-2020-27675 (Medium) detected in linuxv5.2 - ## CVE-2020-27675 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxv5.2</b></p></summary> <p> <p>Linux kernel source tree</p> <p>Library home page: <a href=https://github.com/torvalds/linux.git>https://github.com/torvalds/linux.git</a></p> <p>Found in base branch: <b>amp-centos-8.0-kernel</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 (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>ampere-centos-kernel/drivers/xen/events/events_base.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>ampere-centos-kernel/drivers/xen/events/events_base.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> An issue was discovered in the Linux kernel through 5.9.1, as used with Xen through 4.14.x. drivers/xen/events/events_base.c allows event-channel removal during the event-handling loop (a race condition). This can cause a use-after-free or NULL pointer dereference, as demonstrated by a dom0 crash via events for an in-reconfiguration paravirtualized device, aka CID-073d0552ead5. <p>Publish Date: 2020-10-22 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-27675>CVE-2020-27675</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>4.7</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: High - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://security.gentoo.org/glsa/202011-06">https://security.gentoo.org/glsa/202011-06</a></p> <p>Fix Resolution: All Xen users should upgrade to the latest version # emerge --sync # emerge --ask --oneshot --verbose >=app-emulation/xen-4.13.1-r5 All Xen Tools users should upgrade to the latest version # emerge --sync # emerge --ask --oneshot --verbose >=app-emulation/xen-tools-4.13.1-r5 >= </p> </p> </details> <p></p>
non_priority
cve medium detected in cve medium severity vulnerability vulnerable library linux kernel source tree library home page a href found in base branch amp centos kernel vulnerable source files ampere centos kernel drivers xen events events base c ampere centos kernel drivers xen events events base c vulnerability details an issue was discovered in the linux kernel through as used with xen through x drivers xen events events base c allows event channel removal during the event handling loop a race condition this can cause a use after free or null pointer dereference as demonstrated by a crash via events for an in reconfiguration paravirtualized device aka cid publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity high privileges required low user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href fix resolution all xen users should upgrade to the latest version emerge sync emerge ask oneshot verbose app emulation xen all xen tools users should upgrade to the latest version emerge sync emerge ask oneshot verbose app emulation xen tools
0
307,822
23,218,394,244
IssuesEvent
2022-08-02 15:51:03
vilfa/bonsai
https://api.github.com/repos/vilfa/bonsai
closed
Add simple README and list of shortcuts, tap to click not active.
documentation
I'm glad I can make it to build and install. It will be nice to include a Readme file and give a list of shortcuts, It's just and advice tho. BTW It's nice compositor and I'll give it some days for daily driver. Additional issue : turns out tap to click still not active.
1.0
Add simple README and list of shortcuts, tap to click not active. - I'm glad I can make it to build and install. It will be nice to include a Readme file and give a list of shortcuts, It's just and advice tho. BTW It's nice compositor and I'll give it some days for daily driver. Additional issue : turns out tap to click still not active.
non_priority
add simple readme and list of shortcuts tap to click not active i m glad i can make it to build and install it will be nice to include a readme file and give a list of shortcuts it s just and advice tho btw it s nice compositor and i ll give it some days for daily driver additional issue turns out tap to click still not active
0
582,432
17,361,334,731
IssuesEvent
2021-07-29 21:07:22
Ecotrust/forestplanner
https://api.github.com/repos/Ecotrust/forestplanner
closed
Street Map: Smart Zoom
Blocked High Priority
is used often for directions to nearest town. Ideas: * [x] [Block] Need layer of towns and populations * [x] find nearest town and zoom to show property and town * [ ] cast a small net for high-population, then gradually increase search radius and reduce population threshold * [x] Look into APIs for getting directions from towns and rendering the route to the map. * [ ] Share direction steps?
1.0
Street Map: Smart Zoom - is used often for directions to nearest town. Ideas: * [x] [Block] Need layer of towns and populations * [x] find nearest town and zoom to show property and town * [ ] cast a small net for high-population, then gradually increase search radius and reduce population threshold * [x] Look into APIs for getting directions from towns and rendering the route to the map. * [ ] Share direction steps?
priority
street map smart zoom is used often for directions to nearest town ideas need layer of towns and populations find nearest town and zoom to show property and town cast a small net for high population then gradually increase search radius and reduce population threshold look into apis for getting directions from towns and rendering the route to the map share direction steps
1
14,783
25,730,856,837
IssuesEvent
2022-12-07 20:11:59
Croquembouche/pyWhat-2022
https://api.github.com/repos/Croquembouche/pyWhat-2022
closed
NFR13: Usability
Product Backlog Non-Functional Requirements
|NFR 13: Usability| |----------------------| | **Estimate:** 5 | | **Priority:** Should have | |**Story**: As a user, I want the GUI interface should be simple and easy to use so that I can save time.| | **Acceptance criteria:** | |1. GUI interface should be simple and easy to use.| |2. The GUI interface should not be confusing.|
1.0
NFR13: Usability - |NFR 13: Usability| |----------------------| | **Estimate:** 5 | | **Priority:** Should have | |**Story**: As a user, I want the GUI interface should be simple and easy to use so that I can save time.| | **Acceptance criteria:** | |1. GUI interface should be simple and easy to use.| |2. The GUI interface should not be confusing.|
non_priority
usability nfr usability estimate priority should have story as a user i want the gui interface should be simple and easy to use so that i can save time acceptance criteria gui interface should be simple and easy to use the gui interface should not be confusing
0
18,528
24,552,207,545
IssuesEvent
2022-10-12 13:26:04
GoogleCloudPlatform/fda-mystudies
https://api.github.com/repos/GoogleCloudPlatform/fda-mystudies
closed
[Android] Comprehension success screen is not getting displayed in updated consent flow
Bug P1 Android Process: Fixed Process: Tested QA Process: Tested dev
**Steps:** 1. Sign in and enroll to the study 2. Now, Go to SB and update the consent for enrolled participants 3. Open the mobile app and complete the eligibility section 4. Navigate to comprehension section 5. Complete the comprehension section and Observe **AR:** Comprehension success screen is not getting displayed in updated consent flow **ER:** Comprehension success screen should get displayed in updated consent flow [ Refer the screenshot attached] ![Screenshot_20220905-133902_FDA MyStudies](https://user-images.githubusercontent.com/86007179/188403771-1363fd4d-36c4-464e-94e6-8e69b1284956.jpg)
3.0
[Android] Comprehension success screen is not getting displayed in updated consent flow - **Steps:** 1. Sign in and enroll to the study 2. Now, Go to SB and update the consent for enrolled participants 3. Open the mobile app and complete the eligibility section 4. Navigate to comprehension section 5. Complete the comprehension section and Observe **AR:** Comprehension success screen is not getting displayed in updated consent flow **ER:** Comprehension success screen should get displayed in updated consent flow [ Refer the screenshot attached] ![Screenshot_20220905-133902_FDA MyStudies](https://user-images.githubusercontent.com/86007179/188403771-1363fd4d-36c4-464e-94e6-8e69b1284956.jpg)
non_priority
comprehension success screen is not getting displayed in updated consent flow steps sign in and enroll to the study now go to sb and update the consent for enrolled participants open the mobile app and complete the eligibility section navigate to comprehension section complete the comprehension section and observe ar comprehension success screen is not getting displayed in updated consent flow er comprehension success screen should get displayed in updated consent flow
0
74,842
3,448,928,115
IssuesEvent
2015-12-16 11:00:01
mhnsn/Fall_2015
https://api.github.com/repos/mhnsn/Fall_2015
closed
9a. (5) The record number list and form fields reflect the structure of the project
CS 240 Priority 1: Fire
The record number list and form fields reflect the structure of the project, including record numbers, field names, and field order.
1.0
9a. (5) The record number list and form fields reflect the structure of the project - The record number list and form fields reflect the structure of the project, including record numbers, field names, and field order.
priority
the record number list and form fields reflect the structure of the project the record number list and form fields reflect the structure of the project including record numbers field names and field order
1
89,118
25,579,218,667
IssuesEvent
2022-12-01 01:59:57
spack/spack
https://api.github.com/repos/spack/spack
reopened
Installation issue: py-scipy with Blis and Flame
build-error
### Steps to reproduce the issue Hi everyone (and the maintainers of the py-scipy @adamjstewart @rgommers) I have a problem appearing when I try to install py-scipy using AMDBlis (and AMDlibflame) as dependency, and a similar error appears installing py-scipy using Blis (and libflame). After perfectly installing AMDBlis and AMDlibflame as `spack install amdblis threads=openmp` `spack install amdlibflame^amdblis threads=openmp` If I try to install py-scipy, after installing correctly all the other packages, during the phase "install" i obtain the error (more in detail later): `scipy/meson.build:131:0: ERROR: Dependency "blis-mt" not found, tried pkgconfig and cmake` A similar error happens, for example, when I install scipy having Blis and libflame as `spack install blis` `spack install libflame^blis` where in this case the dependency not found is different, and I have the error `scipy/meson.build:132:0: ERROR: Dependency "flame" not found, tried pkgconfig and cmake` ### Error message Installing py-scipy-1.9.3-5q2zwez4ev2zc2mwhaymii2kxu4ydzs4 ==> No binary for py-scipy-1.9.3-5q2zwez4ev2zc2mwhaymii2kxu4ydzs4 found: installing from source ==> Using cached archive: /software/spack/var/spack/cache/_source-cache/archive/fb/fbc5c05c85c1a02be77b1ff591087c83bc44579c6d2bd9fb798bb64ea5e1a027.tar.gz ==> No patches needed for py-scipy ==> py-scipy: Executing phase: 'install' ==> Error: ProcessError: Command exited with status 1: '/software/spack/opt/spack/linux-ubuntu20.04-zen2/gcc-9.4.0/meson-0.64.0-icly3vurwtgjcv7ewsk6borzufhw5eap/bin/meson' 'setup' 'build' '-Dblas=blis-mt' '-Dlapack=flame' '--prefix=/tmp/root/spack-stage/spack-stage-py-scipy-1.9.3-5q2zwez4ev2zc2mwhaymii2kxu4ydzs4/spack-src/build-install' '-Ddebug=false' '-Doptimization=2' 1 error found in build log: 39 | Support for all CMake versions below 3.17.0 will be removed once 40 | newer CMake versions are more widely adopted. If you encounter 41 | any errors please try upgrading CMake to a newer version first. 42 43 Run-time dependency blis-mt found: NO (tried pkgconfig and cmake) 44 >> 45 scipy/meson.build:131:0: ERROR: Dependency "blis-mt" not found, tried pkgconfig and cmake 46 47 A full log can be found at /tmp/root/spack-stage/spack-stage-py-scipy-1.9.3-5q2zwez4ev2zc2mwhaymii2kxu4ydzs4/spack-src/build/meson-logs/meson-log.txt ### Information on your system Up to now, the default configuration files have not been modified. Outcome of spack debug report: ``` * **Spack:** 0.20.0.dev0 (4bf964e6b36e8756b014c2e30343507c1cb71b03) * **Python:** 3.8.10 * **Platform:** linux-ubuntu20.04-zen2 * **Concretizer:** clingo ``` ### Additional information [meson_log.txt](https://github.com/spack/spack/files/10106916/meson_log.txt) Thanks for your time. ### General information - [X] I have run `spack debug report` and reported the version of Spack/Python/Platform - [X] I have run `spack maintainers <name-of-the-package>` and **@mentioned** any maintainers - [X] I have uploaded the build log and environment files - [X] I have searched the issues of this repo and believe this is not a duplicate
1.0
Installation issue: py-scipy with Blis and Flame - ### Steps to reproduce the issue Hi everyone (and the maintainers of the py-scipy @adamjstewart @rgommers) I have a problem appearing when I try to install py-scipy using AMDBlis (and AMDlibflame) as dependency, and a similar error appears installing py-scipy using Blis (and libflame). After perfectly installing AMDBlis and AMDlibflame as `spack install amdblis threads=openmp` `spack install amdlibflame^amdblis threads=openmp` If I try to install py-scipy, after installing correctly all the other packages, during the phase "install" i obtain the error (more in detail later): `scipy/meson.build:131:0: ERROR: Dependency "blis-mt" not found, tried pkgconfig and cmake` A similar error happens, for example, when I install scipy having Blis and libflame as `spack install blis` `spack install libflame^blis` where in this case the dependency not found is different, and I have the error `scipy/meson.build:132:0: ERROR: Dependency "flame" not found, tried pkgconfig and cmake` ### Error message Installing py-scipy-1.9.3-5q2zwez4ev2zc2mwhaymii2kxu4ydzs4 ==> No binary for py-scipy-1.9.3-5q2zwez4ev2zc2mwhaymii2kxu4ydzs4 found: installing from source ==> Using cached archive: /software/spack/var/spack/cache/_source-cache/archive/fb/fbc5c05c85c1a02be77b1ff591087c83bc44579c6d2bd9fb798bb64ea5e1a027.tar.gz ==> No patches needed for py-scipy ==> py-scipy: Executing phase: 'install' ==> Error: ProcessError: Command exited with status 1: '/software/spack/opt/spack/linux-ubuntu20.04-zen2/gcc-9.4.0/meson-0.64.0-icly3vurwtgjcv7ewsk6borzufhw5eap/bin/meson' 'setup' 'build' '-Dblas=blis-mt' '-Dlapack=flame' '--prefix=/tmp/root/spack-stage/spack-stage-py-scipy-1.9.3-5q2zwez4ev2zc2mwhaymii2kxu4ydzs4/spack-src/build-install' '-Ddebug=false' '-Doptimization=2' 1 error found in build log: 39 | Support for all CMake versions below 3.17.0 will be removed once 40 | newer CMake versions are more widely adopted. If you encounter 41 | any errors please try upgrading CMake to a newer version first. 42 43 Run-time dependency blis-mt found: NO (tried pkgconfig and cmake) 44 >> 45 scipy/meson.build:131:0: ERROR: Dependency "blis-mt" not found, tried pkgconfig and cmake 46 47 A full log can be found at /tmp/root/spack-stage/spack-stage-py-scipy-1.9.3-5q2zwez4ev2zc2mwhaymii2kxu4ydzs4/spack-src/build/meson-logs/meson-log.txt ### Information on your system Up to now, the default configuration files have not been modified. Outcome of spack debug report: ``` * **Spack:** 0.20.0.dev0 (4bf964e6b36e8756b014c2e30343507c1cb71b03) * **Python:** 3.8.10 * **Platform:** linux-ubuntu20.04-zen2 * **Concretizer:** clingo ``` ### Additional information [meson_log.txt](https://github.com/spack/spack/files/10106916/meson_log.txt) Thanks for your time. ### General information - [X] I have run `spack debug report` and reported the version of Spack/Python/Platform - [X] I have run `spack maintainers <name-of-the-package>` and **@mentioned** any maintainers - [X] I have uploaded the build log and environment files - [X] I have searched the issues of this repo and believe this is not a duplicate
non_priority
installation issue py scipy with blis and flame steps to reproduce the issue hi everyone and the maintainers of the py scipy adamjstewart rgommers i have a problem appearing when i try to install py scipy using amdblis and amdlibflame as dependency and a similar error appears installing py scipy using blis and libflame after perfectly installing amdblis and amdlibflame as spack install amdblis threads openmp spack install amdlibflame amdblis threads openmp if i try to install py scipy after installing correctly all the other packages during the phase install i obtain the error more in detail later scipy meson build error dependency blis mt not found tried pkgconfig and cmake a similar error happens for example when i install scipy having blis and libflame as spack install blis spack install libflame blis where in this case the dependency not found is different and i have the error scipy meson build error dependency flame not found tried pkgconfig and cmake error message installing py scipy no binary for py scipy found installing from source using cached archive software spack var spack cache source cache archive fb tar gz no patches needed for py scipy py scipy executing phase install error processerror command exited with status software spack opt spack linux gcc meson bin meson setup build dblas blis mt dlapack flame prefix tmp root spack stage spack stage py scipy spack src build install ddebug false doptimization error found in build log support for all cmake versions below will be removed once newer cmake versions are more widely adopted if you encounter any errors please try upgrading cmake to a newer version first run time dependency blis mt found no tried pkgconfig and cmake scipy meson build error dependency blis mt not found tried pkgconfig and cmake a full log can be found at tmp root spack stage spack stage py scipy spack src build meson logs meson log txt information on your system up to now the default configuration files have not been modified outcome of spack debug report spack python platform linux concretizer clingo additional information thanks for your time general information i have run spack debug report and reported the version of spack python platform i have run spack maintainers and mentioned any maintainers i have uploaded the build log and environment files i have searched the issues of this repo and believe this is not a duplicate
0
536,108
15,704,225,656
IssuesEvent
2021-03-26 14:46:02
HabitRPG/habitica-ios
https://api.github.com/repos/HabitRPG/habitica-ios
opened
Seasonal Event improvements
Priority: medium Type: Enhancement
- [ ] Add in clock icon to the corner of seasonal items that are only available for a limited time - [ ] Add in banner to the item modal that says when the seasonal item will go away - [ ] Add UI to the Seasonal Shop menu item that says when the shop is open and for how long - [ ] Add UI to the Market menu item that says when seasonal potions are available - [ ] For modal banner and menu time, when within 24h of event being over, convert to count down ie '16h 8m'
1.0
Seasonal Event improvements - - [ ] Add in clock icon to the corner of seasonal items that are only available for a limited time - [ ] Add in banner to the item modal that says when the seasonal item will go away - [ ] Add UI to the Seasonal Shop menu item that says when the shop is open and for how long - [ ] Add UI to the Market menu item that says when seasonal potions are available - [ ] For modal banner and menu time, when within 24h of event being over, convert to count down ie '16h 8m'
priority
seasonal event improvements add in clock icon to the corner of seasonal items that are only available for a limited time add in banner to the item modal that says when the seasonal item will go away add ui to the seasonal shop menu item that says when the shop is open and for how long add ui to the market menu item that says when seasonal potions are available for modal banner and menu time when within of event being over convert to count down ie
1
151,869
5,829,191,209
IssuesEvent
2017-05-08 14:03:06
smartchicago/chicago-early-learning
https://api.github.com/repos/smartchicago/chicago-early-learning
closed
Redirect from ECM application system to placeholder
High Priority
As we approach a transitional period before the new application period begins, we want to redirect from the apply. subdomain (which leads to the ECM application), to a placeholder page. Here are some of the steps involved: - [x] Create a new page with a URL like /announcement - [x] Styling could match an informational page like /city-resources to keep it simple - [x] Add an image to this page. I like this one: ![theresa13](https://cloud.githubusercontent.com/assets/5550969/25625858/4acf1dba-2f23-11e7-9670-7d8238735d6e.jpg) - [x] Add text (in English): > Are you looking for preschool for your 3 or 4 year old starting in the fall? > > Chicago Early Learning Preschool Applications open May 15th for the 2017 – 2018 school year! > > Chicago Early Learning supports Chicago families looking for early learning at community sites and schools across the city. > > For immediate enrollment before the fall, please call 773-553-2010, or call the community site you would like your child to attend. > > For any other questions, please call the Chicago Early Learning Hotline: 312-229-1690 Note: the top two sentences are the main pieces of the information so may sure those are bold, big, highlighted on page. Link telephone numbers. - [x] Add text in Spanish (still waiting for copy) - [x] Change all locations that direct users to ECM to this /announcement page. See #731 for a list of links that require updating.
1.0
Redirect from ECM application system to placeholder - As we approach a transitional period before the new application period begins, we want to redirect from the apply. subdomain (which leads to the ECM application), to a placeholder page. Here are some of the steps involved: - [x] Create a new page with a URL like /announcement - [x] Styling could match an informational page like /city-resources to keep it simple - [x] Add an image to this page. I like this one: ![theresa13](https://cloud.githubusercontent.com/assets/5550969/25625858/4acf1dba-2f23-11e7-9670-7d8238735d6e.jpg) - [x] Add text (in English): > Are you looking for preschool for your 3 or 4 year old starting in the fall? > > Chicago Early Learning Preschool Applications open May 15th for the 2017 – 2018 school year! > > Chicago Early Learning supports Chicago families looking for early learning at community sites and schools across the city. > > For immediate enrollment before the fall, please call 773-553-2010, or call the community site you would like your child to attend. > > For any other questions, please call the Chicago Early Learning Hotline: 312-229-1690 Note: the top two sentences are the main pieces of the information so may sure those are bold, big, highlighted on page. Link telephone numbers. - [x] Add text in Spanish (still waiting for copy) - [x] Change all locations that direct users to ECM to this /announcement page. See #731 for a list of links that require updating.
priority
redirect from ecm application system to placeholder as we approach a transitional period before the new application period begins we want to redirect from the apply subdomain which leads to the ecm application to a placeholder page here are some of the steps involved create a new page with a url like announcement styling could match an informational page like city resources to keep it simple add an image to this page i like this one add text in english are you looking for preschool for your or year old starting in the fall chicago early learning preschool applications open may for the – school year chicago early learning supports chicago families looking for early learning at community sites and schools across the city for immediate enrollment before the fall please call or call the community site you would like your child to attend for any other questions please call the chicago early learning hotline note the top two sentences are the main pieces of the information so may sure those are bold big highlighted on page link telephone numbers add text in spanish still waiting for copy change all locations that direct users to ecm to this announcement page see for a list of links that require updating
1
356,701
25,176,244,877
IssuesEvent
2022-11-11 09:30:52
TZL0/pe
https://api.github.com/repos/TZL0/pe
opened
Invalid command in DG
severity.Low type.DocumentationBug
`delete` command in developer guide does not actually exist in the application which may cause confusion to developers. ![image.png](https://raw.githubusercontent.com/TZL0/pe/main/files/0957093d-d101-4312-a8f5-71f64ce2ab3d.png) <!--session: 1668154547514-b0cf5391-b882-4c7a-8aeb-5d77963c2458--> <!--Version: Web v3.4.4-->
1.0
Invalid command in DG - `delete` command in developer guide does not actually exist in the application which may cause confusion to developers. ![image.png](https://raw.githubusercontent.com/TZL0/pe/main/files/0957093d-d101-4312-a8f5-71f64ce2ab3d.png) <!--session: 1668154547514-b0cf5391-b882-4c7a-8aeb-5d77963c2458--> <!--Version: Web v3.4.4-->
non_priority
invalid command in dg delete command in developer guide does not actually exist in the application which may cause confusion to developers
0
259,769
27,724,994,334
IssuesEvent
2023-03-15 01:00:44
billmcchesney1/foxtrot
https://api.github.com/repos/billmcchesney1/foxtrot
opened
CVE-2019-20920 (High) detected in handlebars-1.3.0.js
Mend: dependency security vulnerability
## CVE-2019-20920 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>handlebars-1.3.0.js</b></p></summary> <p>Handlebars provides the power necessary to let you build semantic templates effectively with no frustration</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.3.0/handlebars.js">https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.3.0/handlebars.js</a></p> <p>Path to dependency file: /foxtrot-server/src/main/resources/console/cluster/index.htm</p> <p>Path to vulnerable library: /foxtrot-server/src/main/resources/console/js/handlebars-v1.3.0.js,/foxtrot-server/src/main/resources/console/cluster/../js/handlebars-v1.3.0.js,/foxtrot-server/target/classes/console/fql/../js/handlebars-v1.3.0.js,/foxtrot-server/target/classes/console/echo/js/handlebars-v1.3.0.js,/foxtrot-server/target/classes/console/cluster/../js/handlebars-v1.3.0.js,/foxtrot-server/src/main/resources/console/echo/js/handlebars-v1.3.0.js,/foxtrot-server/target/classes/console/echo/fql/../js/handlebars-v1.3.0.js,/foxtrot-server/target/classes/console/js/handlebars-v1.3.0.js,/foxtrot-server/src/main/resources/console/echo/cluster/../js/handlebars-v1.3.0.js,/foxtrot-server/target/classes/console/echo/cluster/../js/handlebars-v1.3.0.js,/foxtrot-server/src/main/resources/console/js/handlebars-v1.3.0.js,/foxtrot-server/src/main/resources/console/echo/fql/../js/handlebars-v1.3.0.js,/foxtrot-server/src/main/resources/console/echo/js/handlebars-v1.3.0.js,/foxtrot-server/target/classes/console/js/handlebars-v1.3.0.js,/foxtrot-server/target/classes/console/echo/js/handlebars-v1.3.0.js,/foxtrot-server/src/main/resources/console/fql/../js/handlebars-v1.3.0.js</p> <p> Dependency Hierarchy: - :x: **handlebars-1.3.0.js** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/billmcchesney1/foxtrot/commit/ffb8a6014463ce8aac1bf6e7dc9a23fc4a2a8adc">ffb8a6014463ce8aac1bf6e7dc9a23fc4a2a8adc</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> Handlebars before 3.0.8 and 4.x before 4.5.3 is vulnerable to Arbitrary Code Execution. The lookup helper fails to properly validate templates, allowing attackers to submit templates that execute arbitrary JavaScript. This can be used to run arbitrary code on a server processing Handlebars templates or in a victim's browser (effectively serving as XSS). <p>Publish Date: 2020-09-30 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2019-20920>CVE-2019-20920</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: None - User Interaction: None - Scope: Changed - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: Low - 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://www.npmjs.com/advisories/1316">https://www.npmjs.com/advisories/1316</a></p> <p>Release Date: 2020-10-15</p> <p>Fix Resolution: handlebars - 4.5.3</p> </p> </details> <p></p>
True
CVE-2019-20920 (High) detected in handlebars-1.3.0.js - ## CVE-2019-20920 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>handlebars-1.3.0.js</b></p></summary> <p>Handlebars provides the power necessary to let you build semantic templates effectively with no frustration</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.3.0/handlebars.js">https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.3.0/handlebars.js</a></p> <p>Path to dependency file: /foxtrot-server/src/main/resources/console/cluster/index.htm</p> <p>Path to vulnerable library: /foxtrot-server/src/main/resources/console/js/handlebars-v1.3.0.js,/foxtrot-server/src/main/resources/console/cluster/../js/handlebars-v1.3.0.js,/foxtrot-server/target/classes/console/fql/../js/handlebars-v1.3.0.js,/foxtrot-server/target/classes/console/echo/js/handlebars-v1.3.0.js,/foxtrot-server/target/classes/console/cluster/../js/handlebars-v1.3.0.js,/foxtrot-server/src/main/resources/console/echo/js/handlebars-v1.3.0.js,/foxtrot-server/target/classes/console/echo/fql/../js/handlebars-v1.3.0.js,/foxtrot-server/target/classes/console/js/handlebars-v1.3.0.js,/foxtrot-server/src/main/resources/console/echo/cluster/../js/handlebars-v1.3.0.js,/foxtrot-server/target/classes/console/echo/cluster/../js/handlebars-v1.3.0.js,/foxtrot-server/src/main/resources/console/js/handlebars-v1.3.0.js,/foxtrot-server/src/main/resources/console/echo/fql/../js/handlebars-v1.3.0.js,/foxtrot-server/src/main/resources/console/echo/js/handlebars-v1.3.0.js,/foxtrot-server/target/classes/console/js/handlebars-v1.3.0.js,/foxtrot-server/target/classes/console/echo/js/handlebars-v1.3.0.js,/foxtrot-server/src/main/resources/console/fql/../js/handlebars-v1.3.0.js</p> <p> Dependency Hierarchy: - :x: **handlebars-1.3.0.js** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/billmcchesney1/foxtrot/commit/ffb8a6014463ce8aac1bf6e7dc9a23fc4a2a8adc">ffb8a6014463ce8aac1bf6e7dc9a23fc4a2a8adc</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> Handlebars before 3.0.8 and 4.x before 4.5.3 is vulnerable to Arbitrary Code Execution. The lookup helper fails to properly validate templates, allowing attackers to submit templates that execute arbitrary JavaScript. This can be used to run arbitrary code on a server processing Handlebars templates or in a victim's browser (effectively serving as XSS). <p>Publish Date: 2020-09-30 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2019-20920>CVE-2019-20920</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: None - User Interaction: None - Scope: Changed - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: Low - 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://www.npmjs.com/advisories/1316">https://www.npmjs.com/advisories/1316</a></p> <p>Release Date: 2020-10-15</p> <p>Fix Resolution: handlebars - 4.5.3</p> </p> </details> <p></p>
non_priority
cve high detected in handlebars js cve high severity vulnerability vulnerable library handlebars js handlebars provides the power necessary to let you build semantic templates effectively with no frustration library home page a href path to dependency file foxtrot server src main resources console cluster index htm path to vulnerable library foxtrot server src main resources console js handlebars js foxtrot server src main resources console cluster js handlebars js foxtrot server target classes console fql js handlebars js foxtrot server target classes console echo js handlebars js foxtrot server target classes console cluster js handlebars js foxtrot server src main resources console echo js handlebars js foxtrot server target classes console echo fql js handlebars js foxtrot server target classes console js handlebars js foxtrot server src main resources console echo cluster js handlebars js foxtrot server target classes console echo cluster js handlebars js foxtrot server src main resources console js handlebars js foxtrot server src main resources console echo fql js handlebars js foxtrot server src main resources console echo js handlebars js foxtrot server target classes console js handlebars js foxtrot server target classes console echo js handlebars js foxtrot server src main resources console fql js handlebars js dependency hierarchy x handlebars js vulnerable library found in head commit a href found in base branch master vulnerability details handlebars before and x before is vulnerable to arbitrary code execution the lookup helper fails to properly validate templates allowing attackers to submit templates that execute arbitrary javascript this can be used to run arbitrary code on a server processing handlebars templates or in a victim s browser effectively serving as xss publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required none user interaction none scope changed impact metrics confidentiality impact high integrity impact low availability impact low for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution handlebars
0
224,583
17,760,214,374
IssuesEvent
2021-08-29 14:54:33
sphinx-doc/sphinx
https://api.github.com/repos/sphinx-doc/sphinx
closed
`SphinxTestApp` builds in `_build`, not separated `build` folder
proposal test
### Describe the bug When running `sphinx-quickstart`, users may choose to put build files in a folder `build` separate from `source`. However, when running unit tests, `SphinxTestApp` automatically builds in `source/_build`, which creates two sets of build files. This is evident from the source: ```python class SphinxTestApp(application.Sphinx): """ A subclass of :class:`Sphinx` that runs on the test root, with some better default values for the initialization parameters. """ _status: StringIO = None _warning: StringIO = None def __init__(self, buildername: str = 'html', srcdir: path = None, freshenv: bool = False, confoverrides: Dict = None, status: IO = None, warning: IO = None, tags: List[str] = None, docutilsconf: str = None, parallel: int = 0) -> None: if docutilsconf is not None: (srcdir / 'docutils.conf').write_text(docutilsconf) builddir = srcdir / '_build' ``` ### How to Reproduce ```bash > sphinx-quickstart ... Enter the root path for documentation. > Root path for the documentation [.]: You have two options for placing the build directory for Sphinx output. Either, you use a directory "_build" within the root path, or you separate "source" and "build" directories within the root path. > Separate source and build directories (y/n) [n]: y ... ``` Then, when running a test, files are built to `source/_build` instead of the desired `build` folder. ### Expected behavior `sphinx` uses the environment variable `${BUILDDIR}` (written out to `Makefile` and `make.bat`) set when running `sphinx-quickstart` as the folder to put build files in. ### Your project N/A ### Screenshots ![image](https://user-images.githubusercontent.com/77850046/127937010-9b606bc5-848b-4b1a-850d-99e0cb47606a.png) ### OS Windows 10 Professional x64, Build 1909 ### Python version 3.8.10 ### Sphinx version 4.1.2 ### Sphinx extensions N/A ### Extra tools N/A ### Additional context NOTE: If this was intentional, then users who do build under the source directory have their build files overwritten with each unit test, and then this is still a bug.
1.0
`SphinxTestApp` builds in `_build`, not separated `build` folder - ### Describe the bug When running `sphinx-quickstart`, users may choose to put build files in a folder `build` separate from `source`. However, when running unit tests, `SphinxTestApp` automatically builds in `source/_build`, which creates two sets of build files. This is evident from the source: ```python class SphinxTestApp(application.Sphinx): """ A subclass of :class:`Sphinx` that runs on the test root, with some better default values for the initialization parameters. """ _status: StringIO = None _warning: StringIO = None def __init__(self, buildername: str = 'html', srcdir: path = None, freshenv: bool = False, confoverrides: Dict = None, status: IO = None, warning: IO = None, tags: List[str] = None, docutilsconf: str = None, parallel: int = 0) -> None: if docutilsconf is not None: (srcdir / 'docutils.conf').write_text(docutilsconf) builddir = srcdir / '_build' ``` ### How to Reproduce ```bash > sphinx-quickstart ... Enter the root path for documentation. > Root path for the documentation [.]: You have two options for placing the build directory for Sphinx output. Either, you use a directory "_build" within the root path, or you separate "source" and "build" directories within the root path. > Separate source and build directories (y/n) [n]: y ... ``` Then, when running a test, files are built to `source/_build` instead of the desired `build` folder. ### Expected behavior `sphinx` uses the environment variable `${BUILDDIR}` (written out to `Makefile` and `make.bat`) set when running `sphinx-quickstart` as the folder to put build files in. ### Your project N/A ### Screenshots ![image](https://user-images.githubusercontent.com/77850046/127937010-9b606bc5-848b-4b1a-850d-99e0cb47606a.png) ### OS Windows 10 Professional x64, Build 1909 ### Python version 3.8.10 ### Sphinx version 4.1.2 ### Sphinx extensions N/A ### Extra tools N/A ### Additional context NOTE: If this was intentional, then users who do build under the source directory have their build files overwritten with each unit test, and then this is still a bug.
non_priority
sphinxtestapp builds in build not separated build folder describe the bug when running sphinx quickstart users may choose to put build files in a folder build separate from source however when running unit tests sphinxtestapp automatically builds in source build which creates two sets of build files this is evident from the source python class sphinxtestapp application sphinx a subclass of class sphinx that runs on the test root with some better default values for the initialization parameters status stringio none warning stringio none def init self buildername str html srcdir path none freshenv bool false confoverrides dict none status io none warning io none tags list none docutilsconf str none parallel int none if docutilsconf is not none srcdir docutils conf write text docutilsconf builddir srcdir build how to reproduce bash sphinx quickstart enter the root path for documentation root path for the documentation you have two options for placing the build directory for sphinx output either you use a directory build within the root path or you separate source and build directories within the root path separate source and build directories y n y then when running a test files are built to source build instead of the desired build folder expected behavior sphinx uses the environment variable builddir written out to makefile and make bat set when running sphinx quickstart as the folder to put build files in your project n a screenshots os windows professional build python version sphinx version sphinx extensions n a extra tools n a additional context note if this was intentional then users who do build under the source directory have their build files overwritten with each unit test and then this is still a bug
0
659,101
21,916,231,326
IssuesEvent
2022-05-21 21:42:23
SkriptLang/Skript
https://api.github.com/repos/SkriptLang/Skript
closed
World reload causes worlds in location variables to not work correctly until restart
enhancement priority: low completed
this has been a bug in Skript for a while, it would be nice if it would get fixed. example: you go to a world which isn't the main world, but an additional world created by world management plugins like Multiverse-Core or some other you use !set {spawn} to location of player then you unload and load back that world and do !teleport player to {spawn}, it will teleport to that location, but in the main server's world, not the one in which you set it it can be fixed if you use !set world of {spawn} to "%world of {spawn}%" parsed as a world or if you restart the server it also gets fixed it would be nice if it wouldn't break with world reloads, because I reload worlds for world resetting
1.0
World reload causes worlds in location variables to not work correctly until restart - this has been a bug in Skript for a while, it would be nice if it would get fixed. example: you go to a world which isn't the main world, but an additional world created by world management plugins like Multiverse-Core or some other you use !set {spawn} to location of player then you unload and load back that world and do !teleport player to {spawn}, it will teleport to that location, but in the main server's world, not the one in which you set it it can be fixed if you use !set world of {spawn} to "%world of {spawn}%" parsed as a world or if you restart the server it also gets fixed it would be nice if it wouldn't break with world reloads, because I reload worlds for world resetting
priority
world reload causes worlds in location variables to not work correctly until restart this has been a bug in skript for a while it would be nice if it would get fixed example you go to a world which isn t the main world but an additional world created by world management plugins like multiverse core or some other you use set spawn to location of player then you unload and load back that world and do teleport player to spawn it will teleport to that location but in the main server s world not the one in which you set it it can be fixed if you use set world of spawn to world of spawn parsed as a world or if you restart the server it also gets fixed it would be nice if it wouldn t break with world reloads because i reload worlds for world resetting
1
393,241
11,612,341,337
IssuesEvent
2020-02-26 08:46:53
richelbilderbeek/pirouette
https://api.github.com/repos/richelbilderbeek/pirouette
closed
'check_experiments' does not detect duplicate error filenames
high priority
**Describe the bug** If there are multiple experiments, one generative, and one candidate, these should save their errors to different files. **To Reproduce** ```r experiments <- create_test_pir_params_setup( has_candidate = TRUE )$experiments experiments[[1]]$errors_filename <- "errors.csv" experiments[[2]]$errors_filename <- "errors.csv" expect_equal(experiments[[1]]$inference_conditions$model_type, "generative") expect_equal(experiments[[2]]$inference_conditions$model_type, "candidate") # Should give error ... expect_error(check_experiments(experiments)) # ... because these files should differ expect_true(experiments[[1]]$errors_filename != experiments[[2]]$errors_filename) ``` **Expected behavior** See tests **Environment:** Show the results of running the following script: ```r library(mcbette) mcbette::mcbette_report() ``` ``` *********** * mcbette * *********** Can run mcbette: TRUE OS: unix **************** * Dependencies * **************** beautier version: 2.3.5 tracerer version: 2.0.4 beastier version: 2.1.3 mauricer version: 2.0.6 babette version: 2.1.2 ********** * BEAST2 * ********** Java version: 11.0.6+10-post-Ubuntu-1ubuntu119.10.1 Is BEAST2 installed: TRUE BEAST2 version: 2.6.1 BEAST2 default path: /home/richel/.local/share/beast/bin/beast ******************* * BEAST2 packages * ******************* Is BEAST2 NS package installed: TRUE BEAST2 NS installed version: 1.1.0 BEAST2 NS latest version: 1.1.0 *************** * sessionInfo * *************** R version 3.6.1 (2019-07-05) Platform: x86_64-pc-linux-gnu (64-bit) Running under: Ubuntu 19.10 Matrix products: default BLAS: /usr/lib/x86_64-linux-gnu/blas/libblas.so.3.8.0 LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.8.0 locale: [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C [3] LC_TIME=en_US.UTF-8 LC_COLLATE=en_US.UTF-8 [5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 [7] LC_PAPER=nl_NL.UTF-8 LC_NAME=nl_NL.UTF-8 [9] LC_ADDRESS=nl_NL.UTF-8 LC_TELEPHONE=nl_NL.UTF-8 [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=nl_NL.UTF-8 attached base packages: [1] stats graphics grDevices utils datasets methods base loaded via a namespace (and not attached): [1] compiler_3.6.1 magrittr_1.5 tools_3.6.1 curl_4.3 rappdirs_0.3.1 [6] beautier_2.3.5 mcbette_1.8.2 mauricer_2.0.6 stringi_1.4.6 beastier_2.1.3 [11] stringr_1.4.0 testit_0.11 rJava_0.9-11 ``` **Additional context** None.
1.0
'check_experiments' does not detect duplicate error filenames - **Describe the bug** If there are multiple experiments, one generative, and one candidate, these should save their errors to different files. **To Reproduce** ```r experiments <- create_test_pir_params_setup( has_candidate = TRUE )$experiments experiments[[1]]$errors_filename <- "errors.csv" experiments[[2]]$errors_filename <- "errors.csv" expect_equal(experiments[[1]]$inference_conditions$model_type, "generative") expect_equal(experiments[[2]]$inference_conditions$model_type, "candidate") # Should give error ... expect_error(check_experiments(experiments)) # ... because these files should differ expect_true(experiments[[1]]$errors_filename != experiments[[2]]$errors_filename) ``` **Expected behavior** See tests **Environment:** Show the results of running the following script: ```r library(mcbette) mcbette::mcbette_report() ``` ``` *********** * mcbette * *********** Can run mcbette: TRUE OS: unix **************** * Dependencies * **************** beautier version: 2.3.5 tracerer version: 2.0.4 beastier version: 2.1.3 mauricer version: 2.0.6 babette version: 2.1.2 ********** * BEAST2 * ********** Java version: 11.0.6+10-post-Ubuntu-1ubuntu119.10.1 Is BEAST2 installed: TRUE BEAST2 version: 2.6.1 BEAST2 default path: /home/richel/.local/share/beast/bin/beast ******************* * BEAST2 packages * ******************* Is BEAST2 NS package installed: TRUE BEAST2 NS installed version: 1.1.0 BEAST2 NS latest version: 1.1.0 *************** * sessionInfo * *************** R version 3.6.1 (2019-07-05) Platform: x86_64-pc-linux-gnu (64-bit) Running under: Ubuntu 19.10 Matrix products: default BLAS: /usr/lib/x86_64-linux-gnu/blas/libblas.so.3.8.0 LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.8.0 locale: [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C [3] LC_TIME=en_US.UTF-8 LC_COLLATE=en_US.UTF-8 [5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 [7] LC_PAPER=nl_NL.UTF-8 LC_NAME=nl_NL.UTF-8 [9] LC_ADDRESS=nl_NL.UTF-8 LC_TELEPHONE=nl_NL.UTF-8 [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=nl_NL.UTF-8 attached base packages: [1] stats graphics grDevices utils datasets methods base loaded via a namespace (and not attached): [1] compiler_3.6.1 magrittr_1.5 tools_3.6.1 curl_4.3 rappdirs_0.3.1 [6] beautier_2.3.5 mcbette_1.8.2 mauricer_2.0.6 stringi_1.4.6 beastier_2.1.3 [11] stringr_1.4.0 testit_0.11 rJava_0.9-11 ``` **Additional context** None.
priority
check experiments does not detect duplicate error filenames describe the bug if there are multiple experiments one generative and one candidate these should save their errors to different files to reproduce r experiments create test pir params setup has candidate true experiments experiments errors filename errors csv experiments errors filename errors csv expect equal experiments inference conditions model type generative expect equal experiments inference conditions model type candidate should give error expect error check experiments experiments because these files should differ expect true experiments errors filename experiments errors filename expected behavior see tests environment show the results of running the following script r library mcbette mcbette mcbette report mcbette can run mcbette true os unix dependencies beautier version tracerer version beastier version mauricer version babette version java version post ubuntu is installed true version default path home richel local share beast bin beast packages is ns package installed true ns installed version ns latest version sessioninfo r version platform pc linux gnu bit running under ubuntu matrix products default blas usr lib linux gnu blas libblas so lapack usr lib linux gnu lapack liblapack so locale lc ctype en us utf lc numeric c lc time en us utf lc collate en us utf lc monetary en us utf lc messages en us utf lc paper nl nl utf lc name nl nl utf lc address nl nl utf lc telephone nl nl utf lc measurement en us utf lc identification nl nl utf attached base packages stats graphics grdevices utils datasets methods base loaded via a namespace and not attached compiler magrittr tools curl rappdirs beautier mcbette mauricer stringi beastier stringr testit rjava additional context none
1
410,092
27,767,159,498
IssuesEvent
2023-03-16 12:14:37
tskit-dev/tskit-rust
https://api.github.com/repos/tskit-dev/tskit-rust
closed
TreeSequence docs mistakenly refer to Deref
documentation
The documentation mistakenly refers to TableViews as a Deref target, which is no longer the case. The API now delegates to TableViews as needed.
1.0
TreeSequence docs mistakenly refer to Deref - The documentation mistakenly refers to TableViews as a Deref target, which is no longer the case. The API now delegates to TableViews as needed.
non_priority
treesequence docs mistakenly refer to deref the documentation mistakenly refers to tableviews as a deref target which is no longer the case the api now delegates to tableviews as needed
0
575,442
17,031,327,571
IssuesEvent
2021-07-04 16:17:22
wso2/product-apim
https://api.github.com/repos/wso2/product-apim
opened
Error in persisting throttling policies in API defintion and local entries
Priority/Normal Type/Bug WUM
### Description: When changing a Throttling Policy from Operation Level to API Level, in API swagger definition and local entries resource level `x-throttling-tier` is not getting removed. Vice-versa is fine where operational level throttling policy is get updated properly and API level policy is getting removed. ### Steps to reproduce: 1. Create an API 2. Assign operation level policy to a resource and deploy the API. 3. Change the policy to API level ### Affected Product Version: APIM 3.2.0
1.0
Error in persisting throttling policies in API defintion and local entries - ### Description: When changing a Throttling Policy from Operation Level to API Level, in API swagger definition and local entries resource level `x-throttling-tier` is not getting removed. Vice-versa is fine where operational level throttling policy is get updated properly and API level policy is getting removed. ### Steps to reproduce: 1. Create an API 2. Assign operation level policy to a resource and deploy the API. 3. Change the policy to API level ### Affected Product Version: APIM 3.2.0
priority
error in persisting throttling policies in api defintion and local entries description when changing a throttling policy from operation level to api level in api swagger definition and local entries resource level x throttling tier is not getting removed vice versa is fine where operational level throttling policy is get updated properly and api level policy is getting removed steps to reproduce create an api assign operation level policy to a resource and deploy the api change the policy to api level affected product version apim
1
17,819
23,744,064,255
IssuesEvent
2022-08-31 14:37:21
firebase/firebase-cpp-sdk
https://api.github.com/repos/firebase/firebase-cpp-sdk
closed
[C++] Nightly Integration Testing Report for Firestore
type: process nightly-testing
<hidden value="integration-test-status-comment"></hidden> ### ✅&nbsp; [build against repo] Integration test succeeded! Requested by @sunmou99 on commit 6872ba47417796c8c24c6eab435534ad34b7a843 Last updated: Wed Aug 31 05:26 PDT 2022 **[View integration test log & download artifacts](https://github.com/firebase/firebase-cpp-sdk/actions/runs/2962975852)** <hidden value="integration-test-status-comment"></hidden> *** ### ❌&nbsp; [build against SDK] Integration test FAILED Requested by @firebase-workflow-trigger[bot] on commit 2d90eba5d3d595fc69db3d74916e3f19f7506c6f Last updated: Tue Aug 30 07:38 PDT 2022 **[View integration test log & download artifacts](https://github.com/firebase/firebase-cpp-sdk/actions/runs/2956172376)** | Failures | Configs | |----------|---------| | missing_log | [TEST] [ERROR] [Android] [1/3 os: windows] [1/5 android_device: emulator_target]<br/> | | firestore | [TEST] [ERROR] [Android] [2/3 os: macos ubuntu] [1/5 android_device: emulator_target]<br/>[TEST] [FLAKINESS] [iOS] [macos] [1/6 ios_device: ios_latest]<details><summary>(1 failed tests)</summary>&nbsp;&nbsp;CRASH/TIMEOUT</details> | Add flaky tests to **[go/fpl-cpp-flake-tracker](http://go/fpl-cpp-flake-tracker)**
1.0
[C++] Nightly Integration Testing Report for Firestore - <hidden value="integration-test-status-comment"></hidden> ### ✅&nbsp; [build against repo] Integration test succeeded! Requested by @sunmou99 on commit 6872ba47417796c8c24c6eab435534ad34b7a843 Last updated: Wed Aug 31 05:26 PDT 2022 **[View integration test log & download artifacts](https://github.com/firebase/firebase-cpp-sdk/actions/runs/2962975852)** <hidden value="integration-test-status-comment"></hidden> *** ### ❌&nbsp; [build against SDK] Integration test FAILED Requested by @firebase-workflow-trigger[bot] on commit 2d90eba5d3d595fc69db3d74916e3f19f7506c6f Last updated: Tue Aug 30 07:38 PDT 2022 **[View integration test log & download artifacts](https://github.com/firebase/firebase-cpp-sdk/actions/runs/2956172376)** | Failures | Configs | |----------|---------| | missing_log | [TEST] [ERROR] [Android] [1/3 os: windows] [1/5 android_device: emulator_target]<br/> | | firestore | [TEST] [ERROR] [Android] [2/3 os: macos ubuntu] [1/5 android_device: emulator_target]<br/>[TEST] [FLAKINESS] [iOS] [macos] [1/6 ios_device: ios_latest]<details><summary>(1 failed tests)</summary>&nbsp;&nbsp;CRASH/TIMEOUT</details> | Add flaky tests to **[go/fpl-cpp-flake-tracker](http://go/fpl-cpp-flake-tracker)**
non_priority
nightly integration testing report for firestore ✅ nbsp integration test succeeded requested by on commit last updated wed aug pdt ❌ nbsp integration test failed requested by firebase workflow trigger on commit last updated tue aug pdt failures configs missing log firestore failed tests nbsp nbsp crash timeout add flaky tests to
0
254,609
19,254,026,704
IssuesEvent
2021-12-09 09:22:22
arcus-azure/arcus.ml
https://api.github.com/repos/arcus-azure/arcus.ml
closed
Auto generate API documentation and publish them to documentation site
documentation good first issue
Documentation of the module (methods, classes...) should be executed, using `lazydocs`. The following things should be executed - [ ] Document all methods and modules - [ ] Run lazydocs to generate documentation files, from a unit test - [ ] Ensure an overview (`index.md`) is generated as well
1.0
Auto generate API documentation and publish them to documentation site - Documentation of the module (methods, classes...) should be executed, using `lazydocs`. The following things should be executed - [ ] Document all methods and modules - [ ] Run lazydocs to generate documentation files, from a unit test - [ ] Ensure an overview (`index.md`) is generated as well
non_priority
auto generate api documentation and publish them to documentation site documentation of the module methods classes should be executed using lazydocs the following things should be executed document all methods and modules run lazydocs to generate documentation files from a unit test ensure an overview index md is generated as well
0
449,918
12,976,872,767
IssuesEvent
2020-07-21 19:35:00
GCTC-NTGC/TalentCloud
https://api.github.com/repos/GCTC-NTGC/TalentCloud
closed
Task - Manager - Add EN-ENG Classification to JPB
Priority
# Description Add EN-ENG job classification to the job poster builder. I will create a separate issue to get the classifications coming straight from the database. Please take a look to make sure the classification also shows up properly on the "published" job poster.
1.0
Task - Manager - Add EN-ENG Classification to JPB - # Description Add EN-ENG job classification to the job poster builder. I will create a separate issue to get the classifications coming straight from the database. Please take a look to make sure the classification also shows up properly on the "published" job poster.
priority
task manager add en eng classification to jpb description add en eng job classification to the job poster builder i will create a separate issue to get the classifications coming straight from the database please take a look to make sure the classification also shows up properly on the published job poster
1
32,298
12,102,283,232
IssuesEvent
2020-04-20 16:26:57
Hyraze/infinite
https://api.github.com/repos/Hyraze/infinite
opened
CVE-2019-16772 (Medium) detected in serialize-to-js-1.2.2.tgz
security vulnerability
## CVE-2019-16772 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>serialize-to-js-1.2.2.tgz</b></p></summary> <p>serialize objects to javascript</p> <p>Library home page: <a href="https://registry.npmjs.org/serialize-to-js/-/serialize-to-js-1.2.2.tgz">https://registry.npmjs.org/serialize-to-js/-/serialize-to-js-1.2.2.tgz</a></p> <p>Path to dependency file: /tmp/ws-scm/infinite/package.json</p> <p>Path to vulnerable library: /tmp/ws-scm/infinite/node_modules/serialize-to-js/package.json</p> <p> Dependency Hierarchy: - parcel-bundler-1.11.0.tgz (Root Library) - :x: **serialize-to-js-1.2.2.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://api.github.com/repos/Hyraze/infinite/commits/f686a0f9119ce1b31715bd19e5a2f4705af80098">f686a0f9119ce1b31715bd19e5a2f4705af80098</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The serialize-to-js NPM package before version 3.0.1 is vulnerable to Cross-site Scripting (XSS). It does not properly mitigate against unsafe characters in serialized regular expressions. This vulnerability is not affected on Node.js environment since Node.js's implementation of RegExp.prototype.toString() backslash-escapes all forward slashes in regular expressions. If serialized data of regular expression objects are used in an environment other than Node.js, it is affected by this vulnerability. <p>Publish Date: 2019-12-07 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-16772>CVE-2019-16772</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-16772">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-16772</a></p> <p>Release Date: 2019-12-07</p> <p>Fix Resolution: v3.0.1</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2019-16772 (Medium) detected in serialize-to-js-1.2.2.tgz - ## CVE-2019-16772 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>serialize-to-js-1.2.2.tgz</b></p></summary> <p>serialize objects to javascript</p> <p>Library home page: <a href="https://registry.npmjs.org/serialize-to-js/-/serialize-to-js-1.2.2.tgz">https://registry.npmjs.org/serialize-to-js/-/serialize-to-js-1.2.2.tgz</a></p> <p>Path to dependency file: /tmp/ws-scm/infinite/package.json</p> <p>Path to vulnerable library: /tmp/ws-scm/infinite/node_modules/serialize-to-js/package.json</p> <p> Dependency Hierarchy: - parcel-bundler-1.11.0.tgz (Root Library) - :x: **serialize-to-js-1.2.2.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://api.github.com/repos/Hyraze/infinite/commits/f686a0f9119ce1b31715bd19e5a2f4705af80098">f686a0f9119ce1b31715bd19e5a2f4705af80098</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The serialize-to-js NPM package before version 3.0.1 is vulnerable to Cross-site Scripting (XSS). It does not properly mitigate against unsafe characters in serialized regular expressions. This vulnerability is not affected on Node.js environment since Node.js's implementation of RegExp.prototype.toString() backslash-escapes all forward slashes in regular expressions. If serialized data of regular expression objects are used in an environment other than Node.js, it is affected by this vulnerability. <p>Publish Date: 2019-12-07 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-16772>CVE-2019-16772</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-16772">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-16772</a></p> <p>Release Date: 2019-12-07</p> <p>Fix Resolution: v3.0.1</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_priority
cve medium detected in serialize to js tgz cve medium severity vulnerability vulnerable library serialize to js tgz serialize objects to javascript library home page a href path to dependency file tmp ws scm infinite package json path to vulnerable library tmp ws scm infinite node modules serialize to js package json dependency hierarchy parcel bundler tgz root library x serialize to js tgz vulnerable library found in head commit a href vulnerability details the serialize to js npm package before version is vulnerable to cross site scripting xss it does not properly mitigate against unsafe characters in serialized regular expressions this vulnerability is not affected on node js environment since node js s implementation of regexp prototype tostring backslash escapes all forward slashes in regular expressions if serialized data of regular expression objects are used in an environment other than node js it is affected by this vulnerability publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with whitesource
0
286,874
8,794,169,440
IssuesEvent
2018-12-21 23:41:36
spheras/desktopfolder
https://api.github.com/repos/spheras/desktopfolder
closed
Link Panel freezes desktop with folder with lots of files
Priority: High Status: Confirmed enhancement
I thought I'd investigate the Link Panel option - connected it to my VirtualBox mapped Downloads folder on my host that happens to have a couple of hundred files in it. ![image](https://user-images.githubusercontent.com/996240/48629867-acf52e80-e9b2-11e8-8f38-9e496d1be442.png) The desktop froze for a while - when the rendering completed lots of icons overlapped with each other --> as you mentioned in #148 maybe horizontal, vertical bars in future would mean icon positions can be rendered outside the immediate panel boundary. So then I used the panel properties and chose "Align to grid" - again the desktop froze for a while. Looks like some threading work probably will resolve.
1.0
Link Panel freezes desktop with folder with lots of files - I thought I'd investigate the Link Panel option - connected it to my VirtualBox mapped Downloads folder on my host that happens to have a couple of hundred files in it. ![image](https://user-images.githubusercontent.com/996240/48629867-acf52e80-e9b2-11e8-8f38-9e496d1be442.png) The desktop froze for a while - when the rendering completed lots of icons overlapped with each other --> as you mentioned in #148 maybe horizontal, vertical bars in future would mean icon positions can be rendered outside the immediate panel boundary. So then I used the panel properties and chose "Align to grid" - again the desktop froze for a while. Looks like some threading work probably will resolve.
priority
link panel freezes desktop with folder with lots of files i thought i d investigate the link panel option connected it to my virtualbox mapped downloads folder on my host that happens to have a couple of hundred files in it the desktop froze for a while when the rendering completed lots of icons overlapped with each other as you mentioned in maybe horizontal vertical bars in future would mean icon positions can be rendered outside the immediate panel boundary so then i used the panel properties and chose align to grid again the desktop froze for a while looks like some threading work probably will resolve
1
232,575
17,786,937,201
IssuesEvent
2021-08-31 12:14:50
exposir/Personal-Blog
https://api.github.com/repos/exposir/Personal-Blog
closed
输入一个URL到显示出一个页面,都经历了哪些过程
documentation
# 概述 - DNS 解析:将域名解析成 IP 地址 - TCP 连接:TCP 三次握手 - 发送 HTTP 请求 - 服务器处理请求并返回 HTTP 报文 - 浏览器解析渲染页面 - 断开连接:TCP 四次挥手 ## URL URL(Uniform Resource Locator),统一资源定位符,用于定位互联网上资源,俗称网址。比如 `http://www.w3school.com.cn/ht...`,遵守以下的语法规则: ``` scheme://host.domain:port/path/filename ``` - scheme - 定义因特网服务的类型。常见的协议有 http、https、ftp、file,其中最常见的类型是 http,而 https 则是进行加密的网络传输。 - host - 定义域主机(http 的默认主机是 www) - domain - 定义因特网域名,比如 http://w3school.com.cn - port - 定义主机上的端口号(http 的默认端口号是 80) - path - 定义服务器上的路径(如果省略,则文档必须位于网站的根目录中)。 - filename - 定义文档/资源的名称 ## 域名解析(DNS) ### 什么是域名解析 DNS 协议提供通过域名查找 IP 地址,或逆向从 IP 地址反查域名的服务。DNS 是一个网络服务器,我们的域名解析简单来说就是在 DNS 上记录一条信息记录。 ``` 例如 baidu.com 220.114.23.56(服务器外网IP地址)80(服务器端口号) ``` ### 浏览器如何通过域名去查询 URL 对应的 IP 呢 - 浏览器缓存:浏览器会按照一定的频率缓存 DNS 记录。 - 操作系统缓存:如果浏览器缓存中找不到需要的 DNS 记录,那就去操作系统中找。 - 路由缓存:路由器也有 DNS 缓存。 - ISP 的 DNS 服务器:ISP 是互联网服务提供商(Internet Service Provider)的简称,ISP 有专门的 DNS 服务器应对 DNS 查询请求。 - 根服务器:ISP 的 DNS 服务器还找不到的话,它就会向根服务器发出请求,进行递归查询(DNS 服务器先问根域名服务器.com 域名服务器的 IP 地址,然后再问.baidu 域名服务器,依次类推) ## HTTP请求 ### TCP 三次握手 - 客户端发送一个带 SYN=1,Seq=X 的数据包到服务器端口(第一次握手,由浏览器发起,告诉服务器我要发送请求了) - 服务器发回一个带 SYN=1, ACK=X+1, Seq=Y 的响应包以示传达确认信息(第二次握手,由服务器发起,告诉浏览器我准备接受了,你赶紧发送吧) - 客户端再回传一个带 ACK=Y+1, Seq=Z 的数据包,代表“握手结束”(第三次握手,由浏览器发送,告诉服务器,我马上就发了,准备接受吧) ### 为什么需要三次握手 - 谢希仁著《计算机网络》中讲“三次握手”的目的是“为了防止已失效的连接请求报文段突然又传送到了服务端,因而产生错误”。 ### 发送HTTP请求 TCP 三次握手结束后,开始发送 HTTP 请求报文。 请求报文由请求行(request line)、请求头(header)、请求体三个部分组成 #### 1. 请求行包含请求方法、URL、协议版本 - 请求方法包含 8 种:GET、POST、PUT、DELETE、PATCH、HEAD、OPTIONS、TRACE。 - URL 即请求地址,由 <协议>://<主机>:<端口>/<路径>?<参数> 组成 - 协议版本即 http 版本号 ``` POST /chapter17/user.html HTTP/1.1 ``` 以上代码中“POST”代表请求方法,“/chapter17/user.html”表示 URL,“HTTP/1.1”代表协议和协议的版本。现在比较流行的是 Http1.1 版本 #### 2. 请求头包含请求的附加信息,由关键字/值对组成,每行一对,关键字和值用英文冒号“:”分隔。 请求头部通知服务器有关于客户端请求的信息。它包含许多有关的客户端环境和请求正文的有用信息。其中比如:Host,表示主机名,虚拟主机;Connection,HTTP/1.1 增加的,使用 keepalive,即持久连接,一个连接可以发多个请求;User-Agent,请求发出者,兼容性以及定制化需求。 #### 3. 请求体,可以承载多个请求参数的数据,包含回车符、换行符和请求数据,并不是所有请求都具有请求数据。 ``` name=tom&password=1234&realName=tomson ``` 上面代码,承载着 name、password、realName 三个请求参数。 ## 服务器处理请求并返回 HTTP 报文 ### MVC 后台开发现在有很多框架,但大部分都还是按照 MVC 设计模式进行搭建的。 MVC 是一个设计模式,将应用程序分成三个核心部件:模型(model)-- 视图(view)--控制器(controller),它们各自处理自己的任务,实现输入、处理和输出的分离。 首先浏览器发送过来的请求先经过控制器,控制器进行逻辑处理和请求分发,接着会调用模型,这一阶段模型会获取 redis db 以及 MySQL 的数据,获取数据后将渲染好的页面,响应信息会以响应报文的形式返回给客户端,最后浏览器通过渲染引擎将网页呈现在用户面前。 ### http 响应报文 响应报文由响应行(request line)、响应头部(header)、响应主体三个部分组成。 #### 1. 响应行包含:协议版本,状态码,状态码描述 状态码规则如下: - 1xx:指示信息--表示请求已接收,继续处理。 - 2xx:成功--表示请求已被成功接收、理解、接受。 - 3xx:重定向--要完成请求必须进行更进一步的操作。 - 4xx:客户端错误--请求有语法错误或请求无法实现。 - 5xx:服务器端错误--服务器未能实现合法的请求。 #### 2. 响应头部包含响应报文的附加信息,由 名/值 对组成 #### 3. 响应主体包含回车符、换行符和响应返回数据,并不是所有响应报文都有响应数据 ## 浏览器解析渲染页面 浏览器解析渲染页面分为一下五个步骤: 1. 根据 HTML 解析出 DOM 树 2. 根据 CSS 解析生成 CSS 规则树 3. 结合 DOM 树和 CSS 规则树,生成渲染树 4. 根据渲染树计算每一个节点的信息 5. 根据计算好的信息绘制页面 ### 1. 根据 HTML 解析 DOM 树 - 根据 HTML 的内容,将标签按照结构解析成为 DOM 树,DOM 树解析的过程是一个深度优先遍历。即先构建当前节点的所有子节点,再构建下一个兄弟节点。 - 在读取 HTML 文档,构建 DOM 树的过程中,若遇到 script 标签,则 DOM 树的构建会暂停,直至脚本执行完毕。 ### 2. 根据 CSS 解析生成 CSS 规则树 - 解析 CSS 规则树时 js 执行将暂停,直至 CSS 规则树就绪。 - 浏览器在 CSS 规则树生成之前不会进行渲染。 ### 3. 结合 DOM 树和 CSS 规则树,生成渲染树 - DOM 树和 CSS 规则树全部准备好了以后,浏览器才会开始构建渲染树。 - 精简 CSS 并可以加快 CSS 规则树的构建,从而加快页面相应速度。 ### 4. 根据渲染树计算每一个节点的信息(布局) - 布局:通过渲染树中渲染对象的信息,计算出每一个渲染对象的位置和尺寸 - 重排:在布局完成后,发现了某个部分发生了变化影响了布局,那就需要倒回去重新渲染。 ### 5. 根据计算好的信息绘制页面 - 绘制阶段,系统会遍历呈现树,并调用呈现器的“paint”方法,将呈现器的内容显示在屏幕上。 - 重绘:某个元素的背景颜色,文字颜色等,不影响元素周围或内部布局的属性,将只会引起浏览器的重绘。 - 回流:某个元素的尺寸发生了变化,则需重新计算渲染树,重新渲染。 ## 断开连接 当数据传送完毕,需要断开 tcp 连接,此时发起 tcp 四次挥手。 - 发起方向被动方发送报文,Fin、Ack、Seq,表示已经没有数据传输了。并进入 FIN_WAIT_1 状态。(第一次挥手:由浏览器发起的,发送给服务器,我请求报文发送完了,你准备关闭吧) - 被动方发送报文,Ack、Seq,表示同意关闭请求。此时主机发起方进入 FIN_WAIT_2 状态。(第二次挥手:由服务器发起的,告诉浏览器,我请求报文接受完了,我准备关闭了,你也准备吧) - 被动方向发起方发送报文段,Fin、Ack、Seq,请求关闭连接。并进入 LAST_ACK 状态。(第三次挥手:由服务器发起,告诉浏览器,我响应报文发送完了,你准备关闭吧) - 发起方向被动方发送报文段,Ack、Seq。然后进入等待 TIME_WAIT 状态。被动方收到发起方的报文段以后关闭连接。发起方等待一定时间未收到回复,则正常关闭。(第四次挥手:由浏览器发起,告诉服务器,我响应报文接受完了,我准备关闭了,你也准备吧)
1.0
输入一个URL到显示出一个页面,都经历了哪些过程 - # 概述 - DNS 解析:将域名解析成 IP 地址 - TCP 连接:TCP 三次握手 - 发送 HTTP 请求 - 服务器处理请求并返回 HTTP 报文 - 浏览器解析渲染页面 - 断开连接:TCP 四次挥手 ## URL URL(Uniform Resource Locator),统一资源定位符,用于定位互联网上资源,俗称网址。比如 `http://www.w3school.com.cn/ht...`,遵守以下的语法规则: ``` scheme://host.domain:port/path/filename ``` - scheme - 定义因特网服务的类型。常见的协议有 http、https、ftp、file,其中最常见的类型是 http,而 https 则是进行加密的网络传输。 - host - 定义域主机(http 的默认主机是 www) - domain - 定义因特网域名,比如 http://w3school.com.cn - port - 定义主机上的端口号(http 的默认端口号是 80) - path - 定义服务器上的路径(如果省略,则文档必须位于网站的根目录中)。 - filename - 定义文档/资源的名称 ## 域名解析(DNS) ### 什么是域名解析 DNS 协议提供通过域名查找 IP 地址,或逆向从 IP 地址反查域名的服务。DNS 是一个网络服务器,我们的域名解析简单来说就是在 DNS 上记录一条信息记录。 ``` 例如 baidu.com 220.114.23.56(服务器外网IP地址)80(服务器端口号) ``` ### 浏览器如何通过域名去查询 URL 对应的 IP 呢 - 浏览器缓存:浏览器会按照一定的频率缓存 DNS 记录。 - 操作系统缓存:如果浏览器缓存中找不到需要的 DNS 记录,那就去操作系统中找。 - 路由缓存:路由器也有 DNS 缓存。 - ISP 的 DNS 服务器:ISP 是互联网服务提供商(Internet Service Provider)的简称,ISP 有专门的 DNS 服务器应对 DNS 查询请求。 - 根服务器:ISP 的 DNS 服务器还找不到的话,它就会向根服务器发出请求,进行递归查询(DNS 服务器先问根域名服务器.com 域名服务器的 IP 地址,然后再问.baidu 域名服务器,依次类推) ## HTTP请求 ### TCP 三次握手 - 客户端发送一个带 SYN=1,Seq=X 的数据包到服务器端口(第一次握手,由浏览器发起,告诉服务器我要发送请求了) - 服务器发回一个带 SYN=1, ACK=X+1, Seq=Y 的响应包以示传达确认信息(第二次握手,由服务器发起,告诉浏览器我准备接受了,你赶紧发送吧) - 客户端再回传一个带 ACK=Y+1, Seq=Z 的数据包,代表“握手结束”(第三次握手,由浏览器发送,告诉服务器,我马上就发了,准备接受吧) ### 为什么需要三次握手 - 谢希仁著《计算机网络》中讲“三次握手”的目的是“为了防止已失效的连接请求报文段突然又传送到了服务端,因而产生错误”。 ### 发送HTTP请求 TCP 三次握手结束后,开始发送 HTTP 请求报文。 请求报文由请求行(request line)、请求头(header)、请求体三个部分组成 #### 1. 请求行包含请求方法、URL、协议版本 - 请求方法包含 8 种:GET、POST、PUT、DELETE、PATCH、HEAD、OPTIONS、TRACE。 - URL 即请求地址,由 <协议>://<主机>:<端口>/<路径>?<参数> 组成 - 协议版本即 http 版本号 ``` POST /chapter17/user.html HTTP/1.1 ``` 以上代码中“POST”代表请求方法,“/chapter17/user.html”表示 URL,“HTTP/1.1”代表协议和协议的版本。现在比较流行的是 Http1.1 版本 #### 2. 请求头包含请求的附加信息,由关键字/值对组成,每行一对,关键字和值用英文冒号“:”分隔。 请求头部通知服务器有关于客户端请求的信息。它包含许多有关的客户端环境和请求正文的有用信息。其中比如:Host,表示主机名,虚拟主机;Connection,HTTP/1.1 增加的,使用 keepalive,即持久连接,一个连接可以发多个请求;User-Agent,请求发出者,兼容性以及定制化需求。 #### 3. 请求体,可以承载多个请求参数的数据,包含回车符、换行符和请求数据,并不是所有请求都具有请求数据。 ``` name=tom&password=1234&realName=tomson ``` 上面代码,承载着 name、password、realName 三个请求参数。 ## 服务器处理请求并返回 HTTP 报文 ### MVC 后台开发现在有很多框架,但大部分都还是按照 MVC 设计模式进行搭建的。 MVC 是一个设计模式,将应用程序分成三个核心部件:模型(model)-- 视图(view)--控制器(controller),它们各自处理自己的任务,实现输入、处理和输出的分离。 首先浏览器发送过来的请求先经过控制器,控制器进行逻辑处理和请求分发,接着会调用模型,这一阶段模型会获取 redis db 以及 MySQL 的数据,获取数据后将渲染好的页面,响应信息会以响应报文的形式返回给客户端,最后浏览器通过渲染引擎将网页呈现在用户面前。 ### http 响应报文 响应报文由响应行(request line)、响应头部(header)、响应主体三个部分组成。 #### 1. 响应行包含:协议版本,状态码,状态码描述 状态码规则如下: - 1xx:指示信息--表示请求已接收,继续处理。 - 2xx:成功--表示请求已被成功接收、理解、接受。 - 3xx:重定向--要完成请求必须进行更进一步的操作。 - 4xx:客户端错误--请求有语法错误或请求无法实现。 - 5xx:服务器端错误--服务器未能实现合法的请求。 #### 2. 响应头部包含响应报文的附加信息,由 名/值 对组成 #### 3. 响应主体包含回车符、换行符和响应返回数据,并不是所有响应报文都有响应数据 ## 浏览器解析渲染页面 浏览器解析渲染页面分为一下五个步骤: 1. 根据 HTML 解析出 DOM 树 2. 根据 CSS 解析生成 CSS 规则树 3. 结合 DOM 树和 CSS 规则树,生成渲染树 4. 根据渲染树计算每一个节点的信息 5. 根据计算好的信息绘制页面 ### 1. 根据 HTML 解析 DOM 树 - 根据 HTML 的内容,将标签按照结构解析成为 DOM 树,DOM 树解析的过程是一个深度优先遍历。即先构建当前节点的所有子节点,再构建下一个兄弟节点。 - 在读取 HTML 文档,构建 DOM 树的过程中,若遇到 script 标签,则 DOM 树的构建会暂停,直至脚本执行完毕。 ### 2. 根据 CSS 解析生成 CSS 规则树 - 解析 CSS 规则树时 js 执行将暂停,直至 CSS 规则树就绪。 - 浏览器在 CSS 规则树生成之前不会进行渲染。 ### 3. 结合 DOM 树和 CSS 规则树,生成渲染树 - DOM 树和 CSS 规则树全部准备好了以后,浏览器才会开始构建渲染树。 - 精简 CSS 并可以加快 CSS 规则树的构建,从而加快页面相应速度。 ### 4. 根据渲染树计算每一个节点的信息(布局) - 布局:通过渲染树中渲染对象的信息,计算出每一个渲染对象的位置和尺寸 - 重排:在布局完成后,发现了某个部分发生了变化影响了布局,那就需要倒回去重新渲染。 ### 5. 根据计算好的信息绘制页面 - 绘制阶段,系统会遍历呈现树,并调用呈现器的“paint”方法,将呈现器的内容显示在屏幕上。 - 重绘:某个元素的背景颜色,文字颜色等,不影响元素周围或内部布局的属性,将只会引起浏览器的重绘。 - 回流:某个元素的尺寸发生了变化,则需重新计算渲染树,重新渲染。 ## 断开连接 当数据传送完毕,需要断开 tcp 连接,此时发起 tcp 四次挥手。 - 发起方向被动方发送报文,Fin、Ack、Seq,表示已经没有数据传输了。并进入 FIN_WAIT_1 状态。(第一次挥手:由浏览器发起的,发送给服务器,我请求报文发送完了,你准备关闭吧) - 被动方发送报文,Ack、Seq,表示同意关闭请求。此时主机发起方进入 FIN_WAIT_2 状态。(第二次挥手:由服务器发起的,告诉浏览器,我请求报文接受完了,我准备关闭了,你也准备吧) - 被动方向发起方发送报文段,Fin、Ack、Seq,请求关闭连接。并进入 LAST_ACK 状态。(第三次挥手:由服务器发起,告诉浏览器,我响应报文发送完了,你准备关闭吧) - 发起方向被动方发送报文段,Ack、Seq。然后进入等待 TIME_WAIT 状态。被动方收到发起方的报文段以后关闭连接。发起方等待一定时间未收到回复,则正常关闭。(第四次挥手:由浏览器发起,告诉服务器,我响应报文接受完了,我准备关闭了,你也准备吧)
non_priority
输入一个url到显示出一个页面,都经历了哪些过程 概述 dns 解析 将域名解析成 ip 地址 tcp 连接:tcp 三次握手 发送 http 请求 服务器处理请求并返回 http 报文 浏览器解析渲染页面 断开连接:tcp 四次挥手 url url(uniform resource locator),统一资源定位符,用于定位互联网上资源,俗称网址。比如 scheme host domain port path filename scheme 定义因特网服务的类型。常见的协议有 http、https、ftp、file,其中最常见的类型是 http,而 https 则是进行加密的网络传输。 host 定义域主机(http 的默认主机是 www) domain 定义因特网域名,比如 port 定义主机上的端口号(http 的默认端口号是 ) path 定义服务器上的路径(如果省略,则文档必须位于网站的根目录中)。 filename 定义文档 资源的名称 域名解析(dns) 什么是域名解析 dns 协议提供通过域名查找 ip 地址,或逆向从 ip 地址反查域名的服务。dns 是一个网络服务器,我们的域名解析简单来说就是在 dns 上记录一条信息记录。 例如 baidu com (服务器外网ip地址) (服务器端口号) 浏览器如何通过域名去查询 url 对应的 ip 呢 浏览器缓存:浏览器会按照一定的频率缓存 dns 记录。 操作系统缓存:如果浏览器缓存中找不到需要的 dns 记录,那就去操作系统中找。 路由缓存:路由器也有 dns 缓存。 isp 的 dns 服务器:isp 是互联网服务提供商 internet service provider 的简称,isp 有专门的 dns 服务器应对 dns 查询请求。 根服务器:isp 的 dns 服务器还找不到的话,它就会向根服务器发出请求,进行递归查询(dns 服务器先问根域名服务器 com 域名服务器的 ip 地址,然后再问 baidu 域名服务器,依次类推) http请求 tcp 三次握手 客户端发送一个带 syn ,seq x 的数据包到服务器端口(第一次握手,由浏览器发起,告诉服务器我要发送请求了) 服务器发回一个带 syn , ack x , seq y 的响应包以示传达确认信息(第二次握手,由服务器发起,告诉浏览器我准备接受了,你赶紧发送吧) 客户端再回传一个带 ack y , seq z 的数据包,代表“握手结束”(第三次握手,由浏览器发送,告诉服务器,我马上就发了,准备接受吧) 为什么需要三次握手 谢希仁著《计算机网络》中讲“三次握手”的目的是“为了防止已失效的连接请求报文段突然又传送到了服务端,因而产生错误”。 发送http请求 tcp 三次握手结束后,开始发送 http 请求报文。 请求报文由请求行(request line)、请求头(header)、请求体三个部分组成 请求行包含请求方法、url、协议版本 请求方法包含 种:get、post、put、delete、patch、head、options、trace。 url 即请求地址,由 : : 组成 协议版本即 http 版本号 post user html http 以上代码中“post”代表请求方法,“ user html”表示 url,“http ”代表协议和协议的版本。现在比较流行的是 版本 请求头包含请求的附加信息,由关键字 值对组成,每行一对,关键字和值用英文冒号“ ”分隔。 请求头部通知服务器有关于客户端请求的信息。它包含许多有关的客户端环境和请求正文的有用信息。其中比如:host,表示主机名,虚拟主机;connection http 增加的,使用 keepalive,即持久连接,一个连接可以发多个请求;user agent,请求发出者,兼容性以及定制化需求。 请求体,可以承载多个请求参数的数据,包含回车符、换行符和请求数据,并不是所有请求都具有请求数据。 name tom password realname tomson 上面代码,承载着 name、password、realname 三个请求参数。 服务器处理请求并返回 http 报文 mvc 后台开发现在有很多框架,但大部分都还是按照 mvc 设计模式进行搭建的。 mvc 是一个设计模式,将应用程序分成三个核心部件:模型(model) 视图(view) 控制器(controller),它们各自处理自己的任务,实现输入、处理和输出的分离。 首先浏览器发送过来的请求先经过控制器,控制器进行逻辑处理和请求分发,接着会调用模型,这一阶段模型会获取 redis db 以及 mysql 的数据,获取数据后将渲染好的页面,响应信息会以响应报文的形式返回给客户端,最后浏览器通过渲染引擎将网页呈现在用户面前。 http 响应报文 响应报文由响应行(request line)、响应头部(header)、响应主体三个部分组成。 响应行包含:协议版本,状态码,状态码描述 状态码规则如下: :指示信息 表示请求已接收,继续处理。 :成功 表示请求已被成功接收、理解、接受。 :重定向 要完成请求必须进行更进一步的操作。 :客户端错误 请求有语法错误或请求无法实现。 :服务器端错误 服务器未能实现合法的请求。 响应头部包含响应报文的附加信息,由 名 值 对组成 响应主体包含回车符、换行符和响应返回数据,并不是所有响应报文都有响应数据 浏览器解析渲染页面 浏览器解析渲染页面分为一下五个步骤: 根据 html 解析出 dom 树 根据 css 解析生成 css 规则树 结合 dom 树和 css 规则树,生成渲染树 根据渲染树计算每一个节点的信息 根据计算好的信息绘制页面 根据 html 解析 dom 树 根据 html 的内容,将标签按照结构解析成为 dom 树,dom 树解析的过程是一个深度优先遍历。即先构建当前节点的所有子节点,再构建下一个兄弟节点。 在读取 html 文档,构建 dom 树的过程中,若遇到 script 标签,则 dom 树的构建会暂停,直至脚本执行完毕。 根据 css 解析生成 css 规则树 解析 css 规则树时 js 执行将暂停,直至 css 规则树就绪。 浏览器在 css 规则树生成之前不会进行渲染。 结合 dom 树和 css 规则树,生成渲染树 dom 树和 css 规则树全部准备好了以后,浏览器才会开始构建渲染树。 精简 css 并可以加快 css 规则树的构建,从而加快页面相应速度。 根据渲染树计算每一个节点的信息(布局) 布局:通过渲染树中渲染对象的信息,计算出每一个渲染对象的位置和尺寸 重排:在布局完成后,发现了某个部分发生了变化影响了布局,那就需要倒回去重新渲染。 根据计算好的信息绘制页面 绘制阶段,系统会遍历呈现树,并调用呈现器的“paint”方法,将呈现器的内容显示在屏幕上。 重绘:某个元素的背景颜色,文字颜色等,不影响元素周围或内部布局的属性,将只会引起浏览器的重绘。 回流:某个元素的尺寸发生了变化,则需重新计算渲染树,重新渲染。 断开连接 当数据传送完毕,需要断开 tcp 连接,此时发起 tcp 四次挥手。 发起方向被动方发送报文,fin、ack、seq,表示已经没有数据传输了。并进入 fin wait 状态。 第一次挥手:由浏览器发起的,发送给服务器,我请求报文发送完了,你准备关闭吧 被动方发送报文,ack、seq,表示同意关闭请求。此时主机发起方进入 fin wait 状态。 第二次挥手:由服务器发起的,告诉浏览器,我请求报文接受完了,我准备关闭了,你也准备吧 被动方向发起方发送报文段,fin、ack、seq,请求关闭连接。并进入 last ack 状态。 第三次挥手:由服务器发起,告诉浏览器,我响应报文发送完了,你准备关闭吧 发起方向被动方发送报文段,ack、seq。然后进入等待 time wait 状态。被动方收到发起方的报文段以后关闭连接。发起方等待一定时间未收到回复,则正常关闭。 第四次挥手:由浏览器发起,告诉服务器,我响应报文接受完了,我准备关闭了,你也准备吧
0
271,330
23,595,983,304
IssuesEvent
2022-08-23 19:17:30
MTASA-TFF/The-Favoured-Few
https://api.github.com/repos/MTASA-TFF/The-Favoured-Few
closed
Bug: Events - color change of cars affects whole server
bug to be tested
When changing a new car model in the game during a PDD event, it should only affect the pdd arena, however for now all the arenas are affected.
1.0
Bug: Events - color change of cars affects whole server - When changing a new car model in the game during a PDD event, it should only affect the pdd arena, however for now all the arenas are affected.
non_priority
bug events color change of cars affects whole server when changing a new car model in the game during a pdd event it should only affect the pdd arena however for now all the arenas are affected
0
50,811
7,633,526,763
IssuesEvent
2018-05-06 06:36:19
raxod502/radian
https://api.github.com/repos/raxod502/radian
closed
Document manual setup instructions
documentation setup stopgap
Since #325 will probably not be ready for a while, in the meantime the README should have some basic information about manual setup, at least for the programs specifically configured by Radian.
1.0
Document manual setup instructions - Since #325 will probably not be ready for a while, in the meantime the README should have some basic information about manual setup, at least for the programs specifically configured by Radian.
non_priority
document manual setup instructions since will probably not be ready for a while in the meantime the readme should have some basic information about manual setup at least for the programs specifically configured by radian
0
107,872
16,762,600,245
IssuesEvent
2021-06-14 02:34:51
gms-ws-demo/nibrs-pr-test
https://api.github.com/repos/gms-ws-demo/nibrs-pr-test
opened
CVE-2019-12406 (Medium) detected in multiple libraries
security vulnerability
## CVE-2019-12406 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>cxf-core-3.2.1.jar</b>, <b>cxf-core-3.0.16.jar</b>, <b>cxf-core-3.2.5.jar</b></p></summary> <p> <details><summary><b>cxf-core-3.2.1.jar</b></p></summary> <p>Apache CXF Core</p> <p>Library home page: <a href="http://cxf.apache.org">http://cxf.apache.org</a></p> <p>Path to dependency file: nibrs-pr-test/tools/nibrs-fbi-service/pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.2.1/cxf-core-3.2.1.jar,nibrs-pr-test/tools/nibrs-fbi-service/target/nibrs-fbi-service-1.0.0/WEB-INF/lib/cxf-core-3.2.1.jar</p> <p> Dependency Hierarchy: - :x: **cxf-core-3.2.1.jar** (Vulnerable Library) </details> <details><summary><b>cxf-core-3.0.16.jar</b></p></summary> <p>Apache CXF Core</p> <p>Library home page: <a href="http://cxf.apache.org">http://cxf.apache.org</a></p> <p>Path to dependency file: nibrs-pr-test/tools/nibrs-staging-data/pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.0.16/cxf-core-3.0.16.jar,/home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.0.16/cxf-core-3.0.16.jar,/home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.0.16/cxf-core-3.0.16.jar,/home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.0.16/cxf-core-3.0.16.jar,/home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.0.16/cxf-core-3.0.16.jar,/home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.0.16/cxf-core-3.0.16.jar,/home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.0.16/cxf-core-3.0.16.jar,/home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.0.16/cxf-core-3.0.16.jar,nibrs-pr-test/web/nibrs-web/target/nibrs-web/WEB-INF/lib/cxf-core-3.0.16.jar,/home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.0.16/cxf-core-3.0.16.jar,/home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.0.16/cxf-core-3.0.16.jar</p> <p> Dependency Hierarchy: - :x: **cxf-core-3.0.16.jar** (Vulnerable Library) </details> <details><summary><b>cxf-core-3.2.5.jar</b></p></summary> <p>Apache CXF Core</p> <p>Library home page: <a href="http://cxf.apache.org">http://cxf.apache.org</a></p> <p>Path to dependency file: nibrs-pr-test/tools/nibrs-route/pom.xml</p> <p>Path to vulnerable library: nibrs-pr-test/tools/nibrs-route/target/nibrs-route-1.0.0/WEB-INF/lib/cxf-core-3.2.5.jar,/home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.2.5/cxf-core-3.2.5.jar</p> <p> Dependency Hierarchy: - :x: **cxf-core-3.2.5.jar** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/gms-ws-demo/nibrs-pr-test/commit/860cc22f54e17594e32e303f0716fb065202fff5">860cc22f54e17594e32e303f0716fb065202fff5</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> Apache CXF before 3.3.4 and 3.2.11 does not restrict the number of message attachments present in a given message. This leaves open the possibility of a denial of service type attack, where a malicious user crafts a message containing a very large number of message attachments. From the 3.3.4 and 3.2.11 releases, a default limit of 50 message attachments is enforced. This is configurable via the message property "attachment-max-count". <p>Publish Date: 2019-11-06 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-12406>CVE-2019-12406</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12406">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12406</a></p> <p>Release Date: 2019-11-06</p> <p>Fix Resolution: org.apache.cxf:cxf-core:3.2.11,3.3.4</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"org.apache.cxf","packageName":"cxf-core","packageVersion":"3.2.1","packageFilePaths":["/tools/nibrs-fbi-service/pom.xml"],"isTransitiveDependency":false,"dependencyTree":"org.apache.cxf:cxf-core:3.2.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"org.apache.cxf:cxf-core:3.2.11,3.3.4"},{"packageType":"Java","groupId":"org.apache.cxf","packageName":"cxf-core","packageVersion":"3.0.16","packageFilePaths":["/tools/nibrs-staging-data/pom.xml","/tools/nibrs-flatfile/pom.xml","/tools/nibrs-xmlfile/pom.xml","/tools/nibrs-common/pom.xml","/tools/nibrs-validate-common/pom.xml","/tools/nibrs-validation/pom.xml","/web/nibrs-web/pom.xml","/tools/nibrs-summary-report/pom.xml","/tools/nibrs-staging-data-common/pom.xml","/tools/nibrs-summary-report-common/pom.xml"],"isTransitiveDependency":false,"dependencyTree":"org.apache.cxf:cxf-core:3.0.16","isMinimumFixVersionAvailable":true,"minimumFixVersion":"org.apache.cxf:cxf-core:3.2.11,3.3.4"},{"packageType":"Java","groupId":"org.apache.cxf","packageName":"cxf-core","packageVersion":"3.2.5","packageFilePaths":["/tools/nibrs-route/pom.xml"],"isTransitiveDependency":false,"dependencyTree":"org.apache.cxf:cxf-core:3.2.5","isMinimumFixVersionAvailable":true,"minimumFixVersion":"org.apache.cxf:cxf-core:3.2.11,3.3.4"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2019-12406","vulnerabilityDetails":"Apache CXF before 3.3.4 and 3.2.11 does not restrict the number of message attachments present in a given message. This leaves open the possibility of a denial of service type attack, where a malicious user crafts a message containing a very large number of message attachments. From the 3.3.4 and 3.2.11 releases, a default limit of 50 message attachments is enforced. This is configurable via the message property \"attachment-max-count\".","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-12406","cvss3Severity":"medium","cvss3Score":"6.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"Required","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
True
CVE-2019-12406 (Medium) detected in multiple libraries - ## CVE-2019-12406 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>cxf-core-3.2.1.jar</b>, <b>cxf-core-3.0.16.jar</b>, <b>cxf-core-3.2.5.jar</b></p></summary> <p> <details><summary><b>cxf-core-3.2.1.jar</b></p></summary> <p>Apache CXF Core</p> <p>Library home page: <a href="http://cxf.apache.org">http://cxf.apache.org</a></p> <p>Path to dependency file: nibrs-pr-test/tools/nibrs-fbi-service/pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.2.1/cxf-core-3.2.1.jar,nibrs-pr-test/tools/nibrs-fbi-service/target/nibrs-fbi-service-1.0.0/WEB-INF/lib/cxf-core-3.2.1.jar</p> <p> Dependency Hierarchy: - :x: **cxf-core-3.2.1.jar** (Vulnerable Library) </details> <details><summary><b>cxf-core-3.0.16.jar</b></p></summary> <p>Apache CXF Core</p> <p>Library home page: <a href="http://cxf.apache.org">http://cxf.apache.org</a></p> <p>Path to dependency file: nibrs-pr-test/tools/nibrs-staging-data/pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.0.16/cxf-core-3.0.16.jar,/home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.0.16/cxf-core-3.0.16.jar,/home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.0.16/cxf-core-3.0.16.jar,/home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.0.16/cxf-core-3.0.16.jar,/home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.0.16/cxf-core-3.0.16.jar,/home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.0.16/cxf-core-3.0.16.jar,/home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.0.16/cxf-core-3.0.16.jar,/home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.0.16/cxf-core-3.0.16.jar,nibrs-pr-test/web/nibrs-web/target/nibrs-web/WEB-INF/lib/cxf-core-3.0.16.jar,/home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.0.16/cxf-core-3.0.16.jar,/home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.0.16/cxf-core-3.0.16.jar</p> <p> Dependency Hierarchy: - :x: **cxf-core-3.0.16.jar** (Vulnerable Library) </details> <details><summary><b>cxf-core-3.2.5.jar</b></p></summary> <p>Apache CXF Core</p> <p>Library home page: <a href="http://cxf.apache.org">http://cxf.apache.org</a></p> <p>Path to dependency file: nibrs-pr-test/tools/nibrs-route/pom.xml</p> <p>Path to vulnerable library: nibrs-pr-test/tools/nibrs-route/target/nibrs-route-1.0.0/WEB-INF/lib/cxf-core-3.2.5.jar,/home/wss-scanner/.m2/repository/org/apache/cxf/cxf-core/3.2.5/cxf-core-3.2.5.jar</p> <p> Dependency Hierarchy: - :x: **cxf-core-3.2.5.jar** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/gms-ws-demo/nibrs-pr-test/commit/860cc22f54e17594e32e303f0716fb065202fff5">860cc22f54e17594e32e303f0716fb065202fff5</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> Apache CXF before 3.3.4 and 3.2.11 does not restrict the number of message attachments present in a given message. This leaves open the possibility of a denial of service type attack, where a malicious user crafts a message containing a very large number of message attachments. From the 3.3.4 and 3.2.11 releases, a default limit of 50 message attachments is enforced. This is configurable via the message property "attachment-max-count". <p>Publish Date: 2019-11-06 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-12406>CVE-2019-12406</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12406">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12406</a></p> <p>Release Date: 2019-11-06</p> <p>Fix Resolution: org.apache.cxf:cxf-core:3.2.11,3.3.4</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"org.apache.cxf","packageName":"cxf-core","packageVersion":"3.2.1","packageFilePaths":["/tools/nibrs-fbi-service/pom.xml"],"isTransitiveDependency":false,"dependencyTree":"org.apache.cxf:cxf-core:3.2.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"org.apache.cxf:cxf-core:3.2.11,3.3.4"},{"packageType":"Java","groupId":"org.apache.cxf","packageName":"cxf-core","packageVersion":"3.0.16","packageFilePaths":["/tools/nibrs-staging-data/pom.xml","/tools/nibrs-flatfile/pom.xml","/tools/nibrs-xmlfile/pom.xml","/tools/nibrs-common/pom.xml","/tools/nibrs-validate-common/pom.xml","/tools/nibrs-validation/pom.xml","/web/nibrs-web/pom.xml","/tools/nibrs-summary-report/pom.xml","/tools/nibrs-staging-data-common/pom.xml","/tools/nibrs-summary-report-common/pom.xml"],"isTransitiveDependency":false,"dependencyTree":"org.apache.cxf:cxf-core:3.0.16","isMinimumFixVersionAvailable":true,"minimumFixVersion":"org.apache.cxf:cxf-core:3.2.11,3.3.4"},{"packageType":"Java","groupId":"org.apache.cxf","packageName":"cxf-core","packageVersion":"3.2.5","packageFilePaths":["/tools/nibrs-route/pom.xml"],"isTransitiveDependency":false,"dependencyTree":"org.apache.cxf:cxf-core:3.2.5","isMinimumFixVersionAvailable":true,"minimumFixVersion":"org.apache.cxf:cxf-core:3.2.11,3.3.4"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2019-12406","vulnerabilityDetails":"Apache CXF before 3.3.4 and 3.2.11 does not restrict the number of message attachments present in a given message. This leaves open the possibility of a denial of service type attack, where a malicious user crafts a message containing a very large number of message attachments. From the 3.3.4 and 3.2.11 releases, a default limit of 50 message attachments is enforced. This is configurable via the message property \"attachment-max-count\".","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-12406","cvss3Severity":"medium","cvss3Score":"6.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"Required","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
non_priority
cve medium detected in multiple libraries cve medium severity vulnerability vulnerable libraries cxf core jar cxf core jar cxf core jar cxf core jar apache cxf core library home page a href path to dependency file nibrs pr test tools nibrs fbi service pom xml path to vulnerable library home wss scanner repository org apache cxf cxf core cxf core jar nibrs pr test tools nibrs fbi service target nibrs fbi service web inf lib cxf core jar dependency hierarchy x cxf core jar vulnerable library cxf core jar apache cxf core library home page a href path to dependency file nibrs pr test tools nibrs staging data pom xml path to vulnerable library home wss scanner repository org apache cxf cxf core cxf core jar home wss scanner repository org apache cxf cxf core cxf core jar home wss scanner repository org apache cxf cxf core cxf core jar home wss scanner repository org apache cxf cxf core cxf core jar home wss scanner repository org apache cxf cxf core cxf core jar home wss scanner repository org apache cxf cxf core cxf core jar home wss scanner repository org apache cxf cxf core cxf core jar home wss scanner repository org apache cxf cxf core cxf core jar nibrs pr test web nibrs web target nibrs web web inf lib cxf core jar home wss scanner repository org apache cxf cxf core cxf core jar home wss scanner repository org apache cxf cxf core cxf core jar dependency hierarchy x cxf core jar vulnerable library cxf core jar apache cxf core library home page a href path to dependency file nibrs pr test tools nibrs route pom xml path to vulnerable library nibrs pr test tools nibrs route target nibrs route web inf lib cxf core jar home wss scanner repository org apache cxf cxf core cxf core jar dependency hierarchy x cxf core jar vulnerable library found in head commit a href found in base branch master vulnerability details apache cxf before and does not restrict the number of message attachments present in a given message this leaves open the possibility of a denial of service type attack where a malicious user crafts a message containing a very large number of message attachments from the and releases a default limit of message attachments is enforced this is configurable via the message property attachment max count publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution org apache cxf cxf core isopenpronvulnerability false ispackagebased true isdefaultbranch true packages istransitivedependency false dependencytree org apache cxf cxf core isminimumfixversionavailable true minimumfixversion org apache cxf cxf core packagetype java groupid org apache cxf packagename cxf core packageversion packagefilepaths istransitivedependency false dependencytree org apache cxf cxf core isminimumfixversionavailable true minimumfixversion org apache cxf cxf core packagetype java groupid org apache cxf packagename cxf core packageversion packagefilepaths istransitivedependency false dependencytree org apache cxf cxf core isminimumfixversionavailable true minimumfixversion org apache cxf cxf core basebranches vulnerabilityidentifier cve vulnerabilitydetails apache cxf before and does not restrict the number of message attachments present in a given message this leaves open the possibility of a denial of service type attack where a malicious user crafts a message containing a very large number of message attachments from the and releases a default limit of message attachments is enforced this is configurable via the message property attachment max count vulnerabilityurl
0
53,897
13,223,573,457
IssuesEvent
2020-08-17 17:28:45
junit-pioneer/junit-pioneer
https://api.github.com/repos/junit-pioneer/junit-pioneer
opened
Windows build jobs sometimes timeout
⚙️ component: Pioneer 🐞 type: bug 📖 theme: build 🚦 status: in-discussion 🛸 3rd-party: Github Actions
In the last time several job builds timeout. As far as we can identify they are all Windows jobs at Java 11 or 14: > Thanks for making me aware of this. The example job you posted is with Java 11 on Windows, and it looks like it timed out during the tests: > > ``` > 2020-08-15T13:32:27.2087572Z > Task :processTestResources > 2020-08-15T13:32:27.2087905Z > Task :testClasses > 2020-08-15T13:32:57.2085938Z > Task :test > 2020-08-15T19:30:51.8898754Z ##[error]The operation was canceled. > 2020-08-15T19:30:51.9603377Z Post job cleanup. > 2020-08-15T19:30:52.1317368Z Post job cleanup. > 2020-08-15T19:30:54.1273868Z [command]"C:\Program Files\Git\bin\git.exe" version > ``` > > [961045944 - win / java 11](https://github.com/junit-pioneer/junit-pioneer/pull/261/checks?check_run_id=961045944) > > [990846534 - win / java 14](https://github.com/junit-pioneer/junit-pioneer/runs/990846534)
1.0
Windows build jobs sometimes timeout - In the last time several job builds timeout. As far as we can identify they are all Windows jobs at Java 11 or 14: > Thanks for making me aware of this. The example job you posted is with Java 11 on Windows, and it looks like it timed out during the tests: > > ``` > 2020-08-15T13:32:27.2087572Z > Task :processTestResources > 2020-08-15T13:32:27.2087905Z > Task :testClasses > 2020-08-15T13:32:57.2085938Z > Task :test > 2020-08-15T19:30:51.8898754Z ##[error]The operation was canceled. > 2020-08-15T19:30:51.9603377Z Post job cleanup. > 2020-08-15T19:30:52.1317368Z Post job cleanup. > 2020-08-15T19:30:54.1273868Z [command]"C:\Program Files\Git\bin\git.exe" version > ``` > > [961045944 - win / java 11](https://github.com/junit-pioneer/junit-pioneer/pull/261/checks?check_run_id=961045944) > > [990846534 - win / java 14](https://github.com/junit-pioneer/junit-pioneer/runs/990846534)
non_priority
windows build jobs sometimes timeout in the last time several job builds timeout as far as we can identify they are all windows jobs at java or thanks for making me aware of this the example job you posted is with java on windows and it looks like it timed out during the tests task processtestresources task testclasses task test the operation was canceled post job cleanup post job cleanup c program files git bin git exe version
0
470,343
13,535,987,295
IssuesEvent
2020-09-16 08:24:14
enso-org/ide
https://api.github.com/repos/enso-org/ide
closed
Broken parsing x AST repr roundtrip
Category: External Change: Non-Breaking Difficulty: Core Contributor Priority: Highest Type: Bug
### General Summary The Parser isn't parsing empty lines properly. ### Steps to Reproduce 1. checkout `wip/dg/broken-parser-ast-roundtrip` of https://github.com/luna/ide 2. run `wasm-pack test --chrome src/rust/ide/parser/` ### Expected Result Test passes. ### Actual Result Test fails. ### Enso Version `wip/dg/broken-parser-ast-roundtrip` of https://github.com/luna/ide, branched out from `e4a9d7742a4e4d4d0620b5ffe1fd60261438adb2`
1.0
Broken parsing x AST repr roundtrip - ### General Summary The Parser isn't parsing empty lines properly. ### Steps to Reproduce 1. checkout `wip/dg/broken-parser-ast-roundtrip` of https://github.com/luna/ide 2. run `wasm-pack test --chrome src/rust/ide/parser/` ### Expected Result Test passes. ### Actual Result Test fails. ### Enso Version `wip/dg/broken-parser-ast-roundtrip` of https://github.com/luna/ide, branched out from `e4a9d7742a4e4d4d0620b5ffe1fd60261438adb2`
priority
broken parsing x ast repr roundtrip general summary the parser isn t parsing empty lines properly steps to reproduce checkout wip dg broken parser ast roundtrip of run wasm pack test chrome src rust ide parser expected result test passes actual result test fails enso version wip dg broken parser ast roundtrip of branched out from
1
122,618
17,760,977,230
IssuesEvent
2021-08-29 17:36:55
matteobaccan/IotaClient
https://api.github.com/repos/matteobaccan/IotaClient
opened
CVE-2020-25649 (High) detected in jackson-databind-2.10.0.jar
security vulnerability
## CVE-2020-25649 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jackson-databind-2.10.0.jar</b></p></summary> <p>General data-binding functionality for Jackson: works on core streaming API</p> <p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p> <p>Path to dependency file: IotaClient/pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.jar</p> <p> Dependency Hierarchy: - jota-1.0.0-beta8.jar (Root Library) - :x: **jackson-databind-2.10.0.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/matteobaccan/IotaClient/commit/30032d6c266326c76fb378c5f228450ac2799255">30032d6c266326c76fb378c5f228450ac2799255</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> A flaw was found in FasterXML Jackson Databind, where it did not have entity expansion secured properly. This flaw allows vulnerability to XML external entity (XXE) attacks. The highest threat from this vulnerability is data integrity. <p>Publish Date: 2020-12-03 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-25649>CVE-2020-25649</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://github.com/FasterXML/jackson-databind/issues/2589">https://github.com/FasterXML/jackson-databind/issues/2589</a></p> <p>Release Date: 2020-12-03</p> <p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.6.7.4,2.9.10.7,2.10.5.1,2.11.0.rc1</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2020-25649 (High) detected in jackson-databind-2.10.0.jar - ## CVE-2020-25649 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jackson-databind-2.10.0.jar</b></p></summary> <p>General data-binding functionality for Jackson: works on core streaming API</p> <p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p> <p>Path to dependency file: IotaClient/pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.jar</p> <p> Dependency Hierarchy: - jota-1.0.0-beta8.jar (Root Library) - :x: **jackson-databind-2.10.0.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/matteobaccan/IotaClient/commit/30032d6c266326c76fb378c5f228450ac2799255">30032d6c266326c76fb378c5f228450ac2799255</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> A flaw was found in FasterXML Jackson Databind, where it did not have entity expansion secured properly. This flaw allows vulnerability to XML external entity (XXE) attacks. The highest threat from this vulnerability is data integrity. <p>Publish Date: 2020-12-03 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-25649>CVE-2020-25649</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://github.com/FasterXML/jackson-databind/issues/2589">https://github.com/FasterXML/jackson-databind/issues/2589</a></p> <p>Release Date: 2020-12-03</p> <p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.6.7.4,2.9.10.7,2.10.5.1,2.11.0.rc1</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_priority
cve high detected in jackson databind jar cve high severity vulnerability vulnerable library jackson databind jar general data binding functionality for jackson works on core streaming api library home page a href path to dependency file iotaclient pom xml path to vulnerable library home wss scanner repository com fasterxml jackson core jackson databind jackson databind jar dependency hierarchy jota jar root library x jackson databind jar vulnerable library found in head commit a href found in base branch master vulnerability details a flaw was found in fasterxml jackson databind where it did not have entity expansion secured properly this flaw allows vulnerability to xml external entity xxe attacks the highest threat from this vulnerability is data integrity 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 com fasterxml jackson core jackson databind step up your open source security game with whitesource
0