Unnamed: 0
int64
3
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
2
430
labels
stringlengths
4
347
body
stringlengths
5
237k
index
stringclasses
7 values
text_combine
stringlengths
96
237k
label
stringclasses
2 values
text
stringlengths
96
219k
binary_label
int64
0
1
3,399
6,366,796,799
IssuesEvent
2017-08-01 03:05:45
Railcraft/Railcraft
https://api.github.com/repos/Railcraft/Railcraft
closed
[Suggestion] Improvement for Thaumcraft
enhancement mod compatibility open project
- [x] Add VoidMetal Crowbar; - [ ] To make ElementalCrowbars. - [ ] Update the aspect of new items(electric meter, flux transformer) and minecarts.
True
[Suggestion] Improvement for Thaumcraft - - [x] Add VoidMetal Crowbar; - [ ] To make ElementalCrowbars. - [ ] Update the aspect of new items(electric meter, flux transformer) and minecarts.
comp
improvement for thaumcraft add voidmetal crowbar to make elementalcrowbars update the aspect of new items electric meter flux transformer and minecarts
1
158,280
12,412,068,281
IssuesEvent
2020-05-22 09:49:17
aliasrobotics/RVD
https://api.github.com/repos/aliasrobotics/RVD
opened
(warning) Member variable 'ImageNodelet
bug cppcheck static analysis testing triage
```yaml { "id": 1, "title": "(warning) Member variable 'ImageNodelet", "type": "bug", "description": "[src/image_pipeline/image_view/src/nodelets/image_nodelet.cpp:94]: (warning) Member variable 'ImageNodelet::autosize_' is not initialized in the constructor.", "cwe": "None", "cve": "None", "keywords": [ "cppcheck", "static analysis", "testing", "triage", "bug" ], "system": "src/image_pipeline/image_view/src/nodelets/image_nodelet.cpp", "vendor": null, "severity": { "rvss-score": 0, "rvss-vector": "", "severity-description": "", "cvss-score": 0, "cvss-vector": "" }, "links": "", "flaw": { "phase": "testing", "specificity": "N/A", "architectural-location": "N/A", "application": "N/A", "subsystem": "N/A", "package": "N/A", "languages": "None", "date-detected": "2020-05-22 (09:48)", "detected-by": "Alias Robotics", "detected-by-method": "testing static", "date-reported": "2020-05-22 (09:48)", "reported-by": "Alias Robotics", "reported-by-relationship": "automatic", "issue": "", "reproducibility": "always", "trace": "", "reproduction": "See artifacts below (if available)", "reproduction-image": "gitlab.com/aliasrobotics/offensive/alurity/pipelines/active/pipeline_ros_kinetic/-/jobs/563367426/artifacts/download" }, "exploitation": { "description": "", "exploitation-image": "", "exploitation-vector": "" }, "mitigation": { "description": "", "pull-request": "", "date-mitigation": "" } } ```
1.0
(warning) Member variable 'ImageNodelet - ```yaml { "id": 1, "title": "(warning) Member variable 'ImageNodelet", "type": "bug", "description": "[src/image_pipeline/image_view/src/nodelets/image_nodelet.cpp:94]: (warning) Member variable 'ImageNodelet::autosize_' is not initialized in the constructor.", "cwe": "None", "cve": "None", "keywords": [ "cppcheck", "static analysis", "testing", "triage", "bug" ], "system": "src/image_pipeline/image_view/src/nodelets/image_nodelet.cpp", "vendor": null, "severity": { "rvss-score": 0, "rvss-vector": "", "severity-description": "", "cvss-score": 0, "cvss-vector": "" }, "links": "", "flaw": { "phase": "testing", "specificity": "N/A", "architectural-location": "N/A", "application": "N/A", "subsystem": "N/A", "package": "N/A", "languages": "None", "date-detected": "2020-05-22 (09:48)", "detected-by": "Alias Robotics", "detected-by-method": "testing static", "date-reported": "2020-05-22 (09:48)", "reported-by": "Alias Robotics", "reported-by-relationship": "automatic", "issue": "", "reproducibility": "always", "trace": "", "reproduction": "See artifacts below (if available)", "reproduction-image": "gitlab.com/aliasrobotics/offensive/alurity/pipelines/active/pipeline_ros_kinetic/-/jobs/563367426/artifacts/download" }, "exploitation": { "description": "", "exploitation-image": "", "exploitation-vector": "" }, "mitigation": { "description": "", "pull-request": "", "date-mitigation": "" } } ```
non_comp
warning member variable imagenodelet yaml id title warning member variable imagenodelet type bug description warning member variable imagenodelet autosize is not initialized in the constructor cwe none cve none keywords cppcheck static analysis testing triage bug system src image pipeline image view src nodelets image nodelet cpp vendor null severity rvss score rvss vector severity description cvss score cvss vector links flaw phase testing specificity n a architectural location n a application n a subsystem n a package n a languages none date detected detected by alias robotics detected by method testing static date reported reported by alias robotics reported by relationship automatic issue reproducibility always trace reproduction see artifacts below if available reproduction image gitlab com aliasrobotics offensive alurity pipelines active pipeline ros kinetic jobs artifacts download exploitation description exploitation image exploitation vector mitigation description pull request date mitigation
0
914
3,381,145,811
IssuesEvent
2015-11-26 00:11:10
ceholden/yatsm
https://api.github.com/repos/ceholden/yatsm
opened
YATSM timeseries estimator API generalization
algorithm backward_incompatible
## Rationale Generalize YATSM timeseries estimator API to fit more workflows or approaches. Currently there is quite a lot of code in CLI scripts that are specific to models like CCDC or BFAST that wouldn't work for other algorithms. There's also some terminology and methods within the YATSM baseclass that aren't quite right for something like a VCT. Basically, we need to make timeseries estimators more responsible for things like the setup, preprocessing, and postprocessing. The methods used also need to be more generic. ## API First stab at what YATSM baseclass should define: - [ ] `setup(self, df, **config)` + Accomplish things necessary for running the model, but nothing specific to an individual timeseries (e.g., formulate X design matrix) + `df` is Pandas dataframe representation of the info in `input_file` for a dataset + `return self` - [ ] `preprocess(self, ..., **data_config)` + preprocess (mask, filter, transform, etc.) data per pixel + `return dict` (?) - [ ] `fit(self, X, Y, dates, **algo_config)` + fit timeseries model + `return self.record` - [ ] `predict(self, X, dates, **algo_config)` - [ ] `score(self, X, Y, dates, **algo_config)` - [ ] `plot(self, X, Y, dates, **algo_config)` - [ ] `postprocess(self, ..., **algo_config)`
True
YATSM timeseries estimator API generalization - ## Rationale Generalize YATSM timeseries estimator API to fit more workflows or approaches. Currently there is quite a lot of code in CLI scripts that are specific to models like CCDC or BFAST that wouldn't work for other algorithms. There's also some terminology and methods within the YATSM baseclass that aren't quite right for something like a VCT. Basically, we need to make timeseries estimators more responsible for things like the setup, preprocessing, and postprocessing. The methods used also need to be more generic. ## API First stab at what YATSM baseclass should define: - [ ] `setup(self, df, **config)` + Accomplish things necessary for running the model, but nothing specific to an individual timeseries (e.g., formulate X design matrix) + `df` is Pandas dataframe representation of the info in `input_file` for a dataset + `return self` - [ ] `preprocess(self, ..., **data_config)` + preprocess (mask, filter, transform, etc.) data per pixel + `return dict` (?) - [ ] `fit(self, X, Y, dates, **algo_config)` + fit timeseries model + `return self.record` - [ ] `predict(self, X, dates, **algo_config)` - [ ] `score(self, X, Y, dates, **algo_config)` - [ ] `plot(self, X, Y, dates, **algo_config)` - [ ] `postprocess(self, ..., **algo_config)`
comp
yatsm timeseries estimator api generalization rationale generalize yatsm timeseries estimator api to fit more workflows or approaches currently there is quite a lot of code in cli scripts that are specific to models like ccdc or bfast that wouldn t work for other algorithms there s also some terminology and methods within the yatsm baseclass that aren t quite right for something like a vct basically we need to make timeseries estimators more responsible for things like the setup preprocessing and postprocessing the methods used also need to be more generic api first stab at what yatsm baseclass should define setup self df config accomplish things necessary for running the model but nothing specific to an individual timeseries e g formulate x design matrix df is pandas dataframe representation of the info in input file for a dataset return self preprocess self data config preprocess mask filter transform etc data per pixel return dict fit self x y dates algo config fit timeseries model return self record predict self x dates algo config score self x y dates algo config plot self x y dates algo config postprocess self algo config
1
807,093
29,936,678,833
IssuesEvent
2023-06-22 13:11:56
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
closed
[Coverity CID: 321168] Logically dead code in subsys/net/lib/sockets/getaddrinfo.c
bug priority: medium area: Networking Coverity area: Sockets
Static code scan issues found in file: https://github.com/zephyrproject-rtos/zephyr/tree/ce3317d03e46e1a218af3e712383d9216c48a992/subsys/net/lib/sockets/getaddrinfo.c Category: Control flow issues Function: `z_impl_z_zsock_getaddrinfo_internal` Component: Networking CID: [321168](https://scan9.scan.coverity.com/reports.htm#v29726/p12996/mergedDefectId=321168) Details: https://github.com/zephyrproject-rtos/zephyr/blob/ce3317d03e46e1a218af3e712383d9216c48a992/subsys/net/lib/sockets/getaddrinfo.c#L262 Please fix or provide comments in coverity using the link: https://scan9.scan.coverity.com/reports.htm#v29271/p12996. For more information about the violation, check the [Coverity Reference](https://scan9.scan.coverity.com/doc/en/cov_checker_ref.html#static_checker_DEADCODE). ([CWE-561](http://cwe.mitre.org/data/definitions/561.html)) Note: This issue was created automatically. Priority was set based on classification of the file affected and the impact field in coverity. Assignees were set using the CODEOWNERS file.
1.0
[Coverity CID: 321168] Logically dead code in subsys/net/lib/sockets/getaddrinfo.c - Static code scan issues found in file: https://github.com/zephyrproject-rtos/zephyr/tree/ce3317d03e46e1a218af3e712383d9216c48a992/subsys/net/lib/sockets/getaddrinfo.c Category: Control flow issues Function: `z_impl_z_zsock_getaddrinfo_internal` Component: Networking CID: [321168](https://scan9.scan.coverity.com/reports.htm#v29726/p12996/mergedDefectId=321168) Details: https://github.com/zephyrproject-rtos/zephyr/blob/ce3317d03e46e1a218af3e712383d9216c48a992/subsys/net/lib/sockets/getaddrinfo.c#L262 Please fix or provide comments in coverity using the link: https://scan9.scan.coverity.com/reports.htm#v29271/p12996. For more information about the violation, check the [Coverity Reference](https://scan9.scan.coverity.com/doc/en/cov_checker_ref.html#static_checker_DEADCODE). ([CWE-561](http://cwe.mitre.org/data/definitions/561.html)) Note: This issue was created automatically. Priority was set based on classification of the file affected and the impact field in coverity. Assignees were set using the CODEOWNERS file.
non_comp
logically dead code in subsys net lib sockets getaddrinfo c static code scan issues found in file category control flow issues function z impl z zsock getaddrinfo internal component networking cid details please fix or provide comments in coverity using the link for more information about the violation check the note this issue was created automatically priority was set based on classification of the file affected and the impact field in coverity assignees were set using the codeowners file
0
17,711
24,414,166,468
IssuesEvent
2022-10-05 14:38:50
nonamecrackers2/crackers-wither-storm-mod
https://api.github.com/repos/nonamecrackers2/crackers-wither-storm-mod
closed
Tentacles in final boss have infinite range/ fight over who grabs the player
bug question compatibility 1.18.2
**Minecraft version** 1.18.2 **Mod version** 2.0.1.2 **Describe the bug** The tentacles in the final boss seem to have infinite range, or just a really long one, for unknown reasons, this causes several issues such as - The platform tentacles constantly slapping the nearest player even when they are on the ground, the roof, literally anywhere within the bowels fight area - In the grabbing phase where the other tentacles try grabbing players, they all try to pick up the player at the same time, causing the player to snap rapidly between them all, causing possible epilepsy issues (similar to if you mass TPed someone around the room with commands) **To Reproduce** Steps to reproduce the behavior: 1. Go to the listed version of game and mod 2. Go into storm bowels 3. Begin the boss fight in survival 4. See error **Crash Reports / Logs** NA, This didnt crash the game **Screenshots** I cant really screenie it due to it all being so quick, I'd look like a normal boss fight image, sorry :/ P.S. Im on discord in the server if you need more info on this bug or other ones ive seen you can message me lol Shade Kage#8470
True
Tentacles in final boss have infinite range/ fight over who grabs the player - **Minecraft version** 1.18.2 **Mod version** 2.0.1.2 **Describe the bug** The tentacles in the final boss seem to have infinite range, or just a really long one, for unknown reasons, this causes several issues such as - The platform tentacles constantly slapping the nearest player even when they are on the ground, the roof, literally anywhere within the bowels fight area - In the grabbing phase where the other tentacles try grabbing players, they all try to pick up the player at the same time, causing the player to snap rapidly between them all, causing possible epilepsy issues (similar to if you mass TPed someone around the room with commands) **To Reproduce** Steps to reproduce the behavior: 1. Go to the listed version of game and mod 2. Go into storm bowels 3. Begin the boss fight in survival 4. See error **Crash Reports / Logs** NA, This didnt crash the game **Screenshots** I cant really screenie it due to it all being so quick, I'd look like a normal boss fight image, sorry :/ P.S. Im on discord in the server if you need more info on this bug or other ones ive seen you can message me lol Shade Kage#8470
comp
tentacles in final boss have infinite range fight over who grabs the player minecraft version mod version describe the bug the tentacles in the final boss seem to have infinite range or just a really long one for unknown reasons this causes several issues such as the platform tentacles constantly slapping the nearest player even when they are on the ground the roof literally anywhere within the bowels fight area in the grabbing phase where the other tentacles try grabbing players they all try to pick up the player at the same time causing the player to snap rapidly between them all causing possible epilepsy issues similar to if you mass tped someone around the room with commands to reproduce steps to reproduce the behavior go to the listed version of game and mod go into storm bowels begin the boss fight in survival see error crash reports logs na this didnt crash the game screenshots i cant really screenie it due to it all being so quick i d look like a normal boss fight image sorry p s im on discord in the server if you need more info on this bug or other ones ive seen you can message me lol shade kage
1
389,949
26,840,822,113
IssuesEvent
2023-02-03 00:14:50
yugabyte/yugabyte-db
https://api.github.com/repos/yugabyte/yugabyte-db
closed
[Docs] Add documentation for geo-distribution helper functions
area/documentation
### Description #13609 introduced 3 new functions yb_server_region(), yb_server_zone(), yb_server_cloud(), but there is no documentation for them yet.
1.0
[Docs] Add documentation for geo-distribution helper functions - ### Description #13609 introduced 3 new functions yb_server_region(), yb_server_zone(), yb_server_cloud(), but there is no documentation for them yet.
non_comp
add documentation for geo distribution helper functions description introduced new functions yb server region yb server zone yb server cloud but there is no documentation for them yet
0
419,642
12,226,401,557
IssuesEvent
2020-05-03 10:44:47
returntocorp/semgrep
https://api.github.com/repos/returntocorp/semgrep
closed
Simplify boolean patterns
enhancement priority:low
Issue for discussion: I think we can make the patterns a lot simpler. i.e. `pattern-either` can become `or` and `pattern-not` could just be `not`
1.0
Simplify boolean patterns - Issue for discussion: I think we can make the patterns a lot simpler. i.e. `pattern-either` can become `or` and `pattern-not` could just be `not`
non_comp
simplify boolean patterns issue for discussion i think we can make the patterns a lot simpler i e pattern either can become or and pattern not could just be not
0
16,946
23,324,993,179
IssuesEvent
2022-08-08 20:13:18
VanirDev/VariantEncumbrance
https://api.github.com/repos/VanirDev/VariantEncumbrance
closed
"Powerful Build" Attribute not taken into account, incompatibility with Burger Time module
module-incompatibility
* Foundry VTT Version: 0.8.9 * Operating System: MacOS 11.6 * How Are You Using Foundry: Native Application, Chrome * Which Game System: dnd5e v1.4.3 * Modules Enabled?: yes ### Issue Description I am using your mod, but when enabling the Special Trait --> Racial Trait --> Powerful Build, the character's carrying capacity is not changing -- it remains the same whether that box is checked or not. I have done enabling/disabling the mod, restarting FVTT, etc.
True
"Powerful Build" Attribute not taken into account, incompatibility with Burger Time module - * Foundry VTT Version: 0.8.9 * Operating System: MacOS 11.6 * How Are You Using Foundry: Native Application, Chrome * Which Game System: dnd5e v1.4.3 * Modules Enabled?: yes ### Issue Description I am using your mod, but when enabling the Special Trait --> Racial Trait --> Powerful Build, the character's carrying capacity is not changing -- it remains the same whether that box is checked or not. I have done enabling/disabling the mod, restarting FVTT, etc.
comp
powerful build attribute not taken into account incompatibility with burger time module foundry vtt version operating system macos how are you using foundry native application chrome which game system modules enabled yes issue description i am using your mod but when enabling the special trait racial trait powerful build the character s carrying capacity is not changing it remains the same whether that box is checked or not i have done enabling disabling the mod restarting fvtt etc
1
132,142
28,106,611,563
IssuesEvent
2023-03-31 01:36:54
guidopetri/pyweek-35
https://api.github.com/repos/guidopetri/pyweek-35
closed
fix firefly animation
code
switch between frames 1 and 3 when standing; use walking frames when walking
1.0
fix firefly animation - switch between frames 1 and 3 when standing; use walking frames when walking
non_comp
fix firefly animation switch between frames and when standing use walking frames when walking
0
56,130
11,516,916,417
IssuesEvent
2020-02-14 06:51:52
DataBiosphere/azul
https://api.github.com/repos/DataBiosphere/azul
reopened
Expose specimen organ and part as a facet
HCA code demoed enh orange port
The proposed fix for https://github.com/HumanCellAtlas/data-browser/issues/901 is to display `hits[].specimen[].organ` and `hits[].samples[].organ` in a single column. The column header should contain the number of distinct values in that column. There is currently no way for DB to get the unique specimen values. @NoopDog [proposed](https://github.com/HumanCellAtlas/data-browser/issues/901#issuecomment-561777565) to change the `organ` facet to count both sample and specimen organs but then we would anticipate a DB implementation detail in Azul. It's cleaner to report the distinct specimen organs separately from sample organs. The DB would then need to merge the two facet dicts by adding the values with the same key but that should be straight forward to do. Everything I said for `organ` applies to `organPart` as well. In essence this change would entail ```diff Index: src/azul/project/hca/__init__.py <+>UTF-8 =================================================================== --- src/azul/project/hca/__init__.py (revision 2a854f2c6f17ad784ae42020adc06defea7ecf01) +++ src/azul/project/hca/__init__.py (date 1575487672118) @@ -102,6 +102,8 @@ "modelOrgan": "contents.samples.model_organ", "modelOrganPart": "contents.samples.model_organ_part", "effectiveOrgan": "contents.samples.effective_organ", + "specimenOrgan": "contents.specimen.organ", + "specimenOrganPart": "contents.specimen.organ_part", "organismAge": "contents.donors.organism_age", "organismAgeUnit": "contents.donors.organism_age_unit", "organismAgeRange": "contents.donors.organism_age_range", ``` plus any test fixture and assertion changes. ┆Issue is synchronized with this [Jira Story](https://ucsc-cgl.atlassian.net/browse/AZUL-920) ┆Project Name: azul ┆Issue Number: AZUL-920
1.0
Expose specimen organ and part as a facet - The proposed fix for https://github.com/HumanCellAtlas/data-browser/issues/901 is to display `hits[].specimen[].organ` and `hits[].samples[].organ` in a single column. The column header should contain the number of distinct values in that column. There is currently no way for DB to get the unique specimen values. @NoopDog [proposed](https://github.com/HumanCellAtlas/data-browser/issues/901#issuecomment-561777565) to change the `organ` facet to count both sample and specimen organs but then we would anticipate a DB implementation detail in Azul. It's cleaner to report the distinct specimen organs separately from sample organs. The DB would then need to merge the two facet dicts by adding the values with the same key but that should be straight forward to do. Everything I said for `organ` applies to `organPart` as well. In essence this change would entail ```diff Index: src/azul/project/hca/__init__.py <+>UTF-8 =================================================================== --- src/azul/project/hca/__init__.py (revision 2a854f2c6f17ad784ae42020adc06defea7ecf01) +++ src/azul/project/hca/__init__.py (date 1575487672118) @@ -102,6 +102,8 @@ "modelOrgan": "contents.samples.model_organ", "modelOrganPart": "contents.samples.model_organ_part", "effectiveOrgan": "contents.samples.effective_organ", + "specimenOrgan": "contents.specimen.organ", + "specimenOrganPart": "contents.specimen.organ_part", "organismAge": "contents.donors.organism_age", "organismAgeUnit": "contents.donors.organism_age_unit", "organismAgeRange": "contents.donors.organism_age_range", ``` plus any test fixture and assertion changes. ┆Issue is synchronized with this [Jira Story](https://ucsc-cgl.atlassian.net/browse/AZUL-920) ┆Project Name: azul ┆Issue Number: AZUL-920
non_comp
expose specimen organ and part as a facet the proposed fix for is to display hits specimen organ and hits samples organ in a single column the column header should contain the number of distinct values in that column there is currently no way for db to get the unique specimen values noopdog to change the organ facet to count both sample and specimen organs but then we would anticipate a db implementation detail in azul it s cleaner to report the distinct specimen organs separately from sample organs the db would then need to merge the two facet dicts by adding the values with the same key but that should be straight forward to do everything i said for organ applies to organpart as well in essence this change would entail diff index src azul project hca init py utf src azul project hca init py revision src azul project hca init py date modelorgan contents samples model organ modelorganpart contents samples model organ part effectiveorgan contents samples effective organ specimenorgan contents specimen organ specimenorganpart contents specimen organ part organismage contents donors organism age organismageunit contents donors organism age unit organismagerange contents donors organism age range plus any test fixture and assertion changes ┆issue is synchronized with this ┆project name azul ┆issue number azul
0
625
3,054,583,354
IssuesEvent
2015-08-13 04:22:20
ForgeEssentials/ForgeEssentialsMain
https://api.github.com/repos/ForgeEssentials/ForgeEssentialsMain
closed
Thaumic tinkerer - EntityPlayerMP issue
mod-compatibility
Having the same issue as #1599. Was using the latest build: Build #858 (Aug 8, 2015 3:27:51 AM) crashlog: https://gist.github.com/Aracnoss/54c7693c1901745b5625#file-thaumic-tinkerer-entityplayermp-issue Forge log: https://gist.github.com/Aracnoss/44cde404dea8528f6f45
True
Thaumic tinkerer - EntityPlayerMP issue - Having the same issue as #1599. Was using the latest build: Build #858 (Aug 8, 2015 3:27:51 AM) crashlog: https://gist.github.com/Aracnoss/54c7693c1901745b5625#file-thaumic-tinkerer-entityplayermp-issue Forge log: https://gist.github.com/Aracnoss/44cde404dea8528f6f45
comp
thaumic tinkerer entityplayermp issue having the same issue as was using the latest build build aug am crashlog forge log
1
61,660
8,543,705,829
IssuesEvent
2018-11-06 16:01:16
JazzBrotha/screenmycode
https://api.github.com/repos/JazzBrotha/screenmycode
closed
Improve the readme
documentation good first issue hacktoberfest help wanted
Suggest any change to improve the [Readme](https://github.com/JazzBrotha/screenmycode/blob/master/README.md). The change can include adding new sections, changing headings, syntax reconstruction, etc.
1.0
Improve the readme - Suggest any change to improve the [Readme](https://github.com/JazzBrotha/screenmycode/blob/master/README.md). The change can include adding new sections, changing headings, syntax reconstruction, etc.
non_comp
improve the readme suggest any change to improve the the change can include adding new sections changing headings syntax reconstruction etc
0
323,969
23,976,363,599
IssuesEvent
2022-09-13 11:56:51
vercel/next.js
https://api.github.com/repos/vercel/next.js
closed
More simplified examples for redirects and rewrites
area: documentation
More simplified examples for how to do redirects and rewrites
1.0
More simplified examples for redirects and rewrites - More simplified examples for how to do redirects and rewrites
non_comp
more simplified examples for redirects and rewrites more simplified examples for how to do redirects and rewrites
0
763,704
26,770,467,764
IssuesEvent
2023-01-31 13:47:32
wfau/gaia-dmp
https://api.github.com/repos/wfau/gaia-dmp
closed
New live deployment on red
high priority
Issues with CephFS mounts (#1085) has meant the current live service is not in a good place. Build and test a new deployment on `iris-gaia-red` and make that the new live service.
1.0
New live deployment on red - Issues with CephFS mounts (#1085) has meant the current live service is not in a good place. Build and test a new deployment on `iris-gaia-red` and make that the new live service.
non_comp
new live deployment on red issues with cephfs mounts has meant the current live service is not in a good place build and test a new deployment on iris gaia red and make that the new live service
0
13,520
16,013,742,642
IssuesEvent
2021-04-20 13:48:06
Creators-of-Create/Create
https://api.github.com/repos/Creators-of-Create/Create
closed
Rendering issues when Immersive Railroading present
bug compatibility
When I try check craft with JEI, game crash. This happen only than I have mods Immersive Railroading and Track API (library) [log.txt](https://github.com/Creators-of-Create/Create/files/4405128/log.txt)
True
Rendering issues when Immersive Railroading present - When I try check craft with JEI, game crash. This happen only than I have mods Immersive Railroading and Track API (library) [log.txt](https://github.com/Creators-of-Create/Create/files/4405128/log.txt)
comp
rendering issues when immersive railroading present when i try check craft with jei game crash this happen only than i have mods immersive railroading and track api library
1
6,347
8,679,702,476
IssuesEvent
2018-12-01 01:41:00
cobalt-org/liquid-rust
https://api.github.com/repos/cobalt-org/liquid-rust
opened
`forloop` should have a `parentloop` variable
enhancement shopify-compatibility
Example test ```rust assert_template_result!( "1.1 1.2 1.3 2.1 2.2 2.3 ", concat!( "{% for inner in outer %}{% for k in inner %}", "{{ forloop.parentloop.index }}.{{ forloop.index }} ", "{% endfor %}{% endfor %}" ), v!({"outer": [[1, 1, 1], [1, 1, 1]]}), ); ```
True
`forloop` should have a `parentloop` variable - Example test ```rust assert_template_result!( "1.1 1.2 1.3 2.1 2.2 2.3 ", concat!( "{% for inner in outer %}{% for k in inner %}", "{{ forloop.parentloop.index }}.{{ forloop.index }} ", "{% endfor %}{% endfor %}" ), v!({"outer": [[1, 1, 1], [1, 1, 1]]}), ); ```
comp
forloop should have a parentloop variable example test rust assert template result concat for inner in outer for k in inner forloop parentloop index forloop index endfor endfor v outer
1
17,394
23,981,003,638
IssuesEvent
2022-09-13 15:02:57
elementor/elementor
https://api.github.com/repos/elementor/elementor
closed
Gravity forms Total field not updating when adding items in Elementor popups
compatibility/3rd_party component/popup
Still having one issue with Gravity forms inserted into Elementor popups. The Totals field will not update the amount total after adding product items. It stays as $0.00. Using test environment with Stripe, the correct amount does get sent, but the viewer doesn't see the total until they get their receipt email. This doesn't happen using Popup maker plugin, just Elementor popups. I have tried ajax="true" and "false" and different tabindexes. https://ncsfa.site/2019-convention/#schedule-2019 Click on any of the "Click for Details" text links and then click the "Purchase a Ticket" button to see the gravity form. Try adding a ticket and watch the total field.
True
Gravity forms Total field not updating when adding items in Elementor popups - Still having one issue with Gravity forms inserted into Elementor popups. The Totals field will not update the amount total after adding product items. It stays as $0.00. Using test environment with Stripe, the correct amount does get sent, but the viewer doesn't see the total until they get their receipt email. This doesn't happen using Popup maker plugin, just Elementor popups. I have tried ajax="true" and "false" and different tabindexes. https://ncsfa.site/2019-convention/#schedule-2019 Click on any of the "Click for Details" text links and then click the "Purchase a Ticket" button to see the gravity form. Try adding a ticket and watch the total field.
comp
gravity forms total field not updating when adding items in elementor popups still having one issue with gravity forms inserted into elementor popups the totals field will not update the amount total after adding product items it stays as using test environment with stripe the correct amount does get sent but the viewer doesn t see the total until they get their receipt email this doesn t happen using popup maker plugin just elementor popups i have tried ajax true and false and different tabindexes click on any of the click for details text links and then click the purchase a ticket button to see the gravity form try adding a ticket and watch the total field
1
48,922
3,000,841,530
IssuesEvent
2015-07-24 06:39:21
jayway/powermock
https://api.github.com/repos/jayway/powermock
closed
Problem creating mock using PowerMock
bug imported Priority-Medium wontfix
_From [ago...@gmail.com](https://code.google.com/u/107352092385320321179/) on September 22, 2010 13:23:45_ What steps will reproduce the problem? I am using following in my pom.xml \<dependency> \<groupId>org.powermock.modules</groupId> \<artifactId>powermock-module-junit4</artifactId> \<version>1.4.5</version> \<scope>test</scope> \</dependency> \<dependency> \<groupId>com.google.collections</groupId> \<artifactId>google-collections</artifactId> \<version>1.0</version> \<scope>test</scope> \</dependency> \<dependency> \<groupId>org.easymock</groupId> \<artifactId>easymock</artifactId> \<version>2.2</version> \<scope>test</scope> \</dependency> \<dependency> \<groupId>org.easymock</groupId> \<artifactId>easymockclassextension</artifactId> \<version>2.2</version> \<scope>test</scope> \</dependency> I get this exception: java.lang.IllegalStateException: Failed to transform class with name com.my.DroolsFlowManagerTest. Reason: 3 at org.powermock.core.classloader.MockClassLoader.loadMockClass(MockClassLoader.java:208) at org.powermock.core.classloader.MockClassLoader.loadModifiedClass(MockClassLoader.java:146) at org.powermock.core.classloader.DeferSupportingClassLoader.loadClass(DeferSupportingClassLoader.java:65) at java.lang.ClassLoader.loadClass(ClassLoader.java:252) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:247) at org.powermock.modules.junit4.common.internal.impl.JUnit4TestSuiteChunkerImpl.createDelegatorFromClassloader(JUnit4TestSuiteChunkerImpl.java:143) at org.powermock.modules.junit4.common.internal.impl.JUnit4TestSuiteChunkerImpl.createDelegatorFromClassloader(JUnit4TestSuiteChunkerImpl.java:49) at org.powermock.tests.utils.impl.AbstractTestSuiteChunkerImpl.createTestDelegators(AbstractTestSuiteChunkerImpl.java:231) at org.powermock.modules.junit4.common.internal.impl.JUnit4TestSuiteChunkerImpl.<init>(JUnit4TestSuiteChunkerImpl.java:69) at org.powermock.modules.junit4.common.internal.impl.AbstractCommonPowerMockRunner.<init>(AbstractCommonPowerMockRunner.java:36) at org.powermock.modules.junit4.PowerMockRunner.<init>(PowerMockRunner.java:27) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance(Constructor.java:513) at org.junit.internal.builders.AnnotatedBuilder.buildRunner(AnnotatedBuilder.java:31) at org.junit.internal.builders.AnnotatedBuilder.runnerForClass(AnnotatedBuilder.java:24) at org.junit.runners.model.RunnerBuilder.safeRunnerForClass(RunnerBuilder.java:57) at org.junit.internal.builders.AllDefaultPossibilitiesBuilder.runnerForClass(AllDefaultPossibilitiesBuilder.java:29) at org.junit.runners.model.RunnerBuilder.safeRunnerForClass(RunnerBuilder.java:57) at org.junit.internal.requests.ClassRequest.getRunner(ClassRequest.java:24) at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.<init>(JUnit4TestReference.java:29) at org.eclipse.jdt.internal.junit4.runner.JUnit4TestClassReference.<init>(JUnit4TestClassReference.java:25) at org.eclipse.jdt.internal.junit4.runner.JUnit4TestLoader.createTest(JUnit4TestLoader.java:40) at org.eclipse.jdt.internal.junit4.runner.JUnit4TestLoader.loadTests(JUnit4TestLoader.java:30) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:452) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197) Caused by: java.lang.ArrayIndexOutOfBoundsException: 3 at javassist.bytecode.ByteArray.write16bit(ByteArray.java:40) at javassist.bytecode.StackMapTable$Shifter.update(StackMapTable.java:744) at javassist.bytecode.StackMapTable$Shifter.sameFrame(StackMapTable.java:720) at javassist.bytecode.StackMapTable$Walker.stackMapFrames(StackMapTable.java:194) at javassist.bytecode.StackMapTable$Walker.parse(StackMapTable.java:179) at javassist.bytecode.StackMapTable$Shifter.doit(StackMapTable.java:714) at javassist.bytecode.StackMapTable.shiftPc(StackMapTable.java:693) at javassist.bytecode.CodeIterator.insertGap0(CodeIterator.java:676) at javassist.bytecode.CodeIterator.insertGap(CodeIterator.java:636) at javassist.bytecode.CodeIterator.insertGapCore(CodeIterator.java:467) at javassist.bytecode.CodeIterator.insertGap(CodeIterator.java:413) at javassist.expr.Expr.replace0(Expr.java:298) at javassist.expr.FieldAccess.replace(FieldAccess.java:213) at org.powermock.core.transformers.impl.MainMockTransformer$PowerMockExpressionEditor.edit(MainMockTransformer.java:233) at javassist.expr.ExprEditor.loopBody(ExprEditor.java:197) at javassist.expr.ExprEditor.doit(ExprEditor.java:90) at javassist.CtClassType.instrument(CtClassType.java:1289) at org.powermock.core.transformers.impl.MainMockTransformer.transform(MainMockTransformer.java:70) at org.powermock.core.classloader.MockClassLoader.loadMockClass(MockClassLoader.java:204) ... 30 more then i added javassist to my pom.xml like this: \<dependency> \<groupId>javassist</groupId> \<artifactId>javassist</artifactId> \<version>3.10.0.GA</version> \<scope>test</scope> \</dependency> I've got rid of that problem but now I get another exception while trying to use PowerMock.createMock() method. Here is my code to create mock. its simple: createMock(ByteArrayInputStream.class); Exception i get is: java.lang.IllegalArgumentException: java.io.ByteArrayInputStream is not an interface at java.lang.reflect.Proxy.getProxyClass(Proxy.java:362) at java.lang.reflect.Proxy.newProxyInstance(Proxy.java:581) at org.easymock.internal.JavaProxyFactory.createProxy(JavaProxyFactory.java:12) at org.easymock.internal.MocksControl.createMock(MocksControl.java:37) at org.powermock.api.easymock.PowerMock.doCreateMock(PowerMock.java:2211) at org.powermock.api.easymock.PowerMock.doMock(PowerMock.java:2162) at org.powermock.api.easymock.PowerMock.createMock(PowerMock.java:98) at net.plus.kbd.core.drools.DroolsFlowManagerTest.testReverseFlow(DroolsFlowManagerTest.java:103) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.junit.internal.runners.TestMethod.invoke(TestMethod.java:66) at org.powerm... _Original issue: http://code.google.com/p/powermock/issues/detail?id=280_
1.0
Problem creating mock using PowerMock - _From [ago...@gmail.com](https://code.google.com/u/107352092385320321179/) on September 22, 2010 13:23:45_ What steps will reproduce the problem? I am using following in my pom.xml \<dependency> \<groupId>org.powermock.modules</groupId> \<artifactId>powermock-module-junit4</artifactId> \<version>1.4.5</version> \<scope>test</scope> \</dependency> \<dependency> \<groupId>com.google.collections</groupId> \<artifactId>google-collections</artifactId> \<version>1.0</version> \<scope>test</scope> \</dependency> \<dependency> \<groupId>org.easymock</groupId> \<artifactId>easymock</artifactId> \<version>2.2</version> \<scope>test</scope> \</dependency> \<dependency> \<groupId>org.easymock</groupId> \<artifactId>easymockclassextension</artifactId> \<version>2.2</version> \<scope>test</scope> \</dependency> I get this exception: java.lang.IllegalStateException: Failed to transform class with name com.my.DroolsFlowManagerTest. Reason: 3 at org.powermock.core.classloader.MockClassLoader.loadMockClass(MockClassLoader.java:208) at org.powermock.core.classloader.MockClassLoader.loadModifiedClass(MockClassLoader.java:146) at org.powermock.core.classloader.DeferSupportingClassLoader.loadClass(DeferSupportingClassLoader.java:65) at java.lang.ClassLoader.loadClass(ClassLoader.java:252) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:247) at org.powermock.modules.junit4.common.internal.impl.JUnit4TestSuiteChunkerImpl.createDelegatorFromClassloader(JUnit4TestSuiteChunkerImpl.java:143) at org.powermock.modules.junit4.common.internal.impl.JUnit4TestSuiteChunkerImpl.createDelegatorFromClassloader(JUnit4TestSuiteChunkerImpl.java:49) at org.powermock.tests.utils.impl.AbstractTestSuiteChunkerImpl.createTestDelegators(AbstractTestSuiteChunkerImpl.java:231) at org.powermock.modules.junit4.common.internal.impl.JUnit4TestSuiteChunkerImpl.<init>(JUnit4TestSuiteChunkerImpl.java:69) at org.powermock.modules.junit4.common.internal.impl.AbstractCommonPowerMockRunner.<init>(AbstractCommonPowerMockRunner.java:36) at org.powermock.modules.junit4.PowerMockRunner.<init>(PowerMockRunner.java:27) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance(Constructor.java:513) at org.junit.internal.builders.AnnotatedBuilder.buildRunner(AnnotatedBuilder.java:31) at org.junit.internal.builders.AnnotatedBuilder.runnerForClass(AnnotatedBuilder.java:24) at org.junit.runners.model.RunnerBuilder.safeRunnerForClass(RunnerBuilder.java:57) at org.junit.internal.builders.AllDefaultPossibilitiesBuilder.runnerForClass(AllDefaultPossibilitiesBuilder.java:29) at org.junit.runners.model.RunnerBuilder.safeRunnerForClass(RunnerBuilder.java:57) at org.junit.internal.requests.ClassRequest.getRunner(ClassRequest.java:24) at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.<init>(JUnit4TestReference.java:29) at org.eclipse.jdt.internal.junit4.runner.JUnit4TestClassReference.<init>(JUnit4TestClassReference.java:25) at org.eclipse.jdt.internal.junit4.runner.JUnit4TestLoader.createTest(JUnit4TestLoader.java:40) at org.eclipse.jdt.internal.junit4.runner.JUnit4TestLoader.loadTests(JUnit4TestLoader.java:30) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:452) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197) Caused by: java.lang.ArrayIndexOutOfBoundsException: 3 at javassist.bytecode.ByteArray.write16bit(ByteArray.java:40) at javassist.bytecode.StackMapTable$Shifter.update(StackMapTable.java:744) at javassist.bytecode.StackMapTable$Shifter.sameFrame(StackMapTable.java:720) at javassist.bytecode.StackMapTable$Walker.stackMapFrames(StackMapTable.java:194) at javassist.bytecode.StackMapTable$Walker.parse(StackMapTable.java:179) at javassist.bytecode.StackMapTable$Shifter.doit(StackMapTable.java:714) at javassist.bytecode.StackMapTable.shiftPc(StackMapTable.java:693) at javassist.bytecode.CodeIterator.insertGap0(CodeIterator.java:676) at javassist.bytecode.CodeIterator.insertGap(CodeIterator.java:636) at javassist.bytecode.CodeIterator.insertGapCore(CodeIterator.java:467) at javassist.bytecode.CodeIterator.insertGap(CodeIterator.java:413) at javassist.expr.Expr.replace0(Expr.java:298) at javassist.expr.FieldAccess.replace(FieldAccess.java:213) at org.powermock.core.transformers.impl.MainMockTransformer$PowerMockExpressionEditor.edit(MainMockTransformer.java:233) at javassist.expr.ExprEditor.loopBody(ExprEditor.java:197) at javassist.expr.ExprEditor.doit(ExprEditor.java:90) at javassist.CtClassType.instrument(CtClassType.java:1289) at org.powermock.core.transformers.impl.MainMockTransformer.transform(MainMockTransformer.java:70) at org.powermock.core.classloader.MockClassLoader.loadMockClass(MockClassLoader.java:204) ... 30 more then i added javassist to my pom.xml like this: \<dependency> \<groupId>javassist</groupId> \<artifactId>javassist</artifactId> \<version>3.10.0.GA</version> \<scope>test</scope> \</dependency> I've got rid of that problem but now I get another exception while trying to use PowerMock.createMock() method. Here is my code to create mock. its simple: createMock(ByteArrayInputStream.class); Exception i get is: java.lang.IllegalArgumentException: java.io.ByteArrayInputStream is not an interface at java.lang.reflect.Proxy.getProxyClass(Proxy.java:362) at java.lang.reflect.Proxy.newProxyInstance(Proxy.java:581) at org.easymock.internal.JavaProxyFactory.createProxy(JavaProxyFactory.java:12) at org.easymock.internal.MocksControl.createMock(MocksControl.java:37) at org.powermock.api.easymock.PowerMock.doCreateMock(PowerMock.java:2211) at org.powermock.api.easymock.PowerMock.doMock(PowerMock.java:2162) at org.powermock.api.easymock.PowerMock.createMock(PowerMock.java:98) at net.plus.kbd.core.drools.DroolsFlowManagerTest.testReverseFlow(DroolsFlowManagerTest.java:103) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.junit.internal.runners.TestMethod.invoke(TestMethod.java:66) at org.powerm... _Original issue: http://code.google.com/p/powermock/issues/detail?id=280_
non_comp
problem creating mock using powermock from on september what steps will reproduce the problem i am using following in my pom xml org powermock modules powermock module test com google collections google collections test org easymock easymock test org easymock easymockclassextension test i get this exception java lang illegalstateexception failed to transform class with name com my droolsflowmanagertest reason at org powermock core classloader mockclassloader loadmockclass mockclassloader java at org powermock core classloader mockclassloader loadmodifiedclass mockclassloader java at org powermock core classloader defersupportingclassloader loadclass defersupportingclassloader java at java lang classloader loadclass classloader java at java lang classloader loadclassinternal classloader java at java lang class native method at java lang class forname class java at org powermock modules common internal impl createdelegatorfromclassloader java at org powermock modules common internal impl createdelegatorfromclassloader java at org powermock tests utils impl abstracttestsuitechunkerimpl createtestdelegators abstracttestsuitechunkerimpl java at org powermock modules common internal impl java at org powermock modules common internal impl abstractcommonpowermockrunner abstractcommonpowermockrunner java at org powermock modules powermockrunner powermockrunner java at sun reflect nativeconstructoraccessorimpl native method at sun reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java at sun reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java at java lang reflect constructor newinstance constructor java at org junit internal builders annotatedbuilder buildrunner annotatedbuilder java at org junit internal builders annotatedbuilder runnerforclass annotatedbuilder java at org junit runners model runnerbuilder saferunnerforclass runnerbuilder java at org junit internal builders alldefaultpossibilitiesbuilder runnerforclass alldefaultpossibilitiesbuilder java at org junit runners model runnerbuilder saferunnerforclass runnerbuilder java at org junit internal requests classrequest getrunner classrequest java at org eclipse jdt internal runner java at org eclipse jdt internal runner java at org eclipse jdt internal runner createtest java at org eclipse jdt internal runner loadtests java at org eclipse jdt internal junit runner remotetestrunner runtests remotetestrunner java at org eclipse jdt internal junit runner remotetestrunner runtests remotetestrunner java at org eclipse jdt internal junit runner remotetestrunner run remotetestrunner java at org eclipse jdt internal junit runner remotetestrunner main remotetestrunner java caused by java lang arrayindexoutofboundsexception at javassist bytecode bytearray bytearray java at javassist bytecode stackmaptable shifter update stackmaptable java at javassist bytecode stackmaptable shifter sameframe stackmaptable java at javassist bytecode stackmaptable walker stackmapframes stackmaptable java at javassist bytecode stackmaptable walker parse stackmaptable java at javassist bytecode stackmaptable shifter doit stackmaptable java at javassist bytecode stackmaptable shiftpc stackmaptable java at javassist bytecode codeiterator codeiterator java at javassist bytecode codeiterator insertgap codeiterator java at javassist bytecode codeiterator insertgapcore codeiterator java at javassist bytecode codeiterator insertgap codeiterator java at javassist expr expr expr java at javassist expr fieldaccess replace fieldaccess java at org powermock core transformers impl mainmocktransformer powermockexpressioneditor edit mainmocktransformer java at javassist expr expreditor loopbody expreditor java at javassist expr expreditor doit expreditor java at javassist ctclasstype instrument ctclasstype java at org powermock core transformers impl mainmocktransformer transform mainmocktransformer java at org powermock core classloader mockclassloader loadmockclass mockclassloader java more then i added javassist to my pom xml like this javassist javassist ga test i ve got rid of that problem but now i get another exception while trying to use powermock createmock method here is my code to create mock its simple createmock bytearrayinputstream class exception i get is java lang illegalargumentexception java io bytearrayinputstream is not an interface at java lang reflect proxy getproxyclass proxy java at java lang reflect proxy newproxyinstance proxy java at org easymock internal javaproxyfactory createproxy javaproxyfactory java at org easymock internal mockscontrol createmock mockscontrol java at org powermock api easymock powermock docreatemock powermock java at org powermock api easymock powermock domock powermock java at org powermock api easymock powermock createmock powermock java at net plus kbd core drools droolsflowmanagertest testreverseflow droolsflowmanagertest java at sun reflect nativemethodaccessorimpl native method at sun reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at sun reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java lang reflect method invoke method java at org junit internal runners testmethod invoke testmethod java at org powerm original issue
0
724
3,151,092,921
IssuesEvent
2015-09-16 05:12:30
facebook/hhvm
https://api.github.com/repos/facebook/hhvm
closed
PDOException::$errorInfo not populated correctly for MySQL
php5 incompatibility
Since 3.3.0 [our test suite is failing again with HHVM](https://travis-ci.org/doctrine/dbal/jobs/38169316). This is caused by `PDOExcpeiton::$errorInfo` not being populated correctly for error during connection establishment, I suppose. HHVM does not provide the native server error code in `PDOExcpeiton::$errorInfo[1]`, the key does not even exist while the PHP implementation does provide the native error code. This looks like a regression because it [was already working prior to 3.3.0](https://travis-ci.org/doctrine/dbal/jobs/37350367).
True
PDOException::$errorInfo not populated correctly for MySQL - Since 3.3.0 [our test suite is failing again with HHVM](https://travis-ci.org/doctrine/dbal/jobs/38169316). This is caused by `PDOExcpeiton::$errorInfo` not being populated correctly for error during connection establishment, I suppose. HHVM does not provide the native server error code in `PDOExcpeiton::$errorInfo[1]`, the key does not even exist while the PHP implementation does provide the native error code. This looks like a regression because it [was already working prior to 3.3.0](https://travis-ci.org/doctrine/dbal/jobs/37350367).
comp
pdoexception errorinfo not populated correctly for mysql since this is caused by pdoexcpeiton errorinfo not being populated correctly for error during connection establishment i suppose hhvm does not provide the native server error code in pdoexcpeiton errorinfo the key does not even exist while the php implementation does provide the native error code this looks like a regression because it
1
15,176
19,185,682,309
IssuesEvent
2021-12-05 06:15:04
KiwiHawk/SeaBlock
https://api.github.com/repos/KiwiHawk/SeaBlock
opened
Trees hidden from deconstruction planner
mod compatibility
If a mod is enabled that allows trees to be placed, they shouldn't be hidden from deconstruction planner. Same with rocks. - Tral's Robot Tree Farm - Dectorio ?
True
Trees hidden from deconstruction planner - If a mod is enabled that allows trees to be placed, they shouldn't be hidden from deconstruction planner. Same with rocks. - Tral's Robot Tree Farm - Dectorio ?
comp
trees hidden from deconstruction planner if a mod is enabled that allows trees to be placed they shouldn t be hidden from deconstruction planner same with rocks tral s robot tree farm dectorio
1
1,092
3,568,085,953
IssuesEvent
2016-01-26 02:39:45
BlokDust/BlokDust
https://api.github.com/repos/BlokDust/BlokDust
closed
Can't open local version on Safari - needed for fixing IPad bugs
browser compatibility bug
http://localhost:8000/default.html doesn't open anything in Safari making it impossible for us to fix the IOS bugs. I got this console error the first time only and since then have no errors but stuck on black screen. WebSocket network error: The operation couldn’t be completed. Connection refused
True
Can't open local version on Safari - needed for fixing IPad bugs - http://localhost:8000/default.html doesn't open anything in Safari making it impossible for us to fix the IOS bugs. I got this console error the first time only and since then have no errors but stuck on black screen. WebSocket network error: The operation couldn’t be completed. Connection refused
comp
can t open local version on safari needed for fixing ipad bugs doesn t open anything in safari making it impossible for us to fix the ios bugs i got this console error the first time only and since then have no errors but stuck on black screen websocket network error the operation couldn’t be completed connection refused
1
86,940
10,521,826,189
IssuesEvent
2019-09-30 07:14:53
kyma-project/website
https://api.github.com/repos/kyma-project/website
reopened
Table content does not appear in search
area/documentation bug
**Description** When performing search, table content in docs does not get found. **Expected result** Table content should appear in search. **Actual result** Table content does not appear in search. **Steps to reproduce** 1. Go to the [Kyma website](https://kyma-project.io/). 2. Click the magnifying glass to search. 3. Type `insecureSpecDownload`. 4. The search term is not found. 5. Verify that the term is defined in the [docs](https://github.com/kyma-project/kyma/blob/master/docs/application-connector/05-02-application-registry.md). **Troubleshooting** The term is defined in the correct doc. The term does not appear when performing search.
1.0
Table content does not appear in search - **Description** When performing search, table content in docs does not get found. **Expected result** Table content should appear in search. **Actual result** Table content does not appear in search. **Steps to reproduce** 1. Go to the [Kyma website](https://kyma-project.io/). 2. Click the magnifying glass to search. 3. Type `insecureSpecDownload`. 4. The search term is not found. 5. Verify that the term is defined in the [docs](https://github.com/kyma-project/kyma/blob/master/docs/application-connector/05-02-application-registry.md). **Troubleshooting** The term is defined in the correct doc. The term does not appear when performing search.
non_comp
table content does not appear in search description when performing search table content in docs does not get found expected result table content should appear in search actual result table content does not appear in search steps to reproduce go to the click the magnifying glass to search type insecurespecdownload the search term is not found verify that the term is defined in the troubleshooting the term is defined in the correct doc the term does not appear when performing search
0
3,503
6,486,542,571
IssuesEvent
2017-08-19 20:43:16
Roave/BetterReflection
https://api.github.com/repos/Roave/BetterReflection
closed
Reflect on instances of anonymous classes
reflection compatibility
At the moment it is not possible to reflect on instances of anonymous classes. In fact ```php \Roave\BetterReflection\Reflection\ReflectionObject::createFromInstance(new class() {}); ``` throws a `Roave\BetterReflection\Reflector\Exception\IdentifierNotFound` exception. This actually works with standard reflection: [https://3v4l.org/aHbmW](https://3v4l.org/aHbmW) From what I saw, it seems that the problem comes from the fact that `Roave\BetterReflection\SourceLocator\Ast\FindReflectionsInTree` does not inspect beyond the first level of the AST
True
Reflect on instances of anonymous classes - At the moment it is not possible to reflect on instances of anonymous classes. In fact ```php \Roave\BetterReflection\Reflection\ReflectionObject::createFromInstance(new class() {}); ``` throws a `Roave\BetterReflection\Reflector\Exception\IdentifierNotFound` exception. This actually works with standard reflection: [https://3v4l.org/aHbmW](https://3v4l.org/aHbmW) From what I saw, it seems that the problem comes from the fact that `Roave\BetterReflection\SourceLocator\Ast\FindReflectionsInTree` does not inspect beyond the first level of the AST
comp
reflect on instances of anonymous classes at the moment it is not possible to reflect on instances of anonymous classes in fact php roave betterreflection reflection reflectionobject createfrominstance new class throws a roave betterreflection reflector exception identifiernotfound exception this actually works with standard reflection from what i saw it seems that the problem comes from the fact that roave betterreflection sourcelocator ast findreflectionsintree does not inspect beyond the first level of the ast
1
237,308
18,156,439,413
IssuesEvent
2021-09-27 02:41:25
DnD-Montreal/session-tome
https://api.github.com/repos/DnD-Montreal/session-tome
opened
Create UI Mockup for Role Assignment Pages
documentation task
## Description Create design mockups for role assignment page. ## Possible Implementation Create mockups in Figma.
1.0
Create UI Mockup for Role Assignment Pages - ## Description Create design mockups for role assignment page. ## Possible Implementation Create mockups in Figma.
non_comp
create ui mockup for role assignment pages description create design mockups for role assignment page possible implementation create mockups in figma
0
10,375
12,340,905,776
IssuesEvent
2020-05-14 20:49:32
facebook/hhvm
https://api.github.com/repos/facebook/hhvm
closed
object arguments of call_user_func_array are being iterated
php5 incompatibility
Example code to compare on hhvm and php5 ``` php <?php function f() { var_dump(func_get_args()); } class C implements IteratorAggregate { private $arr; function __construct(array $arr) {$this->arr = $arr;} function getIterator() { return new ArrayIterator($this->arr); } } $a = array('a' => 1, 'b' => 2, 3, 4, 5); $c = new C($a); call_user_func_array('f', new stdClass()); // non-Traversable call_user_func_array('f', $c); // Traversable via IteratorAggregate call_user_func_array('f', new ArrayIterator($a)); // Traversable via Iterator ``` http://3v4l.org/ktsfL PHP 5.5 complains that "call_user_func_array() expects parameter 2 to be array, object given" whereas hhvm iterates the properties of the object
True
object arguments of call_user_func_array are being iterated - Example code to compare on hhvm and php5 ``` php <?php function f() { var_dump(func_get_args()); } class C implements IteratorAggregate { private $arr; function __construct(array $arr) {$this->arr = $arr;} function getIterator() { return new ArrayIterator($this->arr); } } $a = array('a' => 1, 'b' => 2, 3, 4, 5); $c = new C($a); call_user_func_array('f', new stdClass()); // non-Traversable call_user_func_array('f', $c); // Traversable via IteratorAggregate call_user_func_array('f', new ArrayIterator($a)); // Traversable via Iterator ``` http://3v4l.org/ktsfL PHP 5.5 complains that "call_user_func_array() expects parameter 2 to be array, object given" whereas hhvm iterates the properties of the object
comp
object arguments of call user func array are being iterated example code to compare on hhvm and php php function f var dump func get args class c implements iteratoraggregate private arr function construct array arr this arr arr function getiterator return new arrayiterator this arr a array a b c new c a call user func array f new stdclass non traversable call user func array f c traversable via iteratoraggregate call user func array f new arrayiterator a traversable via iterator php complains that call user func array expects parameter to be array object given whereas hhvm iterates the properties of the object
1
160,418
12,510,878,987
IssuesEvent
2020-06-02 19:29:16
ForgottenGlory/Living-Skyrim-2
https://api.github.com/repos/ForgottenGlory/Living-Skyrim-2
opened
Sheathing/unsheathing animation bug
bug need testers
**LS Version** LS 2 Beta **Describe the bug** Animation problem with war axe/mace and shield. War axe/mace is on the right hip but sheathing/unsheathing animation plays as if it's on the left. **To Reproduce** Equip shield and war axe/mace, sheath and unsheath couple of times **Expected behavior** Correct animation **Video showcase** https://www.youtube.com/watch?v=r2vDT_LtiNc
1.0
Sheathing/unsheathing animation bug - **LS Version** LS 2 Beta **Describe the bug** Animation problem with war axe/mace and shield. War axe/mace is on the right hip but sheathing/unsheathing animation plays as if it's on the left. **To Reproduce** Equip shield and war axe/mace, sheath and unsheath couple of times **Expected behavior** Correct animation **Video showcase** https://www.youtube.com/watch?v=r2vDT_LtiNc
non_comp
sheathing unsheathing animation bug ls version ls beta describe the bug animation problem with war axe mace and shield war axe mace is on the right hip but sheathing unsheathing animation plays as if it s on the left to reproduce equip shield and war axe mace sheath and unsheath couple of times expected behavior correct animation video showcase
0
14,616
17,837,405,714
IssuesEvent
2021-09-03 04:33:53
raiguard/krastorio-2
https://api.github.com/repos/raiguard/krastorio-2
closed
Resolve Schall Machine Scaling compatability with advanced receipies - steel/Imersite plates
enhancement compatibility
Hi, Is it possible to resolve the ability for advanced 2 component recipes to be compatible with Schall Machine scaling? Since K2 replaces them with assemblers you cannot use schall furnaces for advanced 2 part recipes ie steel/imersite Reading from schrall discussion https://mods.factorio.com/mod/SchallMachineScaling/discussion/6079bf4c7e364a5d94d26888 You manually define the furnaces to replace, can we detect them by smelting role instead as per above discussion? Thanks,
True
Resolve Schall Machine Scaling compatability with advanced receipies - steel/Imersite plates - Hi, Is it possible to resolve the ability for advanced 2 component recipes to be compatible with Schall Machine scaling? Since K2 replaces them with assemblers you cannot use schall furnaces for advanced 2 part recipes ie steel/imersite Reading from schrall discussion https://mods.factorio.com/mod/SchallMachineScaling/discussion/6079bf4c7e364a5d94d26888 You manually define the furnaces to replace, can we detect them by smelting role instead as per above discussion? Thanks,
comp
resolve schall machine scaling compatability with advanced receipies steel imersite plates hi is it possible to resolve the ability for advanced component recipes to be compatible with schall machine scaling since replaces them with assemblers you cannot use schall furnaces for advanced part recipes ie steel imersite reading from schrall discussion you manually define the furnaces to replace can we detect them by smelting role instead as per above discussion thanks
1
10,153
12,159,597,185
IssuesEvent
2020-04-26 09:47:37
medusalix/xow
https://api.github.com/repos/medusalix/xow
closed
OSMC LIBUSB_ERROR_NO_DEVICE
compatibility
The driver is successful while running on Raspbian, but not on kodi/OSMC (on the same machine - raspberry pi 3 b+). osmc version: 4.19.55-6-osmc dmesg: [2.452045] usb 1-1.2: new high-speed USB device number 4 using dwc_otg [2.583039] usb 1-1.2: New USB device found, idVendor=045e, idProduct=02e6, bcdDevice= 1.00 [2.583047] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [2.583051] usb 1-1.2: Product: XBOX ACC [2.583056] usb 1-1.2: Manufacturer: Microsoft Inc. [2.583060] usb 1-1.2: SerialNumber: 461454 When I issue /usr/local/bin/xow: 2020-04-05 13:15:19 INFO - xow v0.4-5-g222063c ©Severin v. W. 2020-04-05 13:15:19 INFO - Dongle plugged in 2020-04-05 13:15:19 INFO - Wireless address: 62:45:b4:f9:3d:fb 2020-04-05 13:15:19 INFO - Dongle initialized 2020-04-05 13:15:20 INFO - Controller '1' connected 2020-04-05 13:15:21 INFO - Product ID: 02dd 2020-04-05 13:16:20 ERROR - Error in bulk read: LIBUSB_ERROR_NO_DEVICE 2020-04-05 13:16:20 ERROR - Error in bulk read: LIBUSB_ERROR_NO_DEVICE I had a back and forth with someone on a forum with limited success. The controller would go straight to flashing the Xbox button and the dongle would light up when the controller was turned on, but no connection would be made. I was told to issue sed -i 's@/lib/modules-load.d@/etc/modules-load.d@' Makefile, and rebuild and reinstall. After doing this the controller connected briefly upon the next restart (possibly just a fluke, as I don't really know what this does), but then continued with the same behaviour afterwards (being disconnected).
True
OSMC LIBUSB_ERROR_NO_DEVICE - The driver is successful while running on Raspbian, but not on kodi/OSMC (on the same machine - raspberry pi 3 b+). osmc version: 4.19.55-6-osmc dmesg: [2.452045] usb 1-1.2: new high-speed USB device number 4 using dwc_otg [2.583039] usb 1-1.2: New USB device found, idVendor=045e, idProduct=02e6, bcdDevice= 1.00 [2.583047] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [2.583051] usb 1-1.2: Product: XBOX ACC [2.583056] usb 1-1.2: Manufacturer: Microsoft Inc. [2.583060] usb 1-1.2: SerialNumber: 461454 When I issue /usr/local/bin/xow: 2020-04-05 13:15:19 INFO - xow v0.4-5-g222063c ©Severin v. W. 2020-04-05 13:15:19 INFO - Dongle plugged in 2020-04-05 13:15:19 INFO - Wireless address: 62:45:b4:f9:3d:fb 2020-04-05 13:15:19 INFO - Dongle initialized 2020-04-05 13:15:20 INFO - Controller '1' connected 2020-04-05 13:15:21 INFO - Product ID: 02dd 2020-04-05 13:16:20 ERROR - Error in bulk read: LIBUSB_ERROR_NO_DEVICE 2020-04-05 13:16:20 ERROR - Error in bulk read: LIBUSB_ERROR_NO_DEVICE I had a back and forth with someone on a forum with limited success. The controller would go straight to flashing the Xbox button and the dongle would light up when the controller was turned on, but no connection would be made. I was told to issue sed -i 's@/lib/modules-load.d@/etc/modules-load.d@' Makefile, and rebuild and reinstall. After doing this the controller connected briefly upon the next restart (possibly just a fluke, as I don't really know what this does), but then continued with the same behaviour afterwards (being disconnected).
comp
osmc libusb error no device the driver is successful while running on raspbian but not on kodi osmc on the same machine raspberry pi b osmc version osmc dmesg usb new high speed usb device number using dwc otg usb new usb device found idvendor idproduct bcddevice usb new usb device strings mfr product serialnumber usb product xbox acc usb manufacturer microsoft inc usb serialnumber when i issue usr local bin xow info xow ©severin v w info dongle plugged in info wireless address fb info dongle initialized info controller connected info product id error error in bulk read libusb error no device error error in bulk read libusb error no device i had a back and forth with someone on a forum with limited success the controller would go straight to flashing the xbox button and the dongle would light up when the controller was turned on but no connection would be made i was told to issue sed i s lib modules load d etc modules load d makefile and rebuild and reinstall after doing this the controller connected briefly upon the next restart possibly just a fluke as i don t really know what this does but then continued with the same behaviour afterwards being disconnected
1
732,065
25,243,241,630
IssuesEvent
2022-11-15 09:13:39
abpframework/abp
https://api.github.com/repos/abpframework/abp
closed
All Templates - The date range packages don't seem to be download.
bug priority:high in-progress
**App:** All Templates **Version:** `7.0.0-rc.1` **Problem:** The date range packages don't seem to be download ![image](https://user-images.githubusercontent.com/99716457/201855967-521c73ab-cdf6-46d0-8a6e-3a40d890cef4.png)
1.0
All Templates - The date range packages don't seem to be download. - **App:** All Templates **Version:** `7.0.0-rc.1` **Problem:** The date range packages don't seem to be download ![image](https://user-images.githubusercontent.com/99716457/201855967-521c73ab-cdf6-46d0-8a6e-3a40d890cef4.png)
non_comp
all templates the date range packages don t seem to be download app all templates version rc problem the date range packages don t seem to be download
0
128,964
17,658,560,379
IssuesEvent
2021-08-21 03:07:09
EnigmaDragons/ProjectNeon
https://api.github.com/repos/EnigmaDragons/ProjectNeon
closed
formula's with conditional's need a way to intropolate
programming design
Precise Strike: Deal X Damage. Doubled when they are stunned.
1.0
formula's with conditional's need a way to intropolate - Precise Strike: Deal X Damage. Doubled when they are stunned.
non_comp
formula s with conditional s need a way to intropolate precise strike deal x damage doubled when they are stunned
0
29,388
7,092,633,976
IssuesEvent
2018-01-12 17:15:49
ilios/common
https://api.github.com/repos/ilios/common
closed
Replace all one-way controls
code quality
companion ticket to ilios/frontend#3466 ``` $ grep -r '{{one-way' addon addon/templates/components/toggle-icons.hbs: {{one-way-radio addon/templates/components/toggle-icons.hbs: {{one-way-radio addon/templates/components/toggle-buttons.hbs:{{one-way-radio addon/templates/components/toggle-buttons.hbs:{{one-way-radio ```
1.0
Replace all one-way controls - companion ticket to ilios/frontend#3466 ``` $ grep -r '{{one-way' addon addon/templates/components/toggle-icons.hbs: {{one-way-radio addon/templates/components/toggle-icons.hbs: {{one-way-radio addon/templates/components/toggle-buttons.hbs:{{one-way-radio addon/templates/components/toggle-buttons.hbs:{{one-way-radio ```
non_comp
replace all one way controls companion ticket to ilios frontend grep r one way addon addon templates components toggle icons hbs one way radio addon templates components toggle icons hbs one way radio addon templates components toggle buttons hbs one way radio addon templates components toggle buttons hbs one way radio
0
824,827
31,224,894,493
IssuesEvent
2023-08-19 01:20:44
dnd-side-project/dnd-9th-9-frontend
https://api.github.com/repos/dnd-side-project/dnd-9th-9-frontend
opened
[FEAT]운동 기록하기 추가
🔥 high priority 💫 feature
## Description 운동 기록 페이지에서 운동 기록하기 서비스를 추가합니다. ![image](https://github.com/dnd-side-project/dnd-9th-9-frontend/assets/80511900/cc2d0ba9-4386-4b20-9ce9-291d2679368b) ## To-do - [ ] 특정 날짜 운동 기록하기 기능 추가 - [ ] 메모하기 기능 추가 ## ETC
1.0
[FEAT]운동 기록하기 추가 - ## Description 운동 기록 페이지에서 운동 기록하기 서비스를 추가합니다. ![image](https://github.com/dnd-side-project/dnd-9th-9-frontend/assets/80511900/cc2d0ba9-4386-4b20-9ce9-291d2679368b) ## To-do - [ ] 특정 날짜 운동 기록하기 기능 추가 - [ ] 메모하기 기능 추가 ## ETC
non_comp
운동 기록하기 추가 description 운동 기록 페이지에서 운동 기록하기 서비스를 추가합니다 to do 특정 날짜 운동 기록하기 기능 추가 메모하기 기능 추가 etc
0
247,434
18,857,755,227
IssuesEvent
2021-11-12 08:59:40
kairoskoh/pe
https://api.github.com/repos/kairoskoh/pe
opened
DG Diagram - Errors
severity.Low type.DocumentationBug
![image.png](https://raw.githubusercontent.com/kairoskoh/pe/main/files/56046086-14f3-429f-bf2b-684e2354fc6e.png) As seen in the image, "fin:FileReader" is missing a lifeline and the cross is patiently waiting at the bottom of the diagram. In addition, the lifeline for "bin:BufferedReader" extends past the cross. This is wrong. <!--session: 1636701666194-f5153e93-58e1-4e17-8f1d-1d34bad7ea0a--> <!--Version: Web v3.4.1-->
1.0
DG Diagram - Errors - ![image.png](https://raw.githubusercontent.com/kairoskoh/pe/main/files/56046086-14f3-429f-bf2b-684e2354fc6e.png) As seen in the image, "fin:FileReader" is missing a lifeline and the cross is patiently waiting at the bottom of the diagram. In addition, the lifeline for "bin:BufferedReader" extends past the cross. This is wrong. <!--session: 1636701666194-f5153e93-58e1-4e17-8f1d-1d34bad7ea0a--> <!--Version: Web v3.4.1-->
non_comp
dg diagram errors as seen in the image fin filereader is missing a lifeline and the cross is patiently waiting at the bottom of the diagram in addition the lifeline for bin bufferedreader extends past the cross this is wrong
0
23,400
10,883,844,548
IssuesEvent
2019-11-18 06:31:29
SoftEtherVPN/SoftEtherVPN
https://api.github.com/repos/SoftEtherVPN/SoftEtherVPN
closed
CVE-2002-1623
security
I have not seen that issue: CVE-2002-1623 has been resolved in Softether. Has the issue been resolved? If not can an option be added to disable Aggressive Mode. For anyone using this VPN solution that requires PCI compliance they will either need a resolution or to find a different solution. I can't find anything in the forums or passed issues that address this issue. Thanks in advance.
True
CVE-2002-1623 - I have not seen that issue: CVE-2002-1623 has been resolved in Softether. Has the issue been resolved? If not can an option be added to disable Aggressive Mode. For anyone using this VPN solution that requires PCI compliance they will either need a resolution or to find a different solution. I can't find anything in the forums or passed issues that address this issue. Thanks in advance.
non_comp
cve i have not seen that issue cve has been resolved in softether has the issue been resolved if not can an option be added to disable aggressive mode for anyone using this vpn solution that requires pci compliance they will either need a resolution or to find a different solution i can t find anything in the forums or passed issues that address this issue thanks in advance
0
203,956
23,203,379,794
IssuesEvent
2022-08-02 01:02:45
jgeraigery/Singularity
https://api.github.com/repos/jgeraigery/Singularity
opened
liquibase-core-3.6.3.jar: 1 vulnerabilities (highest severity is: 9.8)
security vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>liquibase-core-3.6.3.jar</b></p></summary> <p>Liquibase is a tool for managing and executing database changes.</p> <p>Library home page: <a href="http://www.liquibase.org">http://www.liquibase.org</a></p> <p>Path to dependency file: /SingularityService/pom.xml</p> <p>Path to vulnerable library: /epository/org/liquibase/liquibase-core/3.6.3/liquibase-core-3.6.3.jar,/home/wss-scanner/.m2/repository/org/liquibase/liquibase-core/3.6.3/liquibase-core-3.6.3.jar</p> <p> </details> ## Vulnerabilities | CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in | Remediation Available | | ------------- | ------------- | ----- | ----- | ----- | --- | --- | | [CVE-2022-0839](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-0839) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 9.8 | liquibase-core-3.6.3.jar | Direct | 4.8.0 | &#9989; | ## Details <details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2022-0839</summary> ### Vulnerable Library - <b>liquibase-core-3.6.3.jar</b></p> <p>Liquibase is a tool for managing and executing database changes.</p> <p>Library home page: <a href="http://www.liquibase.org">http://www.liquibase.org</a></p> <p>Path to dependency file: /SingularityService/pom.xml</p> <p>Path to vulnerable library: /epository/org/liquibase/liquibase-core/3.6.3/liquibase-core-3.6.3.jar,/home/wss-scanner/.m2/repository/org/liquibase/liquibase-core/3.6.3/liquibase-core-3.6.3.jar</p> <p> Dependency Hierarchy: - :x: **liquibase-core-3.6.3.jar** (Vulnerable Library) <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> Improper Restriction of XML External Entity Reference in GitHub repository liquibase/liquibase prior to 4.8.0. <p>Publish Date: 2022-03-04 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-0839>CVE-2022-0839</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>9.8</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0839">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0839</a></p> <p>Release Date: 2022-03-04</p> <p>Fix Resolution: 4.8.0</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details> *** <p>:rescue_worker_helmet: Automatic Remediation is available for this issue.</p>
True
liquibase-core-3.6.3.jar: 1 vulnerabilities (highest severity is: 9.8) - <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>liquibase-core-3.6.3.jar</b></p></summary> <p>Liquibase is a tool for managing and executing database changes.</p> <p>Library home page: <a href="http://www.liquibase.org">http://www.liquibase.org</a></p> <p>Path to dependency file: /SingularityService/pom.xml</p> <p>Path to vulnerable library: /epository/org/liquibase/liquibase-core/3.6.3/liquibase-core-3.6.3.jar,/home/wss-scanner/.m2/repository/org/liquibase/liquibase-core/3.6.3/liquibase-core-3.6.3.jar</p> <p> </details> ## Vulnerabilities | CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in | Remediation Available | | ------------- | ------------- | ----- | ----- | ----- | --- | --- | | [CVE-2022-0839](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-0839) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 9.8 | liquibase-core-3.6.3.jar | Direct | 4.8.0 | &#9989; | ## Details <details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2022-0839</summary> ### Vulnerable Library - <b>liquibase-core-3.6.3.jar</b></p> <p>Liquibase is a tool for managing and executing database changes.</p> <p>Library home page: <a href="http://www.liquibase.org">http://www.liquibase.org</a></p> <p>Path to dependency file: /SingularityService/pom.xml</p> <p>Path to vulnerable library: /epository/org/liquibase/liquibase-core/3.6.3/liquibase-core-3.6.3.jar,/home/wss-scanner/.m2/repository/org/liquibase/liquibase-core/3.6.3/liquibase-core-3.6.3.jar</p> <p> Dependency Hierarchy: - :x: **liquibase-core-3.6.3.jar** (Vulnerable Library) <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> Improper Restriction of XML External Entity Reference in GitHub repository liquibase/liquibase prior to 4.8.0. <p>Publish Date: 2022-03-04 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-0839>CVE-2022-0839</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>9.8</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0839">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0839</a></p> <p>Release Date: 2022-03-04</p> <p>Fix Resolution: 4.8.0</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details> *** <p>:rescue_worker_helmet: Automatic Remediation is available for this issue.</p>
non_comp
liquibase core jar vulnerabilities highest severity is vulnerable library liquibase core jar liquibase is a tool for managing and executing database changes library home page a href path to dependency file singularityservice pom xml path to vulnerable library epository org liquibase liquibase core liquibase core jar home wss scanner repository org liquibase liquibase core liquibase core jar vulnerabilities cve severity cvss dependency type fixed in remediation available high liquibase core jar direct details cve vulnerable library liquibase core jar liquibase is a tool for managing and executing database changes library home page a href path to dependency file singularityservice pom xml path to vulnerable library epository org liquibase liquibase core liquibase core jar home wss scanner repository org liquibase liquibase core liquibase core jar dependency hierarchy x liquibase core jar vulnerable library found in base branch master vulnerability details improper restriction of xml external entity reference in github repository liquibase liquibase prior to publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution rescue worker helmet automatic remediation is available for this issue rescue worker helmet automatic remediation is available for this issue
0
10,067
12,061,363,325
IssuesEvent
2020-04-15 23:33:40
dreamer/boxtron
https://api.github.com/repos/dreamer/boxtron
closed
302364 - Tex Murphy: The Pandora Directive Linux
compatibility report
## Compatibility Report - Link to Steam store: https://store.steampowered.com/app/302360/Tex_Murphy_The_Pandora_Directive/ - Link to GOG store: <!-- only for GOG games --> - Link to ProtonDB: <!-- OPTIONAL, e.g. https://www.protondb.com/app/2280 --> ### System Information - Linux distribution: Ubuntu 18.04 LTS (LinuxMint 19.3) - Kernel: 4.15.0-88-generic - Desktop: Mate 1.24 - DOSBox: 0.74-5-2 SVN ### Report - The game runs out of the box: Yes ### Configuration changes <!-- Describe additional changes to dosbox .conf files --> <!-- e.g. "Changed `cpu.cycles` to `1337` --> ### Report <!-- Describe any problems that you have or just that game runs perfectly ;) --> Boxtron
True
302364 - Tex Murphy: The Pandora Directive Linux - ## Compatibility Report - Link to Steam store: https://store.steampowered.com/app/302360/Tex_Murphy_The_Pandora_Directive/ - Link to GOG store: <!-- only for GOG games --> - Link to ProtonDB: <!-- OPTIONAL, e.g. https://www.protondb.com/app/2280 --> ### System Information - Linux distribution: Ubuntu 18.04 LTS (LinuxMint 19.3) - Kernel: 4.15.0-88-generic - Desktop: Mate 1.24 - DOSBox: 0.74-5-2 SVN ### Report - The game runs out of the box: Yes ### Configuration changes <!-- Describe additional changes to dosbox .conf files --> <!-- e.g. "Changed `cpu.cycles` to `1337` --> ### Report <!-- Describe any problems that you have or just that game runs perfectly ;) --> Boxtron
comp
tex murphy the pandora directive linux compatibility report link to steam store link to gog store link to protondb system information linux distribution ubuntu lts linuxmint kernel generic desktop mate dosbox svn report the game runs out of the box yes configuration changes report boxtron
1
13,393
15,802,801,853
IssuesEvent
2021-04-03 11:29:48
TheLMiffy1111/JAOPCA
https://api.github.com/repos/TheLMiffy1111/JAOPCA
reopened
[1.12.2]AdvancedRocketry crash issue.
incompatibility
## Version of Advanced Rocketry AdvancedRocketry-1.12.2-2.0.0-242-universal.jar ## Have you verified this is an issue in the latest unstable build Y ## Version of LibVulpes LibVulpes-1.12.2-0.4.2-82-universal.jar ## Version of Minecraft 1.12.2 ## Crash report or log (if applicable) https://pastebin.com/tRsvNer8 ## Description of the problem Booting the game up. Silfryi commented saying "This is JAOPCA's fault, not ours. Go tell them our plate press class name got updated if they want to continue adding support for it as they did before."
True
[1.12.2]AdvancedRocketry crash issue. - ## Version of Advanced Rocketry AdvancedRocketry-1.12.2-2.0.0-242-universal.jar ## Have you verified this is an issue in the latest unstable build Y ## Version of LibVulpes LibVulpes-1.12.2-0.4.2-82-universal.jar ## Version of Minecraft 1.12.2 ## Crash report or log (if applicable) https://pastebin.com/tRsvNer8 ## Description of the problem Booting the game up. Silfryi commented saying "This is JAOPCA's fault, not ours. Go tell them our plate press class name got updated if they want to continue adding support for it as they did before."
comp
advancedrocketry crash issue version of advanced rocketry advancedrocketry universal jar have you verified this is an issue in the latest unstable build y version of libvulpes libvulpes universal jar version of minecraft crash report or log if applicable description of the problem booting the game up silfryi commented saying this is jaopca s fault not ours go tell them our plate press class name got updated if they want to continue adding support for it as they did before
1
270,279
20,596,780,877
IssuesEvent
2022-03-05 16:26:45
ProjectEvergreen/greenwood
https://api.github.com/repos/ProjectEvergreen/greenwood
closed
Favor Content over Configuration (ex. metadata)
enhancement documentation CLI breaking v0.24.0
### Discussed in https://github.com/ProjectEvergreen/greenwood/discussions/851 <div type='discussions-op-text'> <sup>Originally posted by **thescientist13** January 10, 2022</sup> At the initial outset of Greenwood, one of the original ways to provide metadata was through Greenwood's [configuration file](https://www.greenwoodjs.io/docs/configuration/#meta). ```js const FAVICON_HREF = '/assets/favicon.ico'; const META_DESCRIPTION = 'A modern and performant static site generator supporting Web Component based development'; export default { meta: [ { name: 'description', content: META_DESCRIPTION }, { name: 'twitter:site', content: '@PrjEvergreen' }, { property: 'og:title', content: 'Greenwood' }, { property: 'og:type', content: 'website' }, { property: 'og:url', content: 'https://www.greenwoodjs.io' }, { property: 'og:image', content: 'https://www.greenwoodjs.io/assets/greenwood-logo-300w.png' }, { property: 'og:description', content: META_DESCRIPTION }, { rel: 'shortcut icon', href: FAVICON_HREF }, { rel: 'icon', href: FAVICON_HREF } ] }; ``` ## Details As Greenwood stays away from templating languages (other than JS / Web Components) and aims to be more HTML first, static metadata (e.g. content) via configuration eels more like an anti-pattern. It would be just as easy to have that in the HTML. In other words, I think this we should **deprecate** `meta` in _greenwood.config.js_, which would also invalidate #655 and possibly #304. Also seeing how we can make it easy to get metadata from markdown without needing a templating language - https://github.com/ProjectEvergreen/greenwood/discussions/576#discussioncomment-1941989 Examples / related issues for tracking: - #655 - #558 - #304 </div>
1.0
Favor Content over Configuration (ex. metadata) - ### Discussed in https://github.com/ProjectEvergreen/greenwood/discussions/851 <div type='discussions-op-text'> <sup>Originally posted by **thescientist13** January 10, 2022</sup> At the initial outset of Greenwood, one of the original ways to provide metadata was through Greenwood's [configuration file](https://www.greenwoodjs.io/docs/configuration/#meta). ```js const FAVICON_HREF = '/assets/favicon.ico'; const META_DESCRIPTION = 'A modern and performant static site generator supporting Web Component based development'; export default { meta: [ { name: 'description', content: META_DESCRIPTION }, { name: 'twitter:site', content: '@PrjEvergreen' }, { property: 'og:title', content: 'Greenwood' }, { property: 'og:type', content: 'website' }, { property: 'og:url', content: 'https://www.greenwoodjs.io' }, { property: 'og:image', content: 'https://www.greenwoodjs.io/assets/greenwood-logo-300w.png' }, { property: 'og:description', content: META_DESCRIPTION }, { rel: 'shortcut icon', href: FAVICON_HREF }, { rel: 'icon', href: FAVICON_HREF } ] }; ``` ## Details As Greenwood stays away from templating languages (other than JS / Web Components) and aims to be more HTML first, static metadata (e.g. content) via configuration eels more like an anti-pattern. It would be just as easy to have that in the HTML. In other words, I think this we should **deprecate** `meta` in _greenwood.config.js_, which would also invalidate #655 and possibly #304. Also seeing how we can make it easy to get metadata from markdown without needing a templating language - https://github.com/ProjectEvergreen/greenwood/discussions/576#discussioncomment-1941989 Examples / related issues for tracking: - #655 - #558 - #304 </div>
non_comp
favor content over configuration ex metadata discussed in originally posted by january at the initial outset of greenwood one of the original ways to provide metadata was through greenwood s js const favicon href assets favicon ico const meta description a modern and performant static site generator supporting web component based development export default meta name description content meta description name twitter site content prjevergreen property og title content greenwood property og type content website property og url content property og image content property og description content meta description rel shortcut icon href favicon href rel icon href favicon href details as greenwood stays away from templating languages other than js web components and aims to be more html first static metadata e g content via configuration eels more like an anti pattern it would be just as easy to have that in the html in other words i think this we should deprecate meta in greenwood config js which would also invalidate and possibly also seeing how we can make it easy to get metadata from markdown without needing a templating language examples related issues for tracking
0
5,030
7,625,049,147
IssuesEvent
2018-05-03 20:05:27
pods-framework/pods
https://api.github.com/repos/pods-framework/pods
closed
Possible compatibility issue with Pods and Relevanssi
Compatibility Needs Votes
Had a odd issue where the permalink would not work in the search results of posts that has been indexed by Relevanssi. But when just using say Better Search the permalinks all worked fine in the search results.
True
Possible compatibility issue with Pods and Relevanssi - Had a odd issue where the permalink would not work in the search results of posts that has been indexed by Relevanssi. But when just using say Better Search the permalinks all worked fine in the search results.
comp
possible compatibility issue with pods and relevanssi had a odd issue where the permalink would not work in the search results of posts that has been indexed by relevanssi but when just using say better search the permalinks all worked fine in the search results
1
20,376
30,034,991,878
IssuesEvent
2023-06-27 12:11:57
TycheSoftwares/checkout-fees-for-woocommerce
https://api.github.com/repos/TycheSoftwares/checkout-fees-for-woocommerce
reopened
When we add "Additional Fee Title" for the payment gateway, I'm getting notice message "Bad Value".
type: bug client issue type: compatibility
**Describe the bug** I get the following error: https://mellins.nu/wp-content/uploads/2023/picture.PNG?_t=1677842677 “Bad value: order_lines[3].total_tax_amount” Also when I add a fee 5 % and a discount 5 % I do not get the same value. The amount should be the same but it is not. It still does not work if I enable taxes. If I apply 5 % fee and 5 % discount it says “Bad value: order_lines[3].total_tax_amount”. If I do not set both a fee and discount this error does not appear. **To Reproduce** Steps to reproduce the behavior: 1. For any Payment Gateway, set percentage fee and discount percentage in additional fees section. The issue was coming due to the "Fee Title" added in the Additional Fee option. If we will remove title, it will work fine. Also, I figured out that if we will disable Klarna Payment Gateway plugin, everything works well along with additional fee title. I tried a lot to replicate this but it worked fine to me on my site. But I was unable to display Klarna option on checkout page[not sure it it's a reason] **Expected behavior** The error shouldn't appear even though Klarna is activated. **Additional context** https://tychesoftwares.freshdesk.com/a/tickets/52600
True
When we add "Additional Fee Title" for the payment gateway, I'm getting notice message "Bad Value". - **Describe the bug** I get the following error: https://mellins.nu/wp-content/uploads/2023/picture.PNG?_t=1677842677 “Bad value: order_lines[3].total_tax_amount” Also when I add a fee 5 % and a discount 5 % I do not get the same value. The amount should be the same but it is not. It still does not work if I enable taxes. If I apply 5 % fee and 5 % discount it says “Bad value: order_lines[3].total_tax_amount”. If I do not set both a fee and discount this error does not appear. **To Reproduce** Steps to reproduce the behavior: 1. For any Payment Gateway, set percentage fee and discount percentage in additional fees section. The issue was coming due to the "Fee Title" added in the Additional Fee option. If we will remove title, it will work fine. Also, I figured out that if we will disable Klarna Payment Gateway plugin, everything works well along with additional fee title. I tried a lot to replicate this but it worked fine to me on my site. But I was unable to display Klarna option on checkout page[not sure it it's a reason] **Expected behavior** The error shouldn't appear even though Klarna is activated. **Additional context** https://tychesoftwares.freshdesk.com/a/tickets/52600
comp
when we add additional fee title for the payment gateway i m getting notice message bad value describe the bug i get the following error “bad value order lines total tax amount” also when i add a fee and a discount i do not get the same value the amount should be the same but it is not it still does not work if i enable taxes if i apply fee and discount it says “bad value order lines total tax amount” if i do not set both a fee and discount this error does not appear to reproduce steps to reproduce the behavior for any payment gateway set percentage fee and discount percentage in additional fees section the issue was coming due to the fee title added in the additional fee option if we will remove title it will work fine also i figured out that if we will disable klarna payment gateway plugin everything works well along with additional fee title i tried a lot to replicate this but it worked fine to me on my site but i was unable to display klarna option on checkout page expected behavior the error shouldn t appear even though klarna is activated additional context
1
7,191
9,476,251,315
IssuesEvent
2019-04-19 14:28:53
jiangdashao/Matrix-Issues
https://api.github.com/repos/jiangdashao/Matrix-Issues
closed
[FP] Placing Fence on Protected Ground
False Positive Incompatibility Won't Fix
## Basic Information **Verbose message(s)**: https://i.imgur.com/0GMkKCL.png **How/when does this happen**: As the title says. Watch the video. **Video of false positive**: https://1drv.ms/v/s!ApY4tKsF8vPUgo0EWYdT6vLb4jL1NQ ## Configuration Files **Link to checks.yml file**: Tree.ac **Link to config.yml file**: Tree.ac # Server Infomation **Server Version**: Tree.ac **Matrix Version**: Tree.ac **ProtocolLib Version**: Tree.ac
True
[FP] Placing Fence on Protected Ground - ## Basic Information **Verbose message(s)**: https://i.imgur.com/0GMkKCL.png **How/when does this happen**: As the title says. Watch the video. **Video of false positive**: https://1drv.ms/v/s!ApY4tKsF8vPUgo0EWYdT6vLb4jL1NQ ## Configuration Files **Link to checks.yml file**: Tree.ac **Link to config.yml file**: Tree.ac # Server Infomation **Server Version**: Tree.ac **Matrix Version**: Tree.ac **ProtocolLib Version**: Tree.ac
comp
placing fence on protected ground basic information verbose message s how when does this happen as the title says watch the video video of false positive configuration files link to checks yml file tree ac link to config yml file tree ac server infomation server version tree ac matrix version tree ac protocollib version tree ac
1
910
3,371,996,626
IssuesEvent
2015-11-23 21:32:33
openconnectome/m2g
https://api.github.com/repos/openconnectome/m2g
closed
Corrupted graphs need to be rerun at some point
bug data processing
While running the parallel converter some graphs failed to be read -- I decided to assemble them here. NKI-ENH_0186697_biggraphs.graphml Jung2015_M87160886_biggraphs.graphml Jung2015_M87164774_biggraphs.graphml Jung2015_M87183242_biggraphs.graphml Jung2015_M87109104_biggraphs.graphml Jung2015_M87138290_biggraphs.graphml M87164412-bg.graphml M87111487-bg.graphml @gkiar please reassign as necessary
1.0
Corrupted graphs need to be rerun at some point - While running the parallel converter some graphs failed to be read -- I decided to assemble them here. NKI-ENH_0186697_biggraphs.graphml Jung2015_M87160886_biggraphs.graphml Jung2015_M87164774_biggraphs.graphml Jung2015_M87183242_biggraphs.graphml Jung2015_M87109104_biggraphs.graphml Jung2015_M87138290_biggraphs.graphml M87164412-bg.graphml M87111487-bg.graphml @gkiar please reassign as necessary
non_comp
corrupted graphs need to be rerun at some point while running the parallel converter some graphs failed to be read i decided to assemble them here nki enh biggraphs graphml biggraphs graphml biggraphs graphml biggraphs graphml biggraphs graphml biggraphs graphml bg graphml bg graphml gkiar please reassign as necessary
0
15,354
19,577,282,217
IssuesEvent
2022-01-04 16:43:57
wp-media/wp-rocket
https://api.github.com/repos/wp-media/wp-rocket
closed
Add .bigscoots-staging.com to our allowed list of staging environments
type: enhancement 3rd party compatibility module: rocketcdn
**Is your feature request related to a problem? Please describe.** **.bigscoots-staging.com** is the default staging URL of Bigscoots hosting: https://help.bigscoots.com/en/articles/4063548-wpo-creating-your-staging-site **Describe the solution you'd like** Add this domain to our list of staging domains at https://github.com/wp-media/wp-rocket/blob/trunk/inc/functions/api.php#L119 **Additional context** Related ticket: https://secure.helpscout.net/conversation/1740428914/316230?folderId=2683093
True
Add .bigscoots-staging.com to our allowed list of staging environments - **Is your feature request related to a problem? Please describe.** **.bigscoots-staging.com** is the default staging URL of Bigscoots hosting: https://help.bigscoots.com/en/articles/4063548-wpo-creating-your-staging-site **Describe the solution you'd like** Add this domain to our list of staging domains at https://github.com/wp-media/wp-rocket/blob/trunk/inc/functions/api.php#L119 **Additional context** Related ticket: https://secure.helpscout.net/conversation/1740428914/316230?folderId=2683093
comp
add bigscoots staging com to our allowed list of staging environments is your feature request related to a problem please describe bigscoots staging com is the default staging url of bigscoots hosting describe the solution you d like add this domain to our list of staging domains at additional context related ticket
1
115,473
17,315,329,024
IssuesEvent
2021-07-27 04:49:41
atlslscsrv-app/raw.githubusercontent.com
https://api.github.com/repos/atlslscsrv-app/raw.githubusercontent.com
closed
CVE-2021-23343 (High) detected in path-parse-1.0.6.tgz
security vulnerability
## CVE-2021-23343 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>path-parse-1.0.6.tgz</b></p></summary> <p>Node.js path.parse() ponyfill</p> <p>Library home page: <a href="https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz">https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz</a></p> <p>Path to dependency file: raw.githubusercontent.com/package.json</p> <p>Path to vulnerable library: raw.githubusercontent.com/node_modules/path-parse/package.json,raw.githubusercontent.com/dist/resources/app/node_modules/path-parse/package.json</p> <p> Dependency Hierarchy: - spectron-5.0.0.tgz (Root Library) - electron-chromedriver-3.0.0.tgz - electron-download-4.1.1.tgz - nugget-2.0.1.tgz - pretty-bytes-1.0.4.tgz - meow-3.7.0.tgz - normalize-package-data-2.5.0.tgz - resolve-1.11.1.tgz - :x: **path-parse-1.0.6.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/atlslscsrv-app/raw.githubusercontent.com/commit/aa92cc89d176ef0db6837b780f1fbc5abbe22c79">aa92cc89d176ef0db6837b780f1fbc5abbe22c79</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> All versions of package path-parse are vulnerable to Regular Expression Denial of Service (ReDoS) via splitDeviceRe, splitTailRe, and splitPathRe regular expressions. ReDoS exhibits polynomial worst-case time complexity. <p>Publish Date: 2021-05-04 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23343>CVE-2021-23343</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/jbgutierrez/path-parse/issues/8">https://github.com/jbgutierrez/path-parse/issues/8</a></p> <p>Release Date: 2021-05-04</p> <p>Fix Resolution: path-parse - 1.0.7</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-23343 (High) detected in path-parse-1.0.6.tgz - ## CVE-2021-23343 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>path-parse-1.0.6.tgz</b></p></summary> <p>Node.js path.parse() ponyfill</p> <p>Library home page: <a href="https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz">https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz</a></p> <p>Path to dependency file: raw.githubusercontent.com/package.json</p> <p>Path to vulnerable library: raw.githubusercontent.com/node_modules/path-parse/package.json,raw.githubusercontent.com/dist/resources/app/node_modules/path-parse/package.json</p> <p> Dependency Hierarchy: - spectron-5.0.0.tgz (Root Library) - electron-chromedriver-3.0.0.tgz - electron-download-4.1.1.tgz - nugget-2.0.1.tgz - pretty-bytes-1.0.4.tgz - meow-3.7.0.tgz - normalize-package-data-2.5.0.tgz - resolve-1.11.1.tgz - :x: **path-parse-1.0.6.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/atlslscsrv-app/raw.githubusercontent.com/commit/aa92cc89d176ef0db6837b780f1fbc5abbe22c79">aa92cc89d176ef0db6837b780f1fbc5abbe22c79</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> All versions of package path-parse are vulnerable to Regular Expression Denial of Service (ReDoS) via splitDeviceRe, splitTailRe, and splitPathRe regular expressions. ReDoS exhibits polynomial worst-case time complexity. <p>Publish Date: 2021-05-04 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23343>CVE-2021-23343</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/jbgutierrez/path-parse/issues/8">https://github.com/jbgutierrez/path-parse/issues/8</a></p> <p>Release Date: 2021-05-04</p> <p>Fix Resolution: path-parse - 1.0.7</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_comp
cve high detected in path parse tgz cve high severity vulnerability vulnerable library path parse tgz node js path parse ponyfill library home page a href path to dependency file raw githubusercontent com package json path to vulnerable library raw githubusercontent com node modules path parse package json raw githubusercontent com dist resources app node modules path parse package json dependency hierarchy spectron tgz root library electron chromedriver tgz electron download tgz nugget tgz pretty bytes tgz meow tgz normalize package data tgz resolve tgz x path parse tgz vulnerable library found in head commit a href found in base branch master vulnerability details all versions of package path parse are vulnerable to regular expression denial of service redos via splitdevicere splittailre and splitpathre regular expressions redos exhibits polynomial worst case time 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 path parse step up your open source security game with whitesource
0
159,090
24,943,572,751
IssuesEvent
2022-10-31 21:11:36
dotnet/roslyn
https://api.github.com/repos/dotnet/roslyn
closed
VS Wrongly Suggests Name Simplify Refactoring on C# String
Area-IDE Resolution-By Design Developer Community
VS2017 suggests name simplify refactoring on all C# String types, when they are written as String (with capital S). It suggests to replace it with string. There is no real simplification in this refactoring. As a matter of fact, String vs string is personal developer style as these are the synonims in C#. I prefer to use String with capital &quot;S&quot; , so I am tired to see all these suggestions in all my code files. _This issue has been moved from https://developercommunity.visualstudio.com/content/problem/328393/vs-wrongly-suggests-name-simplify-refactoring-on-c.html VSTS ticketId: 677559_ _These are the original issue comments:_ (no comments) _These are the original issue solutions:_ (no solutions)
1.0
VS Wrongly Suggests Name Simplify Refactoring on C# String - VS2017 suggests name simplify refactoring on all C# String types, when they are written as String (with capital S). It suggests to replace it with string. There is no real simplification in this refactoring. As a matter of fact, String vs string is personal developer style as these are the synonims in C#. I prefer to use String with capital &quot;S&quot; , so I am tired to see all these suggestions in all my code files. _This issue has been moved from https://developercommunity.visualstudio.com/content/problem/328393/vs-wrongly-suggests-name-simplify-refactoring-on-c.html VSTS ticketId: 677559_ _These are the original issue comments:_ (no comments) _These are the original issue solutions:_ (no solutions)
non_comp
vs wrongly suggests name simplify refactoring on c string suggests name simplify refactoring on all c string types when they are written as string with capital s it suggests to replace it with string there is no real simplification in this refactoring as a matter of fact string vs string is personal developer style as these are the synonims in c i prefer to use string with capital quot s quot so i am tired to see all these suggestions in all my code files this issue has been moved from vsts ticketid these are the original issue comments no comments these are the original issue solutions no solutions
0
231,908
18,819,461,221
IssuesEvent
2021-11-10 06:01:04
AbdulSuboor-Syed/HandInHAndOut
https://api.github.com/repos/AbdulSuboor-Syed/HandInHAndOut
closed
Testing Registration Page after styling
Test
- [x] User is able to open the Registration Page - [x] User is able to register - [x] Password is hidden
1.0
Testing Registration Page after styling - - [x] User is able to open the Registration Page - [x] User is able to register - [x] Password is hidden
non_comp
testing registration page after styling user is able to open the registration page user is able to register password is hidden
0
5,865
8,309,503,828
IssuesEvent
2018-09-24 06:59:32
MightyPirates/OpenComputers
https://api.github.com/repos/MightyPirates/OpenComputers
closed
Issue with Adapter/TE Energy Cell
incompatibility
Just started using this mod in the FTB Beyond 1.10 pack, and I haven't been able to get my computer system to connect with a Thermal Expansion Energy cell. I did get the adapter to successfully work with the vanilla note block. Is there a known issue about this? Is there something wrong with my installation?
True
Issue with Adapter/TE Energy Cell - Just started using this mod in the FTB Beyond 1.10 pack, and I haven't been able to get my computer system to connect with a Thermal Expansion Energy cell. I did get the adapter to successfully work with the vanilla note block. Is there a known issue about this? Is there something wrong with my installation?
comp
issue with adapter te energy cell just started using this mod in the ftb beyond pack and i haven t been able to get my computer system to connect with a thermal expansion energy cell i did get the adapter to successfully work with the vanilla note block is there a known issue about this is there something wrong with my installation
1
3,821
6,672,054,702
IssuesEvent
2017-10-04 09:57:59
laurentj/slimerjs
https://api.github.com/repos/laurentj/slimerjs
closed
input elements does not receive anymore some key events (Fx53+)
Firefox compatibility issue internals
### versions - SlimerJS: master/0.10.x - Firefox: 53+ ### Steps to reproduce the issue A test failed about sending a key event (Del key and others), after loading the page. It seems this is an issue about focus.
True
input elements does not receive anymore some key events (Fx53+) - ### versions - SlimerJS: master/0.10.x - Firefox: 53+ ### Steps to reproduce the issue A test failed about sending a key event (Del key and others), after loading the page. It seems this is an issue about focus.
comp
input elements does not receive anymore some key events versions slimerjs master x firefox steps to reproduce the issue a test failed about sending a key event del key and others after loading the page it seems this is an issue about focus
1
10,344
12,309,904,791
IssuesEvent
2020-05-12 09:43:06
SaucyPigeon/RW-Realistic-Planets-Fan-Update
https://api.github.com/repos/SaucyPigeon/RW-Realistic-Planets-Fan-Update
closed
Biomes! Islands
feature request mod compatibility
https://steamcommunity.com/sharedfiles/filedetails/?id=2038001322&searchtext= - Adds new biomes, Atolls and Tropicals islands. - Possible that RPFU overrides generation for these biomes.
True
Biomes! Islands - https://steamcommunity.com/sharedfiles/filedetails/?id=2038001322&searchtext= - Adds new biomes, Atolls and Tropicals islands. - Possible that RPFU overrides generation for these biomes.
comp
biomes islands adds new biomes atolls and tropicals islands possible that rpfu overrides generation for these biomes
1
600,340
18,293,793,644
IssuesEvent
2021-10-05 18:09:34
brave/brave-browser
https://api.github.com/repos/brave/brave-browser
closed
Occasional renderer crash on WASM load/compilation step
crash/webview priority/P2 QA/Yes release-notes/include OS/Desktop feature/brave-talk
After migration to 94.0.4606.50 we experience WASM-related hangs and crashes (reported in [Slack](https://bravesoftware.slack.com/archives/C7VLGSR55/p1633436259225700)). ![image](https://user-images.githubusercontent.com/5928869/136045766-3a693422-c572-4aee-b86a-043b1bcb5ce6.png) Looking at Chromium version and v8 version, we can see that some problem existed in the code and was fixed recently. https://omahaproxy.appspot.com/v8.json?version=94.0.4606.50 https://chromium.googlesource.com/v8/v8.git/+/refs/heads/9.4.146/src/wasm/module-compiler.cc#3060 https://chromium-review.googlesource.com/c/v8/v8/+/3172761 We need to apply a manual patch to fix this in `1.30.x` and maybe in the next version. The fix should appear in Chromium [96.0.4650.0](https://chromium.googlesource.com/v8/v8.git/+/refs/heads/chromium/4649..chromium/4650 ). So we must apply this patch in all releases where Chromium < 96.0.4650.0
1.0
Occasional renderer crash on WASM load/compilation step - After migration to 94.0.4606.50 we experience WASM-related hangs and crashes (reported in [Slack](https://bravesoftware.slack.com/archives/C7VLGSR55/p1633436259225700)). ![image](https://user-images.githubusercontent.com/5928869/136045766-3a693422-c572-4aee-b86a-043b1bcb5ce6.png) Looking at Chromium version and v8 version, we can see that some problem existed in the code and was fixed recently. https://omahaproxy.appspot.com/v8.json?version=94.0.4606.50 https://chromium.googlesource.com/v8/v8.git/+/refs/heads/9.4.146/src/wasm/module-compiler.cc#3060 https://chromium-review.googlesource.com/c/v8/v8/+/3172761 We need to apply a manual patch to fix this in `1.30.x` and maybe in the next version. The fix should appear in Chromium [96.0.4650.0](https://chromium.googlesource.com/v8/v8.git/+/refs/heads/chromium/4649..chromium/4650 ). So we must apply this patch in all releases where Chromium < 96.0.4650.0
non_comp
occasional renderer crash on wasm load compilation step after migration to we experience wasm related hangs and crashes reported in looking at chromium version and version we can see that some problem existed in the code and was fixed recently we need to apply a manual patch to fix this in x and maybe in the next version the fix should appear in chromium so we must apply this patch in all releases where chromium
0
89,646
10,606,165,933
IssuesEvent
2019-10-10 22:23:11
neetjn/core-routing
https://api.github.com/repos/neetjn/core-routing
closed
0.0.2 - Roadmap
discussion documentation enhancement roadmap
> With the [riot-routing]() projects in the work as a replacement for [riot-view-routing](), I wanted to design a framework agnostic interface for client sided routing. # Roadmap - 0.0.2 ### Core Proposals * ~~Provide test(s) for configuration: [Issue 14](https://github.com/neetjn/core-routing/issues/14)~~ * ~~Provide test for legacy support: [Issue 15](https://github.com/neetjn/core-routing/issues/15)~~ * ~~Provide proper code documentation: [Issue 2](https://github.com/neetjn/core-routing/issues/2)~~ * ~~Complete README: [Issue 22](https://github.com/neetjn/core-routing/issues/22)~~ ### Feature Requests * ~~Event emitter in observer pattern form for flexible use: [Issue 20](https://github.com/neetjn/core-routing/issues/20)~~ ### Bugs * ~~Matching not working for path "/": [Issue 18](https://github.com/neetjn/core-routing/issues/18)~~
1.0
0.0.2 - Roadmap - > With the [riot-routing]() projects in the work as a replacement for [riot-view-routing](), I wanted to design a framework agnostic interface for client sided routing. # Roadmap - 0.0.2 ### Core Proposals * ~~Provide test(s) for configuration: [Issue 14](https://github.com/neetjn/core-routing/issues/14)~~ * ~~Provide test for legacy support: [Issue 15](https://github.com/neetjn/core-routing/issues/15)~~ * ~~Provide proper code documentation: [Issue 2](https://github.com/neetjn/core-routing/issues/2)~~ * ~~Complete README: [Issue 22](https://github.com/neetjn/core-routing/issues/22)~~ ### Feature Requests * ~~Event emitter in observer pattern form for flexible use: [Issue 20](https://github.com/neetjn/core-routing/issues/20)~~ ### Bugs * ~~Matching not working for path "/": [Issue 18](https://github.com/neetjn/core-routing/issues/18)~~
non_comp
roadmap with the projects in the work as a replacement for i wanted to design a framework agnostic interface for client sided routing roadmap core proposals provide test s for configuration provide test for legacy support provide proper code documentation complete readme feature requests event emitter in observer pattern form for flexible use bugs matching not working for path
0
158,612
6,032,695,932
IssuesEvent
2017-06-09 05:26:00
CAGoodman/CareWheelsCorp
https://api.github.com/repos/CAGoodman/CareWheelsCorp
opened
Making Call using ionic serve errors out but payment happens although intermittently
bug High Priority
Bug1: In an ionic serve run, when you tap the Call button the $http() call fails saying bad local network error. Bug2: However the server says the payment went through Bug3: However not all the call is recorded by the server so some of them do miss. Out of 5 calls 3 went through. When I used the mobile every time it went through and I was using the same network(wifi). There is a cordova call which connects the app to the local call function. ionic serve does not support cordova and that is the reason it fails. Need more investigation.
1.0
Making Call using ionic serve errors out but payment happens although intermittently - Bug1: In an ionic serve run, when you tap the Call button the $http() call fails saying bad local network error. Bug2: However the server says the payment went through Bug3: However not all the call is recorded by the server so some of them do miss. Out of 5 calls 3 went through. When I used the mobile every time it went through and I was using the same network(wifi). There is a cordova call which connects the app to the local call function. ionic serve does not support cordova and that is the reason it fails. Need more investigation.
non_comp
making call using ionic serve errors out but payment happens although intermittently in an ionic serve run when you tap the call button the http call fails saying bad local network error however the server says the payment went through however not all the call is recorded by the server so some of them do miss out of calls went through when i used the mobile every time it went through and i was using the same network wifi there is a cordova call which connects the app to the local call function ionic serve does not support cordova and that is the reason it fails need more investigation
0
139,182
18,841,645,993
IssuesEvent
2021-11-11 10:15:08
sultanabubaker/Yarn_Test_Sultan
https://api.github.com/repos/sultanabubaker/Yarn_Test_Sultan
opened
CVE-2017-1000048 (High) detected in qs-4.0.0.tgz
security vulnerability
## CVE-2017-1000048 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>qs-4.0.0.tgz</b></p></summary> <p>A querystring parser that supports nesting and arrays, with a depth limit</p> <p>Library home page: <a href="https://registry.npmjs.org/qs/-/qs-4.0.0.tgz">https://registry.npmjs.org/qs/-/qs-4.0.0.tgz</a></p> <p>Path to dependency file: Yarn_Test_Sultan/package.json</p> <p>Path to vulnerable library: Yarn_Test_Sultan/node_modules/qs/package.json</p> <p> Dependency Hierarchy: - @whitesource-adam/haythem-library-1.0.0.tgz (Root Library) - body-parser-1.13.3.tgz - :x: **qs-4.0.0.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/sultanabubaker/Yarn_Test_Sultan/commit/4f2997635ca9bd62e867e1d63f94853b94323f23">4f2997635ca9bd62e867e1d63f94853b94323f23</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> the web framework using ljharb's qs module older than v6.3.2, v6.2.3, v6.1.2, and v6.0.4 is vulnerable to a DoS. A malicious user can send a evil request to cause the web framework crash. <p>Publish Date: 2017-07-17 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-1000048>CVE-2017-1000048</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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-1000048">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-1000048</a></p> <p>Release Date: 2017-07-17</p> <p>Fix Resolution: qs - 6.0.4,6.1.2,6.2.3,6.3.2</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"qs","packageVersion":"4.0.0","packageFilePaths":["/package.json"],"isTransitiveDependency":true,"dependencyTree":"@whitesource-adam/haythem-library:1.0.0;body-parser:1.13.3;qs:4.0.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"qs - 6.0.4,6.1.2,6.2.3,6.3.2"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2017-1000048","vulnerabilityDetails":"the web framework using ljharb\u0027s qs module older than v6.3.2, v6.2.3, v6.1.2, and v6.0.4 is vulnerable to a DoS. A malicious user can send a evil request to cause the web framework crash.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-1000048","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
True
CVE-2017-1000048 (High) detected in qs-4.0.0.tgz - ## CVE-2017-1000048 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>qs-4.0.0.tgz</b></p></summary> <p>A querystring parser that supports nesting and arrays, with a depth limit</p> <p>Library home page: <a href="https://registry.npmjs.org/qs/-/qs-4.0.0.tgz">https://registry.npmjs.org/qs/-/qs-4.0.0.tgz</a></p> <p>Path to dependency file: Yarn_Test_Sultan/package.json</p> <p>Path to vulnerable library: Yarn_Test_Sultan/node_modules/qs/package.json</p> <p> Dependency Hierarchy: - @whitesource-adam/haythem-library-1.0.0.tgz (Root Library) - body-parser-1.13.3.tgz - :x: **qs-4.0.0.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/sultanabubaker/Yarn_Test_Sultan/commit/4f2997635ca9bd62e867e1d63f94853b94323f23">4f2997635ca9bd62e867e1d63f94853b94323f23</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> the web framework using ljharb's qs module older than v6.3.2, v6.2.3, v6.1.2, and v6.0.4 is vulnerable to a DoS. A malicious user can send a evil request to cause the web framework crash. <p>Publish Date: 2017-07-17 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-1000048>CVE-2017-1000048</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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-1000048">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-1000048</a></p> <p>Release Date: 2017-07-17</p> <p>Fix Resolution: qs - 6.0.4,6.1.2,6.2.3,6.3.2</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"qs","packageVersion":"4.0.0","packageFilePaths":["/package.json"],"isTransitiveDependency":true,"dependencyTree":"@whitesource-adam/haythem-library:1.0.0;body-parser:1.13.3;qs:4.0.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"qs - 6.0.4,6.1.2,6.2.3,6.3.2"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2017-1000048","vulnerabilityDetails":"the web framework using ljharb\u0027s qs module older than v6.3.2, v6.2.3, v6.1.2, and v6.0.4 is vulnerable to a DoS. A malicious user can send a evil request to cause the web framework crash.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-1000048","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
non_comp
cve high detected in qs tgz cve high severity vulnerability vulnerable library qs tgz a querystring parser that supports nesting and arrays with a depth limit library home page a href path to dependency file yarn test sultan package json path to vulnerable library yarn test sultan node modules qs package json dependency hierarchy whitesource adam haythem library tgz root library body parser tgz x qs tgz vulnerable library found in head commit a href found in base branch master vulnerability details the web framework using ljharb s qs module older than and is vulnerable to a dos a malicious user can send a evil request to cause the web framework crash 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 qs isopenpronvulnerability false ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree whitesource adam haythem library body parser qs isminimumfixversionavailable true minimumfixversion qs basebranches vulnerabilityidentifier cve vulnerabilitydetails the web framework using ljharb qs module older than and is vulnerable to a dos a malicious user can send a evil request to cause the web framework crash vulnerabilityurl
0
85,073
7,960,733,747
IssuesEvent
2018-07-13 08:22:19
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
closed
github.com/cockroachdb/cockroach/pkg/ccl/importccl: TestImportCSVStmt/schema-in-file-explicit-bzip failed under stress
C-test-failure O-robot
SHA: https://github.com/cockroachdb/cockroach/commits/f818c4c3b946c40839921c72fc1322fb3b385ee6 Parameters: ``` TAGS= GOFLAGS=-race ``` Failed test: https://teamcity.cockroachdb.com/viewLog.html?buildId=772409&tab=buildLog ``` === RUN TestImportCSVStmt/schema-in-file-explicit-bzip ```
1.0
github.com/cockroachdb/cockroach/pkg/ccl/importccl: TestImportCSVStmt/schema-in-file-explicit-bzip failed under stress - SHA: https://github.com/cockroachdb/cockroach/commits/f818c4c3b946c40839921c72fc1322fb3b385ee6 Parameters: ``` TAGS= GOFLAGS=-race ``` Failed test: https://teamcity.cockroachdb.com/viewLog.html?buildId=772409&tab=buildLog ``` === RUN TestImportCSVStmt/schema-in-file-explicit-bzip ```
non_comp
github com cockroachdb cockroach pkg ccl importccl testimportcsvstmt schema in file explicit bzip failed under stress sha parameters tags goflags race failed test run testimportcsvstmt schema in file explicit bzip
0
16,838
23,178,774,865
IssuesEvent
2022-07-31 20:23:26
OroArmor/Netherite-Plus-Mod
https://api.github.com/repos/OroArmor/Netherite-Plus-Mod
closed
Add compatibility for Shulker Enchantments (they already have this set up if you just add a tag)
enhancement Compatibility
*Describe the feature you'd like** Follow this page https://github.com/Ephys/mc-shulker-enchantments#for-developers on how to add compatibility with the Shulker Enchantments mod **Describe how this feature adheres to the vanilla feel** It makes shulker boxes more like shields and elytras in that they would have some useful enchantments
True
Add compatibility for Shulker Enchantments (they already have this set up if you just add a tag) - *Describe the feature you'd like** Follow this page https://github.com/Ephys/mc-shulker-enchantments#for-developers on how to add compatibility with the Shulker Enchantments mod **Describe how this feature adheres to the vanilla feel** It makes shulker boxes more like shields and elytras in that they would have some useful enchantments
comp
add compatibility for shulker enchantments they already have this set up if you just add a tag describe the feature you d like follow this page on how to add compatibility with the shulker enchantments mod describe how this feature adheres to the vanilla feel it makes shulker boxes more like shields and elytras in that they would have some useful enchantments
1
147,824
23,279,025,725
IssuesEvent
2022-08-05 10:05:55
status-im/help.status.im
https://api.github.com/repos/status-im/help.status.im
closed
Include a reference to different UI sections we name in our docs (desktop and web only)
doc-enhance P:information-design
This is related to https://github.com/status-im/help.status.im/issues/159. In addition to naming the icons we use in the docs, we need to describe the different areas and screens in the user interface. For example, we use "Activity center" to refer to the area on the screen where the user can review messages and updates. To use these terms consistently across our topics, we'll create a table listing them. This content goes on our writing style guide as an extension of the section where we describe the icons or a new section.
1.0
Include a reference to different UI sections we name in our docs (desktop and web only) - This is related to https://github.com/status-im/help.status.im/issues/159. In addition to naming the icons we use in the docs, we need to describe the different areas and screens in the user interface. For example, we use "Activity center" to refer to the area on the screen where the user can review messages and updates. To use these terms consistently across our topics, we'll create a table listing them. This content goes on our writing style guide as an extension of the section where we describe the icons or a new section.
non_comp
include a reference to different ui sections we name in our docs desktop and web only this is related to in addition to naming the icons we use in the docs we need to describe the different areas and screens in the user interface for example we use activity center to refer to the area on the screen where the user can review messages and updates to use these terms consistently across our topics we ll create a table listing them this content goes on our writing style guide as an extension of the section where we describe the icons or a new section
0
9,078
12,149,274,990
IssuesEvent
2020-04-24 15:53:12
nion-software/nionswift
https://api.github.com/repos/nion-software/nionswift
closed
1D data items (line plots) with negative scale show no data
f - line-plot f - processing level - easy type - bug
To reproduce the issue type the following into the builtin python console: ```python import numpy as np di=api.library.create_data_item_from_data(np.arange(100)) ``` creates a data item with a line. Everything is fine so far. If you then do: ```python c=api.create_calibration(scale=-1) di.set_dimensional_calibrations([c]) ``` After this command the data disappears from the data item. You can still do everything as normal, but you just do not see the plot. So the data seems to be there but is just not shown (also the labels at the axis are shown correctly). If you switch the display style to pixels or fractional the data appears. In calibrated mode it disappears again. The issue occurs in Swift 0.12 and 0.13. It is not there in Swift 0.11 and earlier.
1.0
1D data items (line plots) with negative scale show no data - To reproduce the issue type the following into the builtin python console: ```python import numpy as np di=api.library.create_data_item_from_data(np.arange(100)) ``` creates a data item with a line. Everything is fine so far. If you then do: ```python c=api.create_calibration(scale=-1) di.set_dimensional_calibrations([c]) ``` After this command the data disappears from the data item. You can still do everything as normal, but you just do not see the plot. So the data seems to be there but is just not shown (also the labels at the axis are shown correctly). If you switch the display style to pixels or fractional the data appears. In calibrated mode it disappears again. The issue occurs in Swift 0.12 and 0.13. It is not there in Swift 0.11 and earlier.
non_comp
data items line plots with negative scale show no data to reproduce the issue type the following into the builtin python console python import numpy as np di api library create data item from data np arange creates a data item with a line everything is fine so far if you then do python c api create calibration scale di set dimensional calibrations after this command the data disappears from the data item you can still do everything as normal but you just do not see the plot so the data seems to be there but is just not shown also the labels at the axis are shown correctly if you switch the display style to pixels or fractional the data appears in calibrated mode it disappears again the issue occurs in swift and it is not there in swift and earlier
0
6,314
8,675,730,997
IssuesEvent
2018-11-30 11:50:33
metarhia/impress
https://api.github.com/repos/metarhia/impress
closed
Use error-first for callbacks in http handlers
compatibility optimization
Previous contract: ```js (client, callback) => { callback(result); } ``` We need: ```js (client, callback) => { callback(error, result); } ``` Also supported: ```js (client, callback) => { client.context.data = result; callback(); } ```
True
Use error-first for callbacks in http handlers - Previous contract: ```js (client, callback) => { callback(result); } ``` We need: ```js (client, callback) => { callback(error, result); } ``` Also supported: ```js (client, callback) => { client.context.data = result; callback(); } ```
comp
use error first for callbacks in http handlers previous contract js client callback callback result we need js client callback callback error result also supported js client callback client context data result callback
1
177,696
29,040,812,053
IssuesEvent
2023-05-13 00:25:05
microsoft/AdaptiveCards
https://api.github.com/repos/microsoft/AdaptiveCards
closed
[Designer] Empty card elements cannot be localized
Bug Area-Designer
### Problem Description Newly-added card elements have "empty state" text that is not currently localized when the `adaptivecards` library is in design mode. This affects all container-like elements, as well as `Image` and `TextBlock` elements. ### Card JSON ```JSON { "type": "AdaptiveCard", "body": [], "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", "version": "1.5" } ``` ### Screenshot <img width="448" alt="image" src="https://user-images.githubusercontent.com/109822/234710479-3898f063-d5fc-46cd-8b02-e0579b48df6f.png">
1.0
[Designer] Empty card elements cannot be localized - ### Problem Description Newly-added card elements have "empty state" text that is not currently localized when the `adaptivecards` library is in design mode. This affects all container-like elements, as well as `Image` and `TextBlock` elements. ### Card JSON ```JSON { "type": "AdaptiveCard", "body": [], "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", "version": "1.5" } ``` ### Screenshot <img width="448" alt="image" src="https://user-images.githubusercontent.com/109822/234710479-3898f063-d5fc-46cd-8b02-e0579b48df6f.png">
non_comp
empty card elements cannot be localized problem description newly added card elements have empty state text that is not currently localized when the adaptivecards library is in design mode this affects all container like elements as well as image and textblock elements card json json type adaptivecard body schema version screenshot img width alt image src
0
478,769
13,785,184,807
IssuesEvent
2020-10-08 22:18:11
certbot/certbot
https://api.github.com/repos/certbot/certbot
closed
Automatically move Certbot (and DNS snaps) to the stable channel
area: pkging area: snaps area: tooling has pr priority: significant
If we don't want to publish stable DNS snaps yet, I think we should just figure out the mechanism we want to use here and implement it for the Certbot snap. I do not think we accomplish this issue by storing the necessary credentials in CI. I think storing these credentials in CI greatly increases the likelihood they accidentally leak and the potential downside of leaking credentials that can be used to push updates to our users which will be automatically installed and will have unconfined root access to the user's system is far too great in my opinion. Instead, I think we should write a script that does this for both Certbot and the DNS plugin snaps that we can run locally. I'm imagining this building on the script used for https://github.com/certbot/certbot/issues/8049. The script could download the snaps from Azure and reupload them to the snap store, but it's 500MB which can be quite slow to download and reupload. Instead, I think we should let Azure publish the snaps to the edge/beta channel and then locally move them to the stable channel. `snapcraft` subcommands which may be useful here are `status`, `promote`, and `release`. If the Azure build passes, I think we may be guaranteed the snaps have been successfully published but I'm not sure. If not, we could use `snapcraft status` to get the revision numbers, making sure they are for the version of the project you expect, and then using `snapcraft release` to move them to the channel we want. I'm open to other ideas too.
1.0
Automatically move Certbot (and DNS snaps) to the stable channel - If we don't want to publish stable DNS snaps yet, I think we should just figure out the mechanism we want to use here and implement it for the Certbot snap. I do not think we accomplish this issue by storing the necessary credentials in CI. I think storing these credentials in CI greatly increases the likelihood they accidentally leak and the potential downside of leaking credentials that can be used to push updates to our users which will be automatically installed and will have unconfined root access to the user's system is far too great in my opinion. Instead, I think we should write a script that does this for both Certbot and the DNS plugin snaps that we can run locally. I'm imagining this building on the script used for https://github.com/certbot/certbot/issues/8049. The script could download the snaps from Azure and reupload them to the snap store, but it's 500MB which can be quite slow to download and reupload. Instead, I think we should let Azure publish the snaps to the edge/beta channel and then locally move them to the stable channel. `snapcraft` subcommands which may be useful here are `status`, `promote`, and `release`. If the Azure build passes, I think we may be guaranteed the snaps have been successfully published but I'm not sure. If not, we could use `snapcraft status` to get the revision numbers, making sure they are for the version of the project you expect, and then using `snapcraft release` to move them to the channel we want. I'm open to other ideas too.
non_comp
automatically move certbot and dns snaps to the stable channel if we don t want to publish stable dns snaps yet i think we should just figure out the mechanism we want to use here and implement it for the certbot snap i do not think we accomplish this issue by storing the necessary credentials in ci i think storing these credentials in ci greatly increases the likelihood they accidentally leak and the potential downside of leaking credentials that can be used to push updates to our users which will be automatically installed and will have unconfined root access to the user s system is far too great in my opinion instead i think we should write a script that does this for both certbot and the dns plugin snaps that we can run locally i m imagining this building on the script used for the script could download the snaps from azure and reupload them to the snap store but it s which can be quite slow to download and reupload instead i think we should let azure publish the snaps to the edge beta channel and then locally move them to the stable channel snapcraft subcommands which may be useful here are status promote and release if the azure build passes i think we may be guaranteed the snaps have been successfully published but i m not sure if not we could use snapcraft status to get the revision numbers making sure they are for the version of the project you expect and then using snapcraft release to move them to the channel we want i m open to other ideas too
0
620,533
19,564,374,451
IssuesEvent
2022-01-03 21:11:36
googlemaps/google-maps-services-js
https://api.github.com/repos/googlemaps/google-maps-services-js
closed
Compatibility of back-end and front-end directions services
type: feature request priority: p4 stale
I wrote a server using this lib because I assumed (you know how that goes) that the results produced would be compatible with the front-end, meaning I could take a directions results and provide these routes to the front end for mapping. Now, if I understand this linked issue and comment correctly, that isn't possible without trying to duplicate the functions Google (front-end javascript) has on the `bounds` element of DirectionsResult? BTW, I discovered this potential issue when I got a Typescript error trying to add the results from my server to the Redux slice I have for my app. So I'm not sure the solutions in the linked issue are germane for me? Or maybe I don't understand. Does anyone have a link to example code where someone has patched the back-end data with the rest of the methods on `LatLngBounds`? I realize I may be looking at two different issues here, so I welcome help in understanding how to proceed. Thanks. ======= The front-end and back-end services aren't intended to work together in the way you're trying to do. At a guess you might be able to manually patch the back-end route data with the missing attributes that the front-end API expects. _Originally posted by @stephenmcd in https://github.com/googlemaps/google-maps-services-js/issues/161#issuecomment-390554207_
1.0
Compatibility of back-end and front-end directions services - I wrote a server using this lib because I assumed (you know how that goes) that the results produced would be compatible with the front-end, meaning I could take a directions results and provide these routes to the front end for mapping. Now, if I understand this linked issue and comment correctly, that isn't possible without trying to duplicate the functions Google (front-end javascript) has on the `bounds` element of DirectionsResult? BTW, I discovered this potential issue when I got a Typescript error trying to add the results from my server to the Redux slice I have for my app. So I'm not sure the solutions in the linked issue are germane for me? Or maybe I don't understand. Does anyone have a link to example code where someone has patched the back-end data with the rest of the methods on `LatLngBounds`? I realize I may be looking at two different issues here, so I welcome help in understanding how to proceed. Thanks. ======= The front-end and back-end services aren't intended to work together in the way you're trying to do. At a guess you might be able to manually patch the back-end route data with the missing attributes that the front-end API expects. _Originally posted by @stephenmcd in https://github.com/googlemaps/google-maps-services-js/issues/161#issuecomment-390554207_
non_comp
compatibility of back end and front end directions services i wrote a server using this lib because i assumed you know how that goes that the results produced would be compatible with the front end meaning i could take a directions results and provide these routes to the front end for mapping now if i understand this linked issue and comment correctly that isn t possible without trying to duplicate the functions google front end javascript has on the bounds element of directionsresult btw i discovered this potential issue when i got a typescript error trying to add the results from my server to the redux slice i have for my app so i m not sure the solutions in the linked issue are germane for me or maybe i don t understand does anyone have a link to example code where someone has patched the back end data with the rest of the methods on latlngbounds i realize i may be looking at two different issues here so i welcome help in understanding how to proceed thanks the front end and back end services aren t intended to work together in the way you re trying to do at a guess you might be able to manually patch the back end route data with the missing attributes that the front end api expects originally posted by stephenmcd in
0
47,026
19,556,553,986
IssuesEvent
2022-01-03 10:22:20
MicrosoftDocs/azure-docs
https://api.github.com/repos/MicrosoftDocs/azure-docs
closed
The acr get login server command is not working with --output table
container-service/svc triaged cxp doc-bug Pri2
I found that the ```azure-voting-app-redis rgoyal1$ az acr list --resource-group rgoyal-kube-test --query "[].{acrLoginServer:loginServer}" --output table``` is erroring out with message ```Table output unavailable. Use the --query option to specify an appropriate query. Use --debug for more info.``` Please correct the document to ```azure-voting-app-redis rgoyal1$ az acr list --resource-group rgoyal-kube-test --query "[].{acrLoginServer:loginServer}"``` as this command is working. --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: 6afe8c14-efa4-31a6-9fd9-e68f2d878226 * Version Independent ID: c67857a5-ee1b-3ed2-f281-dd62c4c4c6f3 * Content: [Kubernetes on Azure tutorial - Create a container registry - Azure Kubernetes Service](https://docs.microsoft.com/en-us/azure/aks/tutorial-kubernetes-prepare-acr?tabs=azure-cli) * Content Source: [articles/aks/tutorial-kubernetes-prepare-acr.md](https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/aks/tutorial-kubernetes-prepare-acr.md) * Service: **container-service** * GitHub Login: @zr-msft * Microsoft Alias: **zarhoads**
1.0
The acr get login server command is not working with --output table - I found that the ```azure-voting-app-redis rgoyal1$ az acr list --resource-group rgoyal-kube-test --query "[].{acrLoginServer:loginServer}" --output table``` is erroring out with message ```Table output unavailable. Use the --query option to specify an appropriate query. Use --debug for more info.``` Please correct the document to ```azure-voting-app-redis rgoyal1$ az acr list --resource-group rgoyal-kube-test --query "[].{acrLoginServer:loginServer}"``` as this command is working. --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: 6afe8c14-efa4-31a6-9fd9-e68f2d878226 * Version Independent ID: c67857a5-ee1b-3ed2-f281-dd62c4c4c6f3 * Content: [Kubernetes on Azure tutorial - Create a container registry - Azure Kubernetes Service](https://docs.microsoft.com/en-us/azure/aks/tutorial-kubernetes-prepare-acr?tabs=azure-cli) * Content Source: [articles/aks/tutorial-kubernetes-prepare-acr.md](https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/aks/tutorial-kubernetes-prepare-acr.md) * Service: **container-service** * GitHub Login: @zr-msft * Microsoft Alias: **zarhoads**
non_comp
the acr get login server command is not working with output table i found that the azure voting app redis az acr list resource group rgoyal kube test query acrloginserver loginserver output table is erroring out with message table output unavailable use the query option to specify an appropriate query use debug for more info please correct the document to azure voting app redis az acr list resource group rgoyal kube test query acrloginserver loginserver as this command is working document details ⚠ do not edit this section it is required for docs microsoft com ➟ github issue linking id version independent id content content source service container service github login zr msft microsoft alias zarhoads
0
7,488
9,742,848,738
IssuesEvent
2019-06-02 20:37:01
satyrnidae/wolfarmor
https://api.github.com/repos/satyrnidae/wolfarmor
closed
[Bug] Chest Adding Does Not Use OreDict
compatibility
The mod appears to only be looking for the vanilla chest and not other mod chests with the chest or chestWood ore dictionary tag. This is a problem when using mods like [Charset Storage - Chests](https://minecraft.curseforge.com/projects/charset-storage-chests) that add an actual Oak Chest, Birch Chest, Spruce Chest, etc. rather than using the vanilla chests which are not craftable. These chests all use the chest and chestWood tags. I suspect this may be a problem with other mods like Quark that add vanilla wood chests as well but haven't checked.
True
[Bug] Chest Adding Does Not Use OreDict - The mod appears to only be looking for the vanilla chest and not other mod chests with the chest or chestWood ore dictionary tag. This is a problem when using mods like [Charset Storage - Chests](https://minecraft.curseforge.com/projects/charset-storage-chests) that add an actual Oak Chest, Birch Chest, Spruce Chest, etc. rather than using the vanilla chests which are not craftable. These chests all use the chest and chestWood tags. I suspect this may be a problem with other mods like Quark that add vanilla wood chests as well but haven't checked.
comp
chest adding does not use oredict the mod appears to only be looking for the vanilla chest and not other mod chests with the chest or chestwood ore dictionary tag this is a problem when using mods like that add an actual oak chest birch chest spruce chest etc rather than using the vanilla chests which are not craftable these chests all use the chest and chestwood tags i suspect this may be a problem with other mods like quark that add vanilla wood chests as well but haven t checked
1
19,675
27,318,520,903
IssuesEvent
2023-02-24 17:37:34
ValveSoftware/Proton
https://api.github.com/repos/ValveSoftware/Proton
closed
Chronos: Before the Ashes (967390)
Game compatibility - Unofficial Regression XAudio2
# Compatibility Report - Name of the game with compatibility issues: Chronos: Before the Ashes - Steam AppID of the game: 967390 ## System Information - Steam Deck (Stable branch) - up to date - Proton version: 7.0-5 ## I confirm: - [x] that I haven't found an existing compatibility report for this game. - [x] that I have checked whether there are updates for my system available. Sorry, this is my first compatibility report. I don't know if I need to give all the info, but I simply wanted to make Valve aware that this game seems to *only* work on 7.0-4. Anything later (currently) breaks it, and anything earlier has issues. 6.3-8 for example does not play intro cutscenes. Tested on Steam Deck in the Stable branch, up to date as of 12/8/2022.
True
Chronos: Before the Ashes (967390) - # Compatibility Report - Name of the game with compatibility issues: Chronos: Before the Ashes - Steam AppID of the game: 967390 ## System Information - Steam Deck (Stable branch) - up to date - Proton version: 7.0-5 ## I confirm: - [x] that I haven't found an existing compatibility report for this game. - [x] that I have checked whether there are updates for my system available. Sorry, this is my first compatibility report. I don't know if I need to give all the info, but I simply wanted to make Valve aware that this game seems to *only* work on 7.0-4. Anything later (currently) breaks it, and anything earlier has issues. 6.3-8 for example does not play intro cutscenes. Tested on Steam Deck in the Stable branch, up to date as of 12/8/2022.
comp
chronos before the ashes compatibility report name of the game with compatibility issues chronos before the ashes steam appid of the game system information steam deck stable branch up to date proton version i confirm that i haven t found an existing compatibility report for this game that i have checked whether there are updates for my system available sorry this is my first compatibility report i don t know if i need to give all the info but i simply wanted to make valve aware that this game seems to only work on anything later currently breaks it and anything earlier has issues for example does not play intro cutscenes tested on steam deck in the stable branch up to date as of
1
55,362
23,457,933,616
IssuesEvent
2022-08-16 10:32:23
hashicorp/terraform-provider-aws
https://api.github.com/repos/hashicorp/terraform-provider-aws
closed
aws_cloudwatch_log_subscription_filter: perpetual diff when filter_pattern = " "
service/logs
### Community Note * Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request * Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request * If you are interested in working on this issue or have submitted a pull request, please leave a comment ### Terraform CLI and Terraform AWS Provider Version ``` $ terraform -v Terraform v1.1.2 on linux_amd64 + provider registry.terraform.io/hashicorp/aws v4.23.0 Your version of Terraform is out of date! The latest version is 1.2.6. You can update by downloading from https://www.terraform.io/downloads.html ``` ### Affected Resource(s) * aws_cloudwatch_log_subscription_filter ### Terraform Configuration Files <!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code ---> Please include all Terraform configurations required to reproduce the bug. Bug reports without a functional reproduction may be closed without investigation. ```hcl resource "aws_cloudwatch_log_subscription_filter" "foo" { name = "foo" role_arn = "arn:aws:iam:.." log_group_name = "/aws/lambda/..." filter_pattern = " " destination_arn = "arn:aws:firehose:.." distribution = "Random" } ``` ### Debug Output See debug output on linked ticket. If that's not enough, I can provide a fresh one. ### Expected Behavior The resource is applied/modified once. ### Actual Behavior The same diff shows for each apply over and over. ``` # aws_cloudwatch_log_subscription_filter.lambda_eu1["/aws/lambda/slack_notification"] will be updated in-place ~ resource "aws_cloudwatch_log_subscription_filter" "lambda_eu1" { + filter_pattern = " " id = "cwlsf-312587165" name = "newrelic_logs" # (4 unchanged attributes hidden) } ``` ### Steps to Reproduce 1. `terraform apply` - create the resource 1. `terraform apply` - run again to see the "perpetual diff" ### References `filter_pattern = " "` should match all records as per Amazon documentation. The workaround is to use non-empty pattern, preferably a string or character that is on every line. Like `"2"` suggested by @fanefonseka on linked issue. I really cannot use the workaround because some of our logs don't contain the date ("2022" would be matched by "2"). * #20424 this is a earlier ticket describing the same issue that wasn't fixed. I'm not able to reopen that ticket.
1.0
aws_cloudwatch_log_subscription_filter: perpetual diff when filter_pattern = " " - ### Community Note * Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request * Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request * If you are interested in working on this issue or have submitted a pull request, please leave a comment ### Terraform CLI and Terraform AWS Provider Version ``` $ terraform -v Terraform v1.1.2 on linux_amd64 + provider registry.terraform.io/hashicorp/aws v4.23.0 Your version of Terraform is out of date! The latest version is 1.2.6. You can update by downloading from https://www.terraform.io/downloads.html ``` ### Affected Resource(s) * aws_cloudwatch_log_subscription_filter ### Terraform Configuration Files <!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code ---> Please include all Terraform configurations required to reproduce the bug. Bug reports without a functional reproduction may be closed without investigation. ```hcl resource "aws_cloudwatch_log_subscription_filter" "foo" { name = "foo" role_arn = "arn:aws:iam:.." log_group_name = "/aws/lambda/..." filter_pattern = " " destination_arn = "arn:aws:firehose:.." distribution = "Random" } ``` ### Debug Output See debug output on linked ticket. If that's not enough, I can provide a fresh one. ### Expected Behavior The resource is applied/modified once. ### Actual Behavior The same diff shows for each apply over and over. ``` # aws_cloudwatch_log_subscription_filter.lambda_eu1["/aws/lambda/slack_notification"] will be updated in-place ~ resource "aws_cloudwatch_log_subscription_filter" "lambda_eu1" { + filter_pattern = " " id = "cwlsf-312587165" name = "newrelic_logs" # (4 unchanged attributes hidden) } ``` ### Steps to Reproduce 1. `terraform apply` - create the resource 1. `terraform apply` - run again to see the "perpetual diff" ### References `filter_pattern = " "` should match all records as per Amazon documentation. The workaround is to use non-empty pattern, preferably a string or character that is on every line. Like `"2"` suggested by @fanefonseka on linked issue. I really cannot use the workaround because some of our logs don't contain the date ("2022" would be matched by "2"). * #20424 this is a earlier ticket describing the same issue that wasn't fixed. I'm not able to reopen that ticket.
non_comp
aws cloudwatch log subscription filter perpetual diff when filter pattern community note please vote on this issue by adding a 👍 to the original issue to help the community and maintainers prioritize this request please do not leave or other comments that do not add relevant new information or questions they generate extra noise for issue followers and do not help prioritize the request if you are interested in working on this issue or have submitted a pull request please leave a comment terraform cli and terraform aws provider version terraform v terraform on linux provider registry terraform io hashicorp aws your version of terraform is out of date the latest version is you can update by downloading from affected resource s aws cloudwatch log subscription filter terraform configuration files please include all terraform configurations required to reproduce the bug bug reports without a functional reproduction may be closed without investigation hcl resource aws cloudwatch log subscription filter foo name foo role arn arn aws iam log group name aws lambda filter pattern destination arn arn aws firehose distribution random debug output see debug output on linked ticket if that s not enough i can provide a fresh one expected behavior the resource is applied modified once actual behavior the same diff shows for each apply over and over aws cloudwatch log subscription filter lambda will be updated in place resource aws cloudwatch log subscription filter lambda filter pattern id cwlsf name newrelic logs unchanged attributes hidden steps to reproduce terraform apply create the resource terraform apply run again to see the perpetual diff references filter pattern should match all records as per amazon documentation the workaround is to use non empty pattern preferably a string or character that is on every line like suggested by fanefonseka on linked issue i really cannot use the workaround because some of our logs don t contain the date would be matched by this is a earlier ticket describing the same issue that wasn t fixed i m not able to reopen that ticket
0
7,645
9,913,125,860
IssuesEvent
2019-06-28 10:50:22
polylang/polylang
https://api.github.com/repos/polylang/polylang
closed
Fatal error in combination with Yoast SEO + Social Warfare
Yoast seo compatibility
## Plugins activated Polylang 2.6 Yoast SEO 11.5 Social Warfare 3.6.1 ## Issue description The combinaison of Polylang + Yoast SEO + Social Warfare triggers a fatal error when visiting the front: ``` PHP Fatal error: Uncaught Error: Call to a member function get() on null in /wp-includes/query.php:28 Stack trace: #0 /polylang/modules/plugins/wpseo.php(215): get_query_var('sitemap') #1 /wp-includes/class-wp-hook.php(286): PLL_WPSEO->before_sitemap(Object(WP_Query)) #2 /wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters('', Array) #3 /wp-includes/plugin.php(531): WP_Hook->do_action(Array) #4 /wp-includes/class-wp-query.php(1753): do_action_ref_array('pre_get_posts', Array) #5 /wp-includes/class-wp-query.php(3404): WP_Query->get_posts() #6 /wp-includes/post.php(1961): WP_Query->query(Array) #7 /wp-content/plugins/social-warfare/lib/utilities/SWP_Database_Mig in //wp-includes/query.php on line 28 ``` This issue comes from this commit: https://github.com/polylang/polylang/commit/e09aac058c46e42f5e0e0426e0606a401e45eb5c
True
Fatal error in combination with Yoast SEO + Social Warfare - ## Plugins activated Polylang 2.6 Yoast SEO 11.5 Social Warfare 3.6.1 ## Issue description The combinaison of Polylang + Yoast SEO + Social Warfare triggers a fatal error when visiting the front: ``` PHP Fatal error: Uncaught Error: Call to a member function get() on null in /wp-includes/query.php:28 Stack trace: #0 /polylang/modules/plugins/wpseo.php(215): get_query_var('sitemap') #1 /wp-includes/class-wp-hook.php(286): PLL_WPSEO->before_sitemap(Object(WP_Query)) #2 /wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters('', Array) #3 /wp-includes/plugin.php(531): WP_Hook->do_action(Array) #4 /wp-includes/class-wp-query.php(1753): do_action_ref_array('pre_get_posts', Array) #5 /wp-includes/class-wp-query.php(3404): WP_Query->get_posts() #6 /wp-includes/post.php(1961): WP_Query->query(Array) #7 /wp-content/plugins/social-warfare/lib/utilities/SWP_Database_Mig in //wp-includes/query.php on line 28 ``` This issue comes from this commit: https://github.com/polylang/polylang/commit/e09aac058c46e42f5e0e0426e0606a401e45eb5c
comp
fatal error in combination with yoast seo social warfare plugins activated polylang yoast seo social warfare issue description the combinaison of polylang yoast seo social warfare triggers a fatal error when visiting the front php fatal error uncaught error call to a member function get on null in wp includes query php stack trace polylang modules plugins wpseo php get query var sitemap wp includes class wp hook php pll wpseo before sitemap object wp query wp includes class wp hook php wp hook apply filters array wp includes plugin php wp hook do action array wp includes class wp query php do action ref array pre get posts array wp includes class wp query php wp query get posts wp includes post php wp query query array wp content plugins social warfare lib utilities swp database mig in wp includes query php on line this issue comes from this commit
1
343,623
24,776,088,139
IssuesEvent
2022-10-23 18:54:06
hochschule-darmstadt/MetaAutoML
https://api.github.com/repos/hochschule-darmstadt/MetaAutoML
opened
Main README References Makefile Which Does Not Exist
documentation good first issue
**Describe the bug** The shell command will fail because there is not Makefile present: https://github.com/hochschule-darmstadt/MetaAutoML/blob/fe626c711757b56586da1a0dfe3e9a6dc518e6a3/README.md?plain=1#L29-L31 **To Reproduce** Run suggested command in shell **Expected behavior** Update Readme with more recent information
1.0
Main README References Makefile Which Does Not Exist - **Describe the bug** The shell command will fail because there is not Makefile present: https://github.com/hochschule-darmstadt/MetaAutoML/blob/fe626c711757b56586da1a0dfe3e9a6dc518e6a3/README.md?plain=1#L29-L31 **To Reproduce** Run suggested command in shell **Expected behavior** Update Readme with more recent information
non_comp
main readme references makefile which does not exist describe the bug the shell command will fail because there is not makefile present to reproduce run suggested command in shell expected behavior update readme with more recent information
0
10,433
12,396,130,333
IssuesEvent
2020-05-20 19:57:01
facebook/hhvm
https://api.github.com/repos/facebook/hhvm
closed
segfault on failing ctors
crash php5 incompatibility
Similar to #4893, failing ctors are fundamentally broken. On parameter parsing failure a mere warning is issued, even for constructors. This means you wind up with a broken object, and most likely eventually leads to segfaults. ``` <?php $obj = new DateInterval(tmpfile()); var_dump($obj->y); ?> ``` ``` Warning: __construct() expects this parameter 1 to be string, resource given in /home/bjori/tmp/hhvm/test.php on line 3 Program received signal SIGSEGV, Segmentation fault. HPHP::c_DateInterval_ni___get (this_=<optimized out>, member=...) at /home/bjori/tmp/hhvm/hphp/runtime/ext/datetime/ext_datetime.cpp:480 480 return data->m_di->getYears(); (gdb) bt #0 HPHP::c_DateInterval_ni___get (this_=<optimized out>, member=...) at /home/bjori/tmp/hhvm/hphp/runtime/ext/datetime/ext_datetime.cpp:480 #1 0x0000000002c2576f in HPHP::Native::callFuncInt64Impl ( f=f@entry=0x202d255 <HPHP::c_DateInterval_ni___get(HPHP::ObjectData*, HPHP::Variant) at /home/bjori/tmp/hhvm/hphp/runtime/ext/datetime/ext_datetime.cpp:476>, GP=GP@entry=0x7fffffffba20, GP_count=<optimized out>, SIMD=SIMD@entry=0x7fffffffb9e0, SIMD_count=SIMD_count@entry=0) at /home/bjori/tmp/hhvm/hphp/runtime/vm/native-func-caller.h:810 #2 0x0000000002c04d6a in HPHP::Native::callFunc<false, false> (func=func@entry=0x7fffe6df2160, ctx=0x7fffe501a0d0, args=args@entry=0x7fffe08bff40, ret=...) at /home/bjori/tmp/hhvm/hphp/runtime/vm/native.cpp:176 #3 0x000000000181702b in HPHP::Native::methodWrapper<false, false> (ar=0x7fffe08bff50) at /home/bjori/tmp/hhvm/hphp/runtime/vm/native.cpp:419 #4 0x0000000008a00144 in ?? () #5 0x0000000002bd3639 in enterTCHelper () at /home/bjori/tmp/hhvm/hphp/runtime/vm/jit/translator-asm-helpers.S:61 #6 0x0000000001b8427e in HPHP::jit::x64::BackEnd::enterTCHelper (this=<optimized out>, start=<optimized out>, stashedAR=<optimized out>) at /home/bjori/tmp/hhvm/hphp/runtime/vm/jit/back-end-x64.cpp:118 #7 0x0000000001aef823 in HPHP::jit::MCGenerator::enterTC (this=0x7fffe5c07400, start=0x4e001e0 "L\211\377H\211\336L9\375u\t\350\333\062\302\374\377\340\017\vA\217G\bL\207\375\350\313\062\302\374H\205\300x\vL\207\375A\377w\b\377\340\017\vH\367\330I\213l$ I\213\\$\020\377\340\017\v\017\v", '\314' <repeats 13 times>, "H\211\357H\211\336\350\331\026\336\375\377\340\017\v\314UH\211\345\377w\b\377\067H\307", <incomplete sequence \306>, stashedAR=stashedAR@entry=0x7fffe08bff50) at /home/bjori/tmp/hhvm/hphp/runtime/vm/jit/mc-generator.cpp:1104 #8 0x000000000174aa70 in enterTCAtPrologue (start=<optimized out>, ar=0x7fffe08bff50, this=<optimized out>) at /home/bjori/tmp/hhvm/hphp/runtime/vm/jit/mc-generator.h:251 #9 HPHP::enterVMAtFunc (enterFnAr=enterFnAr@entry=0x7fffe08bff50, stk=stk@entry=HPHP::StackArgsState::Untrimmed) at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:1949 #10 0x000000000174b3f7 in HPHP::enterVM (ar=ar@entry=0x7fffe08bff50, stk=stk@entry=HPHP::StackArgsState::Untrimmed, resumable=resumable@entry=0x0, exception=exception@entry=0x0) at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:2018 #11 0x0000000002bc9c33 in HPHP::ExecutionContext::invokeFuncFew (this=0x7fffe50064b0, retptr=retptr@entry=0x7fffffffc2c0, f=f@entry=0x7fffe6df2160, thisOrCls=<optimized out>, invName=invName@entry=0x0, argc=1, argv=0x7fffffffc2b0) at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:2279 #12 0x00000000013c8fd5 in invokeMethod (args=..., meth=0x7fffe6df2160, obj=<optimized out>, this=<optimized out>) at /home/bjori/tmp/hhvm/hphp/runtime/base/execution-context-inl.h:244 #13 operator() (this=0x7fffffffc310) at /home/bjori/tmp/hhvm/hphp/runtime/base/object-data.cpp:1255 #14 HPHP::(anonymous namespace)::magic_prop_impl<HPHP::(anonymous namespace)::MagicInvoker> ( retval=retval@entry=0x7fffffffc530, key=key@entry=0x7fffe6c0ad60, info=..., invoker=...) at /home/bjori/tmp/hhvm/hphp/runtime/base/object-data.cpp:1239 #15 0x0000000002bc9536 in HPHP::ObjectData::invokeGet (this=this@entry=0x7fffe501a0d0, retval=retval@entry=0x7fffffffc530, key=key@entry=0x7fffe6c0ad60) at /home/bjori/tmp/hhvm/hphp/runtime/base/object-data.cpp:1286 #16 0x00000000013ca0ef in HPHP::ObjectData::propImpl<true, false> (this=this@entry=0x7fffe501a0d0, tvScratch=tvScratch@entry=0x7fffffffc510, tvRef=tvRef@entry=0x7fffffffc530, ctx=ctx@entry=0x0, key=0x7fffe6c0ad60) at /home/bjori/tmp/hhvm/hphp/runtime/base/object-data.cpp:1395 #17 0x00000000013ca177 in HPHP::ObjectData::propW (this=this@entry=0x7fffe501a0d0, tvScratch=tvScratch@entry=0x7fffffffc510, tvRef=tvRef@entry=0x7fffffffc530, ctx=ctx@entry=0x0, key=<optimized out>) at /home/bjori/tmp/hhvm/hphp/runtime/base/object-data.cpp:1439 #18 0x00000000016d6683 in Prop<true, false, false, false, (HPHP::KeyType)0> (key=..., base=<optimized out>, ctx=0x0, tvRef=..., tvScratch=...) at /home/bjori/tmp/hhvm/hphp/runtime/vm/member-operations.h:1861 #19 HPHP::memberHelperPre<false, true, false, false, false, 0u, (HPHP::VectorLeaveCode)0, true> ( pc=@0x7fffffffc5c0: 0x7fffe08420ec "\256\002\006\023\001", mstate=...) at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:3226 #20 0x00000000016d6967 in HPHP::getHelperPre<true, true, (HPHP::VectorLeaveCode)0> ( pc=@0x7fffffffc5c0: 0x7fffe08420ec "\256\002\006\023\001", mstate=...) at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:3299 #21 0x00000000016d697e in HPHP::getHelper (pc=@0x7fffffffc5c0: 0x7fffe08420ec "\256\002\006\023\001", mstate=...) at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:3326 #22 0x0000000001735dbc in HPHP::iopFPassM (pc=@0x7fffffffc5c0: 0x7fffe08420ec "\256\002\006\023\001") at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:6066 #23 0x00000000017361ec in HPHP::interpOneFPassM (ar=<optimized out>, sp=<optimized out>, pcOff=<optimized out>) at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:7377 #24 0x0000000004e004a1 in ?? () #25 0x0000000002bd3639 in enterTCHelper () at /home/bjori/tmp/hhvm/hphp/runtime/vm/jit/translator-asm-helpers.S:61 #26 0x0000000001b8427e in HPHP::jit::x64::BackEnd::enterTCHelper (this=<optimized out>, start=<optimized out>, stashedAR=<optimized out>) at /home/bjori/tmp/hhvm/hphp/runtime/vm/jit/back-end-x64.cpp:118 #27 0x0000000001aef823 in HPHP::jit::MCGenerator::enterTC (this=0x7fffe5c07400, start=0x4e00230 "H\211\357H\211\336\350\331\026\336\375\377\340\017\v\314UH\211\345\377w\b\377\067H\307", <incomplete sequence \306>, stashedAR=stashedAR@entry=0x0) at /home/bjori/tmp/hhvm/hphp/runtime/vm/jit/mc-generator.cpp:1104 #28 0x00000000016a91cc in HPHP::jit::MCGenerator::enterTCAfterPrologue (this=<optimized out>, start=<optimized out>) at /home/bjori/tmp/hhvm/hphp/runtime/vm/jit/mc-generator.h:255 #29 0x000000000174ac01 in HPHP::enterVMAtFunc (enterFnAr=enterFnAr@entry=0x7fffe08bffc0, stk=stk@entry=HPHP::StackArgsState::Untrimmed) at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:1960 #30 0x000000000174b3f7 in HPHP::enterVM (ar=ar@entry=0x7fffe08bffc0, stk=stk@entry=HPHP::StackArgsState::Untrimmed, resumable=resumable@entry=0x0, exception=exception@entry=0x0) at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:2018 #31 0x0000000002bd2cdd in HPHP::ExecutionContext::invokeFunc (this=this@entry=0x7fffe50064b0, retptr=retptr@entry=0x7fffffffcda0, f=<optimized out>, args_=..., this_=this_@entry=0x0, cls=cls@entry=0x0, varEnv=0x7fffe5011240, invName=0x0, flags=HPHP::ExecutionContext::InvokePseudoMain) at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:2185 #32 0x0000000002c12680 in HPHP::ExecutionContext::invokeUnit (this=0x7fffe50064b0, retval=retval@entry=0x7fffffffcda0, unit=0x7fffe6fed440) at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:2379 #33 0x000000000142ab60 in HPHP::invoke_file_impl (res=..., path=..., once=once@entry=true, currentDir=currentDir@entry=0x2cc8a92 "") at /home/bjori/tmp/hhvm/hphp/runtime/base/builtin-functions.cpp:703 #34 0x0000000002c12579 in HPHP::invoke_file (s=..., once=once@entry=true, currentDir=currentDir@entry=0x2cc8a92 "") at /home/bjori/tmp/hhvm/hphp/runtime/base/builtin-functions.cpp:716 #35 0x000000000142cef0 in HPHP::include_impl_invoke (file=..., once=once@entry=true, currentDir=currentDir@entry=0x2cc8a92 "") at /home/bjori/tmp/hhvm/hphp/runtime/base/builtin-functions.cpp:738 #36 0x00000000014737a1 in HPHP::hphp_invoke (context=0x7fffe50064b0, cmd="test.php", func=func@entry=false, funcParams=..., funcRet=..., reqInitFunc="", reqInitDoc="", error=@0x7fffffffcfdd: false, errorMsg="", once=true, warmupOnly=false, richErrorMsg=false) at /home/bjori/tmp/hhvm/hphp/runtime/base/program-functions.cpp:1929 #37 0x0000000001473a98 in HPHP::hphp_invoke_simple (filename="test.php", warmupOnly=warmupOnly@entry=false) at /home/bjori/tmp/hhvm/hphp/runtime/base/program-functions.cpp:1890 #38 0x000000000147b8b5 in HPHP::execute_program_impl (argc=argc@entry=2, argv=argv@entry=0x7fffffffdcd8) at /home/bjori/tmp/hhvm/hphp/runtime/base/program-functions.cpp:1621 #39 0x000000000147c56e in HPHP::execute_program (argc=argc@entry=2, argv=argv@entry=0x7fffffffdcd8) at /home/bjori/tmp/hhvm/hphp/runtime/base/program-functions.cpp:1021 #40 0x00000000013640b9 in main (argc=2, argv=0x7fffffffdcd8) at /home/bjori/tmp/hhvm/hphp/hhvm/main.cpp:60 ```
True
segfault on failing ctors - Similar to #4893, failing ctors are fundamentally broken. On parameter parsing failure a mere warning is issued, even for constructors. This means you wind up with a broken object, and most likely eventually leads to segfaults. ``` <?php $obj = new DateInterval(tmpfile()); var_dump($obj->y); ?> ``` ``` Warning: __construct() expects this parameter 1 to be string, resource given in /home/bjori/tmp/hhvm/test.php on line 3 Program received signal SIGSEGV, Segmentation fault. HPHP::c_DateInterval_ni___get (this_=<optimized out>, member=...) at /home/bjori/tmp/hhvm/hphp/runtime/ext/datetime/ext_datetime.cpp:480 480 return data->m_di->getYears(); (gdb) bt #0 HPHP::c_DateInterval_ni___get (this_=<optimized out>, member=...) at /home/bjori/tmp/hhvm/hphp/runtime/ext/datetime/ext_datetime.cpp:480 #1 0x0000000002c2576f in HPHP::Native::callFuncInt64Impl ( f=f@entry=0x202d255 <HPHP::c_DateInterval_ni___get(HPHP::ObjectData*, HPHP::Variant) at /home/bjori/tmp/hhvm/hphp/runtime/ext/datetime/ext_datetime.cpp:476>, GP=GP@entry=0x7fffffffba20, GP_count=<optimized out>, SIMD=SIMD@entry=0x7fffffffb9e0, SIMD_count=SIMD_count@entry=0) at /home/bjori/tmp/hhvm/hphp/runtime/vm/native-func-caller.h:810 #2 0x0000000002c04d6a in HPHP::Native::callFunc<false, false> (func=func@entry=0x7fffe6df2160, ctx=0x7fffe501a0d0, args=args@entry=0x7fffe08bff40, ret=...) at /home/bjori/tmp/hhvm/hphp/runtime/vm/native.cpp:176 #3 0x000000000181702b in HPHP::Native::methodWrapper<false, false> (ar=0x7fffe08bff50) at /home/bjori/tmp/hhvm/hphp/runtime/vm/native.cpp:419 #4 0x0000000008a00144 in ?? () #5 0x0000000002bd3639 in enterTCHelper () at /home/bjori/tmp/hhvm/hphp/runtime/vm/jit/translator-asm-helpers.S:61 #6 0x0000000001b8427e in HPHP::jit::x64::BackEnd::enterTCHelper (this=<optimized out>, start=<optimized out>, stashedAR=<optimized out>) at /home/bjori/tmp/hhvm/hphp/runtime/vm/jit/back-end-x64.cpp:118 #7 0x0000000001aef823 in HPHP::jit::MCGenerator::enterTC (this=0x7fffe5c07400, start=0x4e001e0 "L\211\377H\211\336L9\375u\t\350\333\062\302\374\377\340\017\vA\217G\bL\207\375\350\313\062\302\374H\205\300x\vL\207\375A\377w\b\377\340\017\vH\367\330I\213l$ I\213\\$\020\377\340\017\v\017\v", '\314' <repeats 13 times>, "H\211\357H\211\336\350\331\026\336\375\377\340\017\v\314UH\211\345\377w\b\377\067H\307", <incomplete sequence \306>, stashedAR=stashedAR@entry=0x7fffe08bff50) at /home/bjori/tmp/hhvm/hphp/runtime/vm/jit/mc-generator.cpp:1104 #8 0x000000000174aa70 in enterTCAtPrologue (start=<optimized out>, ar=0x7fffe08bff50, this=<optimized out>) at /home/bjori/tmp/hhvm/hphp/runtime/vm/jit/mc-generator.h:251 #9 HPHP::enterVMAtFunc (enterFnAr=enterFnAr@entry=0x7fffe08bff50, stk=stk@entry=HPHP::StackArgsState::Untrimmed) at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:1949 #10 0x000000000174b3f7 in HPHP::enterVM (ar=ar@entry=0x7fffe08bff50, stk=stk@entry=HPHP::StackArgsState::Untrimmed, resumable=resumable@entry=0x0, exception=exception@entry=0x0) at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:2018 #11 0x0000000002bc9c33 in HPHP::ExecutionContext::invokeFuncFew (this=0x7fffe50064b0, retptr=retptr@entry=0x7fffffffc2c0, f=f@entry=0x7fffe6df2160, thisOrCls=<optimized out>, invName=invName@entry=0x0, argc=1, argv=0x7fffffffc2b0) at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:2279 #12 0x00000000013c8fd5 in invokeMethod (args=..., meth=0x7fffe6df2160, obj=<optimized out>, this=<optimized out>) at /home/bjori/tmp/hhvm/hphp/runtime/base/execution-context-inl.h:244 #13 operator() (this=0x7fffffffc310) at /home/bjori/tmp/hhvm/hphp/runtime/base/object-data.cpp:1255 #14 HPHP::(anonymous namespace)::magic_prop_impl<HPHP::(anonymous namespace)::MagicInvoker> ( retval=retval@entry=0x7fffffffc530, key=key@entry=0x7fffe6c0ad60, info=..., invoker=...) at /home/bjori/tmp/hhvm/hphp/runtime/base/object-data.cpp:1239 #15 0x0000000002bc9536 in HPHP::ObjectData::invokeGet (this=this@entry=0x7fffe501a0d0, retval=retval@entry=0x7fffffffc530, key=key@entry=0x7fffe6c0ad60) at /home/bjori/tmp/hhvm/hphp/runtime/base/object-data.cpp:1286 #16 0x00000000013ca0ef in HPHP::ObjectData::propImpl<true, false> (this=this@entry=0x7fffe501a0d0, tvScratch=tvScratch@entry=0x7fffffffc510, tvRef=tvRef@entry=0x7fffffffc530, ctx=ctx@entry=0x0, key=0x7fffe6c0ad60) at /home/bjori/tmp/hhvm/hphp/runtime/base/object-data.cpp:1395 #17 0x00000000013ca177 in HPHP::ObjectData::propW (this=this@entry=0x7fffe501a0d0, tvScratch=tvScratch@entry=0x7fffffffc510, tvRef=tvRef@entry=0x7fffffffc530, ctx=ctx@entry=0x0, key=<optimized out>) at /home/bjori/tmp/hhvm/hphp/runtime/base/object-data.cpp:1439 #18 0x00000000016d6683 in Prop<true, false, false, false, (HPHP::KeyType)0> (key=..., base=<optimized out>, ctx=0x0, tvRef=..., tvScratch=...) at /home/bjori/tmp/hhvm/hphp/runtime/vm/member-operations.h:1861 #19 HPHP::memberHelperPre<false, true, false, false, false, 0u, (HPHP::VectorLeaveCode)0, true> ( pc=@0x7fffffffc5c0: 0x7fffe08420ec "\256\002\006\023\001", mstate=...) at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:3226 #20 0x00000000016d6967 in HPHP::getHelperPre<true, true, (HPHP::VectorLeaveCode)0> ( pc=@0x7fffffffc5c0: 0x7fffe08420ec "\256\002\006\023\001", mstate=...) at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:3299 #21 0x00000000016d697e in HPHP::getHelper (pc=@0x7fffffffc5c0: 0x7fffe08420ec "\256\002\006\023\001", mstate=...) at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:3326 #22 0x0000000001735dbc in HPHP::iopFPassM (pc=@0x7fffffffc5c0: 0x7fffe08420ec "\256\002\006\023\001") at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:6066 #23 0x00000000017361ec in HPHP::interpOneFPassM (ar=<optimized out>, sp=<optimized out>, pcOff=<optimized out>) at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:7377 #24 0x0000000004e004a1 in ?? () #25 0x0000000002bd3639 in enterTCHelper () at /home/bjori/tmp/hhvm/hphp/runtime/vm/jit/translator-asm-helpers.S:61 #26 0x0000000001b8427e in HPHP::jit::x64::BackEnd::enterTCHelper (this=<optimized out>, start=<optimized out>, stashedAR=<optimized out>) at /home/bjori/tmp/hhvm/hphp/runtime/vm/jit/back-end-x64.cpp:118 #27 0x0000000001aef823 in HPHP::jit::MCGenerator::enterTC (this=0x7fffe5c07400, start=0x4e00230 "H\211\357H\211\336\350\331\026\336\375\377\340\017\v\314UH\211\345\377w\b\377\067H\307", <incomplete sequence \306>, stashedAR=stashedAR@entry=0x0) at /home/bjori/tmp/hhvm/hphp/runtime/vm/jit/mc-generator.cpp:1104 #28 0x00000000016a91cc in HPHP::jit::MCGenerator::enterTCAfterPrologue (this=<optimized out>, start=<optimized out>) at /home/bjori/tmp/hhvm/hphp/runtime/vm/jit/mc-generator.h:255 #29 0x000000000174ac01 in HPHP::enterVMAtFunc (enterFnAr=enterFnAr@entry=0x7fffe08bffc0, stk=stk@entry=HPHP::StackArgsState::Untrimmed) at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:1960 #30 0x000000000174b3f7 in HPHP::enterVM (ar=ar@entry=0x7fffe08bffc0, stk=stk@entry=HPHP::StackArgsState::Untrimmed, resumable=resumable@entry=0x0, exception=exception@entry=0x0) at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:2018 #31 0x0000000002bd2cdd in HPHP::ExecutionContext::invokeFunc (this=this@entry=0x7fffe50064b0, retptr=retptr@entry=0x7fffffffcda0, f=<optimized out>, args_=..., this_=this_@entry=0x0, cls=cls@entry=0x0, varEnv=0x7fffe5011240, invName=0x0, flags=HPHP::ExecutionContext::InvokePseudoMain) at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:2185 #32 0x0000000002c12680 in HPHP::ExecutionContext::invokeUnit (this=0x7fffe50064b0, retval=retval@entry=0x7fffffffcda0, unit=0x7fffe6fed440) at /home/bjori/tmp/hhvm/hphp/runtime/vm/bytecode.cpp:2379 #33 0x000000000142ab60 in HPHP::invoke_file_impl (res=..., path=..., once=once@entry=true, currentDir=currentDir@entry=0x2cc8a92 "") at /home/bjori/tmp/hhvm/hphp/runtime/base/builtin-functions.cpp:703 #34 0x0000000002c12579 in HPHP::invoke_file (s=..., once=once@entry=true, currentDir=currentDir@entry=0x2cc8a92 "") at /home/bjori/tmp/hhvm/hphp/runtime/base/builtin-functions.cpp:716 #35 0x000000000142cef0 in HPHP::include_impl_invoke (file=..., once=once@entry=true, currentDir=currentDir@entry=0x2cc8a92 "") at /home/bjori/tmp/hhvm/hphp/runtime/base/builtin-functions.cpp:738 #36 0x00000000014737a1 in HPHP::hphp_invoke (context=0x7fffe50064b0, cmd="test.php", func=func@entry=false, funcParams=..., funcRet=..., reqInitFunc="", reqInitDoc="", error=@0x7fffffffcfdd: false, errorMsg="", once=true, warmupOnly=false, richErrorMsg=false) at /home/bjori/tmp/hhvm/hphp/runtime/base/program-functions.cpp:1929 #37 0x0000000001473a98 in HPHP::hphp_invoke_simple (filename="test.php", warmupOnly=warmupOnly@entry=false) at /home/bjori/tmp/hhvm/hphp/runtime/base/program-functions.cpp:1890 #38 0x000000000147b8b5 in HPHP::execute_program_impl (argc=argc@entry=2, argv=argv@entry=0x7fffffffdcd8) at /home/bjori/tmp/hhvm/hphp/runtime/base/program-functions.cpp:1621 #39 0x000000000147c56e in HPHP::execute_program (argc=argc@entry=2, argv=argv@entry=0x7fffffffdcd8) at /home/bjori/tmp/hhvm/hphp/runtime/base/program-functions.cpp:1021 #40 0x00000000013640b9 in main (argc=2, argv=0x7fffffffdcd8) at /home/bjori/tmp/hhvm/hphp/hhvm/main.cpp:60 ```
comp
segfault on failing ctors similar to failing ctors are fundamentally broken on parameter parsing failure a mere warning is issued even for constructors this means you wind up with a broken object and most likely eventually leads to segfaults php obj new dateinterval tmpfile var dump obj y warning construct expects this parameter to be string resource given in home bjori tmp hhvm test php on line program received signal sigsegv segmentation fault hphp c dateinterval ni get this member at home bjori tmp hhvm hphp runtime ext datetime ext datetime cpp return data m di getyears gdb bt hphp c dateinterval ni get this member at home bjori tmp hhvm hphp runtime ext datetime ext datetime cpp in hphp native f f entry gp gp entry gp count simd simd entry simd count simd count entry at home bjori tmp hhvm hphp runtime vm native func caller h in hphp native callfunc func func entry ctx args args entry ret at home bjori tmp hhvm hphp runtime vm native cpp in hphp native methodwrapper ar at home bjori tmp hhvm hphp runtime vm native cpp in in entertchelper at home bjori tmp hhvm hphp runtime vm jit translator asm helpers s in hphp jit backend entertchelper this start stashedar at home bjori tmp hhvm hphp runtime vm jit back end cpp in hphp jit mcgenerator entertc this start l t va bl vl b vh i v v h v b stashedar stashedar entry at home bjori tmp hhvm hphp runtime vm jit mc generator cpp in entertcatprologue start ar this at home bjori tmp hhvm hphp runtime vm jit mc generator h hphp entervmatfunc enterfnar enterfnar entry stk stk entry hphp stackargsstate untrimmed at home bjori tmp hhvm hphp runtime vm bytecode cpp in hphp entervm ar ar entry stk stk entry hphp stackargsstate untrimmed resumable resumable entry exception exception entry at home bjori tmp hhvm hphp runtime vm bytecode cpp in hphp executioncontext invokefuncfew this retptr retptr entry f f entry thisorcls invname invname entry argc argv at home bjori tmp hhvm hphp runtime vm bytecode cpp in invokemethod args meth obj this at home bjori tmp hhvm hphp runtime base execution context inl h operator this at home bjori tmp hhvm hphp runtime base object data cpp hphp anonymous namespace magic prop impl retval retval entry key key entry info invoker at home bjori tmp hhvm hphp runtime base object data cpp in hphp objectdata invokeget this this entry retval retval entry key key entry at home bjori tmp hhvm hphp runtime base object data cpp in hphp objectdata propimpl this this entry tvscratch tvscratch entry tvref tvref entry ctx ctx entry key at home bjori tmp hhvm hphp runtime base object data cpp in hphp objectdata propw this this entry tvscratch tvscratch entry tvref tvref entry ctx ctx entry key at home bjori tmp hhvm hphp runtime base object data cpp in prop key base ctx tvref tvscratch at home bjori tmp hhvm hphp runtime vm member operations h hphp memberhelperpre pc mstate at home bjori tmp hhvm hphp runtime vm bytecode cpp in hphp gethelperpre pc mstate at home bjori tmp hhvm hphp runtime vm bytecode cpp in hphp gethelper pc mstate at home bjori tmp hhvm hphp runtime vm bytecode cpp in hphp iopfpassm pc at home bjori tmp hhvm hphp runtime vm bytecode cpp in hphp interponefpassm ar sp pcoff at home bjori tmp hhvm hphp runtime vm bytecode cpp in in entertchelper at home bjori tmp hhvm hphp runtime vm jit translator asm helpers s in hphp jit backend entertchelper this start stashedar at home bjori tmp hhvm hphp runtime vm jit back end cpp in hphp jit mcgenerator entertc this start h v b stashedar stashedar entry at home bjori tmp hhvm hphp runtime vm jit mc generator cpp in hphp jit mcgenerator entertcafterprologue this start at home bjori tmp hhvm hphp runtime vm jit mc generator h in hphp entervmatfunc enterfnar enterfnar entry stk stk entry hphp stackargsstate untrimmed at home bjori tmp hhvm hphp runtime vm bytecode cpp in hphp entervm ar ar entry stk stk entry hphp stackargsstate untrimmed resumable resumable entry exception exception entry at home bjori tmp hhvm hphp runtime vm bytecode cpp in hphp executioncontext invokefunc this this entry retptr retptr entry f args this this entry cls cls entry varenv invname flags hphp executioncontext invokepseudomain at home bjori tmp hhvm hphp runtime vm bytecode cpp in hphp executioncontext invokeunit this retval retval entry unit at home bjori tmp hhvm hphp runtime vm bytecode cpp in hphp invoke file impl res path once once entry true currentdir currentdir entry at home bjori tmp hhvm hphp runtime base builtin functions cpp in hphp invoke file s once once entry true currentdir currentdir entry at home bjori tmp hhvm hphp runtime base builtin functions cpp in hphp include impl invoke file once once entry true currentdir currentdir entry at home bjori tmp hhvm hphp runtime base builtin functions cpp in hphp hphp invoke context cmd test php func func entry false funcparams funcret reqinitfunc reqinitdoc error false errormsg once true warmuponly false richerrormsg false at home bjori tmp hhvm hphp runtime base program functions cpp in hphp hphp invoke simple filename test php warmuponly warmuponly entry false at home bjori tmp hhvm hphp runtime base program functions cpp in hphp execute program impl argc argc entry argv argv entry at home bjori tmp hhvm hphp runtime base program functions cpp in hphp execute program argc argc entry argv argv entry at home bjori tmp hhvm hphp runtime base program functions cpp in main argc argv at home bjori tmp hhvm hphp hhvm main cpp
1
13,642
16,243,705,541
IssuesEvent
2021-05-07 12:36:07
spring-projects-experimental/spring-native
https://api.github.com/repos/spring-projects-experimental/spring-native
closed
Add Spring integration support
type: compatibility
I was wondering is Spring integration is supported or what is the current status of it?
True
Add Spring integration support - I was wondering is Spring integration is supported or what is the current status of it?
comp
add spring integration support i was wondering is spring integration is supported or what is the current status of it
1
6,151
8,560,760,539
IssuesEvent
2018-11-09 02:54:17
alichtman/shallow-backup
https://api.github.com/repos/alichtman/shallow-backup
closed
Linux Compatibility
compatibility good first issue help wanted
With some more path checking we could make this accessible to both Linux and Mac devs. Then I'll have to look into potential deployment options.
True
Linux Compatibility - With some more path checking we could make this accessible to both Linux and Mac devs. Then I'll have to look into potential deployment options.
comp
linux compatibility with some more path checking we could make this accessible to both linux and mac devs then i ll have to look into potential deployment options
1
65,369
7,874,778,444
IssuesEvent
2018-06-25 18:11:20
dotnet/roslyn
https://api.github.com/repos/dotnet/roslyn
closed
Missing IOperation - Constructor call on struct creates IInvalidOperation
Area-Compilers New Feature - IOperation Question Resolution-By Design _Product-level triaged
**Version Used**: 2.9.0-beta7-63018-03 **Steps to Reproduce**: 1. Create CFG from source which contains call to struct constructor: ``` var source = @"class Program{ int Main() { var d = new DateTime(); }}"; var compilation = Compile(source); var cfg = GetTreeCFG(compilation); ``` Compilation is with `flow-analysis` and C#7. [Compile and GetTreeCFG implementations](https://gist.github.com/mvacha/6b8102e0c3c3eba90ee750b87fb2c122) (not interesting) **Expected Behavior**: Something like: IStructCreationOperation which does not exist yet. **Actual Behavior**: Tree contains InvalidOperation inside the assignment to the local symbol `d` `IInvalidOperation (OperationKind.Invalid, Type: DateTime, IsInvalid) (Syntax: 'new DateTime(10)')`
1.0
Missing IOperation - Constructor call on struct creates IInvalidOperation - **Version Used**: 2.9.0-beta7-63018-03 **Steps to Reproduce**: 1. Create CFG from source which contains call to struct constructor: ``` var source = @"class Program{ int Main() { var d = new DateTime(); }}"; var compilation = Compile(source); var cfg = GetTreeCFG(compilation); ``` Compilation is with `flow-analysis` and C#7. [Compile and GetTreeCFG implementations](https://gist.github.com/mvacha/6b8102e0c3c3eba90ee750b87fb2c122) (not interesting) **Expected Behavior**: Something like: IStructCreationOperation which does not exist yet. **Actual Behavior**: Tree contains InvalidOperation inside the assignment to the local symbol `d` `IInvalidOperation (OperationKind.Invalid, Type: DateTime, IsInvalid) (Syntax: 'new DateTime(10)')`
non_comp
missing ioperation constructor call on struct creates iinvalidoperation version used steps to reproduce create cfg from source which contains call to struct constructor var source class program int main var d new datetime var compilation compile source var cfg gettreecfg compilation compilation is with flow analysis and c not interesting expected behavior something like istructcreationoperation which does not exist yet actual behavior tree contains invalidoperation inside the assignment to the local symbol d iinvalidoperation operationkind invalid type datetime isinvalid syntax new datetime
0
4,278
7,030,161,101
IssuesEvent
2017-12-26 08:08:44
pojome/elementor
https://api.github.com/repos/pojome/elementor
closed
Plugin compatibility : WP Offload S3
compatibility Waiting For Input
Hi, There seem to be an issue with WP Offload S3 - plugin to offload static content to Amazon S3 bucket ( and Amazon CloudFront ). https://deliciousbrains.com/wp-offload-s3/ In "edit with Elementor" mode images are show served from CloudFront url but in "regular" page/post view images are served from site url which results in 404 error. Attached are screenshots of both "modes" ![2017-12-21_07h24_53](https://user-images.githubusercontent.com/591108/34243379-c3bb68a0-e620-11e7-90b6-9bf80539bed6.png) ![2017-12-21_07h24_39](https://user-images.githubusercontent.com/591108/34243381-c6c60fc8-e620-11e7-9b99-461243c193eb.png)
True
Plugin compatibility : WP Offload S3 - Hi, There seem to be an issue with WP Offload S3 - plugin to offload static content to Amazon S3 bucket ( and Amazon CloudFront ). https://deliciousbrains.com/wp-offload-s3/ In "edit with Elementor" mode images are show served from CloudFront url but in "regular" page/post view images are served from site url which results in 404 error. Attached are screenshots of both "modes" ![2017-12-21_07h24_53](https://user-images.githubusercontent.com/591108/34243379-c3bb68a0-e620-11e7-90b6-9bf80539bed6.png) ![2017-12-21_07h24_39](https://user-images.githubusercontent.com/591108/34243381-c6c60fc8-e620-11e7-9b99-461243c193eb.png)
comp
plugin compatibility wp offload hi there seem to be an issue with wp offload plugin to offload static content to amazon bucket and amazon cloudfront in edit with elementor mode images are show served from cloudfront url but in regular page post view images are served from site url which results in error attached are screenshots of both modes
1
6,363
8,682,006,844
IssuesEvent
2018-12-02 02:34:19
Zrips/CMI
https://api.github.com/repos/Zrips/CMI
opened
Random Teleport avoidance
Compatibility enhancement feature request
**Description of issue or feature request:** Would be useful if cmi could avoid teleport locations in GriefPrevention claims, Worldguard regions, Residence claims, and Towny land. In addition to this, CMI's randomteleport could also have the option to whitelist blocks that players can teleport onto: e.g. `GRASS_BLOCK, LEAVES, SNOW, STONE, GRAVEL, SAND` etc. We could also use a blacklist e.g. `WATER, LAVA, CACTUS`
True
Random Teleport avoidance - **Description of issue or feature request:** Would be useful if cmi could avoid teleport locations in GriefPrevention claims, Worldguard regions, Residence claims, and Towny land. In addition to this, CMI's randomteleport could also have the option to whitelist blocks that players can teleport onto: e.g. `GRASS_BLOCK, LEAVES, SNOW, STONE, GRAVEL, SAND` etc. We could also use a blacklist e.g. `WATER, LAVA, CACTUS`
comp
random teleport avoidance description of issue or feature request would be useful if cmi could avoid teleport locations in griefprevention claims worldguard regions residence claims and towny land in addition to this cmi s randomteleport could also have the option to whitelist blocks that players can teleport onto e g grass block leaves snow stone gravel sand etc we could also use a blacklist e g water lava cactus
1
46,900
5,833,308,577
IssuesEvent
2017-05-09 01:00:25
mautic/mautic
https://api.github.com/repos/mautic/mautic
closed
Support multiple BCC addresses (comma separated) in emails advanced tab
Feature Request Ready To Test
Currently, only a single address is supported as BCC when creating an email -> advanced tab. It's been requested to support multiple addresses here as CSV.
1.0
Support multiple BCC addresses (comma separated) in emails advanced tab - Currently, only a single address is supported as BCC when creating an email -> advanced tab. It's been requested to support multiple addresses here as CSV.
non_comp
support multiple bcc addresses comma separated in emails advanced tab currently only a single address is supported as bcc when creating an email advanced tab it s been requested to support multiple addresses here as csv
0
10,541
12,476,399,565
IssuesEvent
2020-05-29 13:24:58
jenkinsci/dark-theme
https://api.github.com/repos/jenkinsci/dark-theme
closed
Incompatibilities on the credentials plugin
plugin-compatibility
The cert input fields on the credentials plugin are not compatible with dark mode: <img width="685" alt="Captura de pantalla 2020-05-28 a las 17 33 25" src="https://user-images.githubusercontent.com/5738588/83163008-c8dea200-a10a-11ea-8590-e6dcb9870eb0.png">
True
Incompatibilities on the credentials plugin - The cert input fields on the credentials plugin are not compatible with dark mode: <img width="685" alt="Captura de pantalla 2020-05-28 a las 17 33 25" src="https://user-images.githubusercontent.com/5738588/83163008-c8dea200-a10a-11ea-8590-e6dcb9870eb0.png">
comp
incompatibilities on the credentials plugin the cert input fields on the credentials plugin are not compatible with dark mode img width alt captura de pantalla a las src
1
2,239
4,996,049,480
IssuesEvent
2016-12-09 12:27:18
MoonchildProductions/Pale-Moon
https://api.github.com/repos/MoonchildProductions/Pale-Moon
closed
Pale Moon 27 beta 3 doesn't process Zoho Writer document properly
More Info Needed Web Compatibility
What it says in the headline. You can only view it, not even edit it. With pale moon 26.5.0 it works. My system is ubuntu. URL: https://docs.zoho.com
True
Pale Moon 27 beta 3 doesn't process Zoho Writer document properly - What it says in the headline. You can only view it, not even edit it. With pale moon 26.5.0 it works. My system is ubuntu. URL: https://docs.zoho.com
comp
pale moon beta doesn t process zoho writer document properly what it says in the headline you can only view it not even edit it with pale moon it works my system is ubuntu url
1
901
2,559,743,427
IssuesEvent
2015-02-05 04:22:24
6to5/6to5-library-boilerplate
https://api.github.com/repos/6to5/6to5-library-boilerplate
closed
Add updating the package.json to the to-do's when configuring your library
documentation
If you change, say, the output directory name, you also need to update `package.json`.
1.0
Add updating the package.json to the to-do's when configuring your library - If you change, say, the output directory name, you also need to update `package.json`.
non_comp
add updating the package json to the to do s when configuring your library if you change say the output directory name you also need to update package json
0
14,199
17,086,966,465
IssuesEvent
2021-07-08 13:04:15
ckeditor/ckeditor5
https://api.github.com/repos/ckeditor/ckeditor5
opened
HTML comments: Add unit tests for `HtmlComment` plugin
domain:v4-compatibility squad:compat type:task
## Provide a description of the task Add unit tests for `HtmlComment` plugin.
True
HTML comments: Add unit tests for `HtmlComment` plugin - ## Provide a description of the task Add unit tests for `HtmlComment` plugin.
comp
html comments add unit tests for htmlcomment plugin provide a description of the task add unit tests for htmlcomment plugin
1
15,243
19,400,763,941
IssuesEvent
2021-12-19 05:47:01
KiwiHawk/SeaBlock
https://api.github.com/repos/KiwiHawk/SeaBlock
closed
Compatibility changes for latest Angel's version
mod compatibility angels
- [x] Remove Blue Science prerequisite from Blue Algae processing - [x] Remove additions of missing science pack prerequisite that have now been implemented in Angels - Logistics - bio-fermentation - bio-nutrient-paste - bio-paper-2 - angels-metallurgy-2 - pressure-tanks - Chemical - thermal-water-extraction-2 - bio-plastic-2 - slag-processing-2 - angels-advanced-gas-processing - angels-advanced-oil-processing - bio-paper-3 - gas-steam-cracking-2 - oil-steam-cracking-2 - ore-leaching - bio-arboretum-desert-3 - bio-arboretum-swamp-3 - bio-arboretum-temperate-3 - angels-metallurgy-3 - Military - angels-explosives-1 - Production - angels-metallurgy-4 - Utility - angels-metallurgy-5 - [x] Remove temp fix for double Glowing hot iron plate #195 - [x] Add prerequisite Powder refining to Advanced ore refining 2 (for new fluorite ore catalyst sorting recipe) - [x] Hide new pollution modifier setting - [x] Use updated graphics for Ore Sorting Facility 5 - [x] Remove bio token changes https://github.com/Arch666Angel/mods/issues/720 - [x] Remove adding blue science prerequisite to Chlorine processing 3 and Sulfur processing 4 - [x] ~~Update Chlorine processing 4 tech to use new icon function~~ - [x] Remove setting crafting category for fibreglass boards - [x] Remove Sodium Perchlorate changes #218 - [x] Remove reducing Heat Exchanger tech tier #233 - [x] Remove adding yellow metal catalyst to dinitrogen tetroxide https://github.com/Arch666Angel/mods/issues/692 - [x] Remove removing bob's electrolysis tech prerequisites - [x] Hide recipe Lithia Salt > Thermal Water - [x] Remove Coal Processing as a prerequisite for Manganese 1
True
Compatibility changes for latest Angel's version - - [x] Remove Blue Science prerequisite from Blue Algae processing - [x] Remove additions of missing science pack prerequisite that have now been implemented in Angels - Logistics - bio-fermentation - bio-nutrient-paste - bio-paper-2 - angels-metallurgy-2 - pressure-tanks - Chemical - thermal-water-extraction-2 - bio-plastic-2 - slag-processing-2 - angels-advanced-gas-processing - angels-advanced-oil-processing - bio-paper-3 - gas-steam-cracking-2 - oil-steam-cracking-2 - ore-leaching - bio-arboretum-desert-3 - bio-arboretum-swamp-3 - bio-arboretum-temperate-3 - angels-metallurgy-3 - Military - angels-explosives-1 - Production - angels-metallurgy-4 - Utility - angels-metallurgy-5 - [x] Remove temp fix for double Glowing hot iron plate #195 - [x] Add prerequisite Powder refining to Advanced ore refining 2 (for new fluorite ore catalyst sorting recipe) - [x] Hide new pollution modifier setting - [x] Use updated graphics for Ore Sorting Facility 5 - [x] Remove bio token changes https://github.com/Arch666Angel/mods/issues/720 - [x] Remove adding blue science prerequisite to Chlorine processing 3 and Sulfur processing 4 - [x] ~~Update Chlorine processing 4 tech to use new icon function~~ - [x] Remove setting crafting category for fibreglass boards - [x] Remove Sodium Perchlorate changes #218 - [x] Remove reducing Heat Exchanger tech tier #233 - [x] Remove adding yellow metal catalyst to dinitrogen tetroxide https://github.com/Arch666Angel/mods/issues/692 - [x] Remove removing bob's electrolysis tech prerequisites - [x] Hide recipe Lithia Salt > Thermal Water - [x] Remove Coal Processing as a prerequisite for Manganese 1
comp
compatibility changes for latest angel s version remove blue science prerequisite from blue algae processing remove additions of missing science pack prerequisite that have now been implemented in angels logistics bio fermentation bio nutrient paste bio paper angels metallurgy pressure tanks chemical thermal water extraction bio plastic slag processing angels advanced gas processing angels advanced oil processing bio paper gas steam cracking oil steam cracking ore leaching bio arboretum desert bio arboretum swamp bio arboretum temperate angels metallurgy military angels explosives production angels metallurgy utility angels metallurgy remove temp fix for double glowing hot iron plate add prerequisite powder refining to advanced ore refining for new fluorite ore catalyst sorting recipe hide new pollution modifier setting use updated graphics for ore sorting facility remove bio token changes remove adding blue science prerequisite to chlorine processing and sulfur processing update chlorine processing tech to use new icon function remove setting crafting category for fibreglass boards remove sodium perchlorate changes remove reducing heat exchanger tech tier remove adding yellow metal catalyst to dinitrogen tetroxide remove removing bob s electrolysis tech prerequisites hide recipe lithia salt thermal water remove coal processing as a prerequisite for manganese
1
9,605
3,935,156,142
IssuesEvent
2016-04-26 03:07:52
Muxi-Studio/muxi_site
https://api.github.com/repos/Muxi-Studio/muxi_site
closed
Code Review 0208 CSS的两个问题
Code Review 木犀博客
@sunliying ### 两栏布局问题 我发现你在两栏的时候很喜欢用这样的布局,左边的设置`float`,又边的什么也不设。比如主页博客列表里面 图片: ```` .middle_box .blog .conte .des img { height: 40px; width: 40px; float: left; position: relative; } ```` 标题: ```` .middle_box .blog .conte .title { padding: 0 10px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } ```` 左边设置了浮动之后,就脱离文档流,但是因为还是一个实体,所以右边的内容还是从图片开始排的。 这样的确达到了你的效果。然而如何你查看元素,就会发现右边的标题溢出了。因为左边是脱离文档流的,所以右边的标题的宽度自然是100%,你设置了一个`overflow: hidden`之后触发了BFC,然后用起来和两个都设置浮动是一样一样的。 然而这样真的好吗?这个布局本来不是这么用的。 这个布局的用途是,左边浮动,右边自适应。右边设置和左边宽度一样的`margin-left`。这样右边的`content box`的宽度就是`100%-(margin-left)`。 你要么就用两个浮动,显式设置宽度。如果偷懒右边不想设置宽度,那就用`float+margin-left`的,没问题。你现在这种布局,`overflow: hidden`没有浮动的包裹性,所以右边的实际宽度依然是`100%`。你设置了各种` white-space: nowrap; text-overflow: ellipsis;`这样的属性让文字不溢出,所以看起来是没有问题的。然而右边标题的宽度实际上依然是溢出的。虽然效果ok,但是从代码上来说这个是没法接受的。 ### 缺少wrapper元素 这段markup ```` <p class="title"> <a href="/blog/post/1">DOM API详解(一)</a> </p> <span class="name">neo1218</span> <span class="date">2016-02-05 07:22</span> ```` **你在逗我吗**?inline级别的`span`就直接和block级别的`p`一起用了? 从布局的层级关系分明的角度上来说,你应该加一个块级wrapper元素,这样我们才看的清楚元素之间的层级。 ```` <p class="title"> <a href="/blog/post/1">DOM API详解(一)</a> </p> <div class="info"> <span class="name">neo1218</span> <span class="date">2016-02-05 07:22</span> </div> ```` 你加一个`div.info`,结构上就很清楚了,不然`span`和标题是同一个级别的?? 从表现上来讲,你这样当然是没有问题的,因为有匿名`line block`。但是`HTML`的作用就是给出一个合理的层级结构的`markup`。 还有,你这边的两个`span`,我想调整一下`line-height`,怎么办?我没有wrapper元素我就只能用`span`来控制了。这就写了多余的代码了。控制的细粒度也太细。
1.0
Code Review 0208 CSS的两个问题 - @sunliying ### 两栏布局问题 我发现你在两栏的时候很喜欢用这样的布局,左边的设置`float`,又边的什么也不设。比如主页博客列表里面 图片: ```` .middle_box .blog .conte .des img { height: 40px; width: 40px; float: left; position: relative; } ```` 标题: ```` .middle_box .blog .conte .title { padding: 0 10px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } ```` 左边设置了浮动之后,就脱离文档流,但是因为还是一个实体,所以右边的内容还是从图片开始排的。 这样的确达到了你的效果。然而如何你查看元素,就会发现右边的标题溢出了。因为左边是脱离文档流的,所以右边的标题的宽度自然是100%,你设置了一个`overflow: hidden`之后触发了BFC,然后用起来和两个都设置浮动是一样一样的。 然而这样真的好吗?这个布局本来不是这么用的。 这个布局的用途是,左边浮动,右边自适应。右边设置和左边宽度一样的`margin-left`。这样右边的`content box`的宽度就是`100%-(margin-left)`。 你要么就用两个浮动,显式设置宽度。如果偷懒右边不想设置宽度,那就用`float+margin-left`的,没问题。你现在这种布局,`overflow: hidden`没有浮动的包裹性,所以右边的实际宽度依然是`100%`。你设置了各种` white-space: nowrap; text-overflow: ellipsis;`这样的属性让文字不溢出,所以看起来是没有问题的。然而右边标题的宽度实际上依然是溢出的。虽然效果ok,但是从代码上来说这个是没法接受的。 ### 缺少wrapper元素 这段markup ```` <p class="title"> <a href="/blog/post/1">DOM API详解(一)</a> </p> <span class="name">neo1218</span> <span class="date">2016-02-05 07:22</span> ```` **你在逗我吗**?inline级别的`span`就直接和block级别的`p`一起用了? 从布局的层级关系分明的角度上来说,你应该加一个块级wrapper元素,这样我们才看的清楚元素之间的层级。 ```` <p class="title"> <a href="/blog/post/1">DOM API详解(一)</a> </p> <div class="info"> <span class="name">neo1218</span> <span class="date">2016-02-05 07:22</span> </div> ```` 你加一个`div.info`,结构上就很清楚了,不然`span`和标题是同一个级别的?? 从表现上来讲,你这样当然是没有问题的,因为有匿名`line block`。但是`HTML`的作用就是给出一个合理的层级结构的`markup`。 还有,你这边的两个`span`,我想调整一下`line-height`,怎么办?我没有wrapper元素我就只能用`span`来控制了。这就写了多余的代码了。控制的细粒度也太细。
non_comp
code review css的两个问题 sunliying 两栏布局问题 我发现你在两栏的时候很喜欢用这样的布局,左边的设置 float ,又边的什么也不设。比如主页博客列表里面 图片: middle box blog conte des img height width float left position relative 标题: middle box blog conte title padding white space nowrap text overflow ellipsis overflow hidden 左边设置了浮动之后,就脱离文档流,但是因为还是一个实体,所以右边的内容还是从图片开始排的。 这样的确达到了你的效果。然而如何你查看元素,就会发现右边的标题溢出了。因为左边是脱离文档流的, ,你设置了一个 overflow hidden 之后触发了bfc,然后用起来和两个都设置浮动是一样一样的。 然而这样真的好吗?这个布局本来不是这么用的。 这个布局的用途是,左边浮动,右边自适应。右边设置和左边宽度一样的 margin left 。这样右边的 content box 的宽度就是 margin left 。 你要么就用两个浮动,显式设置宽度。如果偷懒右边不想设置宽度,那就用 float margin left 的,没问题。你现在这种布局, overflow hidden 没有浮动的包裹性,所以右边的实际宽度依然是 。你设置了各种 white space nowrap text overflow ellipsis 这样的属性让文字不溢出,所以看起来是没有问题的。然而右边标题的宽度实际上依然是溢出的。虽然效果ok,但是从代码上来说这个是没法接受的。 缺少wrapper元素 这段markup dom api详解(一) 你在逗我吗 ?inline级别的 span 就直接和block级别的 p 一起用了? 从布局的层级关系分明的角度上来说,你应该加一个块级wrapper元素,这样我们才看的清楚元素之间的层级。 dom api详解(一) 你加一个 div info ,结构上就很清楚了,不然 span 和标题是同一个级别的?? 从表现上来讲,你这样当然是没有问题的,因为有匿名 line block 。但是 html 的作用就是给出一个合理的层级结构的 markup 。 还有,你这边的两个 span ,我想调整一下 line height ,怎么办?我没有wrapper元素我就只能用 span 来控制了。这就写了多余的代码了。控制的细粒度也太细。
0
7,923
10,127,639,258
IssuesEvent
2019-08-01 10:43:11
razerdp/BasePopup
https://api.github.com/repos/razerdp/BasePopup
closed
当设置popWindow外部区域可以响应,isShowing一直返回false
incompatible issue template
### 提issue前请去[**WIKI#常见问题**](https://github.com/razerdp/BasePopup/wiki/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98)找找相关问题,避免重复提问 ### 提issue前请务必参考以下格式填写,否则该问题优先级将会降低 - 系统版本: - 库版本: - 问题描述/重现步骤: - 问题代码/截图: - 报错信息: --- 当不设置退出动画时 quickPopupHeader?.isOutSideTouchable = true quickPopupHeader?.setBackground(null) quickPopupHeader?.showPopupWindow(view) isShowing一直返回false 当设置退出动画就正常了 quickPopupHeader?.dismissAnimation = getTranslateVerticalAnimation(0f, -1f, 250) quickPopupHeader?.isOutSideTouchable = true quickPopupHeader?.setBackground(null) quickPopupHeader?.showPopupWindow(view)
True
当设置popWindow外部区域可以响应,isShowing一直返回false - ### 提issue前请去[**WIKI#常见问题**](https://github.com/razerdp/BasePopup/wiki/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98)找找相关问题,避免重复提问 ### 提issue前请务必参考以下格式填写,否则该问题优先级将会降低 - 系统版本: - 库版本: - 问题描述/重现步骤: - 问题代码/截图: - 报错信息: --- 当不设置退出动画时 quickPopupHeader?.isOutSideTouchable = true quickPopupHeader?.setBackground(null) quickPopupHeader?.showPopupWindow(view) isShowing一直返回false 当设置退出动画就正常了 quickPopupHeader?.dismissAnimation = getTranslateVerticalAnimation(0f, -1f, 250) quickPopupHeader?.isOutSideTouchable = true quickPopupHeader?.setBackground(null) quickPopupHeader?.showPopupWindow(view)
comp
当设置popwindow外部区域可以响应,isshowing一直返回false 提issue前请去 提issue前请务必参考以下格式填写,否则该问题优先级将会降低 系统版本: 库版本: 问题描述 重现步骤: 问题代码 截图: 报错信息: 当不设置退出动画时 quickpopupheader isoutsidetouchable true quickpopupheader setbackground null quickpopupheader showpopupwindow view isshowing一直返回false 当设置退出动画就正常了 quickpopupheader dismissanimation gettranslateverticalanimation quickpopupheader isoutsidetouchable true quickpopupheader setbackground null quickpopupheader showpopupwindow view
1
15,819
10,315,209,658
IssuesEvent
2019-08-30 06:50:59
godotengine/godot
https://api.github.com/repos/godotengine/godot
closed
Icon checked states are indistinguishable from one another in Solarized Light theme
bug topic:editor usability
**Godot version:** 3.1 **OS/device including version:** MacBook Pro macOS 10.14.4 **Issue description:** As an example, the Animation Looping icon: <!-- What happened, and what was expected. --> <img width="164" alt="Screen Shot 2019-05-16 at 8 58 38 PM" src="https://user-images.githubusercontent.com/6002340/57879841-a3436b00-781d-11e9-93cd-fef090f0ad0a.png"> <img width="164" alt="Screen Shot 2019-05-16 at 8 58 51 PM" src="https://user-images.githubusercontent.com/6002340/57879842-a3dc0180-781d-11e9-8f61-ceacd1595047.png"> Same thing applies with any other toggle button, e.g. <img width="673" alt="Screen Shot 2019-05-16 at 9 01 13 PM" src="https://user-images.githubusercontent.com/6002340/57879926-cf5eec00-781d-11e9-8bcc-6cf0e6d1e099.png"> **Steps to reproduce:** **Minimal reproduction project:** <!-- Recommended as it greatly speeds up debugging. Drag and drop a zip archive to upload it. -->
True
Icon checked states are indistinguishable from one another in Solarized Light theme - **Godot version:** 3.1 **OS/device including version:** MacBook Pro macOS 10.14.4 **Issue description:** As an example, the Animation Looping icon: <!-- What happened, and what was expected. --> <img width="164" alt="Screen Shot 2019-05-16 at 8 58 38 PM" src="https://user-images.githubusercontent.com/6002340/57879841-a3436b00-781d-11e9-93cd-fef090f0ad0a.png"> <img width="164" alt="Screen Shot 2019-05-16 at 8 58 51 PM" src="https://user-images.githubusercontent.com/6002340/57879842-a3dc0180-781d-11e9-8f61-ceacd1595047.png"> Same thing applies with any other toggle button, e.g. <img width="673" alt="Screen Shot 2019-05-16 at 9 01 13 PM" src="https://user-images.githubusercontent.com/6002340/57879926-cf5eec00-781d-11e9-8bcc-6cf0e6d1e099.png"> **Steps to reproduce:** **Minimal reproduction project:** <!-- Recommended as it greatly speeds up debugging. Drag and drop a zip archive to upload it. -->
non_comp
icon checked states are indistinguishable from one another in solarized light theme godot version os device including version macbook pro macos issue description as an example the animation looping icon img width alt screen shot at pm src img width alt screen shot at pm src same thing applies with any other toggle button e g img width alt screen shot at pm src steps to reproduce minimal reproduction project
0
301,809
26,102,380,544
IssuesEvent
2022-12-27 08:53:06
evriyanaindrasaputra/next-starter
https://api.github.com/repos/evriyanaindrasaputra/next-starter
closed
add e2e testing
enhancement testing
## Description add e2e testing ## Tasks - [x] install & setup playwright - [x] add some example testing
1.0
add e2e testing - ## Description add e2e testing ## Tasks - [x] install & setup playwright - [x] add some example testing
non_comp
add testing description add testing tasks install setup playwright add some example testing
0
15,202
19,276,451,115
IssuesEvent
2021-12-10 12:26:33
ValveSoftware/Proton
https://api.github.com/repos/ValveSoftware/Proton
reopened
Alien: Isolation (214490)
Game compatibility - Unofficial
# Compatibility Report - Name of the game with compatibility issues: Alien Isolation - Steam AppID of the game: 214490 ## System Information - GPU: nVidia GTX 1050 - 2GvRAM - Driver/LLVM version: nVidia - Driver - 495 - Ubuntu Graphics PPA - Kernel version: 5.13-23.23-generic w/ nVidia Sigs/ Modules/ Objects Kernel extras from Canonical Proposed PPA - Both Kisak- Valve PPA and Canonical X-Staging - -kDE Neon w/ backports and Proposed enabled. (Solid as a rock) - Link to full system information report as [Gist](https://gist.github.com/): - https://gist.github.com/username-murphy/cecc0bf365612034a71fc2ccc8aa1484 - Proton version: 6.3-8 _101221 ## I confirm: - [ X ] that I haven't found an existing compatibility report for this game. - [ X ] that I have checked whether there are updates for my system available. ## Launch Options Used: `PROTON_LOG=1 %command%` ## Symptoms: Mouse pointer isnt captured during gameplay on Dual Monitor System. Can move freely from scrolling web browser to gameplay. Logitech Wireless GamepadF710 perfect functionality. Other than this ( Mouse issue) Alien Isolation is 100% compatible and should be whitelisted. It intuitively looks and feels better than the Linux and M$ native gameplay.. The best that I've experience on those platforms with this game anyway. ## Reproduction: Play game ## System Information: https://gist.github.com/username-murphy/cecc0bf365612034a71fc2ccc8aa1484 <!-- 1.Steam AppID of the game: 214490 2. nVidia-495 3. /steam-$APPID.log [steam-214490_alien_isoloation_log.tar.gz](https://github.com/ValveSoftware/Proton/files/7690865/steam-214490_alien_isoloation_log.tar.gz) 3. https://gist.github.com/username-murphy/cecc0bf365612034a71fc2ccc8aa1484 @kisak-valve please note changes and uploaded alien_isolation.log. best regards, murphy -->
True
Alien: Isolation (214490) - # Compatibility Report - Name of the game with compatibility issues: Alien Isolation - Steam AppID of the game: 214490 ## System Information - GPU: nVidia GTX 1050 - 2GvRAM - Driver/LLVM version: nVidia - Driver - 495 - Ubuntu Graphics PPA - Kernel version: 5.13-23.23-generic w/ nVidia Sigs/ Modules/ Objects Kernel extras from Canonical Proposed PPA - Both Kisak- Valve PPA and Canonical X-Staging - -kDE Neon w/ backports and Proposed enabled. (Solid as a rock) - Link to full system information report as [Gist](https://gist.github.com/): - https://gist.github.com/username-murphy/cecc0bf365612034a71fc2ccc8aa1484 - Proton version: 6.3-8 _101221 ## I confirm: - [ X ] that I haven't found an existing compatibility report for this game. - [ X ] that I have checked whether there are updates for my system available. ## Launch Options Used: `PROTON_LOG=1 %command%` ## Symptoms: Mouse pointer isnt captured during gameplay on Dual Monitor System. Can move freely from scrolling web browser to gameplay. Logitech Wireless GamepadF710 perfect functionality. Other than this ( Mouse issue) Alien Isolation is 100% compatible and should be whitelisted. It intuitively looks and feels better than the Linux and M$ native gameplay.. The best that I've experience on those platforms with this game anyway. ## Reproduction: Play game ## System Information: https://gist.github.com/username-murphy/cecc0bf365612034a71fc2ccc8aa1484 <!-- 1.Steam AppID of the game: 214490 2. nVidia-495 3. /steam-$APPID.log [steam-214490_alien_isoloation_log.tar.gz](https://github.com/ValveSoftware/Proton/files/7690865/steam-214490_alien_isoloation_log.tar.gz) 3. https://gist.github.com/username-murphy/cecc0bf365612034a71fc2ccc8aa1484 @kisak-valve please note changes and uploaded alien_isolation.log. best regards, murphy -->
comp
alien isolation compatibility report name of the game with compatibility issues alien isolation steam appid of the game system information gpu nvidia gtx driver llvm version nvidia driver ubuntu graphics ppa kernel version generic w nvidia sigs modules objects kernel extras from canonical proposed ppa both kisak valve ppa and canonical x staging kde neon w backports and proposed enabled solid as a rock link to full system information report as proton version i confirm that i haven t found an existing compatibility report for this game that i have checked whether there are updates for my system available launch options used proton log command symptoms mouse pointer isnt captured during gameplay on dual monitor system can move freely from scrolling web browser to gameplay logitech wireless perfect functionality other than this mouse issue alien isolation is compatible and should be whitelisted it intuitively looks and feels better than the linux and m native gameplay the best that i ve experience on those platforms with this game anyway reproduction play game system information steam appid of the game nvidia steam appid log kisak valve please note changes and uploaded alien isolation log best regards murphy
1
17,349
23,932,328,437
IssuesEvent
2022-09-10 18:36:11
349115261/LabviewFLL
https://api.github.com/repos/349115261/LabviewFLL
closed
Robot Code Issue N01
Not compatible on all
The current code only works for the correct robot main error is the lifting attachment that is putting too much stress on the one median motor so currently, even if you try to recreate the robot it does not work, trying to fix this by a code fix and psychical. @labviewadvocate ![WIN_20220905_14_56_40_Pro](https://user-images.githubusercontent.com/70164920/188502741-a34525c0-0d50-4d53-9433-65a9b1c4bf5f.jpg)
True
Robot Code Issue N01 - The current code only works for the correct robot main error is the lifting attachment that is putting too much stress on the one median motor so currently, even if you try to recreate the robot it does not work, trying to fix this by a code fix and psychical. @labviewadvocate ![WIN_20220905_14_56_40_Pro](https://user-images.githubusercontent.com/70164920/188502741-a34525c0-0d50-4d53-9433-65a9b1c4bf5f.jpg)
comp
robot code issue the current code only works for the correct robot main error is the lifting attachment that is putting too much stress on the one median motor so currently even if you try to recreate the robot it does not work trying to fix this by a code fix and psychical labviewadvocate
1
15,512
19,862,991,879
IssuesEvent
2022-01-22 04:52:02
qouteall/ImmersivePortalsMod
https://api.github.com/repos/qouteall/ImmersivePortalsMod
reopened
Incompatibility with Create/Flywheel (Fabric versions)
Mod Compatibility
Copy of https://github.com/Fabricators-of-Create/Create/issues/53 Extraordinary rendering issues occur when looking through an Immersive Portal while the Fabric version of Create is installed. This issue is presumably caused by interaction with Create's rendering dependency, Flywheel (which is included in builds of Create for Fabric). Example: ![image](https://user-images.githubusercontent.com/3160746/150416322-b22f943d-ccd9-4377-9c1b-6482198d51e6.png) Although sodium/indium/other mods were in use when capturing this screenshot, the issue is reproducible with only Create (which again includes Flywheel), Fabric API, and Immersive Portals.
True
Incompatibility with Create/Flywheel (Fabric versions) - Copy of https://github.com/Fabricators-of-Create/Create/issues/53 Extraordinary rendering issues occur when looking through an Immersive Portal while the Fabric version of Create is installed. This issue is presumably caused by interaction with Create's rendering dependency, Flywheel (which is included in builds of Create for Fabric). Example: ![image](https://user-images.githubusercontent.com/3160746/150416322-b22f943d-ccd9-4377-9c1b-6482198d51e6.png) Although sodium/indium/other mods were in use when capturing this screenshot, the issue is reproducible with only Create (which again includes Flywheel), Fabric API, and Immersive Portals.
comp
incompatibility with create flywheel fabric versions copy of extraordinary rendering issues occur when looking through an immersive portal while the fabric version of create is installed this issue is presumably caused by interaction with create s rendering dependency flywheel which is included in builds of create for fabric example although sodium indium other mods were in use when capturing this screenshot the issue is reproducible with only create which again includes flywheel fabric api and immersive portals
1
11,102
13,129,778,729
IssuesEvent
2020-08-06 14:24:16
storybookjs/storybook
https://api.github.com/repos/storybookjs/storybook
closed
addon-docs Error: Cannot read property 'theme' of undefined
app: react block: props bug compatibility with other tools todo
**Describe the bug** When documenting a component styled with `styled-components` I get: >Cannot read property 'theme' of undefined **To Reproduce** Steps to reproduce the behavior: Create styled button: ``` import styled from "styled-components"; /** * Props */ interface Props { /** * Indicates if the button is disabled */ disabled?: boolean; /** * Type of button */ type: "submit" | "button" | "reset"; } /** * Button component * @param props - Component props * @returns a button component */ export const Button = styled.button.attrs<Props>((props) => ({ type: props.type }))` border-radius: 3px; border: 1px solid #d2d2d2; display: block; margin: 0 0 1em; background-color: ${(props) => (props.disabled ? "#ccc" : "transparent")}; cursor: ${(props) => (props.disabled ? "not-allowed" : "auto")}; `; ``` Create a story: ``` import React from "react"; import { Button } from "src/components"; // Default export required for Storybook // eslint-disable-next-line import/no-default-export export default { title: "Form controls", }; /** * Button story * @returns Button story */ export const ButtonStory = () => <Button>Submit</Button>; ``` In the MDX, enter the following: ``` import { Meta, Story, Preview, Props } from "@storybook/addon-docs/blocks"; import { Button } from "src/components"; # Preview <Preview> <Story name="Button Story"> <Button>hello</Button> </Story> </Preview> # Props <Props of={Button} /> ``` Where I expect to see the Props description, I see "Cannot read property 'theme' of undefined" **Expected behavior** I expected to see Props displayed **System:** ``` Environment Info: System: OS: Windows 10 10.0.18363 CPU: (8) x64 Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz Binaries: Node: 12.16.1 - C:\Program Files\nodejs\node.EXE Yarn: 1.7.0 - C:\Program Files (x86)\Yarn\bin\yarn.CMD npm: 6.13.4 - C:\Program Files\nodejs\npm.CMD Browsers: Edge: 44.18362.449.0 ``` **Additional context** Package.json: ``` "dependencies": { "final-form": "^4.18.7", "moment": "^2.24.0", "react": "^16.13.0", "react-dom": "^16.13.0", "react-final-form": "^6.3.5", "react-router": "^5.1.2", "react-router-dom": "^5.1.2", "react-scripts": "3.4.0", "shortid": "^2.2.15", "styled-components": "^5.0.1" }, "devDependencies": { "@storybook/addon-actions": "^5.3.17", "@storybook/addon-docs": "^5.3.17", "@storybook/addon-links": "^5.3.17", "@storybook/addons": "^5.3.17", "@storybook/preset-create-react-app": "^2.1.0", "@storybook/react": "^5.3.17", "@testing-library/jest-dom": "^4.2.4", "@testing-library/react": "^9.3.2", "@testing-library/user-event": "^7.1.2", "@types/jest": "^24.0.0", "@types/node": "^12.0.0", "@types/react": "^16.9.0", "@types/react-dom": "^16.9.0", "@types/react-router": "^5.1.4", "@types/react-router-dom": "^5.1.3", "@types/shortid": "0.0.29", "@types/styled-components": "^5.0.1", "@typescript-eslint/eslint-plugin": "^2.24.0", "eslint-config-airbnb-typescript": "^7.2.0", "eslint-plugin-import": "^2.20.1", "eslint-plugin-jsdoc": "^22.1.0", "eslint-plugin-jsx-a11y": "^6.2.3", "eslint-plugin-react": "^7.19.0", "eslint-plugin-react-hooks": "^2.5.0", "prettier": "1.19.1", "typescript": "~3.7.2" } ``` Please let me know if a copy of the project would be helpful. Thanks for your efforts!
True
addon-docs Error: Cannot read property 'theme' of undefined - **Describe the bug** When documenting a component styled with `styled-components` I get: >Cannot read property 'theme' of undefined **To Reproduce** Steps to reproduce the behavior: Create styled button: ``` import styled from "styled-components"; /** * Props */ interface Props { /** * Indicates if the button is disabled */ disabled?: boolean; /** * Type of button */ type: "submit" | "button" | "reset"; } /** * Button component * @param props - Component props * @returns a button component */ export const Button = styled.button.attrs<Props>((props) => ({ type: props.type }))` border-radius: 3px; border: 1px solid #d2d2d2; display: block; margin: 0 0 1em; background-color: ${(props) => (props.disabled ? "#ccc" : "transparent")}; cursor: ${(props) => (props.disabled ? "not-allowed" : "auto")}; `; ``` Create a story: ``` import React from "react"; import { Button } from "src/components"; // Default export required for Storybook // eslint-disable-next-line import/no-default-export export default { title: "Form controls", }; /** * Button story * @returns Button story */ export const ButtonStory = () => <Button>Submit</Button>; ``` In the MDX, enter the following: ``` import { Meta, Story, Preview, Props } from "@storybook/addon-docs/blocks"; import { Button } from "src/components"; # Preview <Preview> <Story name="Button Story"> <Button>hello</Button> </Story> </Preview> # Props <Props of={Button} /> ``` Where I expect to see the Props description, I see "Cannot read property 'theme' of undefined" **Expected behavior** I expected to see Props displayed **System:** ``` Environment Info: System: OS: Windows 10 10.0.18363 CPU: (8) x64 Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz Binaries: Node: 12.16.1 - C:\Program Files\nodejs\node.EXE Yarn: 1.7.0 - C:\Program Files (x86)\Yarn\bin\yarn.CMD npm: 6.13.4 - C:\Program Files\nodejs\npm.CMD Browsers: Edge: 44.18362.449.0 ``` **Additional context** Package.json: ``` "dependencies": { "final-form": "^4.18.7", "moment": "^2.24.0", "react": "^16.13.0", "react-dom": "^16.13.0", "react-final-form": "^6.3.5", "react-router": "^5.1.2", "react-router-dom": "^5.1.2", "react-scripts": "3.4.0", "shortid": "^2.2.15", "styled-components": "^5.0.1" }, "devDependencies": { "@storybook/addon-actions": "^5.3.17", "@storybook/addon-docs": "^5.3.17", "@storybook/addon-links": "^5.3.17", "@storybook/addons": "^5.3.17", "@storybook/preset-create-react-app": "^2.1.0", "@storybook/react": "^5.3.17", "@testing-library/jest-dom": "^4.2.4", "@testing-library/react": "^9.3.2", "@testing-library/user-event": "^7.1.2", "@types/jest": "^24.0.0", "@types/node": "^12.0.0", "@types/react": "^16.9.0", "@types/react-dom": "^16.9.0", "@types/react-router": "^5.1.4", "@types/react-router-dom": "^5.1.3", "@types/shortid": "0.0.29", "@types/styled-components": "^5.0.1", "@typescript-eslint/eslint-plugin": "^2.24.0", "eslint-config-airbnb-typescript": "^7.2.0", "eslint-plugin-import": "^2.20.1", "eslint-plugin-jsdoc": "^22.1.0", "eslint-plugin-jsx-a11y": "^6.2.3", "eslint-plugin-react": "^7.19.0", "eslint-plugin-react-hooks": "^2.5.0", "prettier": "1.19.1", "typescript": "~3.7.2" } ``` Please let me know if a copy of the project would be helpful. Thanks for your efforts!
comp
addon docs error cannot read property theme of undefined describe the bug when documenting a component styled with styled components i get cannot read property theme of undefined to reproduce steps to reproduce the behavior create styled button import styled from styled components props interface props indicates if the button is disabled disabled boolean type of button type submit button reset button component param props component props returns a button component export const button styled button attrs props type props type border radius border solid display block margin background color props props disabled ccc transparent cursor props props disabled not allowed auto create a story import react from react import button from src components default export required for storybook eslint disable next line import no default export export default title form controls button story returns button story export const buttonstory submit in the mdx enter the following import meta story preview props from storybook addon docs blocks import button from src components preview hello props where i expect to see the props description i see cannot read property theme of undefined expected behavior i expected to see props displayed system environment info system os windows cpu intel r core tm cpu binaries node c program files nodejs node exe yarn c program files yarn bin yarn cmd npm c program files nodejs npm cmd browsers edge additional context package json dependencies final form moment react react dom react final form react router react router dom react scripts shortid styled components devdependencies storybook addon actions storybook addon docs storybook addon links storybook addons storybook preset create react app storybook react testing library jest dom testing library react testing library user event types jest types node types react types react dom types react router types react router dom types shortid types styled components typescript eslint eslint plugin eslint config airbnb typescript eslint plugin import eslint plugin jsdoc eslint plugin jsx eslint plugin react eslint plugin react hooks prettier typescript please let me know if a copy of the project would be helpful thanks for your efforts
1
5,681
8,142,821,367
IssuesEvent
2018-08-21 08:53:40
AdguardTeam/AdguardForAndroid
https://api.github.com/repos/AdguardTeam/AdguardForAndroid
closed
ru.rostel
bug compatibility
@adguard-bot commented on [Mon Jul 30 2018](https://github.com/AdguardTeam/AdguardFilters/issues/20446) ### Issue URL (Incorrect Blocking) [https://play.google.com/store/apps/details?id=ru.rostel&hl=ru](https://adguardteam.github.io/AnonymousRedirect/redirect.html?url=https%3A%2F%2Fplay.google.com%2Fstore%2Fapps%2Fdetails%3Fid%3Dru.rostel%26hl%3Dru) ### Comment > Приложение добавлено в исключения HTTPS, логи в CRM ID 1717618. ### Screenshots <details> <summary>Screenshot 1</summary> ![Screenshot 1](https://reports-img.adguard.com/zrpUFAW.jpg) </details> ### System configuration Information | value --- | --- Platform: | And 8.1.0 AdGuard version: | 2.12.95 AdGuard mode: | VPN Filtering quality: | High-quality HTTPS filtering: | enabled DNS requests blocking: | enabled Filters: | Russian,<br>English,<br>Spyware,<br>Social media,<br>Filter unblocking search ads and self-promotion,<br>Mobile Ads,<br>Annoyances,<br>Simplified domain names --- @Alex-302 commented on [Tue Jul 31 2018](https://github.com/AdguardTeam/AdguardFilters/issues/20446#issuecomment-409220977) Issue moved to [AdguardTeam/AdguardForAndroid #2012](https://github.com/AdguardTeam/AdguardForAndroid/issues/2012) via [**ZenHub**](https://www.zenhub.com/)
True
ru.rostel - @adguard-bot commented on [Mon Jul 30 2018](https://github.com/AdguardTeam/AdguardFilters/issues/20446) ### Issue URL (Incorrect Blocking) [https://play.google.com/store/apps/details?id=ru.rostel&hl=ru](https://adguardteam.github.io/AnonymousRedirect/redirect.html?url=https%3A%2F%2Fplay.google.com%2Fstore%2Fapps%2Fdetails%3Fid%3Dru.rostel%26hl%3Dru) ### Comment > Приложение добавлено в исключения HTTPS, логи в CRM ID 1717618. ### Screenshots <details> <summary>Screenshot 1</summary> ![Screenshot 1](https://reports-img.adguard.com/zrpUFAW.jpg) </details> ### System configuration Information | value --- | --- Platform: | And 8.1.0 AdGuard version: | 2.12.95 AdGuard mode: | VPN Filtering quality: | High-quality HTTPS filtering: | enabled DNS requests blocking: | enabled Filters: | Russian,<br>English,<br>Spyware,<br>Social media,<br>Filter unblocking search ads and self-promotion,<br>Mobile Ads,<br>Annoyances,<br>Simplified domain names --- @Alex-302 commented on [Tue Jul 31 2018](https://github.com/AdguardTeam/AdguardFilters/issues/20446#issuecomment-409220977) Issue moved to [AdguardTeam/AdguardForAndroid #2012](https://github.com/AdguardTeam/AdguardForAndroid/issues/2012) via [**ZenHub**](https://www.zenhub.com/)
comp
ru rostel adguard bot commented on issue url incorrect blocking comment приложение добавлено в исключения https логи в crm id screenshots screenshot system configuration information value platform and adguard version adguard mode vpn filtering quality high quality https filtering enabled dns requests blocking enabled filters russian english spyware social media filter unblocking search ads and self promotion mobile ads annoyances simplified domain names alex commented on issue moved to via
1
1,900
4,561,087,871
IssuesEvent
2016-09-14 10:21:13
Yoast/wordpress-seo
https://api.github.com/repos/Yoast/wordpress-seo
opened
Readability analysis on multi-lingual websites
compatibility enhancement wpml
### What did you expect to happen? The readability analysis would take into account the language of the translated page (when using a multi-lingual plugin like WPML) ### What happened instead? The readability analysis is based on the _Site Language_ selected under "Settings > General", instead of the WPML language of the page, which makes the analysis be wrong for translated pages ### How can we reproduce this behavior? 1. Create a post in the default language (i.e. English) 2. Create a translatation in another language (i.e. Spanish) 3. Go to edit screen of the translated page and check that the Readability analysis is based on the default language ![image](https://cloud.githubusercontent.com/assets/9658774/18508713/8e10d23e-7a75-11e6-81df-100901e4bcab.png) ### Technical info * WordPress version: 4.6.1 * Yoast SEO version: 3.5 * WPML Multilingual CMS: 3.5.1.1
True
Readability analysis on multi-lingual websites - ### What did you expect to happen? The readability analysis would take into account the language of the translated page (when using a multi-lingual plugin like WPML) ### What happened instead? The readability analysis is based on the _Site Language_ selected under "Settings > General", instead of the WPML language of the page, which makes the analysis be wrong for translated pages ### How can we reproduce this behavior? 1. Create a post in the default language (i.e. English) 2. Create a translatation in another language (i.e. Spanish) 3. Go to edit screen of the translated page and check that the Readability analysis is based on the default language ![image](https://cloud.githubusercontent.com/assets/9658774/18508713/8e10d23e-7a75-11e6-81df-100901e4bcab.png) ### Technical info * WordPress version: 4.6.1 * Yoast SEO version: 3.5 * WPML Multilingual CMS: 3.5.1.1
comp
readability analysis on multi lingual websites what did you expect to happen the readability analysis would take into account the language of the translated page when using a multi lingual plugin like wpml what happened instead the readability analysis is based on the site language selected under settings general instead of the wpml language of the page which makes the analysis be wrong for translated pages how can we reproduce this behavior create a post in the default language i e english create a translatation in another language i e spanish go to edit screen of the translated page and check that the readability analysis is based on the default language technical info wordpress version yoast seo version wpml multilingual cms
1
612,318
19,009,627,159
IssuesEvent
2021-11-23 07:37:16
ballerina-platform/ballerina-lang
https://api.github.com/repos/ballerina-platform/ballerina-lang
closed
Record field with default value does not match in match-stmt
Type/Bug Priority/Blocker Team/CompilerFE Points/3 Area/TypeChecker Lang/Statements/Match
**Description:** $subject **Steps to reproduce:** ``` import ballerina/io; public type R1 record {| int i1; string s1; |}; public type R2 record {| int i2; string? s2 = ""; |}; type R R1|R2; function foo(R r) { match r { var { i1, s1 } => { io:println("A"); } var { i2, s2 } => { io:println("B"); } } } public function main() { R2 r2 = { i2: 0 }; // should be matched in 2nd clause foo(r2); } ``` **Affected Versions:** swan-lake beta3
1.0
Record field with default value does not match in match-stmt - **Description:** $subject **Steps to reproduce:** ``` import ballerina/io; public type R1 record {| int i1; string s1; |}; public type R2 record {| int i2; string? s2 = ""; |}; type R R1|R2; function foo(R r) { match r { var { i1, s1 } => { io:println("A"); } var { i2, s2 } => { io:println("B"); } } } public function main() { R2 r2 = { i2: 0 }; // should be matched in 2nd clause foo(r2); } ``` **Affected Versions:** swan-lake beta3
non_comp
record field with default value does not match in match stmt description subject steps to reproduce import ballerina io public type record int string public type record int string type r function foo r r match r var io println a var io println b public function main should be matched in clause foo affected versions swan lake
0
320,069
23,800,777,961
IssuesEvent
2022-09-03 08:45:41
neptune-mutual-blue/protocol
https://api.github.com/repos/neptune-mutual-blue/protocol
opened
[OZ] M-01 Unenforced staking requirement
documentation rc2 open-zeppelin-audit
**Please note that [OpenZeppelin](https://www.openzeppelin.com/) reported this issue.** >Adding liquidity requires a liquidity provider to have at least [a minimum amount of NPM tokens](https://github.com/neptune-mutual-blue/protocol/blob/73fc82fbe0d1388867b7df669983fe42760daeb1/contracts/libraries/VaultLibV1.sol#L151) staked in the vault. > >However, the purpose and usefulness of this requirement is unclear, since it can be bypassed. In particular: > * there is no relationship between the amount of PODs created and the size of the stake > * PODs are transferable to unstaked users, so users can provide liquidity without staking > * staked users can [exit their entire staked amount](https://github.com/neptune-mutual-blue/protocol/blob/73fc82fbe0d1388867b7df669983fe42760daeb1/contracts/core/liquidity/VaultLiquidity.sol#L113-L118) without redeeming any PODs by calling `removeLiquidity` with parameters `podsToRedeem = 0` , npmStakeToRemove = amount , and exit = 1 ; the exit = 1 is crucial as it allows execution of [line 234](https://github.com/neptune-mutual-blue/protocol/blob/73fc82fbe0d1388867b7df669983fe42760daeb1/contracts/libraries/VaultLibV1.sol#L234) of `VaultLibV1.sol` > > Consider documenting and enforcing the intended relationship between NPM staking and liquidity provision.
1.0
[OZ] M-01 Unenforced staking requirement - **Please note that [OpenZeppelin](https://www.openzeppelin.com/) reported this issue.** >Adding liquidity requires a liquidity provider to have at least [a minimum amount of NPM tokens](https://github.com/neptune-mutual-blue/protocol/blob/73fc82fbe0d1388867b7df669983fe42760daeb1/contracts/libraries/VaultLibV1.sol#L151) staked in the vault. > >However, the purpose and usefulness of this requirement is unclear, since it can be bypassed. In particular: > * there is no relationship between the amount of PODs created and the size of the stake > * PODs are transferable to unstaked users, so users can provide liquidity without staking > * staked users can [exit their entire staked amount](https://github.com/neptune-mutual-blue/protocol/blob/73fc82fbe0d1388867b7df669983fe42760daeb1/contracts/core/liquidity/VaultLiquidity.sol#L113-L118) without redeeming any PODs by calling `removeLiquidity` with parameters `podsToRedeem = 0` , npmStakeToRemove = amount , and exit = 1 ; the exit = 1 is crucial as it allows execution of [line 234](https://github.com/neptune-mutual-blue/protocol/blob/73fc82fbe0d1388867b7df669983fe42760daeb1/contracts/libraries/VaultLibV1.sol#L234) of `VaultLibV1.sol` > > Consider documenting and enforcing the intended relationship between NPM staking and liquidity provision.
non_comp
m unenforced staking requirement please note that reported this issue adding liquidity requires a liquidity provider to have at least staked in the vault however the purpose and usefulness of this requirement is unclear since it can be bypassed in particular there is no relationship between the amount of pods created and the size of the stake pods are transferable to unstaked users so users can provide liquidity without staking staked users can without redeeming any pods by calling removeliquidity with parameters podstoredeem npmstaketoremove amount and exit the exit is crucial as it allows execution of of sol consider documenting and enforcing the intended relationship between npm staking and liquidity provision
0
17,106
23,615,904,915
IssuesEvent
2022-08-24 15:50:52
ricksouth/serilum-mc-mods
https://api.github.com/repos/ricksouth/serilum-mc-mods
closed
Repurposed Structures compat (Random Village Names)
Mod: Village Spawn Point Mod: Random Village Names Compatibility issue
A feature/suggestion I have is compatibility for the Repurposed Structures mod, specifically the Villages it adds (excluding the Nether ones, those are Piglins and not Villagers). These include: Badlands Village, Birch Village, Dark Oak Village, Giant Taiga Village, Jungle Village, Mountains Village, Oak Village, and Swamp Village. Thank you for reading, and have a nice day.
True
Repurposed Structures compat (Random Village Names) - A feature/suggestion I have is compatibility for the Repurposed Structures mod, specifically the Villages it adds (excluding the Nether ones, those are Piglins and not Villagers). These include: Badlands Village, Birch Village, Dark Oak Village, Giant Taiga Village, Jungle Village, Mountains Village, Oak Village, and Swamp Village. Thank you for reading, and have a nice day.
comp
repurposed structures compat random village names a feature suggestion i have is compatibility for the repurposed structures mod specifically the villages it adds excluding the nether ones those are piglins and not villagers these include badlands village birch village dark oak village giant taiga village jungle village mountains village oak village and swamp village thank you for reading and have a nice day
1
323,256
27,709,467,763
IssuesEvent
2023-03-14 13:25:04
dotnet/runtime
https://api.github.com/repos/dotnet/runtime
closed
[release/7.0][wasm] `System.Diagnostics.Tracing.Tests` failing with chrome ` Expected 210 assets to be downloaded, but only finished 211`
arch-wasm blocking-clean-ci area-VM-meta-mono test-failure
[Rolling build](https://dev.azure.com/dnceng-public/public/_build/results?buildId=173848&view=results), and [log](https://helixre107v0xd1eu3ibi6ka.blob.core.windows.net/dotnet-runtime-refs-heads-release-70-5a71e1721e634cb890/WasmTestOnBrowser-System.Diagnostics.Tracing.Tests/1/console.177a6515.log?helixlogtype=result): ``` [02:30:15] info: browser: [main] Console websocket connected. [02:30:18] fail: [out of order message from the browser]: http://127.0.0.1:49254/managed/msdia140.dll - Failed to load resource: net::ERR_CACHE_READ_FAILURE [02:30:27] fail: [out of order message from the browser]: http://127.0.0.1:49254/dotnet.js 4:47754 Uncaught Error: Assert failed: Expected 210 assets to be downloaded, but only finished 211 [02:30:27] fail: [out of order message from the browser]: http://127.0.0.1:49254/dotnet.js 4:47754 Uncaught Error: Assert failed: Expected 210 assets to be downloaded, but only finished 211 [02:30:27] fail: [out of order message from the browser]: http://127.0.0.1:49254/test-main.js 342:0 Uncaught Error: Assert failed: Expected 210 assets to be downloaded, but only finished 211 [02:30:27] fail: MONO_WASM: onRuntimeInitializedAsync() failed: {} [02:30:27] fail: MONO_WASM: Stacktrace: [02:30:27] fail: Error: Assert failed: Expected 210 assets to be downloaded, but only finished 211 at us (http://127.0.0.1:49254/dotnet.js:5:47755) at async hc (http://127.0.0.1:49254/dotnet.js:5:96851) [02:30:27] fail: Error: Assert failed: Expected 210 assets to be downloaded, but only finished 211 at us (http://127.0.0.1:49254/dotnet.js:5:47755) at async hc (http://127.0.0.1:49254/dotnet.js:5:96851) [02:30:27] fail: Error: Assert failed: Expected 210 assets to be downloaded, but only finished 211 at us (http://127.0.0.1:49254/dotnet.js:5:47755) at async hc (http://127.0.0.1:49254/dotnet.js:5:96851) [02:30:27] fail: Error: Assert failed: Expected 210 assets to be downloaded, but only finished 211 at us (http://127.0.0.1:49254/dotnet.js:5:47755) at async hc (http://127.0.0.1:49254/dotnet.js:5:96851) [02:30:27] fail: Error: Assert failed: Expected 210 assets to be downloaded, but only finished 211 at us (http://127.0.0.1:49254/dotnet.js:5:47755) at async hc (http://127.0.0.1:49254/dotnet.js:5:96851) [02:30:27] fail: Error: Assert failed: Expected 210 assets to be downloaded, but only finished 211 at us (http://127.0.0.1:49254/dotnet.js:5:47755) at async hc (http://127.0.0.1:49254/dotnet.js:5:96851) [02:30:27] fail: Error: Assert failed: Expected 210 assets to be downloaded, but only finished 211 at us (http://127.0.0.1:49254/dotnet.js:5:47755) at async hc (http://127.0.0.1:49254/dotnet.js:5:96851) [02:30:27] info: WASM EXIT 1 ``` Hit on PRs too. cc @pavelsavara @maraf <!-- Error message template --> ### Known Issue Error Message Fill the error message using [known issues guidance](https://github.com/dotnet/arcade/blob/main/Documentation/Projects/Build%20Analysis/KnownIssues.md#how-to-fill-out-a-known-issue-error-section). ```json { "ErrorPattern": ".*Error: Assert failed.*Expected.*assets to be downloaded, but only finished.*", "BuildRetry": false } ``` <!--Known issue error report start --> ### Report |Build|Definition|Test|Pull Request| |---|---|---|---| |[201611](https://dev.azure.com/dnceng-public/public/_build/results?buildId=201611)|dotnet/runtime|[Workloads-Webcil-Wasm.Build.Tests.WasmTemplateTests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=201611&view=ms.vss-test-web.build-test-results-tab&runId=3774324&resultId=100095)|| |[197972](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197972)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197972&view=ms.vss-test-web.build-test-results-tab&runId=3727938&resultId=186502)|dotnet/runtime#82432| |[197919](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197919)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197919&view=ms.vss-test-web.build-test-results-tab&runId=3726842&resultId=186502)|dotnet/runtime#82192| |[197634](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197634)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197634&view=ms.vss-test-web.build-test-results-tab&runId=3724339&resultId=186502)|dotnet/runtime#82851| |[197262](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197262)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197262&view=ms.vss-test-web.build-test-results-tab&runId=3718745&resultId=186502)|dotnet/runtime#82208| |[197257](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197257)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197257&view=ms.vss-test-web.build-test-results-tab&runId=3718572&resultId=186502)|dotnet/runtime#82174| |[197250](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197250)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197250&view=ms.vss-test-web.build-test-results-tab&runId=3718245&resultId=186502)|dotnet/runtime#82089| |[197231](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197231)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197231&view=ms.vss-test-web.build-test-results-tab&runId=3718046&resultId=186502)|| |[193598](https://dev.azure.com/dnceng-public/public/_build/results?buildId=193598)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=193598&view=ms.vss-test-web.build-test-results-tab&runId=3677211&resultId=186502)|dotnet/runtime#82192| |[192196](https://dev.azure.com/dnceng-public/public/_build/results?buildId=192196)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=192196&view=ms.vss-test-web.build-test-results-tab&runId=3660424&resultId=186502)|dotnet/runtime#82921| |[191057](https://dev.azure.com/dnceng-public/public/_build/results?buildId=191057)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=191057&view=ms.vss-test-web.build-test-results-tab&runId=3645794&resultId=186502)|dotnet/runtime#82174| |[188784](https://dev.azure.com/dnceng-public/public/_build/results?buildId=188784)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=188784&view=ms.vss-test-web.build-test-results-tab&runId=3619103&resultId=186503)|dotnet/runtime#82807| |[186414](https://dev.azure.com/dnceng-public/public/_build/results?buildId=186414)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=186414&view=ms.vss-test-web.build-test-results-tab&runId=3590430&resultId=186502)|dotnet/runtime#82192| |[182904](https://dev.azure.com/dnceng-public/public/_build/results?buildId=182904)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=182904&view=ms.vss-test-web.build-test-results-tab&runId=3571828&resultId=186502)|dotnet/runtime#82572| |[184113](https://dev.azure.com/dnceng-public/public/_build/results?buildId=184113)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=184113&view=ms.vss-test-web.build-test-results-tab&runId=3569137&resultId=186502)|dotnet/runtime#82089| |[182131](https://dev.azure.com/dnceng-public/public/_build/results?buildId=182131)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=182131&view=ms.vss-test-web.build-test-results-tab&runId=3548773&resultId=186502)|dotnet/runtime#82089| #### Summary |24-Hour Hit Count|7-Day Hit Count|1-Month Count| |---|---|---| |0|8|16| <!--Known issue error report end -->
1.0
[release/7.0][wasm] `System.Diagnostics.Tracing.Tests` failing with chrome ` Expected 210 assets to be downloaded, but only finished 211` - [Rolling build](https://dev.azure.com/dnceng-public/public/_build/results?buildId=173848&view=results), and [log](https://helixre107v0xd1eu3ibi6ka.blob.core.windows.net/dotnet-runtime-refs-heads-release-70-5a71e1721e634cb890/WasmTestOnBrowser-System.Diagnostics.Tracing.Tests/1/console.177a6515.log?helixlogtype=result): ``` [02:30:15] info: browser: [main] Console websocket connected. [02:30:18] fail: [out of order message from the browser]: http://127.0.0.1:49254/managed/msdia140.dll - Failed to load resource: net::ERR_CACHE_READ_FAILURE [02:30:27] fail: [out of order message from the browser]: http://127.0.0.1:49254/dotnet.js 4:47754 Uncaught Error: Assert failed: Expected 210 assets to be downloaded, but only finished 211 [02:30:27] fail: [out of order message from the browser]: http://127.0.0.1:49254/dotnet.js 4:47754 Uncaught Error: Assert failed: Expected 210 assets to be downloaded, but only finished 211 [02:30:27] fail: [out of order message from the browser]: http://127.0.0.1:49254/test-main.js 342:0 Uncaught Error: Assert failed: Expected 210 assets to be downloaded, but only finished 211 [02:30:27] fail: MONO_WASM: onRuntimeInitializedAsync() failed: {} [02:30:27] fail: MONO_WASM: Stacktrace: [02:30:27] fail: Error: Assert failed: Expected 210 assets to be downloaded, but only finished 211 at us (http://127.0.0.1:49254/dotnet.js:5:47755) at async hc (http://127.0.0.1:49254/dotnet.js:5:96851) [02:30:27] fail: Error: Assert failed: Expected 210 assets to be downloaded, but only finished 211 at us (http://127.0.0.1:49254/dotnet.js:5:47755) at async hc (http://127.0.0.1:49254/dotnet.js:5:96851) [02:30:27] fail: Error: Assert failed: Expected 210 assets to be downloaded, but only finished 211 at us (http://127.0.0.1:49254/dotnet.js:5:47755) at async hc (http://127.0.0.1:49254/dotnet.js:5:96851) [02:30:27] fail: Error: Assert failed: Expected 210 assets to be downloaded, but only finished 211 at us (http://127.0.0.1:49254/dotnet.js:5:47755) at async hc (http://127.0.0.1:49254/dotnet.js:5:96851) [02:30:27] fail: Error: Assert failed: Expected 210 assets to be downloaded, but only finished 211 at us (http://127.0.0.1:49254/dotnet.js:5:47755) at async hc (http://127.0.0.1:49254/dotnet.js:5:96851) [02:30:27] fail: Error: Assert failed: Expected 210 assets to be downloaded, but only finished 211 at us (http://127.0.0.1:49254/dotnet.js:5:47755) at async hc (http://127.0.0.1:49254/dotnet.js:5:96851) [02:30:27] fail: Error: Assert failed: Expected 210 assets to be downloaded, but only finished 211 at us (http://127.0.0.1:49254/dotnet.js:5:47755) at async hc (http://127.0.0.1:49254/dotnet.js:5:96851) [02:30:27] info: WASM EXIT 1 ``` Hit on PRs too. cc @pavelsavara @maraf <!-- Error message template --> ### Known Issue Error Message Fill the error message using [known issues guidance](https://github.com/dotnet/arcade/blob/main/Documentation/Projects/Build%20Analysis/KnownIssues.md#how-to-fill-out-a-known-issue-error-section). ```json { "ErrorPattern": ".*Error: Assert failed.*Expected.*assets to be downloaded, but only finished.*", "BuildRetry": false } ``` <!--Known issue error report start --> ### Report |Build|Definition|Test|Pull Request| |---|---|---|---| |[201611](https://dev.azure.com/dnceng-public/public/_build/results?buildId=201611)|dotnet/runtime|[Workloads-Webcil-Wasm.Build.Tests.WasmTemplateTests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=201611&view=ms.vss-test-web.build-test-results-tab&runId=3774324&resultId=100095)|| |[197972](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197972)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197972&view=ms.vss-test-web.build-test-results-tab&runId=3727938&resultId=186502)|dotnet/runtime#82432| |[197919](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197919)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197919&view=ms.vss-test-web.build-test-results-tab&runId=3726842&resultId=186502)|dotnet/runtime#82192| |[197634](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197634)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197634&view=ms.vss-test-web.build-test-results-tab&runId=3724339&resultId=186502)|dotnet/runtime#82851| |[197262](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197262)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197262&view=ms.vss-test-web.build-test-results-tab&runId=3718745&resultId=186502)|dotnet/runtime#82208| |[197257](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197257)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197257&view=ms.vss-test-web.build-test-results-tab&runId=3718572&resultId=186502)|dotnet/runtime#82174| |[197250](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197250)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197250&view=ms.vss-test-web.build-test-results-tab&runId=3718245&resultId=186502)|dotnet/runtime#82089| |[197231](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197231)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=197231&view=ms.vss-test-web.build-test-results-tab&runId=3718046&resultId=186502)|| |[193598](https://dev.azure.com/dnceng-public/public/_build/results?buildId=193598)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=193598&view=ms.vss-test-web.build-test-results-tab&runId=3677211&resultId=186502)|dotnet/runtime#82192| |[192196](https://dev.azure.com/dnceng-public/public/_build/results?buildId=192196)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=192196&view=ms.vss-test-web.build-test-results-tab&runId=3660424&resultId=186502)|dotnet/runtime#82921| |[191057](https://dev.azure.com/dnceng-public/public/_build/results?buildId=191057)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=191057&view=ms.vss-test-web.build-test-results-tab&runId=3645794&resultId=186502)|dotnet/runtime#82174| |[188784](https://dev.azure.com/dnceng-public/public/_build/results?buildId=188784)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=188784&view=ms.vss-test-web.build-test-results-tab&runId=3619103&resultId=186503)|dotnet/runtime#82807| |[186414](https://dev.azure.com/dnceng-public/public/_build/results?buildId=186414)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=186414&view=ms.vss-test-web.build-test-results-tab&runId=3590430&resultId=186502)|dotnet/runtime#82192| |[182904](https://dev.azure.com/dnceng-public/public/_build/results?buildId=182904)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=182904&view=ms.vss-test-web.build-test-results-tab&runId=3571828&resultId=186502)|dotnet/runtime#82572| |[184113](https://dev.azure.com/dnceng-public/public/_build/results?buildId=184113)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=184113&view=ms.vss-test-web.build-test-results-tab&runId=3569137&resultId=186502)|dotnet/runtime#82089| |[182131](https://dev.azure.com/dnceng-public/public/_build/results?buildId=182131)|dotnet/runtime|[WasmTestOnBrowser-System.Diagnostics.Tracing.Tests.WorkItemExecution](https://dev.azure.com/dnceng-public/public/_build/results?buildId=182131&view=ms.vss-test-web.build-test-results-tab&runId=3548773&resultId=186502)|dotnet/runtime#82089| #### Summary |24-Hour Hit Count|7-Day Hit Count|1-Month Count| |---|---|---| |0|8|16| <!--Known issue error report end -->
non_comp
system diagnostics tracing tests failing with chrome expected assets to be downloaded but only finished and info browser console websocket connected fail failed to load resource net err cache read failure fail uncaught error assert failed expected assets to be downloaded but only finished fail uncaught error assert failed expected assets to be downloaded but only finished fail uncaught error assert failed expected assets to be downloaded but only finished fail mono wasm onruntimeinitializedasync failed fail mono wasm stacktrace fail error assert failed expected assets to be downloaded but only finished at us at async hc fail error assert failed expected assets to be downloaded but only finished at us at async hc fail error assert failed expected assets to be downloaded but only finished at us at async hc fail error assert failed expected assets to be downloaded but only finished at us at async hc fail error assert failed expected assets to be downloaded but only finished at us at async hc fail error assert failed expected assets to be downloaded but only finished at us at async hc fail error assert failed expected assets to be downloaded but only finished at us at async hc info wasm exit hit on prs too cc pavelsavara maraf known issue error message fill the error message using json errorpattern error assert failed expected assets to be downloaded but only finished buildretry false report build definition test pull request summary hour hit count day hit count month count
0
133,001
18,792,212,564
IssuesEvent
2021-11-08 17:59:23
carbon-design-system/carbon-for-ibm-dotcom-website
https://api.github.com/repos/carbon-design-system/carbon-for-ibm-dotcom-website
closed
Content: [Support] Analysis of Slack messages
design priority: medium content sprint demo
Follow on from #1191, #1223 Analysis of the Slack Q&As to determine application of the information collected: What content can be rolled into existing guidance on the website? What needs to be done to develop the content further, for the two types of Bots? TIPS Bot, simple Q&A: providing base content for Jeff's initial bot to get started with the training Identify conversation sequence patterns for future conversational bot
1.0
Content: [Support] Analysis of Slack messages - Follow on from #1191, #1223 Analysis of the Slack Q&As to determine application of the information collected: What content can be rolled into existing guidance on the website? What needs to be done to develop the content further, for the two types of Bots? TIPS Bot, simple Q&A: providing base content for Jeff's initial bot to get started with the training Identify conversation sequence patterns for future conversational bot
non_comp
content analysis of slack messages follow on from analysis of the slack q as to determine application of the information collected what content can be rolled into existing guidance on the website what needs to be done to develop the content further for the two types of bots tips bot simple q a providing base content for jeff s initial bot to get started with the training identify conversation sequence patterns for future conversational bot
0
110,281
23,904,906,169
IssuesEvent
2022-09-08 23:01:28
unicode-org/icu4x
https://api.github.com/repos/unicode-org/icu4x
opened
Stabilize Case Mapping
help wanted T-core C-unicode S-epic
Previous issue: https://github.com/unicode-org/icu4x/issues/1226 We need to ensure that the case mapping crate conforms to the ICU4X style guide, including documentation and FFI. CC @iainireland to add anything else that we should plan before we promote case mapping.
1.0
Stabilize Case Mapping - Previous issue: https://github.com/unicode-org/icu4x/issues/1226 We need to ensure that the case mapping crate conforms to the ICU4X style guide, including documentation and FFI. CC @iainireland to add anything else that we should plan before we promote case mapping.
non_comp
stabilize case mapping previous issue we need to ensure that the case mapping crate conforms to the style guide including documentation and ffi cc iainireland to add anything else that we should plan before we promote case mapping
0
59,470
14,593,555,725
IssuesEvent
2020-12-19 23:33:08
sandboxie-plus/Sandboxie
https://api.github.com/repos/sandboxie-plus/Sandboxie
closed
File dialog window for "Add File/Folder" in "Resource Access"
enhancement fixed in next build
It would be nice to have the option instead of typing the strings in the "Path" field. Thanks
1.0
File dialog window for "Add File/Folder" in "Resource Access" - It would be nice to have the option instead of typing the strings in the "Path" field. Thanks
non_comp
file dialog window for add file folder in resource access it would be nice to have the option instead of typing the strings in the path field thanks
0
18,391
25,459,341,453
IssuesEvent
2022-11-24 16:57:44
mercedes-benz/sechub
https://api.github.com/repos/mercedes-benz/sechub
closed
Test SecHub Using Java 19
duplicate change management java compatibility
Test SecHub using Java 19. - [ ] Test whether SecHub can run using Java 19 - [ ] Test whether SecHub can be build using Java 19 Report/document any incompatibilities as part of the issue.
True
Test SecHub Using Java 19 - Test SecHub using Java 19. - [ ] Test whether SecHub can run using Java 19 - [ ] Test whether SecHub can be build using Java 19 Report/document any incompatibilities as part of the issue.
comp
test sechub using java test sechub using java test whether sechub can run using java test whether sechub can be build using java report document any incompatibilities as part of the issue
1
13,175
15,528,941,171
IssuesEvent
2021-03-13 13:12:37
jtothebell/fake-08
https://api.github.com/repos/jtothebell/fake-08
opened
Cartdata is not persisted
bug compatibility
Cartdata can be stored and retrieved with `dget` and `dset` but it does not currently persist. This means nothing is saved between runs of a cart.
True
Cartdata is not persisted - Cartdata can be stored and retrieved with `dget` and `dset` but it does not currently persist. This means nothing is saved between runs of a cart.
comp
cartdata is not persisted cartdata can be stored and retrieved with dget and dset but it does not currently persist this means nothing is saved between runs of a cart
1
2,058
4,779,264,083
IssuesEvent
2016-10-27 21:52:36
Polymer/polymer
https://api.github.com/repos/Polymer/polymer
closed
[2.x] Cannot provide custom `_template` using Legacy API
1.x-2.x compatibility 2.x
### Description Compatibility issue: providing a custom `_template` on the object passed to the legacy `Polymer` function results in it being stamped but not correctly bound.
True
[2.x] Cannot provide custom `_template` using Legacy API - ### Description Compatibility issue: providing a custom `_template` on the object passed to the legacy `Polymer` function results in it being stamped but not correctly bound.
comp
cannot provide custom template using legacy api description compatibility issue providing a custom template on the object passed to the legacy polymer function results in it being stamped but not correctly bound
1
19,644
27,286,048,934
IssuesEvent
2023-02-23 13:34:38
ClickHouse/ClickHouse
https://api.github.com/repos/ClickHouse/ClickHouse
closed
IPv4 Native Type Issues
backward compatibility
The introduction of native IPv4 in release 23.1 (https://github.com/ClickHouse/ClickHouse/pull/43221) caused some backward compatability issues with: - T64 Codec - Bloom Filter for secondary (skip) index To reproduce (https://fiddle.clickhouse.com/bf7da0b7-ec44-4bd1-978b-487dae5a62fd): ``` CREATE TABLE users ( uid Int16, name String, ip IPv4 CODEC(T64, ZSTD(1)), INDEX ip_idx ip TYPE bloom_filter GRANULARITY 4) ENGINE=MergeTree ORDER BY uid; INSERT INTO users VALUES (1231, 'John', '1.1.1.1'); INSERT INTO users VALUES (6666, 'Ksenia', '2.2.2.2'); INSERT INTO users VALUES (8888, 'Alice', '3.3.3.3'); SELECT * FROM users; ``` Will result in the following errors respectively: ``` Received exception from server (version 23.1.3): Code: 431. DB::Exception: Received from localhost:9000. DB::Exception: T64 codec is not supported for specified type IPv4. (ILLEGAL_SYNTAX_FOR_CODEC_TYPE) ``` ``` Received exception from server (version 23.1.3): Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Unexpected type IPv4 of bloom filter index.. (ILLEGAL_COLUMN) ```
True
IPv4 Native Type Issues - The introduction of native IPv4 in release 23.1 (https://github.com/ClickHouse/ClickHouse/pull/43221) caused some backward compatability issues with: - T64 Codec - Bloom Filter for secondary (skip) index To reproduce (https://fiddle.clickhouse.com/bf7da0b7-ec44-4bd1-978b-487dae5a62fd): ``` CREATE TABLE users ( uid Int16, name String, ip IPv4 CODEC(T64, ZSTD(1)), INDEX ip_idx ip TYPE bloom_filter GRANULARITY 4) ENGINE=MergeTree ORDER BY uid; INSERT INTO users VALUES (1231, 'John', '1.1.1.1'); INSERT INTO users VALUES (6666, 'Ksenia', '2.2.2.2'); INSERT INTO users VALUES (8888, 'Alice', '3.3.3.3'); SELECT * FROM users; ``` Will result in the following errors respectively: ``` Received exception from server (version 23.1.3): Code: 431. DB::Exception: Received from localhost:9000. DB::Exception: T64 codec is not supported for specified type IPv4. (ILLEGAL_SYNTAX_FOR_CODEC_TYPE) ``` ``` Received exception from server (version 23.1.3): Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Unexpected type IPv4 of bloom filter index.. (ILLEGAL_COLUMN) ```
comp
native type issues the introduction of native in release caused some backward compatability issues with codec bloom filter for secondary skip index to reproduce create table users uid name string ip codec zstd index ip idx ip type bloom filter granularity engine mergetree order by uid insert into users values john insert into users values ksenia insert into users values alice select from users will result in the following errors respectively received exception from server version code db exception received from localhost db exception codec is not supported for specified type illegal syntax for codec type received exception from server version code db exception received from localhost db exception unexpected type of bloom filter index illegal column
1