repo
stringlengths
7
67
org
stringlengths
2
32
issue_id
int64
780k
941M
issue_number
int64
1
134k
pull_request
dict
events
list
user_count
int64
1
77
event_count
int64
1
192
text_size
int64
0
329k
bot_issue
bool
1 class
modified_by_bot
bool
2 classes
text_size_no_bots
int64
0
279k
modified_usernames
bool
2 classes
nuxt-community/auth-module
nuxt-community
606,255,254
640
null
[ { "action": "opened", "author": "1shaked", "comment_id": null, "datetime": 1587728960000, "masked_author": "username_0", "text": "<!--\r\nIMPORTANT: Please use the following link to create a new issue:\r\n\r\nhttps://cmty.app/nuxt/issues/new?repo=auth-module\r\n\r\nIf your issue was not created using the app above, it will be closed immediately.\r\n-->\r\ni used nuxt auth for my project and i have two problems\r\nthe first is with the auth in nuxt.config.js which not getting the token \r\ni used propertyName and token as i will show below \r\n\r\n```\r\nauth: {\r\n strategies: {\r\n local: {\r\n endpoints: {\r\n login: { url: 'u/jwt/jwt/create/', method: 'post', propertyName: 'data.access' },\r\n logout: { url: 'u/jwt/jwt/refresh/', method: 'post' },\r\n user: { url: 'u/jwt/users/me/', method: 'get' , propertyName: ''}\r\n },\r\n // tokenRequired: false,\r\n tokenType: 'JWT'\r\n }\r\n }\r\n },\r\n```\r\ni also tried diffrent syntax\r\n```\r\nauth: {\r\n localStorage: false,\r\n strategies: {\r\n local: {\r\n token: {\r\n property: 'data.access'\r\n },\r\n refreshToken: {\r\n property: 'data.refresh' // change to your refresh token property\r\n },\r\n user: '',\r\n endpoints: {\r\n login: { url: 'u/jwt/jwt/create/', method: 'post' },\r\n logout: { url: 'u/jwt/jwt/refresh/', method: 'post' },\r\n user: { url: 'u/jwt/users/me/', method: 'get' }\r\n },\r\n tokenRequired: true,\r\n tokenType: 'JWT'\r\n }\r\n }\r\n }\r\n```\r\nbut both of them could not get the token. \r\ni had to do this manually by doing \r\n```\r\nthis.$axios.post('u/jwt/jwt/create/', {\r\n email: this.form.email,\r\n password: this.form.password\r\n }).then(respond => {\r\n const token = respond.data.access\r\n this.$auth.setUserToken(token)\r\n this.$axios.$get('u/jwt/users/me/')\r\n .then(user => {\r\n this.$auth.setUser(user)\r\n })\r\n })\r\n```\r\ni even try to recreate the project and just try the login functionality but both did not got the token i checked in the cookies backend and localStorage (when i check local storege i change the config the localStorage ture).", "title": "can not get the token", "type": "issue" }, { "action": "created", "author": "JoaoPedroAS51", "comment_id": 618965134, "datetime": 1587729154000, "masked_author": "username_1", "text": "Hi @username_0! Try to set token property to `access` without the `data.`", "title": null, "type": "comment" }, { "action": "created", "author": "1shaked", "comment_id": 618993803, "datetime": 1587733222000, "masked_author": "username_0", "text": "OK thx it is working when i am using the access without the data buu only when i am using properyName not when i am using the property object.\r\nthanks alot.", "title": null, "type": "comment" }, { "action": "closed", "author": "1shaked", "comment_id": null, "datetime": 1587733228000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "JoaoPedroAS51", "comment_id": 618995414, "datetime": 1587733420000, "masked_author": "username_1", "text": "That's because property object is for v5 that wasn't released yet. `propertyName` is for v4", "title": null, "type": "comment" } ]
2
5
2,401
false
false
2,401
true
47deg/scalacheck-toolbox
47deg
470,976,030
63
null
[ { "action": "opened", "author": "markus1189", "comment_id": null, "datetime": 1563786024000, "masked_author": "username_0", "text": "We are unfortunately blocked by this to upgrade to 2.13. When is a 2.13 release planned?", "title": "Support 2.13", "type": "issue" }, { "action": "created", "author": "reibitto", "comment_id": 533003525, "datetime": 1568877868000, "masked_author": "username_1", "text": "I see that both of the referenced issues have been merged. Is there anything else needed for this? Just wondering.", "title": null, "type": "comment" }, { "action": "created", "author": "juanpedromoreno", "comment_id": 533034510, "datetime": 1568883134000, "masked_author": "username_2", "text": "Thanks @username_1 , thanks for the reminder. Yeah, hopefully, this library is supporting Scala 2.13 today: https://github.com/47deg/scalacheck-toolbox/pull/68", "title": null, "type": "comment" }, { "action": "created", "author": "juanpedromoreno", "comment_id": 533297834, "datetime": 1568925155000, "masked_author": "username_2", "text": "`scalacheck-toolbox` 0.3.1 is out now, supporting Scala 2.13 :)", "title": null, "type": "comment" }, { "action": "closed", "author": "juanpedromoreno", "comment_id": null, "datetime": 1568925156000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" } ]
3
5
423
false
false
423
true
kubernetes/ingress-nginx
kubernetes
567,874,295
5,131
{ "number": 5131, "repo": "ingress-nginx", "user_login": "kubernetes" }
[ { "action": "opened", "author": "naseemkullah", "comment_id": null, "datetime": 1582149596000, "masked_author": "username_0", "text": "## What this PR does / why we need it:\r\nThis second dashboard helps end users drill down on a particular service and get more golden signals type metrics such as error rate by path and median upstream response time by path. \r\n\r\n## Types of changes\r\n<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->\r\n- [ ] Bug fix (non-breaking change which fixes an issue)\r\n- [x] New feature (non-breaking change which adds functionality)\r\n- [ ] Breaking change (fix or feature that would cause existing functionality to change)\r\n\r\n\r\n## How Has This Been Tested?\r\nDeployed in production at Transit, where this dashboard was developed by my colleague @n8han. We have agreed that it would be best to share it with the community.\r\n\r\n## Checklist:\r\n<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->\r\n<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->\r\n- [x] My change requires a change to the documentation.\r\n- [x] I have updated the documentation accordingly.\r\n- [x] I've read the [CONTRIBUTION](https://github.com/kubernetes/ingress-nginx/blob/master/CONTRIBUTING.md) guide\r\n- [n/a] I have added tests to cover my changes.\r\n- [x] All new and existing tests passed.", "title": "Add request handling performance dashboard", "type": "issue" }, { "action": "created", "author": "aledbf", "comment_id": 588545840, "datetime": 1582158385000, "masked_author": "username_1", "text": "/ok-to-test", "title": null, "type": "comment" }, { "action": "created", "author": "aledbf", "comment_id": 590010436, "datetime": 1582415885000, "masked_author": "username_1", "text": "/lgtm\r\n/approve", "title": null, "type": "comment" } ]
4
7
4,213
false
true
1,298
false
pedronauck/docz
null
346,953,517
185
null
[ { "action": "opened", "author": "denisborovikov", "comment_id": null, "datetime": 1533205868000, "masked_author": "username_0", "text": "## Bug Report\r\n\r\n```\r\nimport { Link } from 'docz';\r\n\r\n# Heading\r\n\r\nBefore\r\n\r\nFoo Bar <Link to=\"/my-document-route\">Name</Link> Baz\r\n\r\nAfter\r\n```\r\n\r\nrenders \r\n\r\n![image](https://user-images.githubusercontent.com/831065/43578706-29b59362-9682-11e8-96f1-edd682fabc1a.png)", "title": "Link component doesn't render properly ", "type": "issue" }, { "action": "created", "author": "denisborovikov", "comment_id": 409891176, "datetime": 1533208243000, "masked_author": "username_0", "text": "Maybe I was wrong and it it's not expected to use Link inside mdx. But how to make a link from one doc page to another then?", "title": null, "type": "comment" }, { "action": "created", "author": "denisborovikov", "comment_id": 409920682, "datetime": 1533215470000, "masked_author": "username_0", "text": "Just realized I can use regular markdown link `[Link](/my-document-route)`.", "title": null, "type": "comment" }, { "action": "closed", "author": "denisborovikov", "comment_id": null, "datetime": 1533215472000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "reopened", "author": "denisborovikov", "comment_id": null, "datetime": 1533215569000, "masked_author": "username_0", "text": "## Bug Report\r\n\r\n```\r\nimport { Link } from 'docz';\r\n\r\n# Heading\r\n\r\nBefore\r\n\r\nFoo Bar <Link to=\"/my-document-route\">Name</Link> Baz\r\n\r\nAfter\r\n```\r\n\r\nrenders \r\n\r\n![image](https://user-images.githubusercontent.com/831065/43578706-29b59362-9682-11e8-96f1-edd682fabc1a.png)", "title": "Link component doesn't render properly ", "type": "issue" }, { "action": "created", "author": "denisborovikov", "comment_id": 409921434, "datetime": 1533215613000, "masked_author": "username_0", "text": "Reopen the issue as regular markdown link reloads the entire application.", "title": null, "type": "comment" }, { "action": "created", "author": "denisborovikov", "comment_id": 410143024, "datetime": 1533271479000, "masked_author": "username_0", "text": "Thank you!", "title": null, "type": "comment" } ]
1
7
818
false
false
818
false
container-storage-interface/spec
container-storage-interface
377,681,646
298
{ "number": 298, "repo": "spec", "user_login": "container-storage-interface" }
[ { "action": "opened", "author": "xing-yang", "comment_id": null, "datetime": 1541476189000, "masked_author": "username_0", "text": "This PR reworded some language regarding DeleteVolume and\r\nDeleteSnapshot.\r\n\r\nFixes #225", "title": "Reword Language regarding DeleteVolume/DeleteSnapshot", "type": "issue" }, { "action": "created", "author": "xing-yang", "comment_id": 436122508, "datetime": 1541476283000, "masked_author": "username_0", "text": "@jdef @saad-ali Please take a look.", "title": null, "type": "comment" }, { "action": "created", "author": "julian-hj", "comment_id": 436805452, "datetime": 1541630695000, "masked_author": "username_1", "text": "To me, this still seems unnecessarily specific. I am not sure what we gain by having language about retention policies, which again gets into plugin implementation. Would we not achieve the same intent by just saying `If successful, the storage space associated with the volume MAY be released.`?", "title": null, "type": "comment" }, { "action": "created", "author": "xing-yang", "comment_id": 436830983, "datetime": 1541637668000, "masked_author": "username_0", "text": "Addressed review comments. @saad-ali @username_1 please take a look.", "title": null, "type": "comment" } ]
2
4
489
false
false
489
true
Ikuyadeu/vscode-R
null
541,374,588
155
null
[ { "action": "opened", "author": "vnijs", "comment_id": null, "datetime": 1576963113000, "masked_author": "username_0", "text": "Follow up on https://github.com/Ikuyadeu/vscode-R/issues/103#issuecomment-567054476\r\n\r\n`rmarkdown::run(file)` works great but I don't think there is a vscode-R command for it yet. Also, a keyboard shortcut would be nice.\r\n\r\nIt would also be convenient to be able to render selected chunks of text + math + code and see them in a web viewer (i.e., if a section of a document is selected the rmarkdown::run processes only processes that part).", "title": "R Session Watcher: Rmarkdown open HTML in webview", "type": "issue" }, { "action": "created", "author": "andycraig", "comment_id": 571850186, "datetime": 1578446826000, "masked_author": "username_1", "text": "For variables defined above the section that has been selected, would their values be taken from the current R session, or by running all the above code but only displaying the selected part? For example, imagine this R markdown file:\r\n\r\n ```\r\n x <- 1\r\n ```\r\n \r\n Select from here...\r\n ```\r\n x\r\n ```\r\n ...to here\r\n\r\nIf the current R session had `x` set to `2`, would the rendering show `x` as `1` or `2`?", "title": null, "type": "comment" }, { "action": "created", "author": "vnijs", "comment_id": 572371693, "datetime": 1578541848000, "masked_author": "username_0", "text": "\"would their values be taken from the current R session\". Yes. You can have Knitr / Rmarkdown run in a specified environment (e.g., Global). \r\n\r\nThere is already a keyboard short cut for running the whole file, although it doesn't open the html in preview. You can run also R-code from a code-chunk. However, you can't (yet) select a part of (large) Rmd document and preview that. I think that would be a great addition", "title": null, "type": "comment" }, { "action": "created", "author": "andycraig", "comment_id": 572439507, "datetime": 1578556876000, "masked_author": "username_1", "text": "Excellent!\r\n\r\nOne way of doing the selection preview this would be to have vscode-R create a temporary Rmd file using the current file's YAML header, and just the selected text, and then render that using the Global environment.\r\n\r\nMy understanding is that the goal here is to have the whole file re-render when it is saved, and if some text is selected (without any save) then just that section is rendered. If that's correct, then I'm not sure we'd be able to use `rmarkdown::run` as that wouldn't be able to handle the selection bit. But we should be able to trigger a `rmarkdown::render` whenever the file is saved, and a create and render a temporary file whenever a selection is made. \r\n\r\nI really like R markdown but there's a lot about it I don't know, so if you have a simpler approach to what I've described above please let me know! Also let me know if I'm describing something a bit different from the feature you want.", "title": null, "type": "comment" }, { "action": "created", "author": "vnijs", "comment_id": 572754811, "datetime": 1578603830000, "masked_author": "username_0", "text": "That sounds great. `knitr` has the option to us text directly which is easy for a selection. `rmarkdown requires a (temp) file but is also more general. I haven't use rmarkdown::run but updating on each save seem like it could be rather computationally expensive. Happy to help with the R-part of this if I can.", "title": null, "type": "comment" }, { "action": "created", "author": "andycraig", "comment_id": 573284852, "datetime": 1578721653000, "masked_author": "username_1", "text": "@username_0 I had a quick try with the `text` argument of `knitr::knit`:\r\n\r\n knitr::knit(text = \"```\\nx <- 1\\n```\")\r\n\r\nand it returned the string `\"```\\nx <- 1\\n```\"`, so I'm presumably not using it right. If you know what the correct way to handle a text argument is in order to get a rendered document could you let me know? Thank you!", "title": null, "type": "comment" }, { "action": "created", "author": "vnijs", "comment_id": 573286865, "datetime": 1578723423000, "masked_author": "username_0", "text": "[1] \"<pre><code class=\\\"r\\\">print(x)\\n</code></pre>\\n\\n<pre><code>## [1] 5\\n</code></pre>\\n\"\r\n```", "title": null, "type": "comment" }, { "action": "created", "author": "andycraig", "comment_id": 573288608, "datetime": 1578725282000, "masked_author": "username_1", "text": "@username_0 Whoops, that was a stupid omission on my part! Thank you for those examples, they will make a very good reference.\r\n\r\nvscode-R has a function `runSelectionOrWord` which wraps the selected with specified strings and opening and closing parentheses, and then sends that to the console. This could almost be used to pass the selected text into the `knitr::knit2html` call you've provided. It won't quite work as-is because it can't wrap the selected text in quote marks (although I suppose something could be done with Non-Standard Evaluation ...) The option to surround text in quote marks could be added very easily.\r\n\r\nThe advantages of that approach would be that it can be done without much modification to vscode-R, and it wouldn't need to use temp files. The disadvantages would be that it would need to send all the selected text to the console, and that the user would need to perform a specific command to render the selection rather than having it render automatically whenever a selection is made. Since it would be easier to implement, I'm tempted to try that to start with.", "title": null, "type": "comment" }, { "action": "created", "author": "vnijs", "comment_id": 573337844, "datetime": 1578764565000, "masked_author": "username_0", "text": "Having `knitr` functionality as a starting point would be great, I agree.", "title": null, "type": "comment" }, { "action": "created", "author": "andycraig", "comment_id": 614631767, "datetime": 1587041347000, "masked_author": "username_1", "text": "@username_0 I haven't tried it yet but rendering the selection should now be possible using the `knit2html` code you provided earlier and the `runCommandWithSelectionOrWord` command. Example of how to use `runCommandWithSelectionOrWord` here: https://github.com/Ikuyadeu/vscode-R#creating-keybindings-for-r-commands", "title": null, "type": "comment" }, { "action": "created", "author": "vnijs", "comment_id": 615535922, "datetime": 1587174264000, "masked_author": "username_0", "text": "Thanks @username_1. I think this could work (see below). Is there a convenient way to have the result from `args` shown in a vscode webview?\r\n\r\n {\r\n \"description\": \"knit to html\",\r\n \"key\": \"ctrl+i\",\r\n \"command\": \"r.runCommandWithSelectionOrWord\",\r\n \"when\": \"editorTextFocus\",\r\n \"args\": \"knitr::knit2html(text = \\\"$$\\\")\"\r\n }", "title": null, "type": "comment" }, { "action": "created", "author": "andycraig", "comment_id": 615537050, "datetime": 1587174772000, "masked_author": "username_1", "text": "I’m not sure. @username_2 Any ideas?", "title": null, "type": "comment" }, { "action": "created", "author": "renkun-ken", "comment_id": 615539221, "datetime": 1587175817000, "masked_author": "username_2", "text": "If the output is a plain html file, then I don't know a simple way to show it in webview since it requires an HTTP server to provide a URL like the R html help.", "title": null, "type": "comment" }, { "action": "created", "author": "vnijs", "comment_id": 620305733, "datetime": 1588033650000, "masked_author": "username_0", "text": "Would that mean putting the file in a specific location/folder that would map to a url?", "title": null, "type": "comment" }, { "action": "created", "author": "assignUser", "comment_id": 673600763, "datetime": 1597338852000, "masked_author": "username_3", "text": "@username_2 Shouldn't this be now possible (as long as the html is within the users workspace) with [Webview.asWebviewUri](https://code.visualstudio.com/api/extension-guides/webview#loading-local-content)?", "title": null, "type": "comment" }, { "action": "created", "author": "ElianHugh", "comment_id": 883821455, "datetime": 1626832030000, "masked_author": "username_4", "text": "We could probably support this by tweaking the new rmarkdown preview from #692", "title": null, "type": "comment" }, { "action": "created", "author": "ElianHugh", "comment_id": 899992072, "datetime": 1629176027000, "masked_author": "username_4", "text": "I've piggybacked on the rmarkdown preview function in order to preview selections: \r\n![image](https://user-images.githubusercontent.com/60372411/129665336-b1644f4e-5ed9-419a-8f65-c53360dbc64d.png)\r\n\r\nHowever, as can be seen in the terminal, it relies on saving the workspace to a .RData file for loading in the child process. I'm not super happy with having the user's terminal spammed like that, but I'm not sure of a way to avoid it...", "title": null, "type": "comment" } ]
5
17
5,805
false
false
5,805
true
data-driven-forms/react-forms
data-driven-forms
609,212,280
461
{ "number": 461, "repo": "react-forms", "user_login": "data-driven-forms" }
[ { "action": "opened", "author": "rvsia", "comment_id": null, "datetime": 1588179644000, "masked_author": "username_0", "text": "More captivating landing page\r\n\r\n- Get started brings user to Getting started page (there is now a very basic tutorial with links to installation) \r\n\r\nI think it's more important to show and say what DDF is and what it can do. Installation instructions are good after people know what it does and why they should want to use it.\r\n\r\n![screencapture-localhost-3000-2020-04-30-11_08_08](https://user-images.githubusercontent.com/32869456/80693214-f962fa00-8ad2-11ea-94c4-5c979e832c76.png)", "title": "[WIP] Redesign documentation landing page", "type": "issue" }, { "action": "created", "author": "Hyperkid123", "comment_id": 623290473, "datetime": 1588575115000, "masked_author": "username_1", "text": ":tada: This PR is included in version 2.1.9 :tada:\n\nThe release is available on \n\n- [react-form-renderer (@latest dist-tag)](https://www.npmjs.com/package/@data-driven-forms/react-form-renderer)\n\n- [pf3-component-mapper (@latest dist-tag)](https://www.npmjs.com/package/@data-driven-forms/pf3-component-mapper)\n\n- [pf4-component-mapper (@latest dist-tag)](https://www.npmjs.com/package/@data-driven-forms/pf4-component-mapper)\n\n- [mui-component-mapper (@latest dist-tag)](https://www.npmjs.com/package/@data-driven-forms/mui-component-mapper)\n\nDemo can be found [here](http://data-driven-forms.org/)!", "title": null, "type": "comment" } ]
3
3
1,085
false
true
1,085
false
carbon-design-system/carbon-website
carbon-design-system
603,401,656
1,119
{ "number": 1119, "repo": "carbon-website", "user_login": "carbon-design-system" }
[ { "action": "opened", "author": "Sw0rdiX", "comment_id": null, "datetime": 1587403120000, "masked_author": "username_0", "text": "spellchecking\r\n\r\nCloses #\r\n\r\n{{short description}}\r\n\r\n#### Changelog\r\n\r\n**New**\r\n\r\n- {{new thing}}\r\n\r\n**Changed**\r\n\r\n- {{change thing}}\r\n\r\n**Removed**\r\n\r\n- {{removed thing}}", "title": "Update step-1.mdx", "type": "issue" } ]
3
3
554
false
true
173
false
randytarampi/lwip
null
418,844,397
3
null
[ { "action": "opened", "author": "randytarampi", "comment_id": null, "datetime": 1552060371000, "masked_author": "username_0", "text": "## :rotating_light: The automated release from the `master` branch failed. :rotating_light:\n\nI recommend you give this issue a high priority, so other packages depending on you could benefit from your bug fixes and new features.\n\nYou can find below the list of errors reported by **semantic-release**. Each one of them has to be resolved in order to automatically publish your package. I’m sure you can resolve this 💪.\n\nErrors are usually caused by a misconfiguration or an authentication problem. With each error reported below you will find explanation and guidance to help you to resolve it.\n\nOnce all the errors are resolved, **semantic-release** will release your package the next time you push a commit to the `master` branch. You can also manually restart the failed CI job that runs **semantic-release**.\n\nIf you are not sure how to resolve this, here is some links that can help you:\n- [Usage documentation](https://github.com/semantic-release/semantic-release/blob/caribou/docs/usage/README.md)\n- [Frequently Asked Questions](https://github.com/semantic-release/semantic-release/blob/caribou/docs/support/FAQ.md)\n- [Support channels](https://github.com/semantic-release/semantic-release#get-help)\n\nIf those don’t help, or if this issue is reporting something you think isn’t right, you can always ask the humans behind **[semantic-release](https://github.com/semantic-release/semantic-release/issues/new)**.\n\n---\n\n### No npm token specified.\n\nAn [npm token](https://github.com/semantic-release/npm/blob/master/README.md#npm-registry-authentication) must be created and set in the `NPM_TOKEN` environment variable on your CI environment.\n\nPlease make sure to create an [npm token](https://docs.npmjs.com/getting-started/working_with_tokens#how-to-create-new-tokens) and to set it in the `NPM_TOKEN` environment variable on your CI environment. The token must allow to publish to the registry `https://registry.npmjs.org/`.\n\n---\n\nGood luck with your project ✨\n\nYour **[semantic-release](https://github.com/semantic-release/semantic-release)** bot :package::rocket:\n\n<!-- semantic-release:github -->", "title": "The automated release is failing 🚨", "type": "issue" }, { "action": "created", "author": "randytarampi", "comment_id": 470978191, "datetime": 1552060693000, "masked_author": "username_0", "text": "## :rotating_light: The automated release from the `master` branch failed. :rotating_light:\n\nI recommend you give this issue a high priority, so other packages depending on you could benefit from your bug fixes and new features.\n\nYou can find below the list of errors reported by **semantic-release**. Each one of them has to be resolved in order to automatically publish your package. I’m sure you can resolve this 💪.\n\nErrors are usually caused by a misconfiguration or an authentication problem. With each error reported below you will find explanation and guidance to help you to resolve it.\n\nOnce all the errors are resolved, **semantic-release** will release your package the next time you push a commit to the `master` branch. You can also manually restart the failed CI job that runs **semantic-release**.\n\nIf you are not sure how to resolve this, here is some links that can help you:\n- [Usage documentation](https://github.com/semantic-release/semantic-release/blob/caribou/docs/usage/README.md)\n- [Frequently Asked Questions](https://github.com/semantic-release/semantic-release/blob/caribou/docs/support/FAQ.md)\n- [Support channels](https://github.com/semantic-release/semantic-release#get-help)\n\nIf those don’t help, or if this issue is reporting something you think isn’t right, you can always ask the humans behind **[semantic-release](https://github.com/semantic-release/semantic-release/issues/new)**.\n\n---\n\n### No npm token specified.\n\nAn [npm token](https://github.com/semantic-release/npm/blob/master/README.md#npm-registry-authentication) must be created and set in the `NPM_TOKEN` environment variable on your CI environment.\n\nPlease make sure to create an [npm token](https://docs.npmjs.com/getting-started/working_with_tokens#how-to-create-new-tokens) and to set it in the `NPM_TOKEN` environment variable on your CI environment. The token must allow to publish to the registry `https://registry.npmjs.org/`.\n\n---\n\nGood luck with your project ✨\n\nYour **[semantic-release](https://github.com/semantic-release/semantic-release)** bot :package::rocket:", "title": null, "type": "comment" }, { "action": "closed", "author": "randytarampi", "comment_id": null, "datetime": 1552069681000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
3
4,178
false
false
4,178
false
kemitix/thorp
null
561,949,962
320
{ "number": 320, "repo": "thorp", "user_login": "kemitix" }
[ { "action": "opened", "author": "scala-steward", "comment_id": null, "datetime": 1581125694000, "masked_author": "username_0", "text": "Updates [com.amazonaws:aws-java-sdk-s3](https://aws.amazon.com/sdkforjava) from 1.11.661 to 1.11.718.\n\n\nI'll automatically update this PR to resolve conflicts as long as you don't change it yourself.\n\nIf you'd like to skip this version, you can just close this PR. If you have any feedback, just mention me in the comments below.\n\nHave a fantastic day writing Scala!\n\n<details>\n<summary>Ignore future updates</summary>\n\nAdd this to your `.username_0.conf` file to ignore future updates of this dependency:\n```\nupdates.ignore = [ { groupId = \"com.amazonaws\", artifactId = \"aws-java-sdk-s3\" } ]\n```\n</details>\n\nlabels: library-update, semver-patch", "title": "Update aws-java-sdk-s3 to 1.11.718", "type": "issue" } ]
2
2
648
false
true
648
true
konvajs/konva
konvajs
539,157,772
813
null
[ { "action": "opened", "author": "simone-b", "comment_id": null, "datetime": 1576598287000, "masked_author": "username_0", "text": "Hello,\r\n\r\nWhen I apply a rotation (different of 0°, 90°, 180°, 360°) the method getClientRect() returns values bigger than the size of my shape. (example below)\r\n\r\n|Client Rect not OK with ~50 degrees rotation | Client Rect OK with 90 degrees rotation | Client Rect OK with 0 degrees rotation |\r\n|---|---|---|\r\n| <a href=\"https://imgbb.com/\"><img src=\"https://i.ibb.co/hgHtzSc/NOK-50-degrees.png\" alt=\"NOK-50-degrees\" border=\"0\"></a> | <a href=\"https://imgbb.com/\"><img src=\"https://i.ibb.co/DVbv7Wq/OK-90-degrees.png\" alt=\"OK-90-degrees\" border=\"0\"></a> | <a href=\"https://imgbb.com/\"><img src=\"https://i.ibb.co/gP7NVtY/OK-0-degrees.png\" alt=\"OK-0-degrees\" border=\"0\"></a> |\r\n\r\nI've tried 2 different methods to do the rotation and I still have the same result :\r\n\r\n- The first one, by setting :\r\n - offsetX = shape.width / 2\r\n - offsetY = shape.height / 2\r\n And just applying the rotation so : shape.rotate(X);\r\n\r\n- The second one by computing the new X & Y position of my shape.\r\n\r\nIs there something I do wrong ? Or is there an issue with the getClientRect method?\r\n\r\nI was unable to find any information regarding a similar issue, did someone has encountered the same issue?\r\n\r\nYou can find an example on the following codepen : https://codepen.io/kep2bh/pen/GRgNagM\r\nTo display the clientRect, just click on the \"rotate\" button. It will rotate the shape and then display the clientRect.", "title": "getClientRect invalid after rotation", "type": "issue" }, { "action": "created", "author": "lavrton", "comment_id": 566637911, "datetime": 1576599817000, "masked_author": "username_1", "text": "That is how `node.getClientRect()` calculation works. Sometimes it gives approximate and results.\r\n\r\nFrom this picture, you can understand why it has such padding when rotated.\r\n\r\n<img width=\"272\" alt=\"Screenshot 2019-12-17 at 11 21 23\" src=\"https://user-images.githubusercontent.com/1443320/71014229-9a6e8c80-20bf-11ea-8bea-98a656aaf134.png\">", "title": null, "type": "comment" }, { "action": "created", "author": "simone-b", "comment_id": 566948341, "datetime": 1576661037000, "masked_author": "username_0", "text": "Hi,\r\n\r\nThank you very much for your answer. Now I understand why getClientRect behaves like that.\r\n\r\nActually, I'm using it to get the boundings of my shape in order to snap my shape on different lines. Since the Rect returned has padding, the snapping of my shape includes that padding.\r\n\r\nIs there at least a way (a formula ?) to get each point at the end of my shape ? (left, right, top, bottom)\r\nThat would help me to determine the real boundings of the shape to use for the snapping.", "title": null, "type": "comment" }, { "action": "created", "author": "lavrton", "comment_id": 568493137, "datetime": 1577112103000, "masked_author": "username_1", "text": "Yeah, you can try it. Also you can take a look into `getSelfRect` function https://github.com/konvajs/konva/blob/fbebc3fad2b85055bd8d5be8af604e96ce9b6a81/src/shapes/Path.ts#L103\r\n\r\nAnd you can use that code, but instead of an approximate rectangle of the shape, you can try to transform and rotate each corner point.", "title": null, "type": "comment" }, { "action": "closed", "author": "lavrton", "comment_id": null, "datetime": 1577112103000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
5
2,580
false
false
2,580
false
kidjp85/react-id-swiper
null
645,046,360
444
null
[ { "action": "opened", "author": "615349", "comment_id": null, "datetime": 1593042266000, "masked_author": "username_0", "text": "i have\r\n\r\n`const [swiper, updateSwiper] = useState(null);\r\n\r\n useEffect(() => {\r\n if (swiper !== null) {\r\n const onSlideChangeHandler = () => onSlideChange(swiper.realIndex);\r\n\r\n swiper.on('slideChange', onSlideChangeHandler);\r\n\r\n return () => {\r\n swiper.off('slideChange', onSlideChangeHandler);\r\n };\r\n }\r\n }, [onSlideChange, swiper]);\r\n \r\n const params = {\r\n initialSlide: currentIndex,\r\n getSwiper: s => updateSwiper(s),\r\n shouldSwiperUpdate: true\r\n };\r\n`\r\n\r\nso I have one `params` to get the swiper instance, and have callback on swiper slide change, but in the latest 4.0.0, `getSwiper` is removed. \r\n\r\nwhat is the replacement? why cannot it be backward compatible?", "title": "in 4.0.0, getSwiper is removed, what is the replacement?", "type": "issue" }, { "action": "created", "author": "kidjp85", "comment_id": 650032576, "datetime": 1593157377000, "masked_author": "username_1", "text": "Let use `ref` instead. You can find more info from README", "title": null, "type": "comment" }, { "action": "closed", "author": "kidjp85", "comment_id": null, "datetime": 1593157378000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
774
false
false
774
false
imjoy-team/kaibu
imjoy-team
637,074,919
10
{ "number": 10, "repo": "kaibu", "user_login": "imjoy-team" }
[ { "action": "opened", "author": "oeway", "comment_id": null, "datetime": 1591886649000, "masked_author": "username_0", "text": "This PR add initial screenshot support, notice that it's not working with itk-vtk layer yet.\r\n\r\n The undefined name issue reported by @muellerflorian is fixed in this PR.", "title": "Support taking screenshot", "type": "issue" } ]
2
3
449
false
true
171
false
dafny-lang/dafny
dafny-lang
562,093,627
535
null
[ { "action": "opened", "author": "seanmcl", "comment_id": null, "datetime": 1581204545000, "masked_author": "username_0", "text": "With a clean checkout:\r\n\r\n```\r\n$ msbuild Source/Dafny.sln\r\nMicrosoft (R) Build Engine version 16.1.85+gad9c9926a7 for Mono\r\nCopyright (C) Microsoft Corporation. All rights reserved.\r\n\r\nBuild started 2/8/2020 3:28:06 PM.\r\nProject \"/Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Source/Dafny.sln\" on node 1 (default targets).\r\nValidateSolutionConfiguration:\r\n Building solution configuration \"Debug|Mixed Platforms\".\r\nProject \"/Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Source/Dafny.sln\" (1) is building \"/Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Source/DafnyDriver/DafnyDriver.csproj\" (2) on node 1 (default targets).\r\nPrepareForBuild:\r\n Creating directory \"obj/Debug/\".\r\nProject \"/Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Source/DafnyDriver/DafnyDriver.csproj\" (2) is building \"/Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Source/DafnyRuntime/DafnyRuntime.csproj\" (3:2) on node 1 (default targets).\r\nPrepareForBuild:\r\n Creating directory \"obj/Debug/\".\r\nGenerateTargetFrameworkMonikerAttribute:\r\nSkipping target \"GenerateTargetFrameworkMonikerAttribute\" because all output files are up-to-date with respect to the input files.\r\nCoreCompile:\r\n /usr/local/Cellar/mono/6.6.0.161/lib/mono/msbuild/Current/bin/Roslyn/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /errorreport:prompt /warn:4 /define:TRACE;DEBUG;ISDAFNYRUNTIMELIB /highentropyva+ /reference:/usr/local/Cellar/mono/6.6.0.161/lib/mono/4.5-api/Microsoft.CSharp.dll /reference:/usr/local/Cellar/mono/6.6.0.161/lib/mono/4.5-api/mscorlib.dll /reference:/usr/local/Cellar/mono/6.6.0.161/lib/mono/4.5-api/System.Core.dll /reference:/usr/local/Cellar/mono/6.6.0.161/lib/mono/4.5-api/System.Data.DataSetExtensions.dll /reference:/usr/local/Cellar/mono/6.6.0.161/lib/mono/4.5-api/System.Data.dll /reference:/usr/local/Cellar/mono/6.6.0.161/lib/mono/4.5-api/System.dll /reference:/usr/local/Cellar/mono/6.6.0.161/lib/mono/4.5-api/System.Numerics.dll /reference:/usr/local/Cellar/mono/6.6.0.161/lib/mono/4.5-api/System.Xml.dll /reference:/usr/local/Cellar/mono/6.6.0.161/lib/mono/4.5-api/System.Xml.Linq.dll /debug+ /debug:portable /filealign:512 /keyfile:../InterimKey.snk /optimize- /out:obj/Debug/DafnyRuntime.dll /subsystemversion:6.00 /target:library /utf8output /langversion:7.3 DafnyRuntime.cs \"/var/folders/85/f0tdypl56qj4hllhy6_37wmd0nr39q/T/.NETFramework,Version=v4.5.AssemblyAttributes.cs\"\r\n_CopyOutOfDateSourceItemsToOutputDirectoryAlways:\r\n Copying file from \"/Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Source/DafnyRuntime/DafnyRuntime.cs\" to \"/Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Binaries/DafnyRuntime.cs\".\r\nCopyFilesToOutputDirectory:\r\n Copying file from \"/Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Source/DafnyRuntime/obj/Debug/DafnyRuntime.dll\" to \"/Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Binaries/DafnyRuntime.dll\".\r\n DafnyRuntime -> /Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Binaries/DafnyRuntime.dll\r\n Copying file from \"/Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Source/DafnyRuntime/obj/Debug/DafnyRuntime.pdb\" to \"/Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Binaries/DafnyRuntime.pdb\".\r\nDone Building Project \"/Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Source/DafnyRuntime/DafnyRuntime.csproj\" (default targets).\r\nProject \"/Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Source/DafnyDriver/DafnyDriver.csproj\" (2) is building \"/Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Source/Dafny/DafnyPipeline.csproj\" (4:2) on node 1 (default targets).\r\nPrepareForBuild:\r\n Creating directory \"bin/Debug/\".\r\n Creating directory \"obj/Debug/\".\r\nGenerateTargetFrameworkMonikerAttribute:\r\nSkipping target \"GenerateTargetFrameworkMonikerAttribute\" because all output files are up-to-date with respect to the input files.\r\nCoreCompile:\r\n /usr/local/Cellar/mono/6.6.0.161/lib/mono/msbuild/Current/bin/Roslyn/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /errorreport:prompt /warn:4 /define:TRACE;DEBUG;NO_ENABLE_IRONDAFNY /highentropyva+ /reference:/Users/username_0/Dropbox/sean/src/third_party/ms/boogie/Binaries/BoogieBasetypes.dll /reference:/Users/username_0/Dropbox/sean/src/third_party/ms/boogie/Binaries/BoogieCore.dll /reference:/Users/username_0/Dropbox/sean/src/third_party/ms/boogie/Binaries/BoogieParserHelper.dll /reference:/Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Binaries/DafnyRuntime.dll /reference:/usr/local/Cellar/mono/6.6.0.161/lib/mono/4.5-api/mscorlib.dll /reference:/usr/local/Cellar/mono/6.6.0.161/lib/mono/4.5-api/System.Core.dll /reference:/usr/local/Cellar/mono/6.6.0.161/lib/mono/4.5-api/System.dll /reference:/usr/local/Cellar/mono/6.6.0.161/lib/mono/4.5-api/System.Numerics.dll /debug+ /debug:portable /filealign:512 /keyfile:../InterimKey.snk /optimize- /out:obj/Debug/DafnyPipeline.dll /ruleset:AllRules.ruleset /subsystemversion:6.00 /target:library /utf8output /langversion:7.3 Cloner.cs Compiler-Csharp.cs Compiler-go.cs Compiler-js.cs Compiler-java.cs Reporting.cs Triggers/QuantifiersCollection.cs Triggers/QuantifierSplitter.cs Triggers/TriggerExtensions.cs Triggers/QuantifiersCollector.cs Triggers/TriggersCollector.cs Triggers/TriggerUtils.cs Util.cs Compiler.cs BigIntegerParser.cs DafnyAst.cs DafnyMain.cs DafnyOptions.cs Printer.cs RefinementTransformer.cs Resolver.cs Rewriter.cs SccGraph.cs Translator.cs ../version.cs cce.cs Parser.cs Scanner.cs \"/var/folders/85/f0tdypl56qj4hllhy6_37wmd0nr39q/T/.NETFramework,Version=v4.5.AssemblyAttributes.cs\"\r\nDafnyMain.cs(13,7): error CS0246: The type or namespace name 'Mono' could not be found (are you missing a using directive or an assembly reference?) [/Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Source/Dafny/DafnyPipeline.csproj]\r\nDone Building Project \"/Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Source/Dafny/DafnyPipeline.csproj\" (default targets) -- FAILED.\r\nDone Building Project \"/Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Source/DafnyDriver/DafnyDriver.csproj\" (default targets) -- FAILED.\r\nDone Building Project \"/Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Source/Dafny.sln\" (default targets) -- FAILED.\r\n\r\nBuild FAILED.\r\n\r\n\"/Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Source/Dafny.sln\" (default target) (1) ->\r\n\"/Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Source/DafnyDriver/DafnyDriver.csproj\" (default target) (2) ->\r\n\"/Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Source/Dafny/DafnyPipeline.csproj\" (default target) (4:2) ->\r\n(CoreCompile target) ->\r\n DafnyMain.cs(13,7): error CS0246: The type or namespace name 'Mono' could not be found (are you missing a using directive or an assembly reference?) [/Users/username_0/Dropbox/sean/src/third_party/ms/dafny/Source/Dafny/DafnyPipeline.csproj]\r\n\r\n 0 Warning(s)\r\n 1 Error(s)\r\n\r\nTime Elapsed 00:00:04.29\r\n```", "title": "master branch doesn't build on OSX", "type": "issue" }, { "action": "created", "author": "seanmcl", "comment_id": 583787441, "datetime": 1581204717000, "masked_author": "username_0", "text": "It was broken by this commit: d1645084", "title": null, "type": "comment" }, { "action": "created", "author": "seanmcl", "comment_id": 583794178, "datetime": 1581211474000, "masked_author": "username_0", "text": "User error: Need to run `nuget restore Source/Dafny.sln`.", "title": null, "type": "comment" }, { "action": "closed", "author": "seanmcl", "comment_id": null, "datetime": 1581211475000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
4
6,935
false
false
6,935
true
GenomicsDB/GenomicsDB
GenomicsDB
472,423,323
52
null
[ { "action": "opened", "author": "nalinigans", "comment_id": null, "datetime": 1563991799000, "masked_author": "username_0", "text": "This is a placeholder to hold issues we are seeing with logging currently and collect ideas on how to improve logging.", "title": "Improve Logging in GenomicsDB", "type": "issue" }, { "action": "created", "author": "nalinigans", "comment_id": 514741129, "datetime": 1563991952000, "masked_author": "username_0", "text": "Issue 1: Seen from gatk GenomicsDBImport ...\r\n```\r\nCommand: ./gatk GenomicsDBImport --genomicsdb-workspace-path ws -L LG02 --sample-name-map /nfs3/nalini/gatk-issues/vcfs.sample.map\r\nUsing GATK wrapper script /nfs/home/nalini/gatk/build/install/gatk/bin/gatk\r\nRunning:\r\n /nfs/home/nalini/gatk/build/install/gatk/bin/gatk GenomicsDBImport --genomicsdb-workspace-path ws -L LG02 --sample-name-map /nfs3/nalini/gatk-issues/vcfs.sample.map\r\n11:06:44.271 INFO NativeLibraryLoader - Loading libgkl_compression.so from jar:file:/nfs/home/nalini/gatk/build/install/gatk/lib/gkl-0.8.6.jar!/com/intel/gkl/native/libgkl_compression.so\r\nJul 24, 2019 11:06:45 AM shaded.cloud_nio.com.google.auth.oauth2.ComputeEngineCredentials runningOnComputeEngine\r\nINFO: Failed to detect whether we are running on Google Compute Engine.\r\n11:06:45.940 INFO GenomicsDBImport - ------------------------------------------------------------\r\n11:06:45.940 INFO GenomicsDBImport - The Genome Analysis Toolkit (GATK) v4.1.2.0-40-gb11abd1-SNAPSHOT\r\n11:06:45.940 INFO GenomicsDBImport - For support and documentation go to https://software.broadinstitute.org/gatk/\r\n11:06:45.941 INFO GenomicsDBImport - Executing as nalini@oda-compute-0-6.oda-internal.com on Linux v3.10.0-957.10.1.el7.x86_64 amd64\r\n11:06:45.942 INFO GenomicsDBImport - Java runtime: OpenJDK 64-Bit Server VM v1.8.0_212-b04\r\n11:06:45.942 INFO GenomicsDBImport - Start Date/Time: July 24, 2019 11:06:44 AM PDT\r\n11:06:45.942 INFO GenomicsDBImport - ------------------------------------------------------------\r\n11:06:45.942 INFO GenomicsDBImport - ------------------------------------------------------------\r\n11:06:45.942 INFO GenomicsDBImport - HTSJDK Version: 2.19.0\r\n11:06:45.942 INFO GenomicsDBImport - Picard Version: 2.19.0\r\n11:06:45.943 INFO GenomicsDBImport - HTSJDK Defaults.COMPRESSION_LEVEL : 2\r\n11:06:45.943 INFO GenomicsDBImport - HTSJDK Defaults.USE_ASYNC_IO_READ_FOR_SAMTOOLS : false\r\n11:06:45.943 INFO GenomicsDBImport - HTSJDK Defaults.USE_ASYNC_IO_WRITE_FOR_SAMTOOLS : true\r\n11:06:45.943 INFO GenomicsDBImport - HTSJDK Defaults.USE_ASYNC_IO_WRITE_FOR_TRIBBLE : false\r\n11:06:45.943 INFO GenomicsDBImport - Deflater: IntelDeflater\r\n11:06:45.943 INFO GenomicsDBImport - Inflater: IntelInflater\r\n11:06:45.943 INFO GenomicsDBImport - GCS max retries/reopens: 20\r\n11:06:45.943 INFO GenomicsDBImport - Requester pays: disabled\r\n11:06:45.943 INFO GenomicsDBImport - Initializing engine\r\n11:06:46.248 INFO IntervalArgumentCollection - Processing 24054406 bp from intervals\r\n11:06:46.250 INFO GenomicsDBImport - Done initializing engine\r\n11:06:46.534 INFO GenomicsDBImport - Vid Map JSON file will be written to /nfs/home/nalini/gatk/ws/vidmap.json\r\n11:06:46.534 INFO GenomicsDBImport - Callset Map JSON file will be written to /nfs/home/nalini/gatk/ws/callset.json\r\n11:06:46.534 INFO GenomicsDBImport - Complete VCF Header will be written to /nfs/home/nalini/gatk/ws/vcfheader.vcf\r\n11:06:46.534 INFO GenomicsDBImport - Importing to array - /nfs/home/nalini/gatk/ws/genomicsdb_array\r\n11:06:46.534 INFO ProgressMeter - Starting traversal\r\n11:06:46.534 INFO ProgressMeter - Current Locus Elapsed Minutes Batches Processed Batches/Minute\r\n11:06:47.770 INFO GenomicsDBImport - Importing batch 1 with 12 samples\r\nterminate called after throwing an instance of 'File2TileDBBinaryException'\r\n what(): File2TileDBBinaryException : read_one_line_fully && \"Buffer did not have space to hold a line fully - increase buffer size\"\r\n```", "title": null, "type": "comment" } ]
1
2
3,626
false
false
3,626
false
vdaas/vald-client-clj
vdaas
630,100,867
8
{ "number": 8, "repo": "vald-client-clj", "user_login": "vdaas" }
[ { "action": "opened", "author": "rinx", "comment_id": null, "datetime": 1591198668000, "masked_author": "username_0", "text": "", "title": ":heavy_plus_sign: use clj-random", "type": "issue" } ]
2
2
0
false
true
0
false
sociomantic-tsunami/ocean
sociomantic-tsunami
364,124,702
637
{ "number": 637, "repo": "ocean", "user_login": "sociomantic-tsunami" }
[ { "action": "opened", "author": "andrew-stevenson-sociomantic", "comment_id": null, "datetime": 1537981163000, "masked_author": "username_0", "text": "address_pathnul is a buffer containing a C string", "title": "Stop printing at \\0", "type": "issue" }, { "action": "created", "author": "andrew-stevenson-sociomantic", "comment_id": 425025189, "datetime": 1538040830000, "masked_author": "username_0", "text": "Updated to fix the similar bug spotted by @matthias-wende-sociomantic and to use `strlen` directly as per the pre-existing code.", "title": null, "type": "comment" }, { "action": "created", "author": "nemanja-boric-sociomantic", "comment_id": 425025721, "datetime": 1538040935000, "masked_author": "username_1", "text": "I've changed the base of this PR to include it into a patch release, could you just rebase on v4.2.x and force push?", "title": null, "type": "comment" }, { "action": "created", "author": "andrew-stevenson-sociomantic", "comment_id": 425029066, "datetime": 1538041611000, "masked_author": "username_0", "text": "Rebased", "title": null, "type": "comment" }, { "action": "created", "author": "nemanja-boric-sociomantic", "comment_id": 425029216, "datetime": 1538041640000, "masked_author": "username_1", "text": "Thanks!", "title": null, "type": "comment" } ]
3
6
307
false
true
307
false
artsy/reaction
artsy
479,092,459
2,676
{ "number": 2676, "repo": "reaction", "user_login": "artsy" }
[ { "action": "opened", "author": "ashleyjelks", "comment_id": null, "datetime": 1565371817000, "masked_author": "username_0", "text": "This PR adds new Artsy Vanguard SVGs per this Slack discussion: https://artsy.slack.com/archives/CKS3WS12T/p1565271310002200", "title": "adds latest svgs from wax", "type": "issue" }, { "action": "created", "author": "ashleyjelks", "comment_id": 520001181, "datetime": 1565371835000, "masked_author": "username_0", "text": "#mergeongreen", "title": null, "type": "comment" }, { "action": "created", "author": "artsyit", "comment_id": 520007917, "datetime": 1565373114000, "masked_author": "username_1", "text": "<!-- GITHUB_RELEASE COMMENT: released -->\n:rocket: PR was released in v16.22.12 :rocket:", "title": null, "type": "comment" } ]
3
4
1,119
false
true
225
false
inveniosoftware/invenio
inveniosoftware
611,440,933
4,010
null
[ { "action": "opened", "author": "lnielsen", "comment_id": null, "datetime": 1588520334000, "masked_author": "username_0", "text": "Make the final v3.3 release", "title": "global: v3.3 final release", "type": "issue" }, { "action": "created", "author": "ppanero", "comment_id": 630209690, "datetime": 1589811213000, "masked_author": "username_1", "text": "closed by #4013", "title": null, "type": "comment" }, { "action": "closed", "author": "ppanero", "comment_id": null, "datetime": 1589811213000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
42
false
false
42
false
jwKav/Group-Project_01
null
572,213,590
8
{ "number": 8, "repo": "Group-Project_01", "user_login": "jwKav" }
[ { "action": "opened", "author": "Kayrim", "comment_id": null, "datetime": 1582822214000, "masked_author": "username_0", "text": "Well Done Lads!", "title": "All Tests Done and Complete!", "type": "issue" }, { "action": "created", "author": "philanderson888", "comment_id": 592090934, "datetime": 1582825836000, "masked_author": "username_1", "text": "Impressive work people!\r\n\r\nWell done on your first joint project!\r\n\r\nI am well impressed and thank you Karim for hanging everything together 'all in a day's work'!\r\n\r\nI think you've all learned and grown immensely during this and we should press forward with this style of learning moving forwards, some teaching from me but also much lab work from you!\r\n\r\nHave a nice evening\r\n\r\nPhil", "title": null, "type": "comment" }, { "action": "created", "author": "Kayrim", "comment_id": 592093234, "datetime": 1582826169000, "masked_author": "username_0", "text": "Someone Review this @username_2 @Hassan822", "title": null, "type": "comment" }, { "action": "created", "author": "jwKav", "comment_id": 592428246, "datetime": 1582882178000, "masked_author": "username_2", "text": "Perfect thanks a bunch Karim", "title": null, "type": "comment" } ]
3
4
464
false
false
464
true
sidntrivedi012/odin
null
549,497,719
9
null
[ { "action": "opened", "author": "sidntrivedi012", "comment_id": null, "datetime": 1579000451000, "masked_author": "username_0", "text": "Meetup changed its API access on August 15, 2019. API keys have been removed and all version 2 integrations need to transition to version 3. Thus, we have to send GET requests to api.meetup.com/<urlname-of-meetup-group>/events in order to fetch the list of meetups. You can use either `axios` or `request` library in order to fetch the meetups and then display them.", "title": "Fix Meetup API issue", "type": "issue" }, { "action": "closed", "author": "sidntrivedi012", "comment_id": null, "datetime": 1579041841000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
2
366
false
false
366
false
SafeMarket-WirVsVirus/frontend-enduser
SafeMarket-WirVsVirus
602,508,615
151
null
[ { "action": "opened", "author": "juliaringler", "comment_id": null, "datetime": 1587230571000, "masked_author": "username_0", "text": "* At app start: do not fetch reservations from the backend\r\n* When loading the persisted reservations remove all expired ones (start time max. 2 h in the past)\r\n* After a booking: fetch the reservations and add the new one to our local reservations\r\n* Delete: also remove the reservation from our local reservations", "title": "Only update reservations when new reservation added", "type": "issue" } ]
1
1
315
false
false
315
false
saltstack/salt
saltstack
422,172,110
52,222
null
[ { "action": "opened", "author": "afischer-opentext-com", "comment_id": null, "datetime": 1552909151000, "masked_author": "username_0", "text": "### Description of Issue/Question\r\n\r\nPer [this comment](https://github.com/saltstack/salt/issues/47461#issuecomment-386719845) from @gtmanfred it should be possible to define and use custom jinja filters. However, I do not see them loaded. \r\n\r\nI have the following very simple snippet (to deserialize a json string). \r\n\r\n```\r\nimport salt.utils.json\r\nfrom salt.utils.decorators.jinja import jinja_filter\r\n\r\nlog = logging.getLogger(__name__)\r\n\r\n\r\n@jinja_filter('to_json')\r\ndef to_json(obj):\r\n try:\r\n return salt.utils.json.dumps(obj)\r\n except Exception:\r\n log.exception(\"Failed to serialize object '%s'\", obj)\r\n return '{}'\r\n\r\n\r\n@jinja_filter('from_json')\r\ndef from_json(serialized):\r\n try:\r\n return salt.utils.json.loads(serialized)\r\n except Exception:\r\n log.exception(\"Failed to deserialize json '%s'\", serialized)\r\n return {}\r\n```\r\n\r\nand following the code, there should be a log message `log.debug('Marking \\'%s\\' as a jinja filter', name)` which I see for jinja filters defined per default. But I do not see it for any custom filter I tried. I can confirm the custom filter code is synced to the minion properly but then just not picked up. \r\n\r\n### Setup\r\nVanilla Windows with vanilla salt 2018.3.4 py3 AMD 64\r\n\r\n### Steps to Reproduce Issue\r\n```\r\nsalt 'minion' saltutil.sync_all\r\n```\r\n\r\n```\r\n2019-03-18 04:04:13,362 [salt.fileclient :236 ][INFO ][2868] Caching directory '_utils/' for environment 'mysaltenv'\r\n2019-03-18 04:04:13,408 [salt.fileclient :1085][DEBUG ][2868] In saltenv 'mysaltenv', looking at rel_path '_utils/jinja_filter_json.py' to resolve 'salt://_utils/jinja_filter_json.py'\r\n2019-03-18 04:04:13,408 [salt.fileclient :1093][DEBUG ][2868] In saltenv 'mysaltenv', ** considering ** path 'c:\\salt\\var\\cache\\salt\\minion\\files\\mysaltenv\\_utils\\jinja_filter_json.py' to resolve 'salt://_utils/jinja_filter_json.py'\r\n2019-03-18 04:04:13,408 [salt.utils.extmods:109 ][DEBUG ][2868] Local cache dir: 'c:\\salt\\var\\cache\\salt\\minion\\files\\mysaltenv\\_utils'\r\n2019-03-18 04:04:13,408 [salt.utils.extmods:119 ][INFO ][2868] Copying 'c:\\salt\\var\\cache\\salt\\minion\\files\\mysaltenv\\_utils\\jinja_filter_json.py' to 'c:\\salt\\var\\cache\\salt\\minion\\extmods\\utils\\jinja_filter_json.py'\r\n```\r\n\r\n```\r\nsalt 'minion' state.show_sls test_custom_jinja\r\n```\r\nwith\r\n```\r\ntest_from_json:\r\n test.configurable_test_state:\r\n - changes: False\r\n - result: {{ \"{'foo': 'bar'}\"|from_json|to_bool }}\r\n - comment: \"Result is expected to be true\"\r\n\r\ntest_from_json:\r\n test.configurable_test_state:\r\n - changes: False\r\n - result: {{ \"{}\"|from_json|to_bool }}\r\n - comment: \"Result is expected to be false\"\r\n```\r\nResults in \r\n```\r\nminion:\r\n - Rendering SLS 'mysaltenv:test_custom_jinja' failed: Jinja syntax error: no filter named 'from_json'; line 4\r\n\r\n ---\r\n test_from_json_true:\r\n test.configurable_test_state:\r\n - changes: False\r\n - result: {{ \"{'foo': 'bar'}\"|from_json|to_bool }} <======================\r\n - comment: \"Result is expected to be true\"\r\n\r\n test_from_json_false:\r\n test.configurable_test_state:\r\n - changes: False\r\n [...]\r\n ---\r\n```\r\n\r\n\r\n### Versions Report\r\n\r\n```\r\nSalt Version:\r\n Salt: 2018.3.4\r\n \r\nDependency Versions:\r\n cffi: 1.10.0\r\n cherrypy: 10.2.1\r\n dateutil: 2.6.1\r\n docker-py: Not Installed\r\n gitdb: 2.0.5\r\n gitpython: 2.1.3\r\n ioflo: Not Installed\r\n Jinja2: 2.9.6\r\n libgit2: Not Installed\r\n libnacl: 1.6.1\r\n M2Crypto: Not Installed\r\n Mako: 1.0.6\r\n msgpack-pure: Not Installed\r\n msgpack-python: 0.4.8\r\n mysql-python: Not Installed\r\n pycparser: 2.17\r\n pycrypto: 2.6.1\r\n pycryptodome: Not Installed\r\n pygit2: Not Installed\r\n Python: 3.5.3 (v3.5.3:1880cb95a742, Jan 16 2017, 16:02:32) [MSC v.1900 64 bit (AMD64)]\r\n python-gnupg: 0.4.1\r\n PyYAML: 3.12\r\n PyZMQ: 16.0.3\r\n RAET: Not Installed\r\n smmap: 2.0.5\r\n timelib: 0.2.4\r\n Tornado: 4.5.1\r\n ZMQ: 4.1.6\r\n \r\nSystem Versions:\r\n dist: \r\n locale: cp1252\r\n machine: AMD64\r\n release: 2008ServerR2\r\n system: Windows\r\n version: 2008ServerR2 6.1.7601 SP1 Multiprocessor Free\r\n```", "title": "Custom Jinja Filters not working?", "type": "issue" }, { "action": "created", "author": "dwoz", "comment_id": 474569553, "datetime": 1553027353000, "masked_author": "username_1", "text": "@username_0\r\n\r\nA couple thing's I notice here. You're putting the extension in `salt://_utils` and trying to use the filters with a pipe `|`.\r\n\r\nTry putting the module into `salt://_modules` instead of `salt://_utils` and then call the functions directly as the documentation states [here](https://docs.saltstack.com/en/latest/topics/jinja/index.html#custom-jinja-filters).\r\n\r\n\r\n```\r\ntest_from_json_true:\r\n test.configurable_test_state:\r\n - changes: False\r\n - result: {{ salt.jinja_filter_json(\"{'foo': 'bar'}\")|to_bool }}\r\n - comment: \"Result is expected to be true\"\r\n\r\ntest_from_json_false:\r\n test.configurable_test_state:\r\n - changes: False\r\n - result: {{ salt.jinja_filter.json.from_json(\"{}\")|to_bool }}\r\n - comment: \"Result is expected to be false\"\r\n```\r\n\r\nI've tested the above and it seems to work. Let me know if this works for you so I can close the ticket.", "title": null, "type": "comment" }, { "action": "created", "author": "afischer-opentext-com", "comment_id": 474808910, "datetime": 1553085077000, "masked_author": "username_0", "text": "Yeah, thank you. I knew that this works. I hoped the notation via pipe would work as it is more flexible, less verbose and better readable under circumstances. Also it would not require insight of the module organisation. Means when refactoring a module name or method name not all places would need to be modified. \r\n\r\nI conclude that this is not expected to work as the comment indicated. In this case feel free to close this issue (or mark as feature request 🥇)", "title": null, "type": "comment" } ]
3
5
5,957
false
true
5,687
true
18F/guides-style
18F
246,097,786
100
null
[ { "action": "opened", "author": "jseppi", "comment_id": null, "datetime": 1501172912000, "masked_author": "username_0", "text": "Ref this recent build of `master` https://travis-ci.org/18F/guides-style/jobs/258198953 and https://github.com/18F/guides-style/pull/99#issuecomment-318414354\r\n\r\n```sh\r\nNoMethodError: undefined method `frontmatter_defaults' for #<GuidesStyle18F::DummySite:0x007fd01b175870>\r\n```", "title": "Tests are broken with jekyll 3.5.1", "type": "issue" }, { "action": "created", "author": "afeld", "comment_id": 320723130, "datetime": 1502125890000, "masked_author": "username_1", "text": "Fixed by #101.", "title": null, "type": "comment" }, { "action": "closed", "author": "afeld", "comment_id": null, "datetime": 1502125890000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
292
false
false
292
false
rednex/rgbds
rednex
567,015,699
486
{ "number": 486, "repo": "rgbds", "user_login": "rednex" }
[ { "action": "opened", "author": "ISSOtm", "comment_id": null, "datetime": 1582043828000, "masked_author": "username_0", "text": "As discussed in #469; the actual repo was set up as [rgbds-actions](https://github.com/username_0/rgbds-actions) to avoid enabling Actions globally on my fork.\r\n\r\n(Obviously, if this gets merged, I will disable Travis and enable Actions.)\r\n\r\nBenefits:\r\n- Windows regression testing (though 32-bit builds [are crippled](https://github.com/rednex/rgbds/issues/469#issuecomment-586047765))\r\n- Building at each commit (not worth much for *nix distros, but that might enable Windows users to go bleeding-edge as well if they want)\r\n- Better integration than Travis (for one thing, jobs that fail because of cosmic bitflips can be re-launched by a maintainer without closing+opening the issue; minor but good)\r\n- Forks should be able to enable CI (before creating PRs) using a single config option instead \r\n\r\nPossible improvements:\r\n- Enabling tests on all branches?\r\n- Automatic HTML doc generation (see #458, some details would need to be resolved)\r\n- Automatic release generation+packaging on tag creation (didn't bother yet, don't know how much of it can be automated)\r\n- Testing debug+release configurations (once those are implemented)\r\n- Removing the shell scripts in `.github/actions`. They're there because I couldn't find them upstream, and one of them—`configure`, IIRC—was straight up broken as-is.", "title": "Switch CI to GitHub Actions", "type": "issue" }, { "action": "created", "author": "AntonioND", "comment_id": 587592336, "datetime": 1582048646000, "masked_author": "username_1", "text": "", "title": null, "type": "comment" }, { "action": "created", "author": "ISSOtm", "comment_id": 587670253, "datetime": 1582052659000, "masked_author": "username_0", "text": "CI is failing on checkpatch complaining about C coding style errors... in shell scripts.\r\nMerging.", "title": null, "type": "comment" }, { "action": "created", "author": "AntonioND", "comment_id": 587678426, "datetime": 1582052992000, "masked_author": "username_1", "text": "I've disabled Travis CI (I think). I could keep it around for reference, or just get rid of it as it doesn't have much value to keep the build logs. Opinions?", "title": null, "type": "comment" }, { "action": "created", "author": "ISSOtm", "comment_id": 587693752, "datetime": 1582053608000, "masked_author": "username_0", "text": "Oh, whoops, I didn't see the comment, so I may have jumped the gun. I honestly think there's no value in keeping the Travis files, but I can revert if anyone wants.", "title": null, "type": "comment" }, { "action": "created", "author": "ISSOtm", "comment_id": 587710546, "datetime": 1582054270000, "masked_author": "username_0", "text": "Also, keeping it around for reference is useless—we just need to checkout a commit where it still exists; ain't that the point of a VCS after all? :stuck_out_tongue_winking_eye:", "title": null, "type": "comment" }, { "action": "created", "author": "aaaaaa123456789", "comment_id": 587757292, "datetime": 1582056202000, "masked_author": "username_2", "text": "Doesn't seem very useful. I'd just get rid of it.", "title": null, "type": "comment" }, { "action": "created", "author": "AntonioND", "comment_id": 587978816, "datetime": 1582073436000, "masked_author": "username_1", "text": "Ok, I think I've removed the integration. I think...", "title": null, "type": "comment" }, { "action": "created", "author": "AntonioND", "comment_id": 587979160, "datetime": 1582073516000, "masked_author": "username_1", "text": "It looks like the information is going to stay there, but Travis doesn't have access to the repo anymore.", "title": null, "type": "comment" }, { "action": "created", "author": "ISSOtm", "comment_id": 587980264, "datetime": 1582073762000, "masked_author": "username_0", "text": "I think I purged Travis' access to rednex at all. Considering the [build logs](https://travis-ci.org/rednex/rgbds/builds/650245962) can still be accessed, and all Travis-related config files are still in the history, I doubt this will lose us anything.", "title": null, "type": "comment" }, { "action": "created", "author": "AntonioND", "comment_id": 588549094, "datetime": 1582159029000, "masked_author": "username_1", "text": "I had to remove the webhook, but that's all.", "title": null, "type": "comment" } ]
3
11
2,400
false
false
2,400
true
github/super-linter
github
642,046,409
187
{ "number": 187, "repo": "super-linter", "user_login": "github" }
[ { "action": "opened", "author": "admiralAwkbar", "comment_id": null, "datetime": 1592579979000, "masked_author": "username_0", "text": "- Updating documentation to point to use the **Docker** container\r\n - It's much faster to download than to build...", "title": "fixing docs to point to Docker", "type": "issue" }, { "action": "created", "author": "zkoppert", "comment_id": 646694231, "datetime": 1592580051000, "masked_author": "username_1", "text": "covered wiki updates as well.", "title": null, "type": "comment" }, { "action": "created", "author": "mathiasrw", "comment_id": 649491437, "datetime": 1593085666000, "masked_author": "username_2", "text": "Neat! Cut the time from 5:36 to 1:27 minutes - yay!", "title": null, "type": "comment" } ]
3
3
196
false
false
196
false
jlippold/tweakCompatible
null
623,900,316
124,174
null
[ { "action": "opened", "author": "davidphillips2", "comment_id": null, "datetime": 1590338540000, "masked_author": "username_0", "text": "```\r\n{\r\n \"packageId\": \"xyz.xninja.systeminfo\",\r\n \"action\": \"working\",\r\n \"userInfo\": {\r\n \"arch32\": false,\r\n \"packageId\": \"xyz.xninja.systeminfo\",\r\n \"deviceId\": \"iPhone9,2\",\r\n \"url\": \"http://cydia.saurik.com/package/xyz.xninja.systeminfo/\",\r\n \"iOSVersion\": \"13.5\",\r\n \"packageVersionIndexed\": true,\r\n \"packageName\": \"System Info\",\r\n \"category\": \"Tweaks\",\r\n \"repository\": \"BigBoss\",\r\n \"name\": \"System Info\",\r\n \"installed\": \"2.0.0-1\",\r\n \"packageIndexed\": true,\r\n \"packageStatusExplaination\": \"A matching version of this tweak for this iOS version could not be found. Please submit a review if you choose to install.\",\r\n \"id\": \"xyz.xninja.systeminfo\",\r\n \"commercial\": false,\r\n \"packageInstalled\": true,\r\n \"tweakCompatVersion\": \"0.1.5\",\r\n \"shortDescription\": \"System information in Settings app > General > About, and other sections. Set boot-nonce, save shsh, battery info etc\",\r\n \"latest\": \"2.0.0-1\",\r\n \"author\": \"ARX8x\",\r\n \"packageStatus\": \"Unknown\"\r\n },\r\n \"base64\": \"eyJhcmNoMzIiOmZhbHNlLCJwYWNrYWdlSWQiOiJ4eXoueG5pbmphLnN5c3RlbWluZm8iLCJkZXZpY2VJZCI6ImlQaG9uZTksMiIsInVybCI6Imh0dHA6XC9cL2N5ZGlhLnNhdXJpay5jb21cL3BhY2thZ2VcL3h5ei54bmluamEuc3lzdGVtaW5mb1wvIiwiaU9TVmVyc2lvbiI6IjEzLjUiLCJwYWNrYWdlVmVyc2lvbkluZGV4ZWQiOnRydWUsInBhY2thZ2VOYW1lIjoiU3lzdGVtIEluZm8iLCJjYXRlZ29yeSI6IlR3ZWFrcyIsInJlcG9zaXRvcnkiOiJCaWdCb3NzIiwibmFtZSI6IlN5c3RlbSBJbmZvIiwiaW5zdGFsbGVkIjoiMi4wLjAtMSIsInBhY2thZ2VJbmRleGVkIjp0cnVlLCJwYWNrYWdlU3RhdHVzRXhwbGFpbmF0aW9uIjoiQSBtYXRjaGluZyB2ZXJzaW9uIG9mIHRoaXMgdHdlYWsgZm9yIHRoaXMgaU9TIHZlcnNpb24gY291bGQgbm90IGJlIGZvdW5kLiBQbGVhc2Ugc3VibWl0IGEgcmV2aWV3IGlmIHlvdSBjaG9vc2UgdG8gaW5zdGFsbC4iLCJpZCI6Inh5ei54bmluamEuc3lzdGVtaW5mbyIsImNvbW1lcmNpYWwiOmZhbHNlLCJwYWNrYWdlSW5zdGFsbGVkIjp0cnVlLCJ0d2Vha0NvbXBhdFZlcnNpb24iOiIwLjEuNSIsInNob3J0RGVzY3JpcHRpb24iOiJTeXN0ZW0gaW5mb3JtYXRpb24gaW4gU2V0dGluZ3MgYXBwID4gR2VuZXJhbCA+IEFib3V0LCBhbmQgb3RoZXIgc2VjdGlvbnMuIFNldCBib290LW5vbmNlLCBzYXZlIHNoc2gsIGJhdHRlcnkgaW5mbyBldGMiLCJsYXRlc3QiOiIyLjAuMC0xIiwiYXV0aG9yIjoiQVJYOHgiLCJwYWNrYWdlU3RhdHVzIjoiVW5rbm93biJ9\",\r\n \"chosenStatus\": \"working\",\r\n \"notes\": \"\"\r\n}\r\n```", "title": "`System Info` working on iOS 13.5", "type": "issue" }, { "action": "closed", "author": "jlippold", "comment_id": null, "datetime": 1590721399000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
3
3
2,373
false
true
2,131
false
strongloop/loopback-next
strongloop
635,692,984
5,701
null
[ { "action": "opened", "author": "dhmlau", "comment_id": null, "datetime": 1591729999000, "masked_author": "username_0", "text": "Add troubleshooting guide to the docs.\r\nhttps://github.com/username_0/learning-loopback/blob/master/troubleshooting.md might be a good starting point.\r\n\r\n## Acceptance criteria\r\n- [ ] add whatever that's applicable in https://github.com/username_0/learning-loopback/blob/master/troubleshooting.md. \r\n- [ ] add this page to the sidebar", "title": "[Docs] Add Troubleshooting guide ", "type": "issue" }, { "action": "created", "author": "maaaaat", "comment_id": 667213187, "datetime": 1596212866000, "masked_author": "username_1", "text": "Tips on profiling loopback’s startup would be huge right now. My company is running into cold start issues with our server less architecture that cause a bunch of 503s sent to clients as loopback gets ready to respond to requests. It would be monumental to know where to look and how to even start figuring out what needs fine tuning. \r\n\r\nGot a timeline on these guides or have any ideas we could try ahead of you guys publishing these guides?", "title": null, "type": "comment" }, { "action": "created", "author": "dhmlau", "comment_id": 669470648, "datetime": 1596657844000, "masked_author": "username_0", "text": "@username_1, we're not working on the profiling at the moment. If you have any tips or guides, feel free to publish it and reference it here. Or you can also enhance our docs by submitting a PR to add that info too. Thanks.", "title": null, "type": "comment" }, { "action": "created", "author": "bajtos", "comment_id": 696751259, "datetime": 1600784193000, "masked_author": "username_2", "text": "I have had a good experience with https://www.npmjs.com/package/require-so-slow, you may want to give it a try.", "title": null, "type": "comment" }, { "action": "created", "author": "jannyHou", "comment_id": 700955686, "datetime": 1601409858000, "masked_author": "username_3", "text": "Created follow stories:\r\n#6466 \r\n#6465 \r\n#6464 \r\n#6463", "title": null, "type": "comment" }, { "action": "closed", "author": "jannyHou", "comment_id": null, "datetime": 1601410126000, "masked_author": "username_3", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "jannyHou", "comment_id": 700957923, "datetime": 1601410126000, "masked_author": "username_3", "text": "Closing as done. Let's use https://github.com/strongloop/loopback-next/issues/6465 for the further discussions about memory profiling and cpu usage.", "title": null, "type": "comment" } ]
4
7
1,302
false
false
1,302
true
metal3-io/ironic-image
metal3-io
613,867,667
157
{ "number": 157, "repo": "ironic-image", "user_login": "metal3-io" }
[ { "action": "opened", "author": "mvazquezc", "comment_id": null, "datetime": 1588839701000, "masked_author": "username_0", "text": "This fix introduces the fix created for metal3-io ironic-image https://github.com/metal3-io/ironic-image/pull/156/\r\n\r\nThank @maelk for fixing our previous fix!", "title": "Allows users to configure any non-link-local IPV6 address for the provisioning interface", "type": "issue" }, { "action": "created", "author": "mvazquezc", "comment_id": 625107476, "datetime": 1588839828000, "masked_author": "username_0", "text": "I meant to send this to other repo. My bad.", "title": null, "type": "comment" } ]
2
3
1,123
false
true
202
false
Informasjonsforvaltning/dataset-catalogue-gui
Informasjonsforvaltning
574,003,009
24
{ "number": 24, "repo": "dataset-catalogue-gui", "user_login": "Informasjonsforvaltning" }
[ { "action": "opened", "author": "azaxarov", "comment_id": null, "datetime": 1583158469000, "masked_author": "username_0", "text": "", "title": "Feat/az/maintenance page", "type": "issue" }, { "action": "created", "author": "valosnah", "comment_id": 595683176, "datetime": 1583487249000, "masked_author": "username_1", "text": "Manually deployed to brreg prod", "title": null, "type": "comment" } ]
2
2
31
false
false
31
false
kubernetes-csi/csi-proxy
kubernetes-csi
589,456,986
43
{ "number": 43, "repo": "csi-proxy", "user_login": "kubernetes-csi" }
[ { "action": "opened", "author": "jingxu97", "comment_id": null, "datetime": 1585350925000, "masked_author": "username_0", "text": "**What this PR does / why we need it**:\r\n\r\n**Which issue(s) this PR fixes**:\r\n<!--\r\n*Automatically closes linked issue when PR is merged.\r\nUsage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`.\r\n_If PR is about `failing-tests or flakes`, please post the related issues/tests in a comment and do not use `Fixes`_*\r\n-->\r\nFixes #\r\n\r\n**Special notes for your reviewer**:\r\n\r\n**Does this PR introduce a user-facing change?**:\r\n<!--\r\nIf no, just write \"NONE\" in the release-note block below.\r\nIf yes, a release note is required:\r\nEnter your extended release note in the block below. If the PR requires additional action from users switching to the new release, include the string \"action required\".\r\n-->\r\n```release-note\r\n\r\n```", "title": "Change name to csi-proxy", "type": "issue" }, { "action": "created", "author": "kkmsft", "comment_id": 605362156, "datetime": 1585353725000, "masked_author": "username_1", "text": "/lgtm\r\n/approve\r\n/release-note-none", "title": null, "type": "comment" } ]
3
5
3,090
false
true
766
false
dragonflyoss/Dragonfly
dragonflyoss
611,310,574
1,323
null
[ { "action": "closed", "author": "lowzj", "comment_id": null, "datetime": 1589239434000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
2
2
12,223
false
true
0
false
DFE-Digital/apply-for-postgraduate-teacher-training
DFE-Digital
636,246,024
2,245
{ "number": 2245, "repo": "apply-for-postgraduate-teacher-training", "user_login": "DFE-Digital" }
[ { "action": "opened", "author": "stevehook", "comment_id": null, "datetime": 1591795604000, "masked_author": "username_0", "text": "## Context\r\n\r\nThis is a draft PR that is raised just to get a review app running with the new RBD time limit (20 days from 9th June) so that we can product review the change that will kick in on production on 1st July.\r\n\r\nDO NOT MERGE\r\n\r\n## Changes proposed in this pull request\r\n\r\nChange the RBD time limit from 40 to 20 days from 9th June (in the past).\r\n\r\n## Guidance to review\r\n\r\nNot meant for review or merge.\r\n\r\n## Link to Trello card\r\n\r\nhttps://trello.com/c/iawQmftw/1566-dev-lower-rbd-to-20-days-from-1st-july\r\n\r\n## Things to check\r\n\r\n- [ ] This code doesn't rely on migrations in the same Pull Request\r\n- [ ] If this code includes a migration adding or changing columns, it also backfills existing records for consistency\r\n- [ ] API release notes have been updated if necessary\r\n- [ ] New environment variables have been [added to the Azure config](https://github.com/DFE-Digital/apply-for-postgraduate-teacher-training#azure-hosting-devops-pipeline)", "title": "Adjust RBD rule to apply lower limit from now for testing only DO NOT MERGE", "type": "issue" }, { "action": "created", "author": "stevehook", "comment_id": 643163799, "datetime": 1591952744000, "masked_author": "username_0", "text": "Closing now that testing is done", "title": null, "type": "comment" } ]
1
2
991
false
false
991
false
jlippold/tweakCompatible
null
500,013,382
101,313
null
[ { "action": "opened", "author": "AppleTweaker420", "comment_id": null, "datetime": 1569809623000, "masked_author": "username_0", "text": "```\r\n{\r\n \"packageId\": \"com.rob311.clearrecentcalls\",\r\n \"action\": \"working\",\r\n \"userInfo\": {\r\n \"arch32\": false,\r\n \"packageId\": \"com.rob311.clearrecentcalls\",\r\n \"deviceId\": \"iPhone11,6\",\r\n \"url\": \"http://cydia.saurik.com/package/com.rob311.clearrecentcalls/\",\r\n \"iOSVersion\": \"12.4\",\r\n \"packageVersionIndexed\": true,\r\n \"packageName\": \"ClearRecentCalls\",\r\n \"category\": \"Tweaks\",\r\n \"repository\": \"BigBoss\",\r\n \"name\": \"ClearRecentCalls\",\r\n \"installed\": \"0.0.4\",\r\n \"packageIndexed\": true,\r\n \"packageStatusExplaination\": \"A matching version of this tweak for this iOS version could not be found. Please submit a review if you choose to install.\",\r\n \"id\": \"com.rob311.clearrecentcalls\",\r\n \"commercial\": false,\r\n \"packageInstalled\": true,\r\n \"tweakCompatVersion\": \"0.1.5\",\r\n \"shortDescription\": \"adds a Clear button to recent calls\",\r\n \"latest\": \"0.0.4\",\r\n \"author\": \"rob311\",\r\n \"packageStatus\": \"Unknown\"\r\n },\r\n \"base64\": \"eyJhcmNoMzIiOmZhbHNlLCJwYWNrYWdlSWQiOiJjb20ucm9iMzExLmNsZWFycmVjZW50Y2FsbHMiLCJkZXZpY2VJZCI6ImlQaG9uZTExLDYiLCJ1cmwiOiJodHRwOlwvXC9jeWRpYS5zYXVyaWsuY29tXC9wYWNrYWdlXC9jb20ucm9iMzExLmNsZWFycmVjZW50Y2FsbHNcLyIsImlPU1ZlcnNpb24iOiIxMi40IiwicGFja2FnZVZlcnNpb25JbmRleGVkIjp0cnVlLCJwYWNrYWdlTmFtZSI6IkNsZWFyUmVjZW50Q2FsbHMiLCJjYXRlZ29yeSI6IlR3ZWFrcyIsInJlcG9zaXRvcnkiOiJCaWdCb3NzIiwibmFtZSI6IkNsZWFyUmVjZW50Q2FsbHMiLCJpbnN0YWxsZWQiOiIwLjAuNCIsInBhY2thZ2VJbmRleGVkIjp0cnVlLCJwYWNrYWdlU3RhdHVzRXhwbGFpbmF0aW9uIjoiQSBtYXRjaGluZyB2ZXJzaW9uIG9mIHRoaXMgdHdlYWsgZm9yIHRoaXMgaU9TIHZlcnNpb24gY291bGQgbm90IGJlIGZvdW5kLiBQbGVhc2Ugc3VibWl0IGEgcmV2aWV3IGlmIHlvdSBjaG9vc2UgdG8gaW5zdGFsbC4iLCJpZCI6ImNvbS5yb2IzMTEuY2xlYXJyZWNlbnRjYWxscyIsImNvbW1lcmNpYWwiOmZhbHNlLCJwYWNrYWdlSW5zdGFsbGVkIjp0cnVlLCJ0d2Vha0NvbXBhdFZlcnNpb24iOiIwLjEuNSIsInNob3J0RGVzY3JpcHRpb24iOiJhZGRzIGEgQ2xlYXIgYnV0dG9uIHRvIHJlY2VudCBjYWxscyIsImxhdGVzdCI6IjAuMC40IiwiYXV0aG9yIjoicm9iMzExIiwicGFja2FnZVN0YXR1cyI6IlVua25vd24ifQ==\",\r\n \"chosenStatus\": \"working\",\r\n \"notes\": \"\"\r\n}\r\n```", "title": "`ClearRecentCalls` working on iOS 12.4", "type": "issue" }, { "action": "closed", "author": "jlippold", "comment_id": null, "datetime": 1569810736000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
3
3
2,251
false
true
2,009
false
apache/spark
apache
552,090,990
27,287
{ "number": 27287, "repo": "spark", "user_login": "apache" }
[ { "action": "opened", "author": "HyukjinKwon", "comment_id": null, "datetime": 1579501091000, "masked_author": "username_0", "text": "### What changes were proposed in this pull request?\r\n\r\nThis PR proposes to clean up `UnivocityParser`. \r\n\r\n### Why are the changes needed?\r\n\r\nIt will slightly improve the performance since we don't do unnecessary computation for Array concatenations/creation.\r\n\r\n### Does this PR introduce any user-facing change?\r\n\r\nNo.\r\n\r\n### How was this patch tested?\r\n\r\nManually ran the existing tests.", "title": "[SPARK-30530][SQL][FOLLOW-UP] Remove unnecessary codes and fix comments accordingly in UnivocityParser", "type": "issue" }, { "action": "created", "author": "HyukjinKwon", "comment_id": 576123850, "datetime": 1579501109000, "masked_author": "username_0", "text": "cc @cloud-fan and @username_1. It's rather minor but wanted to clean up here.", "title": null, "type": "comment" }, { "action": "created", "author": "HyukjinKwon", "comment_id": 576159823, "datetime": 1579508480000, "masked_author": "username_0", "text": "retest this please", "title": null, "type": "comment" }, { "action": "created", "author": "HyukjinKwon", "comment_id": 576297901, "datetime": 1579530388000, "masked_author": "username_0", "text": "retest this please", "title": null, "type": "comment" }, { "action": "created", "author": "MaxGekk", "comment_id": 576299970, "datetime": 1579530689000, "masked_author": "username_1", "text": "Something wrong is going on. This exception shouldn't happen:\r\n```\r\nCaused by: java.lang.IllegalStateException: Number of logging event reached the limit: 100\r\n\tat org.apache.spark.SparkFunSuite$LogAppender.append(SparkFunSuite.scala:197)\r\n\tat org.apache.log4j.AppenderSkeleton.doAppend(AppenderSkeleton.java:251)\r\n```\r\nIt was added by https://github.com/apache/spark/pull/27166, and the limit shouldn't be reachable.", "title": null, "type": "comment" }, { "action": "created", "author": "MaxGekk", "comment_id": 576309749, "datetime": 1579532136000, "masked_author": "username_1", "text": "I propose to assign names to log appenders, and print the names in exception. So, we will know which one wasn't removed.", "title": null, "type": "comment" }, { "action": "created", "author": "srowen", "comment_id": 576323362, "datetime": 1579534150000, "masked_author": "username_2", "text": "Jenkins, retest this please", "title": null, "type": "comment" }, { "action": "created", "author": "HyukjinKwon", "comment_id": 576478379, "datetime": 1579569528000, "masked_author": "username_0", "text": "Merged to master.", "title": null, "type": "comment" } ]
5
44
7,224
false
true
1,082
true
AndreiMisiukevich/CardView
null
496,955,650
279
null
[ { "action": "opened", "author": "PauchardThomas", "comment_id": null, "datetime": 1569226867000, "masked_author": "username_0", "text": "Hi,\r\n\r\nI want to save the current index from the CoverFlowView and retrieve it when switching ItemSource.\r\n\r\nI discovered a bug for the CoverFlowView : \r\n\r\nSummary : When switching ItemSource the SelectedIndex is always set to -1 from the previous SelectedIndex.\r\n\r\nPlease see my repo : https://github.com/username_0/CardViewTest", "title": "[Bug] SelectedIndex - CoverFlowView", "type": "issue" }, { "action": "created", "author": "PauchardThomas", "comment_id": 534531905, "datetime": 1569327556000, "masked_author": "username_0", "text": "@username_1 Any idea ?", "title": null, "type": "comment" }, { "action": "created", "author": "AndreiMisiukevich", "comment_id": 534576452, "datetime": 1569334199000, "masked_author": "username_1", "text": "@username_0 sorry mate, it was a SUPER busy month for me :(\r\nBut I am freer now. And I promise to check on this week (maybe today.. maybe a little bit later)", "title": null, "type": "comment" }, { "action": "created", "author": "PauchardThomas", "comment_id": 534580539, "datetime": 1569334730000, "masked_author": "username_0", "text": "@username_1 No problem ;-)", "title": null, "type": "comment" }, { "action": "created", "author": "AndreiMisiukevich", "comment_id": 534756706, "datetime": 1569360609000, "masked_author": "username_1", "text": "Hi, first of all i think you should add margin \r\n![image](https://user-images.githubusercontent.com/10124814/65551893-97825680-df2b-11e9-94d1-8ff652e67613.png)\r\n\r\n\r\n30, 0\r\nor\r\n25, 0 at least", "title": null, "type": "comment" }, { "action": "created", "author": "PauchardThomas", "comment_id": 535379577, "datetime": 1569483384000, "masked_author": "username_0", "text": "Thank you very mch. Waiting for the release ;)", "title": null, "type": "comment" }, { "action": "created", "author": "AndreiMisiukevich", "comment_id": 535425406, "datetime": 1569490820000, "masked_author": "username_1", "text": "@username_0 I am going to make it on this week)", "title": null, "type": "comment" }, { "action": "created", "author": "AndreiMisiukevich", "comment_id": 536232835, "datetime": 1569713075000, "masked_author": "username_1", "text": "v2.2.2", "title": null, "type": "comment" }, { "action": "closed", "author": "AndreiMisiukevich", "comment_id": null, "datetime": 1569713075000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
9
849
false
false
849
true
olikraus/u8g2
null
628,651,751
1,212
null
[ { "action": "opened", "author": "dyezepchik", "comment_id": null, "datetime": 1591037553000, "masked_author": "username_0", "text": "Found this library so cool! Thanks! Got my winstar 320x240 screen working in minutes with a generic stm32f103rb board and arduino IDE.\r\nBut then noticed that I can draw only in a 240x240 rectangle. After 240 pixels by X axis all the graphics overflows to the beginning of the screen i.e. 0px by X. I'm using U8G2_RA8835_320X240_1_6800 constructor. \r\n @username_1 , could you please point me what to look at?", "title": "Issue in RA8835 320x240 initialization", "type": "issue" }, { "action": "closed", "author": "dyezepchik", "comment_id": null, "datetime": 1591038973000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "dyezepchik", "comment_id": 637051964, "datetime": 1591038973000, "masked_author": "username_0", "text": "sorry, it was 16 bit mode", "title": null, "type": "comment" }, { "action": "created", "author": "olikraus", "comment_id": 642802271, "datetime": 1591893953000, "masked_author": "username_1", "text": ":-)\r\n\r\nHmmm... maybe I should activate 16 bit once u8g2 compiles for __ARM__", "title": null, "type": "comment" }, { "action": "created", "author": "dyezepchik", "comment_id": 643212467, "datetime": 1591959826000, "masked_author": "username_0", "text": "Well, actually it depends not on ARM, but on what we need to address in the screen. If the screen by at least one axis is more than 256, probably it's needed? I don't remember how exactly my screen memory is addressed, was connecting it long time ago...", "title": null, "type": "comment" }, { "action": "created", "author": "olikraus", "comment_id": 643581077, "datetime": 1592031333000, "masked_author": "username_1", "text": "true, but I can not change the code at runtime from 8 to 16 bit. I could just enable 16 for all displays on those platforms which used to have more flash and RAM.\r\n\r\nLet's see. I am happy that your problem was solved.", "title": null, "type": "comment" } ]
2
6
976
false
false
976
true
home-assistant/frontend
home-assistant
583,446,971
5,245
{ "number": 5245, "repo": "frontend", "user_login": "home-assistant" }
[ { "action": "opened", "author": "zsarnett", "comment_id": null, "datetime": 1584503870000, "masked_author": "username_0", "text": "## Proposed change\r\n\r\nPlaces the Toggle between Code and Visual Editors on the Dialog\r\n\r\n![image](https://user-images.githubusercontent.com/18730868/77017482-04156580-6951-11ea-90c5-6a9e940d9b87.png)\r\n\r\n\r\n## Type of change\r\n\r\n- [ ] Dependency upgrade\r\n- [ ] Bugfix (non-breaking change which fixes an issue)\r\n- [x] New feature (thank you!)\r\n- [ ] Breaking change (fix/feature causing existing functionality to break)\r\n- [ ] Code quality improvements to existing code or addition of tests\r\n\r\n## Additional information\r\n\r\n- This PR fixes or closes issue: fixes #4086\r\n- This PR is related to the issue: #4112\r\n- Link to documentation pull request:", "title": "Card Editor: Add Toggle to Dialog", "type": "issue" }, { "action": "created", "author": "zsarnett", "comment_id": 600912853, "datetime": 1584575256000, "masked_author": "username_0", "text": "Is `GUImode` Something we can change to `mode`? I hate this variable name :)", "title": null, "type": "comment" }, { "action": "created", "author": "bramkragten", "comment_id": 601203774, "datetime": 1584627407000, "masked_author": "username_1", "text": "How does this work with stack editors?", "title": null, "type": "comment" }, { "action": "created", "author": "zsarnett", "comment_id": 601247690, "datetime": 1584632138000, "masked_author": "username_0", "text": "Ha it doesn't 😄 Work on it today. Thinking adding a button here\r\n![image](https://user-images.githubusercontent.com/18730868/77084744-c0187400-69d5-11ea-911f-01c040c45890.png)", "title": null, "type": "comment" }, { "action": "created", "author": "zsarnett", "comment_id": 601248374, "datetime": 1584632215000, "masked_author": "username_0", "text": "@username_2 What do you think UI wise here?\r\n\r\nThe bottom Button should toggle the whole stack to the code editor. While another button should toggle the card's mode", "title": null, "type": "comment" }, { "action": "created", "author": "SeanPM5", "comment_id": 601251620, "datetime": 1584632559000, "masked_author": "username_2", "text": "I like your choice, that seems like the best spot for it. Makes it clear that it's editing that stack, and keeps the buttons far away from each other to avoid any confusion 👍", "title": null, "type": "comment" }, { "action": "created", "author": "zsarnett", "comment_id": 601280210, "datetime": 1584635543000, "masked_author": "username_0", "text": "![aa81ae6e8118f74af5b58f11952249ef](https://user-images.githubusercontent.com/18730868/77090544-ada23880-69dd-11ea-8cd9-7924649751e3.gif)", "title": null, "type": "comment" }, { "action": "created", "author": "zsarnett", "comment_id": 606341386, "datetime": 1585617846000, "masked_author": "username_0", "text": "@username_1 if there isn't too much discussion on this I think it would be good for 0.108", "title": null, "type": "comment" }, { "action": "created", "author": "zsarnett", "comment_id": 607291602, "datetime": 1585752231000, "masked_author": "username_0", "text": "Bram, when I changed the Card Editor Dialog Toggle to send the boolean through the event and set a property on the dialog or stack editor, the event gets sent all the way up to the dialog when setting it for the card in the stack editor and I am not sure why..\r\nBasically, calling the giomode-changed event in the card within the stack editor. The dialog sees that event as well and sets its property accordingly.\r\n\r\nBefore when calling request update it used the query selector to get the true value of GUImode from the element\r\nAnd I cant figure it out :slight_smile:\r\n\r\n@username_1 Sent this in discord but it got lost. No need to rush on this as I don't think it needs to be in 0.108. Just looking for some insight", "title": null, "type": "comment" } ]
3
9
2,218
false
false
2,218
true
osqp/osqp
osqp
494,001,548
204
{ "number": 204, "repo": "osqp", "user_login": "osqp" }
[ { "action": "opened", "author": "goulart-paul", "comment_id": null, "datetime": 1568634610000, "masked_author": "username_0", "text": "", "title": "Implements an indirect linear solver based on MKL", "type": "issue" }, { "action": "created", "author": "imciner2", "comment_id": 989828620, "datetime": 1639054686000, "masked_author": "username_1", "text": "There is now an MKL CG solver merged into the develop-1.0 branch based on this work. I am going to go ahead and close this PR.", "title": null, "type": "comment" } ]
2
2
126
false
false
126
false
Spinit-AB/Spinit.CosmosDb
Spinit-AB
439,596,331
14
{ "number": 14, "repo": "Spinit.CosmosDb", "user_login": "Spinit-AB" }
[ { "action": "opened", "author": "carl-berg", "comment_id": null, "datetime": 1556804344000, "masked_author": "username_0", "text": "", "title": "Handling type conversions", "type": "issue" }, { "action": "created", "author": "spinit-moom", "comment_id": 489040954, "datetime": 1556877522000, "masked_author": "username_1", "text": "ExpressionsExtensions is now replaced by Spinit.Expression and this bug fix is implemented there. Closing this PR.", "title": null, "type": "comment" } ]
2
2
114
false
false
114
false
rfjakob/earlyoom
null
628,706,687
202
null
[ { "action": "opened", "author": "cmurf", "comment_id": null, "datetime": 1591043479000, "masked_author": "username_0", "text": "Hi, I'm not certain whether the current \"swap percentage\" check is based on checking only one swap device? Or total swap? The kernel supports up to 32 swap devices.\r\n\r\nIn Fedora 33 feature proposal\r\nhttps://fedoraproject.org/wiki/Changes/SwapOnZRAM\r\n\r\nIt's possible (not absolutely decided yet) that on upgrades there could be two swaps: the \"legacy\" swap-on-disk, and also swap-on-zram. So the question is whether it already ensures there will only be oom kill if the combine swaps become full; or at least that the oom behavior is reasonable rather than killing something off just because only one of the swaps is full.", "title": "support for checking multiple swap partitions", "type": "issue" }, { "action": "closed", "author": "rfjakob", "comment_id": null, "datetime": 1591044251000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "rfjakob", "comment_id": 637091968, "datetime": 1591044251000, "masked_author": "username_1", "text": "Hi, it's based on `SwapTotal` and `SwapFree` as reported in /proc/meminfo. That's the sum of all swap devices and the same as `free` reports.", "title": null, "type": "comment" }, { "action": "created", "author": "cmurf", "comment_id": 637102919, "datetime": 1591045728000, "masked_author": "username_0", "text": "Awesome. Thanks.", "title": null, "type": "comment" } ]
2
4
779
false
false
779
false
FairwindsOps/pluto
FairwindsOps
641,497,264
90
{ "number": 90, "repo": "pluto", "user_login": "FairwindsOps" }
[ { "action": "opened", "author": "transient1", "comment_id": null, "datetime": 1592508567000, "masked_author": "username_0", "text": "Pluto doesn't have the `--output-file` function, but it also doesn't have a shell. We need one of these to enable Insights integration I think because Insights needs a generated report file. I removed all of the Scratch lines and left it on the alpine image.", "title": "remove Scratch layers", "type": "issue" }, { "action": "created", "author": "sudermanjr", "comment_id": 647588402, "datetime": 1592839503000, "masked_author": "username_1", "text": "Fixes #88", "title": null, "type": "comment" }, { "action": "created", "author": "transient1", "comment_id": 649017753, "datetime": 1593026499000, "masked_author": "username_0", "text": "S'alright?", "title": null, "type": "comment" } ]
4
5
826
false
true
277
false
mitodl/micromasters
mitodl
599,873,642
4,601
{ "number": 4601, "repo": "micromasters", "user_login": "mitodl" }
[ { "action": "opened", "author": "noisecapella", "comment_id": null, "datetime": 1586900068000, "masked_author": "username_0", "text": "#### Pre-Flight checklist\n\n- [x] Testing\n - [x] Changes have been manually tested\n\n#### What are the relevant tickets?\nFixes #4597 \n\n#### What's this PR do?\n- Renames `UWSGI_THREAD_COUNT` to `UWSGI_THREADS` and `UWSGI_PROCESS_COUNT` to `UWSGI_PROCESSES`\n- Removes `if-env` blocks because uWSGI will populate those variables automatically\n\n#### How should this be manually tested?\nFirst, rename `UWSGI_THREAD_COUNT` and `UWSGI_PROCESS_COUNT` if you have them defined in your `.env` file. Then go to the homepage and verify that nothing has broken.\n\n#### Where should the reviewer start?\n(Optional)\n\n#### Any background context you want to provide?\n(Optional)\n\n#### Screenshots (if appropriate)\n(Optional)\n\n#### What GIF best describes this PR or how it makes you feel?\n(Optional)", "title": "Rename UWSGI_THREAD_COUNT and UWSGI_PROCESS_COUNT, and remove redundant if-not-env blocks", "type": "issue" }, { "action": "created", "author": "markbreedlove", "comment_id": 614088898, "datetime": 1586962504000, "masked_author": "username_1", "text": "", "title": null, "type": "comment" }, { "action": "created", "author": "markbreedlove", "comment_id": 617193616, "datetime": 1587477100000, "masked_author": "username_1", "text": "should be 👍", "title": null, "type": "comment" } ]
3
4
790
false
true
790
false
NixOS/nixpkgs
NixOS
621,622,078
88,311
null
[ { "action": "opened", "author": "ckauhaus", "comment_id": null, "datetime": 1589968072000, "masked_author": "username_0", "text": "[search](https://search.nix.gsc.io/?q=gnupg&i=fosho&repos=NixOS-nixpkgs), [files](https://github.com/NixOS/nixpkgs/search?utf8=%E2%9C%93&q=gnupg+in%3Apath&type=Code)\n\n* [ ] [CVE-2019-14855](https://nvd.nist.gov/vuln/detail/CVE-2019-14855) CVSSv3=7.5 (nixos-19.09)\n\nScanned versions: nixos-19.09: 31dcaa5eb67. May contain false positives.", "title": "Vulnerability roundup 84: gnupg-2.2.17: 1 advisory", "type": "issue" }, { "action": "closed", "author": "redvers", "comment_id": null, "datetime": 1605167900000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "redvers", "comment_id": 725907740, "datetime": 1605167900000, "masked_author": "username_1", "text": "19.09 is EOL\r\nClosing.", "title": null, "type": "comment" } ]
2
3
359
false
false
359
false
xamarin/xamarin-android
xamarin
317,354,144
1,597
null
[ { "action": "opened", "author": "jgold6", "comment_id": null, "datetime": 1524596361000, "masked_author": "username_0", "text": "When building the attached test project, the build fails with error:\r\n`\r\n/path/to/obj/Debug/aidl/IMxFrameworkService.cs(17,17): Error CS7036: There is no argument given that corresponds to the required formal parameter 'loader' of 'Parcel.ReadHashMap(ClassLoader)' (CS7036) (MobileAndroid)\r\n`\r\n\r\nThe `IMxFrameworkService.cs` is the file generated from the AIDL file. There is this line of code in the `OnTransact` method:\r\n\r\n`arg1 = data.ReadHashMap ();`\r\n\r\nNote that there is no `ClassLoader` parameter. In the `Android.OS.Parcel` class, there is only one overload for the `ReadHashMap` method and it takes a `ClassLoader` (an abstract class) as an argument. There is no overload that takes no arguments. \r\n\r\n### Steps to Reproduce\r\n\r\n1. Open the attached test project\r\n2. Build the project\r\n\r\n\r\n[Microsoft-118042018043876.zip](https://github.com/xamarin/xamarin-android/files/1944147/Microsoft-118042018043876.zip)\r\n\r\n\r\n### Expected Behavior\r\nProject will build\r\n\r\n### Actual Behavior\r\nbuild fails with error noted above.\r\n\r\n### Version Information\r\n\r\n=== Visual Studio Enterprise 2017 for Mac ===\r\n\r\nVersion 7.4.3 (build 10)\r\nInstallation UUID: f86726f2-bd5d-4610-867e-44e82f306ca2\r\nRuntime:\r\n\tMono 5.8.1.0 (2017-10/6bf3922f3fd) (64-bit)\r\n\tGTK+ 2.24.23 (Raleigh theme)\r\n\r\n\tPackage version: 508010000\r\n\r\n=== NuGet ===\r\n\r\nVersion: 4.3.1.4445\r\n\r\n=== .NET Core ===\r\n\r\nRuntime: /usr/local/share/dotnet/dotnet\r\nRuntime Versions:\r\n\t2.0.5\r\n\t2.0.0\r\n\t1.1.1\r\n\t1.0.4\r\n\t1.0.0\r\nSDK: /usr/local/share/dotnet/sdk/2.1.4/Sdks\r\nSDK Versions:\r\n\t2.1.4\r\n\t2.0.0\r\n\t1.0.1\r\n\t1.0.0-preview2-003121\r\nMSBuild SDKs: /Library/Frameworks/Mono.framework/Versions/5.8.1/lib/mono/msbuild/15.0/bin/Sdks\r\n\r\n=== Xamarin.Profiler ===\r\n\r\nVersion: 1.6.1\r\nLocation: /Applications/Xamarin Profiler.app/Contents/MacOS/Xamarin Profiler\r\n\r\n=== Xamarin.Android ===\r\n\r\nVersion: 8.2.0.16 (Visual Studio Enterprise)\r\nAndroid SDK: /Users/jongoldberger/Library/Developer/Xamarin/android-sdk-macosx\r\n\tSupported Android versions:\r\n\t\t4.0.3 (API level 15)\r\n\t\t4.1 (API level 16)\r\n\t\t4.2 (API level 17)\r\n\t\t4.3 (API level 18)\r\n\t\t4.4 (API level 19)\r\n\t\t5.0 (API level 21)\r\n\t\t5.1 (API level 22)\r\n\t\t6.0 (API level 23)\r\n\t\t7.0 (API level 24)\r\n\t\t7.1 (API level 25)\r\n\t\t8.0 (API level 26)\r\n\t\t8.1 (API level 27)\r\n\r\nSDK Tools Version: 26.1.1\r\nSDK Platform Tools Version: 27.0.1\r\nSDK Build Tools Version: 27.0.3\r\n\r\nJava SDK: /usr\r\njava version \"1.8.0_161\"\r\nJava(TM) SE Runtime Environment (build 1.8.0_161-b12)\r\nJava HotSpot(TM) 64-Bit Server VM (build 25.161-b12, mixed mode)\r\n\r\nAndroid Designer EPL code available here:\r\nhttps://github.com/xamarin/AndroidDesigner.EPL\r\n\r\n=== Apple Developer Tools ===\r\n\r\nXcode 9.3 (14154)\r\nBuild 9E145\r\n\r\n=== Xamarin.Mac ===\r\n\r\nVersion: 4.2.1.29 (Visual Studio Enterprise)\r\n\r\n=== Xamarin.iOS ===\r\n\r\nVersion: 11.9.1.24 (Visual Studio Enterprise)\r\nHash: f62de472\r\nBranch: xcode9.3\r\nBuild date: 2018-03-29 19:30:53-0400\r\n\r\n=== Xamarin Inspector ===\r\n\r\nVersion: 1.4.0\r\nHash: b3f92f9\r\nBranch: master\r\nBuild date: Fri, 19 Jan 2018 22:00:34 GMT\r\nClient compatibility: 1\r\n\r\n=== Build Information ===\r\n\r\nRelease ID: 704030010\r\nGit revision: 5af3e98549653fcc5335896ccc296343d08f31bb\r\nBuild date: 2018-04-12 12:32:07-04\r\nXamarin addins: fadb82fb0fe2668cb7789f8b524aec6fb8568ee7\r\nBuild lane: monodevelop-lion-d15-6\r\n\r\n=== Operating System ===\r\n\r\nMac OS X 10.13.4\r\nDarwin 17.5.0 Darwin Kernel Version 17.5.0\r\n Mon Mar 5 22:24:32 PST 2018\r\n root:xnu-4570.51.1~1/RELEASE_X86_64 x86_64\r\n\r\n=== Enabled user installed addins ===\r\n\r\nInternet of Things (IoT) development (Preview) 7.1\r\n\r\n\r\n### Log File\r\n\r\n[Build_Log.txt](https://github.com/xamarin/xamarin-android/files/1944173/Build_Log.txt)", "title": "AIDL file with method that uses a Map parameter causes build failure", "type": "issue" }, { "action": "closed", "author": "jonathanpeppers", "comment_id": null, "datetime": 1597419329000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "brendanzagaeski", "comment_id": 692325966, "datetime": 1600119154000, "masked_author": "username_2", "text": "_Release status update_\r\n\r\nA new Preview version of Xamarin.Android has now been published that includes the fix for this item. The fix is not yet included in a Release version. I will update this item again when a Release version is available that includes the fix.\r\n\r\nFix included in Xamarin.Android SDK version 11.1.0.3.\r\n\r\nFix included on Windows in Visual Studio 2019 version 16.8 Preview 3. To try the Preview version that includes the fix, [check for the latest updates](https://docs.microsoft.com/visualstudio/install/update-visual-studio?view=vs-2019) in [Visual Studio Preview](https://visualstudio.microsoft.com/vs/preview/).\r\n\r\nFix included on macOS in Visual Studio 2019 for Mac version 8.8 Preview 3. To try the Preview version that includes the fix, check for the latest updates on the **Preview** [updater channel](https://docs.microsoft.com/visualstudio/mac/update).", "title": null, "type": "comment" }, { "action": "created", "author": "brendanzagaeski", "comment_id": 724927873, "datetime": 1605037745000, "masked_author": "username_2", "text": "_Release status update_\r\n\r\nA new Release version of Xamarin.Android has now been published that includes the fix for this item.\r\n\r\nFix included in Xamarin.Android SDK version 11.1.0.17.\r\n\r\nFix included on Windows in Visual Studio 2019 version 16.8. To get the new version that includes the fix, [check for the latest updates](https://docs.microsoft.com/visualstudio/install/update-visual-studio?view=vs-2019) or install the most recent release from <https://visualstudio.microsoft.com/downloads/>.\r\n\r\nFix included on macOS in Visual Studio 2019 for Mac version 8.8. To get the new version that includes the fix, check for the latest updates on the **Stable** [updater channel](https://docs.microsoft.com/visualstudio/mac/update).", "title": null, "type": "comment" } ]
3
4
5,280
false
false
5,280
false
symfony/symfony
symfony
472,344,923
32,718
{ "number": 32718, "repo": "symfony", "user_login": "symfony" }
[ { "action": "opened", "author": "xabbuh", "comment_id": null, "datetime": 1563981633000, "masked_author": "username_0", "text": "| Q | A\r\n| ------------- | ---\r\n| Branch? | 4.4\r\n| Bug fix? | no\r\n| New feature? | yes\r\n| BC breaks? | no\r\n| Deprecations? | yes\r\n| Tests pass? | yes\r\n| Fixed tickets | #18366\r\n| License | MIT\r\n| Doc PR |", "title": "[Form] use a reference date to handle times during DST", "type": "issue" }, { "action": "created", "author": "xabbuh", "comment_id": 514765699, "datetime": 1563996165000, "masked_author": "username_0", "text": "Status: Needs Review", "title": null, "type": "comment" }, { "action": "created", "author": "fabpot", "comment_id": 515086777, "datetime": 1564067862000, "masked_author": "username_1", "text": "Thank you @username_0.", "title": null, "type": "comment" } ]
2
3
284
false
false
284
true
milvus-io/pymilvus
milvus-io
565,866,728
152
null
[ { "action": "opened", "author": "BossZou", "comment_id": null, "datetime": 1581839558000, "masked_author": "username_0", "text": "**Is your feature request related to a problem? Please describe.**\r\nAPI: show_table_info(table_name, timeout=None)\r\nReturn: Status, TableInfo\r\n\r\nUsage:\r\n```\r\nclient = Milvus()\r\n client.connect()\r\n\r\n table_name = \"segments\"\r\n client.create_table({\r\n \"table_name\": table_name,\r\n \"dimension\": 128,\r\n \"index_file_size\": 10,\r\n \"metric_type\": MetricType.L2,\r\n })\r\n\r\n for _ in range(20):\r\n vectors = [[random.random() for _ in range(128)] for _ in range(10000)]\r\n\r\n client.insert(table_name, vectors)\r\n\r\n client.create_partition(table_name, \"segment_par\", \"tag\")\r\n\r\n for _ in range(20):\r\n vectors = [[random.random() for _ in range(128)] for _ in range(10000)]\r\n\r\n client.insert(table_name, vectors, partition_tag=\"tag\")\r\n\r\n client.flush([table_name])\r\n\r\n status, info = client.table_info(table_name, timeout=None)\r\n\r\n print(info)\r\n\r\n client.drop_table(table_name)\r\n```\r\n\r\nOutput:\r\n```\r\nTableInfo(count: 380000, native_stat: TableStat(name: segments, count: 200000, segment_stats: [Segment(segment_name: 1581839507637065000, row_count: 20000, index_name: IDMAP), Segment(segment_name: 1581839508087720000, row_count: 50000, index_name: IDMAP), Segment(segment_name: 1581839509240424000, row_count: 40000, index_name: IDMAP), Segment(segment_name: 1581839510190388000, row_count: 50000, index_name: IDMAP), Segment(segment_name: 1581839511343318000, row_count: 40000, index_name: IDMAP)]), partitions_stat: [TableStat(name: segment_par, count: 180000, segment_stats: [Segment(segment_name: 1581839512282089000, row_count: 50000, index_name: IDMAP), Segment(segment_name: 1581839513423431000, row_count: 40000, index_name: IDMAP), Segment(segment_name: 1581839514362984000, row_count: 50000, index_name: IDMAP), Segment(segment_name: 1581839515504973000, row_count: 40000, index_name: IDMAP)])])\r\n\r\n```\r\n\r\n**Describe the solution you'd like**\r\nA clear and concise description of what you want to happen.\r\n\r\n**Describe alternatives you've considered**\r\nA clear and concise description of any alternative solutions or features you've considered.\r\n\r\n**Additional context**\r\nAdd any other context, code examples, or references to existing implementations about the feature request here.", "title": "[FEATURE] Add interface to show table info", "type": "issue" }, { "action": "created", "author": "BossZou", "comment_id": 598510291, "datetime": 1584064470000, "masked_author": "username_0", "text": "Fixed. Close it.", "title": null, "type": "comment" }, { "action": "closed", "author": "BossZou", "comment_id": null, "datetime": 1584064470000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
3
2,278
false
false
2,278
false
JoshuaMulliken/ha-wyzeapi
null
610,824,977
43
null
[ { "action": "opened", "author": "rbees", "comment_id": null, "datetime": 1588348700000, "masked_author": "username_0", "text": "Virtual Box VDI\r\nSystem | HassOS 3.13\r\n-- | --\r\nDeployment | production\r\n\r\nSetup May 1, 2020\r\n\r\n20-05-01 14:34:26 INFO (MainThread) [supervisor.store.git] Update add-on https://github.com/home-assistant/hassio-addons repository\r\n20-05-01 14:34:26 INFO (MainThread) [supervisor.store.git] Update add-on https://github.com/username_1/ha-wyzebulb repository\r\n20-05-01 14:34:26 INFO (MainThread) [supervisor.store.git] Update add-on https://github.com/hassio-addons/repository repository\r\n20-05-01 14:34:27 INFO (MainThread) [supervisor.updater] Fetch update data from https://version.home-assistant.io/stable.json\r\n20-05-01 14:34:27 ERROR (MainThread) [supervisor.utils.json] Can't read json from /data/addons/git/87977a50/repository.json: [Errno 2] No such file or directory: '/data/addons/git/87977a50/repository.json'\r\n20-05-01 14:34:27 WARNING (MainThread) [supervisor.store.data] Can't read repository information from /data/addons/git/87977a50/repository.json\r\n20-05-01 14:34:27 INFO (MainThread) [supervisor.store] Load add-ons from store: 65 all - 0 new - 0 remove", "title": "Repo not useable", "type": "issue" }, { "action": "created", "author": "JoshuaMulliken", "comment_id": 624133624, "datetime": 1588693432000, "masked_author": "username_1", "text": "This looks like a HACS issue. Have you filed an issue there?", "title": null, "type": "comment" }, { "action": "closed", "author": "JoshuaMulliken", "comment_id": null, "datetime": 1588818553000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "JoshuaMulliken", "comment_id": 624992778, "datetime": 1588818585000, "masked_author": "username_1", "text": "I've closed this issue because it doesn't appear to be relevant. If you have additional information please feel free to open a new issue or reply to this one.", "title": null, "type": "comment" } ]
2
4
1,291
false
false
1,291
true
twitch4j/twitch4j
twitch4j
605,997,755
109
{ "number": 109, "repo": "twitch4j", "user_login": "twitch4j" }
[ { "action": "opened", "author": "sp0ck1", "comment_id": null, "datetime": 1587696376000, "masked_author": "username_0", "text": "Added method to update stream titles in TwitchKraken. While Kraken is deprecated according to Twitch, this is still the only way to update stream titles via the API, and the Trello road map they provide mentions nothing about finishing the Helix API to include things like this. \r\n\r\nThis method is tested and working :)", "title": "Added updateTitle method to TwitchKraken", "type": "issue" }, { "action": "created", "author": "PhilippHeuer", "comment_id": 619783211, "datetime": 1587972012000, "masked_author": "username_1", "text": "Thanks for the PR :)", "title": null, "type": "comment" } ]
2
2
339
false
false
339
false
cypress-io/cypress
cypress-io
552,536,287
6,198
null
[ { "action": "opened", "author": "clarmso", "comment_id": null, "datetime": 1579559639000, "masked_author": "username_0", "text": "<!-- Is this a question? Questions WILL BE CLOSED. Ask in our chat https://on.cypress.io/chat -->\r\n\r\n### Current behavior:\r\n\r\nThe current documentation points out that `show(\"trigger\", \"mouseover\")` or `trigger(\"mouseover\")` are used for hovering over certain DOM elements:\r\n\r\nhttps://docs.cypress.io/api/commands/hover.html\r\nhttps://github.com/cypress-io/cypress-example-recipes/tree/master/examples/testing-dom__hover-hidden-elements\r\n\r\nWhen the hover event in the CSS, Cypress does not fire the event. Please see the test code below. I have not found a workaround to fire the hover event.\r\n\r\n### Desired behavior:\r\n\r\nEither `show(\"trigger\", \"mouseover\")` or `trigger(\"mouseover\")` works on all sorts of hovering or mouseover activities.\r\n\r\n### Test code to reproduce\r\n\r\ngit clone https://github.com/username_0/force-element-state-cypress\r\nnpm i\r\nnpm run start\r\nnpm run open\r\n\r\n### Versions\r\n\r\nCypress 3.8.2\r\nUbuntu 16.04 LTS\r\nChrome 79 (79.0.3945.130)", "title": "Cannot fire hover event by CSS", "type": "issue" }, { "action": "closed", "author": "jennifer-shehane", "comment_id": null, "datetime": 1579581334000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "jennifer-shehane", "comment_id": 576514166, "datetime": 1579581334000, "masked_author": "username_1", "text": "Using `.trigger()` will only trigger the actual events in JavaScript and has zero effect on the CSS effects. This is a duplicate of https://github.com/cypress-io/cypress/issues/10 which outlines the challenges and work necessary to support simulating hover effects in CSS. \r\n\r\nAlthough I don't think this is made very clear in the .hover doc, so I've opened an issue to add clarification directly there https://github.com/cypress-io/cypress-documentation/issues/2412", "title": null, "type": "comment" } ]
2
3
1,420
false
false
1,420
true
mkorpela/pabot
null
612,622,648
268
{ "number": 268, "repo": "pabot", "user_login": "mkorpela" }
[ { "action": "opened", "author": "DirkRichter", "comment_id": null, "datetime": 1588686947000, "masked_author": "username_0", "text": "Pabotlib suppress error details (e.g. in case of connection problems). We run into such problems and extend pabotlib logging for better analysis.", "title": "improved pabotlib error logging", "type": "issue" }, { "action": "created", "author": "mkorpela", "comment_id": 624143865, "datetime": 1588694508000, "masked_author": "username_1", "text": "Thank yo @username_0 !", "title": null, "type": "comment" } ]
2
2
168
false
false
168
true
uber/prototool
uber
551,826,907
537
null
[ { "action": "opened", "author": "sashayakovtseva", "comment_id": null, "datetime": 1579382988000, "masked_author": "username_0", "text": "Hi,\r\nOne thing which can make prototool even better is custom config path.\r\nIn large projects there may be many configs for different tools and it would be extremely convenient to keep them all in a dedicated directory (e.g. `configs`) rather than cluttering repository's root.\r\n\r\nImagine the following project structure: \r\n```\r\nrepo/\r\n api/\r\n api.proto\r\n cmd/\r\n configs/\r\n prototool.yaml\r\n internal/\r\n pkg/\r\n README.md\r\n```\r\nWorking directory is repo root.\r\nThe config path flag would be passed like: `prototool generate --config configs/prototool.yaml`\r\nPrototool should work the same as if the config was in the working directory (i.e. repo root).\r\n\r\n\r\nPlease let me know what you think about this feature request. \r\nP.S. There is a PR open already #519, but it seem to be left without attention.", "title": "Add flag for config path", "type": "issue" } ]
1
1
811
false
false
811
false
sobolevn/sobole-zsh-theme
null
235,084,410
1
null
[ { "action": "opened", "author": "sobolevn", "comment_id": null, "datetime": 1497207421000, "masked_author": "username_0", "text": "<img width=\"682\" alt=\"2017-06-11 21 56 29\" src=\"https://user-images.githubusercontent.com/4660275/27013662-dfcedeae-4ef0-11e7-9b39-e1a96bb1863d.png\">\r\n\r\nIt looks broken.", "title": "ls highlight fails", "type": "issue" }, { "action": "created", "author": "sobolevn", "comment_id": 307649275, "datetime": 1497207586000, "masked_author": "username_0", "text": "Found out it was this particular terminal window's problem.\r\n<img width=\"682\" alt=\"2017-06-11 21 59 06\" src=\"https://user-images.githubusercontent.com/4660275/27013677-43b055ce-4ef1-11e7-926f-5c1f50973cd2.png\">", "title": null, "type": "comment" }, { "action": "closed", "author": "sobolevn", "comment_id": null, "datetime": 1497207586000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "reopened", "author": "sobolevn", "comment_id": null, "datetime": 1497211277000, "masked_author": "username_0", "text": "<img width=\"682\" alt=\"2017-06-11 21 56 29\" src=\"https://user-images.githubusercontent.com/4660275/27013662-dfcedeae-4ef0-11e7-9b39-e1a96bb1863d.png\">\r\n\r\nIt looks broken.", "title": "ls highlight fails", "type": "issue" }, { "action": "created", "author": "sobolevn", "comment_id": 307653079, "datetime": 1497211307000, "masked_author": "username_0", "text": "Nope, that was actually an issue.\r\n\r\nSolved it with removing `LS_COLORS`.", "title": null, "type": "comment" }, { "action": "closed", "author": "sobolevn", "comment_id": null, "datetime": 1497211640000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
6
621
false
false
621
false
lucko/LuckPermsWeb
null
584,796,370
167
null
[ { "action": "opened", "author": "rockey86", "comment_id": null, "datetime": 1584669137000, "masked_author": "username_0", "text": "i wanted to create an owner rank but i have alot of plugins and who wants to sit there for an hour just clicking away at each individual command, if there is already a solution to this, please let me know", "title": "Put an \"give all commands\" in the web editor ", "type": "issue" }, { "action": "created", "author": "Turbotailz", "comment_id": 601494548, "datetime": 1584669517000, "masked_author": "username_1", "text": "You need to learn what wildcards are.\n\nJust add `*` and you'll get every permission. It's not really recommended\nas you'll inherit some unwanted permissions so use it at your own risk.", "title": null, "type": "comment" }, { "action": "closed", "author": "Turbotailz", "comment_id": null, "datetime": 1584670871000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
388
false
false
388
false
stefanberger/swtpm
null
652,554,053
275
{ "number": 275, "repo": "swtpm", "user_login": "stefanberger" }
[ { "action": "opened", "author": "stefanberger", "comment_id": null, "datetime": 1594148944000, "masked_author": "username_0", "text": "Remove swtpm_cuse related install script since not needed anymore.\r\n\r\nAlso address the following issues:\r\n\r\nE: swtpm-tools: unknown-control-interpreter control/postinst #!/usr/bin/env\r\nW: swtpm: syntax-error-in-debian-changelog line 25 \"bad key-value after `;': `urgency medium'\"", "title": "debian: Address some issues raised by lintian", "type": "issue" } ]
2
2
870
false
true
279
false
Microsoft/openenclave
Microsoft
393,592,571
1,247
{ "number": 1247, "repo": "openenclave", "user_login": "Microsoft" }
[ { "action": "opened", "author": "yakman2020", "comment_id": null, "datetime": 1545426840000, "masked_author": "username_0", "text": "Fixes failing test tests/crypto_crls_cert_chains on 18.04. Adds v3 extensions to intermediate certificate", "title": "Fix cert ceneration for crypto_crls_cert_chains on 1804", "type": "issue" }, { "action": "created", "author": "yakman2020", "comment_id": 449503360, "datetime": 1545427877000, "masked_author": "username_0", "text": "bors r+", "title": null, "type": "comment" } ]
2
3
262
false
true
113
false
v7lin/fake_wechat
null
554,076,659
30
null
[ { "action": "opened", "author": "gj452652749", "comment_id": null, "datetime": 1579776174000, "masked_author": "username_0", "text": "网页分享,当scene设置文WechatScene.SESSION,点击微信群没反应,现在还不支持分享到会话吗?\r\n代码如下:\r\n_wechat.shareWebpage(\r\n scene: WechatScene.SESSION,\r\n webpageUrl: 'https://www.baidu.com',\r\n );", "title": "网页分享-shareWebpage", "type": "issue" }, { "action": "closed", "author": "gj452652749", "comment_id": null, "datetime": 1579777782000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "q876625596", "comment_id": 606674258, "datetime": 1585666071000, "masked_author": "username_1", "text": "请问,这个问题解决了吗,我这边也有同样的问题", "title": null, "type": "comment" } ]
2
3
225
false
false
225
false
google/sanitizers
google
580,691,212
1,204
null
[ { "action": "opened", "author": "ghita", "comment_id": null, "datetime": 1584114753000, "masked_author": "username_0", "text": "Saw some older stackoverflow responses mentioning how to ignore benign races with annotations.\r\n\r\nIs that something that can still be used ? I know about suppressions and use it for third party code but ideally I would not need to use that in my own code. \r\n\r\nWould be nice to have in wiki described something on the lines: https://stackoverflow.com/questions/60661740/thread-sanitizer-reporting-with-qcoreapplicationpostevent-when-calling-into\r\n\r\nJust look to the \"LATER EDIT\" part on the question.", "title": "Looking over wiki and cannot see what tools we have at our disposal to ignore \"benign races\"", "type": "issue" } ]
1
1
500
false
false
500
false
microsoft/vscode
microsoft
655,373,090
102,284
null
[ { "action": "opened", "author": "einarpersson", "comment_id": null, "datetime": 1594549650000, "masked_author": "username_0", "text": "<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ -->\r\n<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->\r\n<!-- Please search existing issues to avoid creating duplicates. -->\r\n<!-- Also please test using the latest insiders build to make sure your issue has not already been fixed: https://code.visualstudio.com/insiders/ -->\r\n\r\n<!-- Use Help > Report Issue to prefill these. -->\r\n- VSCode Version: Unknown (latest?), writing `code --version` prompts an update which fails\r\n- OS Version: Ubuntu 18.04 running on WSL2 Windows 10 Pro\r\n\r\nSteps to Reproduce:\r\n\r\n1. Trying to start vscode from WSL2 Ubuntu 18.04 (in Windows terminal) as `code .` starts an update which fails. I have been using VSCode under WSL2 for a long time and this is the first time the update fails. The output is the following:\r\n\r\n````\r\nUpdating VS Code Server to version d5e9aa0227e057a60c82568bf31c04730dc15dcd\r\nRemoving previous installation...\r\nInstalling VS Code Server for x64 (d5e9aa0227e057a60c82568bf31c04730dc15dcd)\r\nDownloading: 100%\r\nFailed\r\n--2020-07-12 00:10:35-- https://update.code.visualstudio.com/commit:d5e9aa0227e057a60c82568bf31c04730dc15dcd/server-linux-x64/stable\r\nResolving update.code.visualstudio.com (update.code.visualstudio.com)... failed: Temporary failure in name resolution.\r\nwget: unable to resolve host address ‘update.code.visualstudio.com’\r\nERROR: Failed to download https://update.code.visualstudio.com/commit:d5e9aa0227e057a60c82568bf31c04730dc15dcd/server-linux-x64/stable to /home/einar/.vscode-server/bin/d5e9aa0227e057a60c82568bf31c04730dc15dcd-1594505425.tar.gz\r\n````\r\n\r\n<!-- Launch with `code --disable-extensions` to check. -->\r\nDoes this issue occur when all extensions are disabled?: Yes/No\r\nYes", "title": "Error when updating VS Code Server on WSL2 / Ubuntu", "type": "issue" }, { "action": "created", "author": "einarpersson", "comment_id": 657203768, "datetime": 1594549890000, "masked_author": "username_0", "text": "I went around the problem by opening VSCode on the Windows 10 Pro system, and from there open a WSL2 Remote. That started the upload process and for some reason this worked. After that I tried once more in the Ubuntu terminal and now it worked.\r\n\r\nI have no idea why though.", "title": null, "type": "comment" }, { "action": "created", "author": "aeschli", "comment_id": 657432570, "datetime": 1594631713000, "masked_author": "username_1", "text": "When `code` is run from the WSL we try to download from the WSL shell. When opening a WSL window fist, it's done from the Windows side.\r\n\r\nThis looks like a network issue in the WSL. Maybe you are behind a prozy? See here for more information: https://code.visualstudio.com/docs/remote/wsl#_im-behind-a-proxy-and-have-connectivity-issues", "title": null, "type": "comment" }, { "action": "closed", "author": "aeschli", "comment_id": null, "datetime": 1594631724000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
4
2,369
false
false
2,369
false
nuxt/vue-meta
nuxt
627,265,864
567
null
[ { "action": "opened", "author": "njam", "comment_id": null, "datetime": 1590758617000, "masked_author": "username_0", "text": "It seems that between 2.3.3 and 2.3.4 a bug was introduced that prevents the page title to be updated on a redirect from an SSR page. Might this be caused by #563? :-/\r\n\r\n---\r\nReproduce\r\n1. Clone this repo: https://gitlab.com/username_0/repro-vuemeta-redirect-title ([relevant commit](https://gitlab.com/username_0/repro-vuemeta-redirect-title/-/commit/6c99904e417795f3effe586a783096e1a7c0351c))\r\n```\r\ngit clone https://gitlab.com/username_0/repro-vuemeta-redirect-title.git\r\ncd repro-vuemeta-redirect-title\r\n```\r\n2. Build and serve the project:\r\n```\r\nyarn install\r\nyarn run generate\r\nnpx serve ./dist\r\n```\r\n3. Open the page: http://localhost:5000 \r\n4. Result:\r\n Expected: Browser redirects to `/foo`, title is \"foo!\"\r\n Actual: Browser redirects to `/foo`, title is \"localhost:5000/\"", "title": "Title not updated on page redirect from SSR", "type": "issue" }, { "action": "created", "author": "pimlie", "comment_id": 636322250, "datetime": 1590840602000, "masked_author": "username_1", "text": "This is a Nuxt issue, see linked PR.\r\n\r\nWe could also solve this in vue-meta though, pushed a commit that does it: https://github.com/nuxt/vue-meta/commit/9aa8c036d3034e44cfe8d787fff312772eadc388 But dont think we need to merge that if the actual problem was with Nuxt", "title": null, "type": "comment" } ]
2
2
1,035
false
false
1,035
true
odpi/egeria
odpi
525,774,431
2,042
null
[ { "action": "opened", "author": "davidradl", "comment_id": null, "datetime": 1574253079000, "masked_author": "username_0", "text": "I raised #2037, then I thought wouldn't it be better to choose the asset type (e.g. database and then allow filter for tables and columns) or to choose asset type Avro then allow Avro schema related filters. There are groups of types that would make sense to use for different asset types. I think that the OMAS should expose these asset filter based on asset type. \r\n\r\nIf you do not need this level of granularity, maybe just allow asset type, schema, classification and glossary term filters.\r\n\r\nEither way I do not think we should exposing all lot of possible OMRS types to the user, when types can only be used sensibly in certain groupings.", "title": "Asset Catalog OMAS filtering improvements", "type": "issue" } ]
2
3
828
false
true
645
false
project-koku/koku-ui
project-koku
439,177,289
836
{ "number": 836, "repo": "koku-ui", "user_login": "project-koku" }
[ { "action": "opened", "author": "dlabrecq", "comment_id": null, "datetime": 1556719809000, "masked_author": "username_0", "text": "In our tables, we must use the title property for each PatternFly table cell. For example:\r\n\r\n```\r\ncells: [\r\n { title: <div>...</div> },\r\n],\r\n```\r\n\r\nThis was a breaking change with PatternFly 4 beta, but didn't show up in our build until the latest packages were installed.\r\n\r\nFixes https://github.com/project-koku/koku-ui/issues/835", "title": "Broken PF tables", "type": "issue" } ]
2
2
334
false
true
334
false
hotosm/toolbox
hotosm
587,798,448
7
null
[ { "action": "opened", "author": "jarmokivekas", "comment_id": null, "datetime": 1585151492000, "masked_author": "username_0", "text": "Whlie setting up for work on #6 , I noticed there is a markdown file for chapter 7.4 in the repo, but it does not appear on the static site when running `hugo serve` locally.\r\n\r\n![image](https://user-images.githubusercontent.com/3074453/77555320-cc15a180-6ebf-11ea-9352-29a7eb15aaeb.png)\r\n\r\nNot sure if this is actually a mistake or if it is intentionally not rendered somehow (there is not a lot of content on the page).", "title": "BUG: Chapter 7.4 not shown in static site", "type": "issue" }, { "action": "created", "author": "jessbeutler", "comment_id": 607970730, "datetime": 1585846933000, "masked_author": "username_1", "text": "Hey @username_0 \r\n\r\nThanks for flagging 7.4 was pulled from the main production launch due to resource/time constraints. That's why it has a placeholder page but is not rendered. \r\n\r\nFeel free to re-order your \"QGIS Workflows for Disaster Mapping\" page as 7.4, and we'll make the other one 7.5 when it is completed eventually.", "title": null, "type": "comment" }, { "action": "created", "author": "jarmokivekas", "comment_id": 608047418, "datetime": 1585854247000, "masked_author": "username_0", "text": "Ok, great.\r\n\r\nClosing this as intentional, not a bug,", "title": null, "type": "comment" }, { "action": "closed", "author": "jarmokivekas", "comment_id": null, "datetime": 1585854247000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
2
4
802
false
false
802
true
Khan/wonder-blocks
Khan
481,415,771
467
{ "number": 467, "repo": "wonder-blocks", "user_login": "Khan" }
[ { "action": "opened", "author": "kevinbarabash", "comment_id": null, "datetime": 1565922973000, "masked_author": "username_0", "text": "I think this is something we might want to promote as a best practice to avoid unnecessary dependencies.", "title": "Use typeof imports whenever possible", "type": "issue" }, { "action": "created", "author": "jeresig", "comment_id": 521863632, "datetime": 1565923145000, "masked_author": "username_1", "text": "Deploy preview for *wonder-blocks* ready!\n\nBuilt with commit e2377228dcdb01f11931d85dfed38c68a250d7aa\n\nhttps://deploy-preview-467--wonder-blocks.netlify.com", "title": null, "type": "comment" }, { "action": "created", "author": "kevinbarabash", "comment_id": 522789908, "datetime": 1566256692000, "masked_author": "username_0", "text": "I've added a note about `import typeof` to https://khanacademy.atlassian.net/wiki/spaces/FRONTEND/pages/128975067/Flow+Best+Practices", "title": null, "type": "comment" } ]
3
4
393
false
true
393
false
cython/cython
cython
524,790,525
3,239
null
[ { "action": "opened", "author": "jakirkham", "comment_id": null, "datetime": 1574142734000, "masked_author": "username_0", "text": "It appears when handling custom C++ exceptions Cython looses the `.what()` information of the exception currently (see this [SO answer]( https://stackoverflow.com/a/49245784 )). Would be nice to preserve `.what()` in these cases to ensure the message reaches the user.", "title": "Preserving `.what()` when handling custom C++ exceptions", "type": "issue" } ]
1
1
268
false
false
268
false
mccanne/zq
null
524,694,470
28
{ "number": 28, "repo": "zq", "user_login": "mccanne" }
[ { "action": "opened", "author": "nwt", "comment_id": null, "datetime": 1574122306000, "masked_author": "username_0", "text": "zson.NewRawAndTsFromJSON does not convert Zeek JSON::TS_ISO8601\r\ntimestamps to the standard Zeek format, and it does not handle\r\nJSON:TS_MILLIS timestamps correctly. Fix both issues.", "title": "fix TS_ISO8601, TS_MILLIS handling in NewRawAndTsFromJSON", "type": "issue" }, { "action": "created", "author": "henridf", "comment_id": 558102659, "datetime": 1574679409000, "masked_author": "username_1", "text": "@username_0 i needed this branch for other work and so rebased/fixed conflicts. I didn't want to force-push to this branch, so pushed to https://github.com/mccanne/zq/tree/fix-json-timestamps-rebase , in case that's useful.", "title": null, "type": "comment" } ]
2
2
399
false
false
399
true
yidao620c/comments
null
594,219,752
293
null
[ { "action": "opened", "author": "yidao620c", "comment_id": null, "datetime": 1586054163000, "masked_author": "username_0", "text": "https://www.xncoding.com/2018/06/03/tool/idea-maven.html \n\n 有时候在IDEA里面直接点击查看源码,报:cannot download sources 使用Maven命令。经过测试,好用。下载了所有POM里的依赖包的source,这点不是想要的,原来只想下载想看的依赖的source。 参考:IDEA-165800 Can’t download dependency’s source code", "title": "IDEA不能下载maven依赖包的源码 | 飞污熊博客", "type": "issue" } ]
1
1
226
false
false
226
false
aws/aws-sdk-java-v2
aws
620,905,421
1,851
null
[ { "action": "opened", "author": "Gtofig", "comment_id": null, "datetime": 1589888250000, "masked_author": "username_0", "text": "## Describe the Feature\r\nAllow parallel scan via DynamoDBEnhanced client and modify ScanEnhancedRequest to support totalSegments and segment parameters.\r\n\r\n## Is your Feature Request related to a problem?\r\nUnable to do parallel scan using DynamoDB enhanced client\r\n\r\n## Proposed Solution\r\nUnderlying DynamoDbClient already supports parallel scan, so shouldn't be hard to wire in\r\n\r\n## Describe alternatives you've considered\r\nI can do parallel scan using DynamoDbClient directly, but then I lose some nice things like automatic marshalling of items to the domain class.\r\n\r\n- [ ] I may be able to implement this feature request", "title": "Support parallel scan in DynamoDB Enhanced client", "type": "issue" }, { "action": "created", "author": "debora-ito", "comment_id": 631848116, "datetime": 1590029625000, "masked_author": "username_1", "text": "Noted, marking as a feature request.", "title": null, "type": "comment" }, { "action": "created", "author": "driverpt", "comment_id": 821185082, "datetime": 1618580368000, "masked_author": "username_2", "text": "Do we have any ETA on this?", "title": null, "type": "comment" }, { "action": "closed", "author": "debora-ito", "comment_id": null, "datetime": 1645069290000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "debora-ito", "comment_id": 1042542842, "datetime": 1645069290000, "masked_author": "username_1", "text": "Support for segment and totalSegments in ScanEnhancedRequest was added via #2614.", "title": null, "type": "comment" } ]
4
6
1,050
false
true
770
false
membraneframework/membrane-core
membraneframework
432,016,164
157
null
[ { "action": "opened", "author": "mat-hek", "comment_id": null, "datetime": 1554988388000, "masked_author": "username_0", "text": "Testing API is now quite confusing. Here are some reasons:\r\n- It's difficult to determine from the name and arguments how does `assert_receive_message` differ from usual `assert_receive`\r\n- Checking for something as simple and common as End Of Stream requires subscribing on `handle_notification`\r\n- Messages from testing elements are received with `assert_receive`, while messages passed through the pipeline - with `assert_receive_message`\r\n- There is no way to distinguish pipeline or element that sent a message if there are many of them\r\n\r\nSuggested changes are:\r\n- Make all testing elements send notifications to pipeline instead of messages to the testing process\r\n- Always implicitly subscribe on `handle_notification`\r\n- Instead of `assert_receive_message`, make separate assertions like below:\r\n - `assert_pipeline_notification(pipeline_pid, element_name, message)`\r\n - `assert_pipeline_playback_changed(pipeline_pid, previous_playback_state, current_playback_state)`\r\n - `assert_pipeline_handle_other(pipeline_pid, message)`", "title": "Improve Membrane.Testing API", "type": "issue" }, { "action": "created", "author": "Hajto", "comment_id": 483682312, "datetime": 1555424732000, "masked_author": "username_1", "text": "To be discussed on meeting:\r\n\r\n# New Membrane Testing API\r\n\r\n## Pipeline\r\n\r\nBy default Pipeline will be subscribed to all callbacks. If someone explicitly\r\nsubscribes to set of `callbacks`, then only those will be available for assertion.\r\n\r\n`assert_receive_message` will be removed in favor of set of specialized assertions.\r\n```elixir\r\ndefmodule Membrane.Testing.Assertions do\r\n # Old split into different assertions\r\n def assert_pipeline_notified(pipeline_pid, element_name, message)\r\n def assert_pipeline_playback_changed(pipeline_pid, previous_playback_state, current_playback_state)\r\n def assert_pipeline_received(pipeline_pid, message)\r\nend\r\n```\r\n\r\nNOTE: Pipeline will receive messages from elements as notifications, they will\r\nhave to be distinguishable from those that are expected to flow through the\r\npipeline.\r\n\r\n## Testing Sink\r\n\r\n`Membrane.Testing.Sink` will no longer sent messages to test_process. It will\r\nnotify pipeline about it and pipeline will be responsible for executing assertions.\r\n\r\n```elixir\r\ndefmodule Membrane.Testing.Sink do\r\n # We shall add new quality of life assertions for most common use cases\r\n\r\n # I don't see use case for start_of_stream,\r\n # but implementing only end_of_stream\r\n def assert_start_of_stream(pipeline_pid, sink_name) \r\n def assert_end_of_stream(pipeline_pid, sink_name)\r\n def assert_event(pipeline_pid, sink_name, event_pattern)\r\n def assert_buffer(pipeline_pid, sink_name, buffer_pattern)\r\nend\r\n```\r\n\r\nSink name shall be added to enable assertion on different named Sinks so that\r\npipelines with multiple outputs can be supported.\r\n\r\n## Testing Source\r\n\r\n### Plan A: merging sources\r\n\r\n`DataSource` shall be removed in favor of adding helper function to `Source`,\r\nwhich streams takes data as argument and returns generator function.\r\n\r\nGenerator function shall supply demands and when supply runs out it shall send\r\nend of stream event.\r\n\r\nData source can (not necessarily must) defined as follows:\r\n```elixir\r\ndef data_source(data, bufferizer \\\\ identity) do\r\n actions = Enum.map(data, fn element -> {:buffer, {:output, bufferizer.(element)}} end)\r\n\r\n fn cnt, size ->\r\n if(cnt != 0, do: cnt, else: actions)\r\n |> Enum.split(size)\r\n ~>> ({to_send, []} -> {to_send ++ [{:event, {:output, %EndOfStream{}}}], []})\r\n end\r\nend\r\n```\r\n\r\nthen it could be potentially used as follows:\r\n\r\n```elixir\r\n%Options{\r\n elements: [\r\n a_source: %Testing.Source{generator: data_source([1,2,3])}\r\n ]\r\n}\r\n```\r\n\r\n### Plan B: both sources stay separated\r\n\r\nIf `DataSource` will not incorporated into `Testing.Source`, then there should\r\nbe either added option to accept list of Buffers as data, because there are\r\ncases when appropriate Metadata must be set (for example H264 depayloader\r\nwhich requires RTP Sequence Number to be present).\r\n\r\n## Inspector Filter\r\n\r\nThis is only **proposal**.\r\n\r\nInspector is `filter` type element which copies all the buffers it receives and\r\nforwards them to pipeline so there can be made assertion on them. Such element\r\npotentially can be used for creating more detailed assertion on integration\r\npipelines and help locating error more easily.\r\n\r\n## Example test after all the changes\r\n\r\n```elixir\r\ntest \"I am very important test and I MUST always pass\" do\r\n alias Membrane.Testing\r\n {:ok, pipeline} = Testing.Pipeline.start_link(%Testing.Pipeline.Options{\r\n elements: [\r\n source: %Testing.Source{generator: data_source(1..100)},\r\n rtp_parser: RTP,\r\n inspektor: Inspector,\r\n depayloader: Depayloader,\r\n sink: %Testing.Sink{}\r\n ]\r\n })\r\n\r\n Membrane.Pipeline.play(pipeline)\r\n\r\n assert_end_of_stream pipeline, :sink\r\n Enum.each(rtp_parsed, fn element -> \r\n assert_buffer pipeline, :inspektor, ^element \r\n end)\r\n Enum.each(depayloaded, fn element ->\r\n assert_buffer pipeline, :inspektor, ^element \r\n end)\r\nend\r\n```", "title": null, "type": "comment" }, { "action": "closed", "author": "mat-hek", "comment_id": null, "datetime": 1563865961000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
2
3
4,891
false
false
4,891
false
ropensci/taxize
ropensci
581,378,728
805
{ "number": 805, "repo": "taxize", "user_login": "ropensci" }
[ { "action": "opened", "author": "trvinh", "comment_id": null, "datetime": 1584221182000, "masked_author": "username_0", "text": "<!--- Provide a general summary of your changes in the Title above -->\r\n\r\n<!-- IF THIS INVOLVES AUTHENTICATION: DO NOT SHARE YOUR USERNAME/PASSWORD, OR API KEYS/TOKENS IN THIS ISSUE - MOST LIKELY THE MAINTAINER WILL HAVE THEIR OWN EQUIVALENT KEY -->\r\n\r\n## Description\r\n<!--- Describe your changes in detail -->\r\nThe previous rank indexing function did not work correctly while sorting the noranks (undefined ranks). This has been fixed now.\r\n\r\n## Related Issue\r\n<!--- if this closes an issue make sure include e.g., \"fix #4\"\r\nor similar - or if just relates to an issue make sure to mention\r\nit like \"#4\" -->\r\n\r\n## Example\r\n<!--- if introducing a new feature or changing behavior of existing\r\nmethods/functions, include an example if possible to do in brief form -->\r\n\r\n<!--- Did you remember to include tests? Unless you're just changing\r\ngrammar, please include new tests for your change -->", "title": "improve taxonomy rank indexing", "type": "issue" }, { "action": "created", "author": "trvinh", "comment_id": 599139960, "datetime": 1584222980000, "masked_author": "username_0", "text": "Hi @username_1 \r\nsorry, but I don't know how to solve the issue with `vcr`. I tested the function `class2tree` using the test file `test-class2tree.R`, it worked fine by commenting out the `vcr::use_cassette` function.", "title": null, "type": "comment" }, { "action": "created", "author": "trvinh", "comment_id": 599959118, "datetime": 1584436141000, "masked_author": "username_0", "text": "@username_1 removing the cassette files solved the issue, the test for `class2tree` passed. But the travis-ci has another error: `The command \"sudo add-apt-repository -y \"ppa:marutter/rrutter3.5\"\" failed and exited with 1 during .` . I think it has nothing to do with the taxize package, right?", "title": null, "type": "comment" }, { "action": "created", "author": "sckott", "comment_id": 600316138, "datetime": 1584481494000, "masked_author": "username_1", "text": "thanks for fixing cassettes \r\n\r\nfor the travis failure, i restarted it, its a server system dependency problem - probably intermittent\r\n\r\nplease answer the above too: Can you please explain the problem in more detail? I'm not sure what problem this is solving.", "title": null, "type": "comment" }, { "action": "created", "author": "trvinh", "comment_id": 600884975, "datetime": 1584569594000, "masked_author": "username_0", "text": "$`Streptomyces coelicolor`\r\n name rank id\r\n1 cellular organisms no rank 131567\r\n2 Bacteria superkingdom 2\r\n3 Terrabacteria group no rank 1783272\r\n4 Actinobacteria phylum 201174\r\n5 Actinobacteria class 1760\r\n6 Streptomycetales order 85011\r\n7 Streptomycetaceae family 2062\r\n8 Streptomyces genus 1883\r\n9 Streptomyces albidoflavus group species group 1477431\r\n10 Streptomyces coelicolor species 1902\r\n```\r\n\r\nHowever, the old `rank_indexing` places it way before **phylum** (pos 26 vs 34). With the new function, **norank_1783272** (pos 35) can be placed correctly between **phylum** and **superkingdom** (pos 34 and 40). \r\n\r\nP.S.: the changes in other functions (`get_rank`, `get_name` and `taxonomy_table_creator`) are just code formatting :)\r\n\r\nP.P.S.: the travis-ci still failed because of other cassettes, should I also removed them and run the test agains for the whole package?", "title": null, "type": "comment" }, { "action": "created", "author": "sckott", "comment_id": 601466354, "datetime": 1584661437000, "masked_author": "username_1", "text": "- okay, thanks for the explanation of the issue. makes sense now. \r\n- okay on formatting changes\r\n- don't worry about tests for other fxns\r\n\r\nLooks good to me, thanks for the fix!", "title": null, "type": "comment" } ]
2
6
2,985
false
false
2,985
true
mapsme/omim
mapsme
585,674,061
12,777
null
[ { "action": "opened", "author": "jidanni", "comment_id": null, "datetime": 1584867919000, "masked_author": "username_0", "text": "Regarding the new terrain layer,\r\nthere should be shading, shadows \r\nbehind the mountains.\r\n\r\nCurrently the very thin contour lines, with the addition of dark green forest, as is the usual case with mountains, for example here in Taiwan, makes the new terrain contours virtually useless.", "title": "Add Mountain shading for terrain layer", "type": "issue" } ]
1
1
288
false
false
288
false
s4u/pgpverify-maven-plugin
s4u
635,183,398
120
null
[ { "action": "opened", "author": "slawekjaranowski", "comment_id": null, "datetime": 1591687900000, "masked_author": "username_0", "text": "**Describe the bug**\r\nFor `artifact org.apache.xmlgraphics:fop:pom:0.95` `asc` file contains more information:\r\n\r\n```\r\ngpg --list-packets fop-0.95.pom.asc \r\n# off=0 ctb=a3 tag=8 hlen=1 plen=0 indeterminate\r\n:compressed packet: algo=1\r\n# off=2 ctb=90 tag=4 hlen=2 plen=13\r\n:onepass_sig packet: keyid 8E1E35C66754351B\r\n version 3, sigclass 0x00, digest 2, pubkey 17, last=1\r\n# off=17 ctb=ad tag=11 hlen=3 plen=5934\r\n:literal data packet:\r\n mode b (62), created 1222628963, name=\"fop-0.95.pom\",\r\n raw data: 5916 bytes\r\n# off=5954 ctb=88 tag=2 hlen=2 plen=70\r\n:signature packet: algo 17, keyid 8E1E35C66754351B\r\n version 4, created 1222628963, md5len 0, sigclass 0x00\r\n digest algo 2, begin of digest bf 9a\r\n hashed subpkt 2 len 4 (sig created 2008-09-28)\r\n subpkt 16 len 8 (issuer key ID 8E1E35C66754351B)\r\n data: [160 bits]\r\n data: [160 bits]\r\n```\r\ncurrent implementation can't extract signature for such message.\r\n\r\nBy gpg we can verify it:\r\n\r\n```\r\ngpg --verify fop-0.95.pom.asc \r\ngpg: Signature made Sun Sep 28 21:09:23 2008 CEST\r\ngpg: using DSA key 8E1E35C66754351B\r\ngpg: Good signature from \"Maximilian .....\r\ngpg: aka \"Maximilian ...\r\ngpg: aka \"Maximilian Berger ....\r\n\r\n```", "title": "Extract signature form pgp message", "type": "issue" }, { "action": "closed", "author": "slawekjaranowski", "comment_id": null, "datetime": 1591945280000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
2
1,287
false
false
1,287
false
rust-lang/rust
rust-lang
487,214,243
64,007
{ "number": 64007, "repo": "rust", "user_login": "rust-lang" }
[ { "action": "opened", "author": "estebank", "comment_id": null, "datetime": 1567120283000, "masked_author": "username_0", "text": "Fix #63987.", "title": "Add check for overlapping ranges to unreachable patterns lint", "type": "issue" }, { "action": "created", "author": "rust-highfive", "comment_id": 526394791, "datetime": 1567120287000, "masked_author": "username_1", "text": "r? @username_9\n\n(rust_highfive has picked a reviewer for you, use r? to override)", "title": null, "type": "comment" }, { "action": "created", "author": "estebank", "comment_id": 526395513, "datetime": 1567120501000, "masked_author": "username_0", "text": "Should this be separated to new lint instead of overloading `unreachable_patterns`?\r\n\r\nI'm explicitly not handling the \"multiple holes caught by `_`\" case because it has the potential of being extremely annoying. It likely belongs in clippy complaining about `_` being bad style.\r\n\r\nCC @username_2 @oli-obk @username_5", "title": null, "type": "comment" }, { "action": "created", "author": "varkor", "comment_id": 526397295, "datetime": 1567121054000, "masked_author": "username_2", "text": "I'll look at the code more closely later, but I think this should be pulled out into its own lint, as I think there are legitimate reasons to want overlapping ranges (though overlapping by a single element seems less intentional).", "title": null, "type": "comment" }, { "action": "created", "author": "rust-highfive", "comment_id": 526403777, "datetime": 1567123267000, "masked_author": "username_1", "text": "The job `x86_64-gnu-llvm-6.0` of your PR [failed](https://dev.azure.com/rust-lang/rust/_build/results?buildId=7001&view=logs&jobId=d0d954b5-f111-5dc4-4d76-03b6c9d0cf7e) ([raw log](https://dev.azure.com/rust-lang/e71b0ddf-dd27-435a-873c-e30f86eea377/_apis/build/builds/7001/logs/49)). Through arcane magic we have determined that the following fragments from the build log may contain information about the problem.\n\n<details><summary><i>Click to expand the log.</i></summary>\n\n```plain\n2019-08-29T23:24:43.6838383Z ##[command]git remote add origin https://github.com/rust-lang/rust\n2019-08-29T23:24:43.7040191Z ##[command]git config gc.auto 0\n2019-08-29T23:24:43.7124890Z ##[command]git config --get-all http.https://github.com/rust-lang/rust.extraheader\n2019-08-29T23:24:43.7174202Z ##[command]git config --get-all http.proxy\n2019-08-29T23:24:43.7315436Z ##[command]git -c http.extraheader=\"AUTHORIZATION: basic ***\" fetch --force --tags --prune --progress --no-recurse-submodules --depth=2 origin +refs/heads/*:refs/remotes/origin/* +refs/pull/64007/merge:refs/remotes/pull/64007/merge\n---\n2019-08-30T00:00:53.2149461Z Compiling syntax_pos v0.0.0 (/checkout/src/libsyntax_pos)\n2019-08-30T00:00:56.8983572Z error: multiple patterns covering the same range\n2019-08-30T00:00:56.8984603Z --> src/librustc_target/abi/mod.rs:494:13\n2019-08-30T00:00:56.8985035Z |\n2019-08-30T00:00:56.8985977Z 493 | -0x0000_0000_0000_0080..=0x0000_0000_0000_007f => I8,\n2019-08-30T00:00:56.8986705Z | ---------------------------------------------- this range overlaps on `-128i128..=127i128`\n2019-08-30T00:00:56.8987629Z 494 | -0x0000_0000_0000_8000..=0x0000_0000_0000_7fff => I16,\n2019-08-30T00:00:56.8988345Z | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ overlapping patterns\n2019-08-30T00:00:56.8989197Z = note: `-D unreachable-patterns` implied by `-D warnings`\n2019-08-30T00:00:56.8993751Z \n2019-08-30T00:00:56.9038160Z error: multiple patterns covering the same range\n2019-08-30T00:00:56.9038720Z --> src/librustc_target/abi/mod.rs:495:13\n2019-08-30T00:00:56.9038720Z --> src/librustc_target/abi/mod.rs:495:13\n2019-08-30T00:00:56.9039143Z |\n2019-08-30T00:00:56.9039771Z 493 | -0x0000_0000_0000_0080..=0x0000_0000_0000_007f => I8,\n2019-08-30T00:00:56.9040370Z | ---------------------------------------------- this range overlaps on `-128i128..=127i128`\n2019-08-30T00:00:56.9041465Z 494 | -0x0000_0000_0000_8000..=0x0000_0000_0000_7fff => I16,\n2019-08-30T00:00:56.9042043Z | ---------------------------------------------- this range overlaps on `-32768i128..=32767i128`\n2019-08-30T00:00:56.9042972Z 495 | -0x0000_0000_8000_0000..=0x0000_0000_7fff_ffff => I32,\n2019-08-30T00:00:56.9043460Z | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ overlapping patterns\n2019-08-30T00:00:56.9118088Z error: multiple patterns covering the same range\n2019-08-30T00:00:56.9118386Z --> src/librustc_target/abi/mod.rs:496:13\n2019-08-30T00:00:56.9118603Z |\n2019-08-30T00:00:56.9118603Z |\n2019-08-30T00:00:56.9118937Z 493 | -0x0000_0000_0000_0080..=0x0000_0000_0000_007f => I8,\n2019-08-30T00:00:56.9119300Z | ---------------------------------------------- this range overlaps on `-128i128..=127i128`\n2019-08-30T00:00:56.9119641Z 494 | -0x0000_0000_0000_8000..=0x0000_0000_0000_7fff => I16,\n2019-08-30T00:00:56.9120177Z | ---------------------------------------------- this range overlaps on `-32768i128..=32767i128`\n2019-08-30T00:00:56.9120647Z 495 | -0x0000_0000_8000_0000..=0x0000_0000_7fff_ffff => I32,\n2019-08-30T00:00:56.9121083Z | ---------------------------------------------- this range overlaps on `-2147483648i128..=2147483647i128`\n2019-08-30T00:00:56.9121385Z 496 | -0x8000_0000_0000_0000..=0x7fff_ffff_ffff_ffff => I64,\n2019-08-30T00:00:56.9121834Z | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ overlapping patterns\n2019-08-30T00:00:56.9167451Z error: multiple patterns covering the same range\n2019-08-30T00:00:56.9167785Z --> src/librustc_target/abi/mod.rs:505:13\n2019-08-30T00:00:56.9168028Z |\n2019-08-30T00:00:56.9168028Z |\n2019-08-30T00:00:56.9168323Z 504 | 0..=0x0000_0000_0000_00ff => I8,\n2019-08-30T00:00:56.9169093Z | ------------------------- this range overlaps on `0u128..=255u128`\n2019-08-30T00:00:56.9169393Z 505 | 0..=0x0000_0000_0000_ffff => I16,\n2019-08-30T00:00:56.9169904Z | ^^^^^^^^^^^^^^^^^^^^^^^^^ overlapping patterns\n2019-08-30T00:00:56.9227068Z error: multiple patterns covering the same range\n2019-08-30T00:00:56.9227399Z --> src/librustc_target/abi/mod.rs:506:13\n2019-08-30T00:00:56.9227670Z |\n2019-08-30T00:00:56.9227670Z |\n2019-08-30T00:00:56.9227990Z 504 | 0..=0x0000_0000_0000_00ff => I8,\n2019-08-30T00:00:56.9228377Z | ------------------------- this range overlaps on `0u128..=255u128`\n2019-08-30T00:00:56.9228672Z 505 | 0..=0x0000_0000_0000_ffff => I16,\n2019-08-30T00:00:56.9229243Z | ------------------------- this range overlaps on `0u128..=65535u128`\n2019-08-30T00:00:56.9229827Z 506 | 0..=0x0000_0000_ffff_ffff => I32,\n2019-08-30T00:00:56.9230170Z | ^^^^^^^^^^^^^^^^^^^^^^^^^ overlapping patterns\n2019-08-30T00:00:56.9261946Z error: multiple patterns covering the same range\n2019-08-30T00:00:56.9262273Z --> src/librustc_target/abi/mod.rs:507:13\n2019-08-30T00:00:56.9262814Z |\n2019-08-30T00:00:56.9262814Z |\n2019-08-30T00:00:56.9263142Z 504 | 0..=0x0000_0000_0000_00ff => I8,\n2019-08-30T00:00:56.9263509Z | ------------------------- this range overlaps on `0u128..=255u128`\n2019-08-30T00:00:56.9263856Z 505 | 0..=0x0000_0000_0000_ffff => I16,\n2019-08-30T00:00:56.9264226Z | ------------------------- this range overlaps on `0u128..=65535u128`\n2019-08-30T00:00:56.9264709Z 506 | 0..=0x0000_0000_ffff_ffff => I32,\n2019-08-30T00:00:56.9265162Z | ------------------------- this range overlaps on `0u128..=4294967295u128`\n2019-08-30T00:00:56.9265467Z 507 | 0..=0xffff_ffff_ffff_ffff => I64,\n2019-08-30T00:00:56.9265827Z | ^^^^^^^^^^^^^^^^^^^^^^^^^ overlapping patterns\n2019-08-30T00:00:58.4044166Z error: aborting due to 6 previous errors\n2019-08-30T00:00:58.4049163Z \n2019-08-30T00:00:58.4526332Z error: Could not compile `rustc_target`.\n2019-08-30T00:00:58.4545539Z warning: build failed, waiting for other jobs to finish...\n---\n2019-08-30T00:01:00.2008025Z == clock drift check ==\n2019-08-30T00:01:00.2025703Z local time: Fri Aug 30 00:01:00 UTC 2019\n2019-08-30T00:01:00.2905893Z network time: Fri, 30 Aug 2019 00:01:00 GMT\n2019-08-30T00:01:00.2910698Z == end clock drift check ==\n2019-08-30T00:01:01.6587570Z ##[error]Bash exited with code '1'.\n2019-08-30T00:01:01.6630166Z ##[section]Starting: Checkout\n2019-08-30T00:01:01.6631826Z ==============================================================================\n2019-08-30T00:01:01.6631877Z Task : Get sources\n2019-08-30T00:01:01.6631927Z Description : Get sources from a repository. Supports Git, TfsVC, and SVN repositories.\n```\n\n</details><p></p>\n\n[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact **`@TimNN`**. ([Feature Requests](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))", "title": null, "type": "comment" }, { "action": "created", "author": "joshtriplett", "comment_id": 528547975, "datetime": 1567712419000, "masked_author": "username_3", "text": "Conclusions from the lang team meeting:\r\n\r\n- We think there are legitimate use cases for some kinds of overlaps. For instance, matching a couple of specific letters and then matching a whole range that covers those letters as a fallback.\r\n- Thus, we think this would be prone to false positives.\r\n- We think some heuristics might help with that. For instance, overlapping ranges that don't *completely* overlap (0..10 and 5..15) seem more reasonable to warn about, rather than 5..10 and 0..20.", "title": null, "type": "comment" }, { "action": "created", "author": "scottmcm", "comment_id": 528550826, "datetime": 1567712863000, "masked_author": "username_4", "text": "I feel strongly that this shouldn't be `unreachable_patterns` because the arm is reachable.\r\n\r\nMy interpretation here is that this needs to be heuristic-heavy, so it being in clippy sounds fine. But if there's some obvious simple heuristic that's essentially always correct I have no objection to having it in the compiler. (Maybe something like \"the fix is just to change a literal to a different literal\".)", "title": null, "type": "comment" }, { "action": "created", "author": "estebank", "comment_id": 528567517, "datetime": 1567715259000, "masked_author": "username_0", "text": "I could restrict this new lint to single element overlap (`0..=10`/`10..=20`) and disjointed partial overlaps (`0..10`/`5..15`) and ignore the common desired case (`100..102`/`0..=255`). That would cover the cases I was worried about to begin with. Is this reasonable? I don't mind dropping this and relying on clippy instead :)", "title": null, "type": "comment" }, { "action": "created", "author": "Centril", "comment_id": 528569150, "datetime": 1567715507000, "masked_author": "username_5", "text": "I think going for the single element overlap (just for ranges) is something I'd be OK with in rustc.", "title": null, "type": "comment" }, { "action": "created", "author": "bors", "comment_id": 530594052, "datetime": 1568241720000, "masked_author": "username_6", "text": ":umbrella: The latest upstream changes (presumably #64271) made this pull request unmergeable. Please resolve the merge conflicts.", "title": null, "type": "comment" }, { "action": "created", "author": "hdhoang", "comment_id": 533370766, "datetime": 1568944200000, "masked_author": "username_7", "text": "ping from triage @username_0, any update after the reviewers' comment?", "title": null, "type": "comment" }, { "action": "created", "author": "JohnCSimon", "comment_id": 536130349, "datetime": 1569628627000, "masked_author": "username_8", "text": "Pinging again from triage. \r\n@username_0 Can you please address the merge conflicts. \r\nThanks!", "title": null, "type": "comment" }, { "action": "created", "author": "JohnCSimon", "comment_id": 538678293, "datetime": 1570301252000, "masked_author": "username_8", "text": "Hello from triage:\r\n@username_0 -\r\nThis PR has sat idle for awhile, so I'm closing it as inactive, \r\nPlease reopen this when you have time to resolve the merge conflicts. \r\n\r\nThank you!", "title": null, "type": "comment" }, { "action": "created", "author": "estebank", "comment_id": 538838369, "datetime": 1570423741000, "masked_author": "username_0", "text": "Rebased and changed logic to only be emitted in the following cases:\r\n\r\n```\r\n1 ---------\r\n2 ----------\r\n\r\n1 ---------\r\n2 ----------\r\n\r\n1 ----\r\n2 ----\r\n\r\n1 ----\r\n2 -----\r\n```", "title": null, "type": "comment" }, { "action": "created", "author": "Centril", "comment_id": 538839273, "datetime": 1570424084000, "masked_author": "username_5", "text": "But that's not a single element overlap?", "title": null, "type": "comment" }, { "action": "created", "author": "estebank", "comment_id": 539104014, "datetime": 1570466960000, "masked_author": "username_0", "text": "But I can further restrict it of course.", "title": null, "type": "comment" }, { "action": "created", "author": "Centril", "comment_id": 542628737, "datetime": 1571220402000, "masked_author": "username_5", "text": "Yes, let's start conservative for now with the consensus that is expressed in the PR discussion and we can consider expanding the scope later on.", "title": null, "type": "comment" }, { "action": "created", "author": "estebank", "comment_id": 542853745, "datetime": 1571253792000, "masked_author": "username_0", "text": "@username_5 [done](https://github.com/rust-lang/rust/pull/64007/commits/593cdcccf28361df155c37916dcfcbe1bf19d9a5) and [done](https://github.com/rust-lang/rust/issues/65477).", "title": null, "type": "comment" }, { "action": "created", "author": "matthewjasper", "comment_id": 544126759, "datetime": 1571481818000, "masked_author": "username_9", "text": "@username_6 r+", "title": null, "type": "comment" }, { "action": "created", "author": "bors", "comment_id": 544126761, "datetime": 1571481820000, "masked_author": "username_6", "text": ":pushpin: Commit 593cdcccf28361df155c37916dcfcbe1bf19d9a5 has been approved by `username_9`\n\n<!-- @username_6 r=username_9 593cdcccf28361df155c37916dcfcbe1bf19d9a5 -->\n<!-- homu: {\"type\":\"Approved\",\"sha\":\"593cdcccf28361df155c37916dcfcbe1bf19d9a5\",\"approver\":\"username_9\"} -->", "title": null, "type": "comment" } ]
10
20
11,050
false
false
11,050
true
jikan-me/jikan
jikan-me
325,376,822
148
null
[ { "action": "opened", "author": "Ggwppino", "comment_id": null, "datetime": 1527007354000, "masked_author": "username_0", "text": "Hi!\r\nI've an error in AnimeParse.php, line 276, Undefined offset: 1541 when execute `$var->Anime(1)->response;`\r\nI've another error in MangaParse.php, line 157, Undefined offset:1042 when I try `$var->Manga(1)->response;`\r\nWith `$var->Character(1)->response;` I've no problem.\r\nhave a nice Day! :)", "title": "Error with AnimeParse.php and MangaParse.php.", "type": "issue" }, { "action": "created", "author": "irfan-dahir", "comment_id": 391068318, "datetime": 1527008910000, "masked_author": "username_1", "text": "Hello, I can't seem to reproduce the issue. Are you up to date with the latest Jikan release?", "title": null, "type": "comment" }, { "action": "created", "author": "Ggwppino", "comment_id": 391075302, "datetime": 1527010233000, "masked_author": "username_0", "text": "I've installed the last version: 1.15.9. I've installed it this morning.", "title": null, "type": "comment" }, { "action": "created", "author": "irfan-dahir", "comment_id": 391106341, "datetime": 1527016066000, "masked_author": "username_1", "text": "That's really odd. It could be you're getting a different HTML format for that part (MAL does this sometimes by IP location). I will look further into this.\r\n\r\nMeanwhile, you can remove the `background` parsing rule from both `AnimeParse.php` and `MangaParse.php` to prevent this error by removing the method `$this->addRule('background', '~</div>Background</h2>~', function() {`; line 265 - 289 (AnimeParse.php) and line 146 - 168 (MangaParse.php) respectively.", "title": null, "type": "comment" }, { "action": "created", "author": "irfan-dahir", "comment_id": 391107261, "datetime": 1527016242000, "masked_author": "username_1", "text": "Can you get me an HTML dump of these two links?\r\n- https://myanimelist.net/anime/1\r\n- https://myanimelist.net/manga/1\r\n\r\nJust paste their source into pastebin.", "title": null, "type": "comment" }, { "action": "created", "author": "Ggwppino", "comment_id": 391133804, "datetime": 1527021750000, "masked_author": "username_0", "text": "Ok, now `$anime->Anime(1)->response` and `$manga->Manga(1)->response` work. But now I have another problem :c : `$characterAnime->Anime(1,[CHARACTERS_STAFF])->response` and `$characterManga->Manga(1,[CHARACTER])->response` don't work. \r\n- `$characterAnime->Anime(1,[CHARACTERS_STAFF])->response` Error on AnimeCharacterStaffParse.php, line 104, Undefined offset: 7229. before the error occurred metod create an array with (i,staff,person,match) but it doesn't create the array voice: 'characters' but i think That it still has to be created https://pastebin.com/dVGErMS1(array before the error). \r\n- `$characterManga->Manga(1,[CHARACTER])->response` Error on MangaCharacterParse.php, Line 28, Undefined offset: 911. before the error occurred metod create an array with voices (i,characters,character,image,name,role). the content of Characters is perfect but something generates and an error and so it doesn't work. https://pastebin.com/3vV4vP9V (array before the error).", "title": null, "type": "comment" }, { "action": "created", "author": "irfan-dahir", "comment_id": 391244578, "datetime": 1527059606000, "masked_author": "username_1", "text": "Hmm, this definitely mean MAL renders differently based on some specific geolocation. Could you kindly paste the source of those pages as well? It'll help me find common ground in the HTML. Thanks!\r\n- https://myanimelist.net/anime/1/Cowboy_Bebop/characters\r\n- https://myanimelist.net/manga/1/Monster/characters\r\n\r\nAlso, this could take a few days. I'm busy till Friday. Do let me know if this occurs over other requests you", "title": null, "type": "comment" }, { "action": "created", "author": "Ggwppino", "comment_id": 391392132, "datetime": 1527089583000, "masked_author": "username_0", "text": "I've fixed MangaCharacterParse.php changing `'~<div class=\"fl-r\">~'` with `'~<div class=\"border_top\" style=\"overflow: hidden;padding:20px 0;\">~'` on line 28. I'll try with AnimeCharacterParse soon.", "title": null, "type": "comment" }, { "action": "created", "author": "irfan-dahir", "comment_id": 391393600, "datetime": 1527089824000, "masked_author": "username_1", "text": "Speaking of, what happened to your account? It went total 404, including this issue lol", "title": null, "type": "comment" }, { "action": "created", "author": "irfan-dahir", "comment_id": 391400729, "datetime": 1527091036000, "masked_author": "username_1", "text": "Haha wow, that's weird.\r\n\r\nGreat, you've found a temp fix. I'll look into the ones you've mentioned.", "title": null, "type": "comment" }, { "action": "created", "author": "coderiekelt", "comment_id": 391874597, "datetime": 1527198342000, "masked_author": "username_2", "text": "I am experiencing the same problem, got the same message yesterday which stopped at one exception, now however...\r\n![yeah...](https://i.imgur.com/RBvmN6x.gif)\r\n\r\nI'll see if I can come up with something useful like the Anime ID starts doing this, if it's any help, my servers are located in the Netherlands, so it's making requests from that geolocation.", "title": null, "type": "comment" }, { "action": "created", "author": "irfan-dahir", "comment_id": 391886575, "datetime": 1527201274000, "masked_author": "username_1", "text": "Gotcha, thanks for the input. I'll work on a patch for this today.", "title": null, "type": "comment" }, { "action": "created", "author": "irfan-dahir", "comment_id": 391911499, "datetime": 1527210632000, "masked_author": "username_1", "text": "I've identified the issue. I was using the Google Tag's HTML tag to perform a breakpoint in parsing, TIL it might not always show up by geolocation. I'll be more careful with this stuff in the future.\r\n\r\nI've gone ahead and patched the following requests, please let me know whether it works or not.\r\nMake sure to use `dev-master` instead of the current version in `composer.json`. You can directly do this too: `composer require jikan-me/jikan:dev-master`\r\n\r\n`$jikan->Anime(1)->response`\r\n`$jikan->Manga(1)->response`\r\n`$jikan->Anime(1, [CHARACTERS_STAFF])->response`\r\n`$jikan->Manga(1, [CHARACTERS])->response`\r\n\r\n\r\nFurthermore, I have identified a few other requests that use that particular HTML tag to break the parse. Could you guys try out these endpoints and let me know they bugs out?\r\n`$jikan->Anime(1, [PICTURES]);`\r\n`$jikan->Character(1, [PICTURES]);`\r\n`$jikan->Manga(1, [PICTURES]);`\r\n`$jikan->Person(1, [PICTURES]);`", "title": null, "type": "comment" }, { "action": "created", "author": "coderiekelt", "comment_id": 392188557, "datetime": 1527282746000, "masked_author": "username_2", "text": "```\r\n$jikan = new Jikan();\r\n$response = $jikan->Anime(1, [PICTURES])->response;\r\n$response = $jikan->Character(1, [PICTURES])->response;\r\n$response = $jikan->Manga(1, [PICTURES])->response;\r\n$response = $jikan->Person(1, [PICTURES])->response;\r\n```\r\n\r\nWorked fine from this end", "title": null, "type": "comment" }, { "action": "created", "author": "irfan-dahir", "comment_id": 392280519, "datetime": 1527360239000, "masked_author": "username_1", "text": "That's great. I'll wait for @username_0 to see if it works for him before closing the issue.", "title": null, "type": "comment" }, { "action": "created", "author": "Ggwppino", "comment_id": 392291381, "datetime": 1527372881000, "masked_author": "username_0", "text": "- `$jikan->Anime(1, [PICTURES]); ` undefined Offset:574; File:AnimePicturesParse, Line 26, Probably cause: <div class=\"fl-l\">;\r\n- `$jikan->Character(1, [PICTURES]); ` undefined Offset:399; File:CharacterPictureParse, Line 26, Probably cause: <div class=\"fl-l\">;\r\n- `$jikan->Manga(1, [PICTURES]);` undefined Offset:348; File:MangaPicturesParse, Line Line 26, Probably cause: <div class=\"fl-l\">;\r\n- `$jikan->Person(1, [PICTURES]);` undefined Offset:366; File:PersonPicuresParse, Line 26, Probably cause: <div class=\"fl-l\">;", "title": null, "type": "comment" }, { "action": "created", "author": "Ggwppino", "comment_id": 392292252, "datetime": 1527374128000, "masked_author": "username_0", "text": "Me too error with id 12189 on AnimeParse.php:277 but Undefined offset: 1470.", "title": null, "type": "comment" }, { "action": "created", "author": "irfan-dahir", "comment_id": 392295875, "datetime": 1527379629000, "masked_author": "username_1", "text": "This is odd because the file you sent me parses without any errors, @username_2. That part of the code is also the same as mines. Did it perhaps generate an error from your server and you sent the source from your PC?\r\n\r\n@username_0 Can you send me the source from your side for Anime 12189?", "title": null, "type": "comment" }, { "action": "created", "author": "coderiekelt", "comment_id": 392296305, "datetime": 1527380283000, "masked_author": "username_2", "text": "The paste I put in that post came from my own PC, snatched from Google Chrome.\r\nI'm in about the same geolocation as my server though, so I figured that wouldn't make much of a difference.\r\n\r\nHere's the HTML as fetched by my server:\r\nWGET: http://paste.ubuntu.com/p/jcRcVMpmBY/\r\nCURL: http://paste.ubuntu.com/p/tzSrsZCFQg/", "title": null, "type": "comment" }, { "action": "created", "author": "irfan-dahir", "comment_id": 392296673, "datetime": 1527380943000, "masked_author": "username_1", "text": "Thanks for that, @username_2. \r\n\r\nThe HTML from the server is: \r\n```Background</h2>The first episode received an early screening at a special event held at Kadokawa Cinema Shinjuku on April 14, 2012. The regular TV broadcast started on April 23, 2012. </td></tr><tr><td class=\"pb24\"><br>```\r\n\r\nWhereas the HTML from your previous post is:\r\n```Background</h2>The first episode received an early screening at a special event held at Kadokawa Cinema Shinjuku on April 14, 2012. The regular TV broadcast started on April 23, 2012. <div class=\"border_top\" style=\"padding:16px 0px 0px 0px;margin:14px 0px 0px 0px;\"><div style=\"padding: 20px 0 20px 40px; float: left; position: relative; z-index: 1;\">```\r\n\r\nTruly scratching my head here. I think it's rather by the headers sent or some other factor. Anyways, I've released a patch for it.", "title": null, "type": "comment" }, { "action": "created", "author": "coderiekelt", "comment_id": 392297093, "datetime": 1527381751000, "masked_author": "username_2", "text": "Just tested it, works absolutely fine now.\r\n\r\n![celebratory gif](https://i.imgur.com/l5n5L.gif)", "title": null, "type": "comment" }, { "action": "created", "author": "irfan-dahir", "comment_id": 392298152, "datetime": 1527383441000, "masked_author": "username_1", "text": "@username_0 Pushed a patch for the pictures request. Can you confirm them working on your end now?\r\n\r\n\r\n```\r\n$jikan->Anime(1, [PICTURES])->response;\r\n$jikan->Character(1, [PICTURES])->response;\r\n$jikan->Manga(1, [PICTURES])->response;\r\n$jikan->Person(1, [PICTURES])->response;\r\n```", "title": null, "type": "comment" }, { "action": "created", "author": "Ggwppino", "comment_id": 392312877, "datetime": 1527407995000, "masked_author": "username_0", "text": "yup, it works very well now", "title": null, "type": "comment" }, { "action": "closed", "author": "irfan-dahir", "comment_id": null, "datetime": 1527412511000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "irfan-dahir", "comment_id": 392316982, "datetime": 1527412511000, "masked_author": "username_1", "text": "Great. I'll close this issue now. Please feel free to reopen this or a new one if any thing of sorts reoccurs.", "title": null, "type": "comment" } ]
3
25
7,135
false
false
7,135
true
spring-projects/spring-batch
spring-projects
538,728,927
1,849
null
[ { "action": "opened", "author": "spring-issuemaster", "comment_id": null, "datetime": 1304316863000, "masked_author": "username_0", "text": "**[Matthew T. Adams](https://jira.spring.io/secure/ViewProfile.jspa?name=matthewadams)** opened **[BATCH-1740](https://jira.spring.io/browse/BATCH-1740?redirect=false)** and commented\n\nIf a process hosting a job dies unexpectedly or is killed (Ctrl-C, kill -9, etc), the job cannot be restarted, because Spring Batch is not aware that the process was killed.\n\nMuch like other software can detect whether it was shut down gracefully v. abruptly, Spring Batch should be enhanced to do so. My guess would be to have Spring Batch update the JobRepository with a flag saying that a particular JobExecution was completed gracefully only upon normal exit (via -stop or end of flow). Then, upon a restart attempt of the JobExecution, Spring Batch could detect whether or not the last JobExecution terminated ubruptly v. gracefully and restart appropriately.\n\n\n---\n\n**Affects:** 2.1.7\n\n**Reference URL:** http://forum.springsource.org/showthread.php?t=108602\n\n3 votes, 4 watchers", "title": "Detect killed batch process [BATCH-1740]", "type": "issue" }, { "action": "created", "author": "benas", "comment_id": 575152376, "datetime": 1579181542000, "masked_author": "username_1", "text": "Closing this as duplicate of #1529 .", "title": null, "type": "comment" }, { "action": "closed", "author": "benas", "comment_id": null, "datetime": 1579181542000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
1,008
false
false
1,008
false
MicrosoftDocs/azure-docs
MicrosoftDocs
596,308,255
51,950
null
[ { "action": "opened", "author": "TiloGit", "comment_id": null, "datetime": 1586321808000, "masked_author": "username_0", "text": "This requires to use: &lt;acr-resource-id&gt; instead of name. \n\n---\n#### Document Details\n\n⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.*\n\n* ID: ed59d472-ac33-5c03-dbb7-0e86e88c7dd8\n* Version Independent ID: 69e1ad8c-2dd3-cc1b-2b31-996a5d866cc0\n* Content: [Integrate Azure Container Registry with Azure Kubernetes Service - Azure Kubernetes Service](https://docs.microsoft.com/en-us/azure/aks/cluster-container-registry-integration)\n* Content Source: [articles/aks/cluster-container-registry-integration.md](https://github.com/Microsoft/azure-docs/blob/master/articles/aks/cluster-container-registry-integration.md)\n* Service: **container-service**\n* GitHub Login: @mlearned\n* Microsoft Alias: **mlearned**", "title": "add info if ACR and AKS are in different sub need to use <acr-resource-id>", "type": "issue" }, { "action": "created", "author": "VikasPullagura-MSFT", "comment_id": 610776531, "datetime": 1586327385000, "masked_author": "username_1", "text": "@username_0 \r\nThanks for the feedback! I have assigned the issue to content author to check and update the document as appropriate.", "title": null, "type": "comment" }, { "action": "created", "author": "VikasPullagura-MSFT", "comment_id": 610776579, "datetime": 1586327393000, "masked_author": "username_1", "text": "@mlearned \r\nCan you please check and add your comments on this doc update request as applicable.", "title": null, "type": "comment" }, { "action": "closed", "author": "PRMerger8", "comment_id": null, "datetime": 1595365822000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "zr-msft", "comment_id": 662108336, "datetime": 1595365842000, "masked_author": "username_3", "text": "Thank you @username_0 for the feedback.\r\n\r\nThe article has been updated to address your feedback and the changes should be available soon.", "title": null, "type": "comment" } ]
4
5
1,111
false
false
1,111
true
tskit-dev/tskit
tskit-dev
598,314,478
530
{ "number": 530, "repo": "tskit", "user_login": "tskit-dev" }
[ { "action": "opened", "author": "jeromekelleher", "comment_id": null, "datetime": 1586626439000, "masked_author": "username_0", "text": "Seemed simplest to tackle this head on, as it's complicating quite a lot of what we're doing. It *should* close #527 (there's a test in here to verify it), but we really should get some files in from earlier file minor versions to make sure we're doing the right thing.\r\n\r\nCloses #528\r\nCloses #527\r\nCloses #506\r\n\r\nNot ready for merging yet though, as it needs some more C test coverage and there's something weird going on in one of the tests that needs figuring out.", "title": "Do not use kastore memory for columns.", "type": "issue" }, { "action": "created", "author": "benjeffery", "comment_id": 612527904, "datetime": 1586644842000, "masked_author": "username_1", "text": "This looks great, so much simpler to use `set_columns` now we're copying out of `kastore`\r\n\r\nI've installed SLiM and confirmed that @username_2 's example now works for this branch, and understand how zero edges was happening before (think I should get a `if (ret != 0)` tattoo as a penance).", "title": null, "type": "comment" }, { "action": "created", "author": "petrelharp", "comment_id": 612528706, "datetime": 1586645173000, "masked_author": "username_2", "text": "Oh!! Thanks for the reminder, I think the code I am working on needs a `ret !=0` or two yet.", "title": null, "type": "comment" }, { "action": "created", "author": "benjeffery", "comment_id": 612531847, "datetime": 1586646505000, "masked_author": "username_1", "text": "The failing test is fixed by removing `TSK_NO_INIT_TABLES` in https://github.com/tskit-dev/tskit/pull/530/commits/b2e7536c4b09532ce4504e2a655254f479c32abc \r\n\r\nIs there any value in that flag anymore? I can't see it used anywhere else in the code, and now that `load_table` is using `set_columns` it really needs an `init`'d table.\r\n\r\nI've also formatted the C to make the CI happy in https://github.com/tskit-dev/tskit/pull/530/commits/8ae100ccb7e2b372b9c757090e5c597013032ded", "title": null, "type": "comment" }, { "action": "created", "author": "jeromekelleher", "comment_id": 612971398, "datetime": 1586794897000, "masked_author": "username_0", "text": "Awesome, thanks @username_1! I'll finish this up first thing tomorrow morning.", "title": null, "type": "comment" }, { "action": "created", "author": "jeromekelleher", "comment_id": 613562370, "datetime": 1586883699000, "masked_author": "username_0", "text": "Some more updates here which should push the test coverage in C right up, as well as put some infrastructure in place for making all the \"x, x_offset\" columns optional. I still need to add some tests for handling the input of bad offsets, but it'll be ready for final review and merge then.", "title": null, "type": "comment" }, { "action": "created", "author": "benjeffery", "comment_id": 613566958, "datetime": 1586884238000, "masked_author": "username_1", "text": "Great, I think making the \"both columns\" error explicit is a good choice. \r\n\r\nSpeaking of coverage - is it worth getting the coverage to ignore some of the lines that we can't easily hit like OOMs? I'd like to enforce 100% coverage then.", "title": null, "type": "comment" }, { "action": "created", "author": "jeromekelleher", "comment_id": 613580873, "datetime": 1586885937000, "masked_author": "username_0", "text": "If there's an easy way to do this, then great. I'm wary about *enforcing* 100% test coverage as it leads to weird code and tests sometimes, but having more insight into the catchable errors would be good.\r\n\r\nIt is *possible* to test all the OOM corner cases (I've done it for [kastore](https://github.com/tskit-dev/kastore/blob/master/c/malloc_tests.c)) but it's pretty tedious.", "title": null, "type": "comment" }, { "action": "created", "author": "jeromekelleher", "comment_id": 613917086, "datetime": 1586941687000, "masked_author": "username_0", "text": "OK, I think this is ready to go. Can you have a look over please @username_1?\r\n\r\nWe probably won't be able to hit the test coverage threshold as there were a few incidental changes that have a lot of uncatchable errors, but I think we're covering the file format stuff pretty well now.\r\n\r\nI hope you don't mind me squashing your \"fixup!\" commits, but I figured you wouldn't since they were marked as fixups.", "title": null, "type": "comment" }, { "action": "created", "author": "petrelharp", "comment_id": 614657487, "datetime": 1587044195000, "masked_author": "username_2", "text": "Fantastic! :yay:", "title": null, "type": "comment" } ]
4
11
2,733
false
true
2,733
true
jupyterlab/jupyterlab-git
jupyterlab
626,324,155
655
{ "number": 655, "repo": "jupyterlab-git", "user_login": "jupyterlab" }
[ { "action": "opened", "author": "fcollonval", "comment_id": null, "datetime": 1590654852000, "masked_author": "username_0", "text": "@telamonian I propose this PR to ease the release; i.e. it will release each time a GitHub release is published (and a git tag will be also created) - the version of npm and Python are tested to avoid publishing non-matching packages.", "title": "Ease release through Github workflow", "type": "issue" }, { "action": "created", "author": "fcollonval", "comment_id": 668547453, "datetime": 1596541526000, "masked_author": "username_0", "text": "@meeseeksdev backport to 0.11.x", "title": null, "type": "comment" } ]
1
2
265
false
false
265
false
Gabriel439/Haskell-Typed-Spreadsheet-Library
null
573,257,412
19
{ "number": 19, "repo": "Haskell-Typed-Spreadsheet-Library", "user_login": "Gabriel439" }
[ { "action": "opened", "author": "LeifW", "comment_id": null, "datetime": 1582966853000, "masked_author": "username_0", "text": "0.15.4 is out. The 0.14.x ones were rejected by the solver for me on GHC\r\n 8.8.3 and Cabal 3.0.1.0 - I think because of the Cabal version.\r\nI built it against gtk-0.15.4, and the examples seem to work fine.", "title": "Bump upper bounds on gtk to allow 0.15.x series", "type": "issue" }, { "action": "created", "author": "Gabriel439", "comment_id": 592955839, "datetime": 1582989654000, "masked_author": "username_1", "text": "@username_0: Thank you! :slightly_smiling_face:", "title": null, "type": "comment" }, { "action": "created", "author": "Gabriel439", "comment_id": 592958101, "datetime": 1582990924000, "masked_author": "username_1", "text": "Alright, this is now up on Hackage as `typed-spreadsheet-1.1.5`", "title": null, "type": "comment" } ]
2
3
312
false
false
312
true
Samsung/TizenRT
Samsung
356,363,768
2,150
{ "number": 2150, "repo": "TizenRT", "user_login": "Samsung" }
[ { "action": "opened", "author": "junmin-kim", "comment_id": null, "datetime": 1535953116000, "masked_author": "username_0", "text": "To prepare mediaplayer, datasource should be set.", "title": "examples/mediaplayer: Set source after unprepare", "type": "issue" }, { "action": "created", "author": "seinfra", "comment_id": 418006383, "datetime": 1535953616000, "masked_author": "username_1", "text": "Target : [575a6ad5ffee766dd5be0959b03ff77355d38b45] - Code Rule Check OK.", "title": null, "type": "comment" }, { "action": "created", "author": "seinfra", "comment_id": 418007085, "datetime": 1535953912000, "masked_author": "username_1", "text": "Target : [575a6ad5ffee766dd5be0959b03ff77355d38b45] - Code Rule Check (C++) OK.", "title": null, "type": "comment" }, { "action": "created", "author": "seinfra", "comment_id": 418318909, "datetime": 1536057085000, "masked_author": "username_1", "text": "Target : [e7e2872b85a249050c8f82da0a233cdd90426f76] -", "title": null, "type": "comment" }, { "action": "created", "author": "seinfra", "comment_id": 418320087, "datetime": 1536057386000, "masked_author": "username_1", "text": "Target : [7b7fe479efbaced548a5d6875d3921fc1ffec7c2] - Code Rule Check (C++) OK.", "title": null, "type": "comment" }, { "action": "created", "author": "seinfra", "comment_id": 418320752, "datetime": 1536057567000, "masked_author": "username_1", "text": "Target : [7b7fe479efbaced548a5d6875d3921fc1ffec7c2] - Code Rule Check OK.", "title": null, "type": "comment" }, { "action": "created", "author": "seinfra", "comment_id": 418607397, "datetime": 1536126654000, "masked_author": "username_1", "text": "Target : [4386de88d1606ee1bd9209c0dc16ae2e7dbe3375] - Code Rule Check OK.", "title": null, "type": "comment" }, { "action": "created", "author": "seinfra", "comment_id": 418608423, "datetime": 1536127027000, "masked_author": "username_1", "text": "Target : [4386de88d1606ee1bd9209c0dc16ae2e7dbe3375] - Code Rule Check (C++) OK.", "title": null, "type": "comment" } ]
2
8
558
false
false
558
false
choosehappy/HistoQC
null
508,014,136
141
null
[ { "action": "opened", "author": "MohanaPriyaNarapareddy", "comment_id": null, "datetime": 1571249507000, "masked_author": "username_0", "text": "Hello,\r\nI am trying to turn Hiso QC as a service. I created a docker container to run it. Is there any way I could give .svs file in the form of an URL after instead of mounting the volumes and give it as an argument in the run command. Please let me know.", "title": "input format", "type": "issue" }, { "action": "created", "author": "choosehappy", "comment_id": 542828927, "datetime": 1571250000000, "masked_author": "username_1", "text": "interesting question. while something might be able to work, off the top of my head, i don't know of a hosting approach for files which allows for random file read access similar to file systems\r\n\r\nif you know of one i can have a deeper think about it, but off the top of my head, the easiest way would be if histoqc took the URL and then downloaded the image locally before proceeding. the libraries employed (openslide) all assume that they'll be able to randomly access parts of the image as needed through file operating system type functions.\r\n\r\nseems like that would defeat the purpose of what you're looking for, and would in fact be easier/faster to mount the volumes", "title": null, "type": "comment" }, { "action": "created", "author": "MohanaPriyaNarapareddy", "comment_id": 542868386, "datetime": 1571256193000, "masked_author": "username_0", "text": "I built a docker container and planning to deploy it in the cloud run. The input files can be hosted in the google cloud bucket and URL can be obtained. But I am not sure how to provide the URL as the file location in the argument.", "title": null, "type": "comment" }, { "action": "created", "author": "choosehappy", "comment_id": 542871748, "datetime": 1571256713000, "masked_author": "username_1", "text": "to my knowledge, aws buckets don't allow for random read access, its an all or nothing type approach. thus you'd have to pull it locally to compute on it. you can do so either using wget or \"aws s3 cp\"", "title": null, "type": "comment" }, { "action": "created", "author": "sharmaashish", "comment_id": 558704469, "datetime": 1574785081000, "masked_author": "username_2", "text": "Rather than POST the full image, could the requester send the 1.25x magnification image as say a png?", "title": null, "type": "comment" }, { "action": "created", "author": "choosehappy", "comment_id": 558742291, "datetime": 1574790256000, "masked_author": "username_1", "text": "one of the issues with that will be that the user can customize the pipeline as they see fit. each module supports a different operating magnification. for example, the blurriness detector works better at 5x if i remember correctly. thus one would likely need to send multiple versions of the same file (or the maximal magnification used by their configuration), and then write code to compensate for that. note as well the backend is using openslide natively, and assumes magnification information will be provided by metadata. to explicitly state magnification and circumvent openslide (since it can't open \"flat\" png files) is certainly possible, but isn't a 1 minute type fix", "title": null, "type": "comment" }, { "action": "closed", "author": "choosehappy", "comment_id": null, "datetime": 1581445618000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "choosehappy", "comment_id": 584781599, "datetime": 1581445618000, "masked_author": "username_1", "text": "closed due to inactivity", "title": null, "type": "comment" } ]
3
8
2,169
false
false
2,169
false
NixOS/nixpkgs
NixOS
530,400,032
74,641
{ "number": 74641, "repo": "nixpkgs", "user_login": "NixOS" }
[ { "action": "opened", "author": "r-ryantm", "comment_id": null, "datetime": 1575041387000, "masked_author": "username_0", "text": "Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/strawberry/versions.\n\n\n\nmeta.description for strawberry is: '\"Music player and music collection organizer\"'.\n\n\nmeta.homepage for strawberry is: '\"https://www.strawberrymusicplayer.org/\"\n\n[Release on GitHub](https://github.com/jonaski/strawberry/releases/tag/0.6.6)\n\n\n[Compare changes on GitHub](https://github.com/jonaski/strawberry/compare/0.6.5...0.6.6)\n\n<details>\n<summary>\nChecks done (click to expand)\n</summary>\n\n- built on NixOS\n- The tests defined in `passthru.tests`, if any, passed\n\n- 0 of 0 passed binary check by having a zero exit code.\n- 0 of 0 passed binary check by having the new version present in output.\n- found 0.6.6 with grep in /nix/store/wscahn37wwxn76zsibxs1vdm64jay2pb-strawberry-0.6.6\n- directory tree listing: https://gist.github.com/bac3c62bed4a0df12977d28ec55bda6f\n\n- du listing: https://gist.github.com/cb74be8b741ce710bc1f64171aa446ef\n\n\n</details>\n<details>\n<summary>\nRebuild report (if merged into master) (click to expand)\n</summary>\n\n3 total rebuild path(s)\n\n1 package rebuild(s)\n\n1 x86_64-linux rebuild(s)\n1 i686-linux rebuild(s)\n0 x86_64-darwin rebuild(s)\n1 aarch64-linux rebuild(s)\n\n\nFirst fifty rebuilds by attrpath\nstrawberry\n\n</details>\n\n<details>\n<summary>\nInstructions to test this update (click to expand)\n</summary>\n\nEither download from Cachix:\n```\nnix-store -r /nix/store/wscahn37wwxn76zsibxs1vdm64jay2pb-strawberry-0.6.6 \\\n --option binary-caches 'https://cache.nixos.org/ https://username_0.cachix.org/' \\\n --option trusted-public-keys '\n username_0.cachix.org-1:gkUbLkouDAyvBdpBX0JOdIiD2/DP1ldF3Z3Y6Gqcc4c=\n cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=\n '\n```\n(username_0's Cachix cache is only trusted for this store-path realization.)\n\nOr, build yourself:\n```\nnix-build -A strawberry https://github.com/username_0/nixpkgs/archive/06d842e08aadfb23e07e84d6721f29e0a10cd6c1.tar.gz\n```\n\nAfter you've downloaded or built it, look at the files and if there are any, run the binaries:\n```\nls -la /nix/store/wscahn37wwxn76zsibxs1vdm64jay2pb-strawberry-0.6.6\nls -la /nix/store/wscahn37wwxn76zsibxs1vdm64jay2pb-strawberry-0.6.6/bin\n```\n\n\n</details>\n<br/>\n\n\n\n\n\ncc @peterhoeg for testing.", "title": "strawberry: 0.6.5 -> 0.6.6", "type": "issue" }, { "action": "created", "author": "lsix", "comment_id": 559837684, "datetime": 1575044648000, "masked_author": "username_1", "text": "Built and tested. All fine for Me.", "title": null, "type": "comment" }, { "action": "created", "author": "lsix", "comment_id": 559839312, "datetime": 1575045101000, "masked_author": "username_1", "text": "Actually, I can trigger crash of the application, but I can do the same with version 0.6.5 (not with 0.6.3 from release-19.09).\r\n\r\nGo in “Tools -> Settings…”, go in the “Collection” pannel and click on “Add new folder…”.\r\n\r\nCan someone-else trigger the same error ?", "title": null, "type": "comment" }, { "action": "created", "author": "lsix", "comment_id": 559846730, "datetime": 1575047274000, "masked_author": "username_1", "text": "I can build strawberry-0.6.6 (as well as 0.6.7) on top of `release-19.09` branch without having this issue. This is not linked to strawberry nor this particular PR then. I merge it.", "title": null, "type": "comment" }, { "action": "created", "author": "lsix", "comment_id": 559852564, "datetime": 1575049051000, "masked_author": "username_1", "text": "I have the same crash when I open any QFileDialog, and with both qt-5.12 (default) and qt-5.11.\r\n\r\nI’ll try to figure out what is going on, and will file an issue if necessary.", "title": null, "type": "comment" } ]
2
5
2,962
false
false
2,962
true
numpy/numpy
numpy
586,362,120
15,814
null
[ { "action": "opened", "author": "eric-wieser", "comment_id": null, "datetime": 1584982802000, "masked_author": "username_0", "text": "Now that C99 is our minimum requirement, we ought to be able to use standard boolean types for our internal API functions.\r\n\r\nWhat we need to be wary of is that `sizeof(bool)` is not always 1, so we need to be careful of using it in\r\n\r\n* public API function signatures, which would be an ABI change\r\n* public structs, which would be an ABI change\r\n* contexts where we're accessing array data, where `npy_bool` actually represents the underlying representation of `np.bool_`", "title": "Investigate replacing `npy_bool` with `bool`", "type": "issue" }, { "action": "created", "author": "brandtbucher", "comment_id": 602730784, "datetime": 1584983010000, "masked_author": "username_1", "text": "I have little knowledge of the scope of this change, but is this a suitable project for a new-ish contributor? If so, I'd like to work on it.", "title": null, "type": "comment" }, { "action": "created", "author": "eric-wieser", "comment_id": 602731380, "datetime": 1584983075000, "masked_author": "username_0", "text": "I think it probably needs some maintainer discussion first. If we decided to do it, then it would be straightforward - but until we do, it could be a dead end.\r\n\r\nOpened this issue primarily to divert discussion to if it comes up again.", "title": null, "type": "comment" } ]
2
3
850
false
false
850
false
Accenture/sfpowerscripts
Accenture
656,232,262
89
null
[ { "action": "opened", "author": "vuha-acn", "comment_id": null, "datetime": 1594685540000, "masked_author": "username_0", "text": "When executing the authentication task, if there is a \")\" in the password for credential authentication, the task fails. \r\n\r\n**Error Message:**\r\n\r\n1: Syntax error: \")\" unexpected\r\n\r\n**Sample Command Output:**\r\n\r\n##[error]Command failed: sfdx sfpowerkit:auth:login -u user_name@salesforce.com -p pass)word -s aDFE3342432VDddeere33111 -a sampleAlias", "title": "Authenticate Using Credentials - Error Parsing \")\" if contained in password", "type": "issue" }, { "action": "closed", "author": "Caitlyn-Mills", "comment_id": null, "datetime": 1594695716000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "Caitlyn-Mills", "comment_id": 657938017, "datetime": 1594695716000, "masked_author": "username_1", "text": "Thank you for raising an issue with sfpowerscripts. This problem can be solved by encapsulating the password in quotation marks. eg: \r\nsfdx sfpowerkit:auth:login -u user_name@salesforce.com -p \"pass)word\" -s aDFE3342432VDddeere33111 -a sampleAlias", "title": null, "type": "comment" } ]
2
3
595
false
false
595
false
Azure/azure-sdk-for-java
Azure
508,612,295
5,901
null
[ { "action": "opened", "author": "ellismg", "comment_id": null, "datetime": 1571332590000, "masked_author": "username_0", "text": "Unlike our other libraries, which fail to load a token from the cache when there are multiple identities and a username has not been specified, the Java implementation of SharedTokenCacheCredential will simply use the first entry in the cache.\r\n\r\nWhile I love not having to have someone set `AZURE_USERNAME` and have things \"just work\" I think we should tighten our default behavior here such that if the cache has multiple entries, we require that a username be specified.\r\n\r\nConcretely, I think we should add some code around [here](https://github.com/Azure/azure-sdk-for-java/blob/33f496228cc24442e1a8e0aa3e9a5d36b3eba8e8/sdk/identity/azure-identity/src/main/java/com/azure/identity/credential/SharedTokenCacheCredential.java#L76-L90) that returns a `Mono.error` if `username` is null and `collection` has more than one entry. I think this is better than just picking the first entry (since it's not clear that this collection is \"ordered\").", "title": "[BUG] SharedTokenCache credential does not fail when multiple identities in the cache and no `AZURE_USERNAME` is set", "type": "issue" }, { "action": "closed", "author": "jianghaolu", "comment_id": null, "datetime": 1571421581000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
2
945
false
false
945
false
FEMessage/el-form-renderer
FEMessage
534,859,770
140
{ "number": 140, "repo": "el-form-renderer", "user_login": "FEMessage" }
[ { "action": "opened", "author": "gd4Ark", "comment_id": null, "datetime": 1575890082000, "masked_author": "username_0", "text": "<!--- \r\nplease use Conventional Commits: https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#commits\r\n-->\r\n\r\n## Why\r\n如果在`el-form-render`设置了`disabled`,则使表单项内部的`disabled`无效(这是 element-ui 原本的设计),但是如果出现想禁用大部分,只开启其中一个的情况,会很繁琐。\r\n\r\n## How\r\n1. 取消`el-form`的`disabled`属性\r\n2. 使表单项的`disabled`属性比`el-form`的`disabled`属性优先级高\r\n\r\n## Docs\r\n- docs/disabled.md", "title": "fix: disabled 优先级问题", "type": "issue" }, { "action": "created", "author": "levy9527", "comment_id": 563894610, "datetime": 1575961170000, "masked_author": "username_1", "text": "这个可能要看是否确实有这种需求。等待看看后续反馈", "title": null, "type": "comment" }, { "action": "created", "author": "donaldshen", "comment_id": 590157281, "datetime": 1582515435000, "masked_author": "username_2", "text": "首先还是与 el-form 的优先级保持一致比较好;\r\n其次,这是 breaking-change。之前为了保持 disabled 兼容旧版本的行为还特地提过几次 pr。所以 2.0.0 版本以前先不讨论这种改动了。", "title": null, "type": "comment" } ]
4
4
646
false
true
484
false
intel-isl/Open3D
intel-isl
661,369,792
2,087
null
[ { "action": "opened", "author": "bimsarapathiraja", "comment_id": null, "datetime": 1595220774000, "masked_author": "username_0", "text": "**IMPORTANT: Please use the following template to report the bug.**\r\n_____\r\n\r\n**Describe the bug**\r\nIn the icp_registration.ipynb, code cells uses `evaluation = o3d.pipelines.registration.evaluate_registration` and it produces following error. `module 'open3d' has no attribute 'pipelines'\r\n\r\nThe solution is using `o3d.registration` instead of `o3d.pipelines.registration in each and every place`.\r\n`\r\n**To Reproduce**\r\nSteps to reproduce the behavior:\r\n\r\n1. cd 'Open3D/examples/python/Basic/'\r\n2. run icp_registration.ipynb\r\n\r\n**Expected behavior**\r\nAttributeError: module 'open3d' has no attribute 'pipelines'\r\n\r\n**Screenshots**\r\n<img width=\"556\" alt=\"image\" src=\"https://user-images.githubusercontent.com/29068296/87900642-a154e780-ca72-11ea-8291-d5f7597e0f9a.png\">\r\n\r\n\r\n**Environment (please complete the following information):**\r\n\r\n- Operating system: macOS Catalina\r\n- Python version: Python 3.7\r\n- Open3D version: 0.10.0.0 \r\n- Is this remote workstation?: no\r\n- How did you install Open3D?: pip", "title": "module 'open3d' has no attribute 'pipelines'", "type": "issue" }, { "action": "created", "author": "bimsarapathiraja", "comment_id": 660800921, "datetime": 1595220827000, "masked_author": "username_0", "text": "Use `o3d.registration` instead of `o3d.pipelines.registration`", "title": null, "type": "comment" }, { "action": "closed", "author": "bimsarapathiraja", "comment_id": null, "datetime": 1595220831000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
3
1,067
false
false
1,067
false
urda/django-letsencrypt
null
215,942,008
32
{ "number": 32, "repo": "django-letsencrypt", "user_login": "urda" }
[ { "action": "opened", "author": "urda", "comment_id": null, "datetime": 1490153052000, "masked_author": "username_0", "text": "", "title": "1.1.1 Release Sync", "type": "issue" }, { "action": "created", "author": "urda", "comment_id": 288289567, "datetime": 1490153918000, "masked_author": "username_0", "text": "@petercuret I just dropped a release with your PR on it. Feel free to upgrade 😄 \r\n\r\n- https://github.com/username_0/django-letsencrypt/releases/tag/v1.1.1\r\n- https://pypi.python.org/pypi/django-letsencrypt/1.1.1", "title": null, "type": "comment" } ]
2
3
205
false
true
205
true
nf-core/epitopeprediction
nf-core
578,013,603
29
{ "number": 29, "repo": "epitopeprediction", "user_login": "nf-core" }
[ { "action": "opened", "author": "skrakau", "comment_id": null, "datetime": 1583769527000, "masked_author": "username_0", "text": "https://github.com/nf-core/epitopeprediction/issues/28\r\n\r\nOk, I did it in python in the end. With this max. 100 chunks will be created and only files with more than 5000 peptides will be split.That's what I would assume might be useful also for others. Let me know if you think this could be optimised.\r\n\r\n#\r\n\r\nMany thanks for contributing to nf-core/epitopeprediction!\r\n\r\nPlease fill in the appropriate checklist below (delete whatever is not relevant). These are the most common things requested on pull requests (PRs).\r\n\r\n## PR checklist\r\n - [x] This comment contains a description of changes (with reason)\r\n - [ ] If you've fixed a bug or added code that should be tested, add tests!\r\n - [ ] If necessary, also make a PR on the [nf-core/epitopeprediction branch on the nf-core/test-datasets repo]( https://github.com/nf-core/test-datasets/pull/new/nf-core/epitopeprediction)\r\n - [x] Ensure the test suite passes (`nextflow run . -profile test,docker`).\r\n - [ ] Make sure your code lints (`nf-core lint .`).\r\n - [ ] Documentation in `docs` is updated\r\n - [ ] `CHANGELOG.md` is updated\r\n - [ ] `README.md` is updated\r\n\r\n**Learn more about contributing:** https://github.com/nf-core/epitopeprediction/tree/master/.github/CONTRIBUTING.md", "title": "Add spliting of peptides with python.", "type": "issue" }, { "action": "created", "author": "apeltzer", "comment_id": 599428746, "datetime": 1584350446000, "masked_author": "username_1", "text": "General best practice would be to put this in a `foo.py` and place this script in the `/bin` folder of the pipeline and call it accordingly in the script section here, keeps the main.nf cleaner :-)", "title": null, "type": "comment" }, { "action": "created", "author": "skrakau", "comment_id": 599439358, "datetime": 1584351939000, "masked_author": "username_0", "text": "OK, will do! :)", "title": null, "type": "comment" }, { "action": "created", "author": "skrakau", "comment_id": 611721521, "datetime": 1586461907000, "masked_author": "username_0", "text": "- changed `--split_peptides_maxchunks` -> `--peptides_split_maxchunks`\r\n- changed `--split_peptides_minsize` -> `--peptides_split_minchunksize`\r\n- improved help within `split_peptides.py` (\"Max.\" -> \"Maximum\" etc.)\r\n- adjusted whitespaces in epitopeprediction `helpMessage()`", "title": null, "type": "comment" } ]
2
4
1,724
false
false
1,724
false
lf-edge/lfedge-landscape
lf-edge
491,357,682
214
{ "number": 214, "repo": "lfedge-landscape", "user_login": "lf-edge" }
[ { "action": "opened", "author": "taylorwaggoner", "comment_id": null, "datetime": 1568068242000, "masked_author": "username_0", "text": "", "title": "Fix Redirects", "type": "issue" } ]
2
2
142
false
true
0
false
kubernetes/charts
kubernetes
268,303,028
2,584
{ "number": 2584, "repo": "charts", "user_login": "kubernetes" }
[ { "action": "created", "author": "mattfarina", "comment_id": 339379752, "datetime": 1508947136000, "masked_author": "username_0", "text": "/ok-to-test\r\n\r\nThe changes can be seen at https://github.com/bitnami/bitnami-docker-phabricator/compare/2017.41.0-r0...2017.42.0-r0", "title": null, "type": "comment" } ]
3
3
1,185
false
true
131
false
opentracing-contrib/java-spring-web
opentracing-contrib
305,117,903
65
null
[ { "action": "opened", "author": "pavolloffay", "comment_id": null, "datetime": 1521026426000, "masked_author": "username_0", "text": "At the moment there is no way to disable web tracing. It includes server side but also rest templates.\r\n\r\n\r\nCreated from https://github.com/opentracing-contrib/java-spring-web/issues/38#issuecomment-371468367", "title": "Disable web tracing ", "type": "issue" }, { "action": "created", "author": "ask4gilles", "comment_id": 373177092, "datetime": 1521062089000, "masked_author": "username_1", "text": "@username_0 I can do it with pleasure.", "title": null, "type": "comment" } ]
2
2
247
false
false
247
true
gisce/qreu
gisce
311,360,181
24
{ "number": 24, "repo": "qreu", "user_login": "gisce" }
[ { "action": "opened", "author": "jaumef", "comment_id": null, "datetime": 1522870080000, "masked_author": "username_0", "text": "Closes #23 \r\n\r\nTry to connect with SMTP and then start TLS if TLS is enabled.\r\nIf it fails to connect and TLS is enabled, try to connect directly with SMTP_SSL.\r\n\r\n----\r\n_NOTE: I don't know if there's a more polite way of doing this._", "title": "Fix SMTP connection init with SMTP_SSL when required", "type": "issue" } ]
2
2
516
false
true
234
false
tari-project/tari
tari-project
476,669,338
640
null
[ { "action": "opened", "author": "philipr-za", "comment_id": null, "datetime": 1564984423000, "masked_author": "username_0", "text": "The Transaction Service sends and receives transactions between nodes but it doesn't yet have a way to detect when those transactions have appeared on the blockchain to a given depth and are thus confirmed.\n\nThe Transaction Service should monitor the blockchain (or use another service to do it) to be able to detect when a given Transaction Output appears in a block. Once that output has reached a prescribed depth that it can be considered confirmed the Transaction Service should update the Outputs state in the Output Manager Service to reflect that it is now spendable or has been officially spent (i.e. not pending any more which usually implies that the change is now spendable).", "title": "Implement chain monitoring for Transaction Service to confirm sent and received transactions", "type": "issue" }, { "action": "closed", "author": "CjS77", "comment_id": null, "datetime": 1580980953000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
2
687
false
false
687
false
ihmcrobotics/ihmc-open-robotics-software-tutorials
ihmcrobotics
643,400,358
18
null
[ { "action": "opened", "author": "SylvainBertrand", "comment_id": null, "datetime": 1592865069000, "masked_author": "username_0", "text": "This section: https://github.com/ihmcrobotics/ihmc-open-robotics-software-tutorials/wiki/Setting-Up-Your-Workspace, helps the user to setup a workspace to work with IHMC software stack directly from source, i.e. import the IHMC software directly in the workspace alongside the user's code.\r\nThe tutorials on the other hand show how to set up a workspace depending on the IHMC software stack via Jar dependencies, i.e. the IHMC software is not imported directly in the workspace, instead, Jars are added as dependencies to the user's code.\r\nThe distinction between these 2 modes isn't quite clear in the Wiki. However, the difference can be quite important, especially since depending on the IHMC software from source complexify the setup and increase computational load when compiling.\r\nWe may want to re-think the structure, because maybe it is working against us to clarify that. Maybe we'd want in the structure to have the 2 setup side-by-side which would help making it clear that they are different.\r\n\r\nLet's talk about it at some point", "title": "Clarification need between setting up from Jar or from source", "type": "issue" }, { "action": "created", "author": "SylvainBertrand", "comment_id": 647802156, "datetime": 1592865159000, "masked_author": "username_0", "text": "Oh well, I just discovered that you moved the tutorial setup next to the other one. Alright, so I guess it is mostly a wording issue then :)", "title": null, "type": "comment" } ]
1
2
1,182
false
false
1,182
false
MeteoSwiss-APN/dawn
MeteoSwiss-APN
517,895,637
452
{ "number": 452, "repo": "dawn", "user_login": "MeteoSwiss-APN" }
[ { "action": "opened", "author": "Stagno", "comment_id": null, "datetime": 1572972799000, "masked_author": "username_0", "text": "## Technical Description\r\n\r\n- Adds infrastructure to \r\n 1. Code generate the unstructured stencils that are going to be tested\r\n 2. Compile drivers + stencils\r\n 3. Run them and compare outputs with either hardcoded values or with outputs of reference stencils (which also need to be compiled and run)\r\n- Adds `atlas_interface.hpp` (from prototype) into `src/interface`\r\n- Adds `AtlasVerifyer` class to compare outputs (atlas' `ArrayView`s) which should be equal within some tolerance.\r\n- Add tests from code already present in prototype: `CopyCell`, `CopyEdge`, `accumulateEdgeToCell`, `diffusion`\r\n\r\n### Resolves / Enhances\r\n\r\nresolves #435 \r\n\r\n### TODO\r\n\r\n- Have jenkins (and the jenkins script) ready to run these tests\r\n- Add more tests: vertical sum", "title": "Add unstructured integration tests and required CMake infrastructure", "type": "issue" }, { "action": "created", "author": "Stagno", "comment_id": 554288006, "datetime": 1573810871000, "masked_author": "username_0", "text": "launch jenkins", "title": null, "type": "comment" }, { "action": "created", "author": "Stagno", "comment_id": 554297394, "datetime": 1573812377000, "masked_author": "username_0", "text": "launch jenkins", "title": null, "type": "comment" }, { "action": "created", "author": "Stagno", "comment_id": 554300320, "datetime": 1573812874000, "masked_author": "username_0", "text": "launch jenkins", "title": null, "type": "comment" }, { "action": "created", "author": "Stagno", "comment_id": 554904087, "datetime": 1574065110000, "masked_author": "username_0", "text": "launch jenkins", "title": null, "type": "comment" }, { "action": "created", "author": "Stagno", "comment_id": 554913355, "datetime": 1574066728000, "masked_author": "username_0", "text": "launch jenkins", "title": null, "type": "comment" }, { "action": "created", "author": "Stagno", "comment_id": 554943222, "datetime": 1574071221000, "masked_author": "username_0", "text": "launch jenkins", "title": null, "type": "comment" }, { "action": "created", "author": "Stagno", "comment_id": 557148656, "datetime": 1574351769000, "masked_author": "username_0", "text": "launch jenkins", "title": null, "type": "comment" } ]
1
8
858
false
false
858
false
ucdavis/Anlab
ucdavis
557,805,405
793
null
[ { "action": "opened", "author": "jSylvestre", "comment_id": null, "datetime": 1580424793000, "masked_author": "username_0", "text": "Look into replacing uc davis smtp which will be going away.", "title": "Email", "type": "issue" }, { "action": "created", "author": "jSylvestre", "comment_id": 640854865, "datetime": 1591646369000, "masked_author": "username_0", "text": "If you're sending from a non-campus host I'd recommend getting a departmental account with the email address you want to show as the \"From\" address and using authenticated sending. We're only adding campus IP addresses for unauthenticated sending.\r\n\r\nLooks like there's already a departmental account for anlab@ucdavis.edu, owned by tmfrancis.\r\n\r\n-Tom", "title": null, "type": "comment" }, { "action": "created", "author": "jSylvestre", "comment_id": 640855516, "datetime": 1591646453000, "masked_author": "username_0", "text": "If the volume is low, using Exchange Online for this SMTP operation should work fine, per this KB article:\r\n\r\nhttps://kb.ucdavis.edu/?id=2263\r\n\r\nIf you can elaborate on what the application is and how much email it sends and how often, I could tell you more accurately if that would meet your need.\r\n\r\n-Tom", "title": null, "type": "comment" }, { "action": "created", "author": "jSylvestre", "comment_id": 692143793, "datetime": 1600098286000, "masked_author": "username_0", "text": "Done", "title": null, "type": "comment" }, { "action": "closed", "author": "jSylvestre", "comment_id": null, "datetime": 1600098286000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
5
720
false
false
720
false
yegor256/mailanes
null
456,296,897
65
null
[ { "action": "opened", "author": "yegor256", "comment_id": null, "datetime": 1560524824000, "masked_author": "username_0", "text": "Sorting most probably doesn't work", "title": "delivery is not sorting letters right", "type": "issue" }, { "action": "created", "author": "yegor256", "comment_id": 502183398, "datetime": 1560530807000, "masked_author": "username_0", "text": "@username_1 release, tag is `0.18.2`", "title": null, "type": "comment" }, { "action": "created", "author": "rultor", "comment_id": 502183837, "datetime": 1560530894000, "masked_author": "username_1", "text": "@username_0 OK, I will release it now. Please check the progress [here](http://www.username_1.com/t/19207-502183398)", "title": null, "type": "comment" }, { "action": "created", "author": "rultor", "comment_id": 502185453, "datetime": 1560531203000, "masked_author": "username_1", "text": "@username_0 Done! FYI, the full log is [here](http://www.username_1.com/t/19207-502183398) (took me 5min)", "title": null, "type": "comment" }, { "action": "created", "author": "yegor256", "comment_id": 502333885, "datetime": 1560573394000, "masked_author": "username_0", "text": "@username_1 release, tag is `0.18.3`", "title": null, "type": "comment" }, { "action": "created", "author": "rultor", "comment_id": 502333945, "datetime": 1560573456000, "masked_author": "username_1", "text": "@username_0 OK, I will release it now. Please check the progress [here](http://www.username_1.com/t/19207-502333885)", "title": null, "type": "comment" }, { "action": "created", "author": "rultor", "comment_id": 502334172, "datetime": 1560573759000, "masked_author": "username_1", "text": "@username_0 Done! FYI, the full log is [here](http://www.username_1.com/t/19207-502333885) (took me 5min)", "title": null, "type": "comment" }, { "action": "closed", "author": "yegor256", "comment_id": null, "datetime": 1560574234000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
2
8
516
false
false
516
true
uber/react-map-gl
uber
559,438,336
1,014
null
[ { "action": "opened", "author": "erikguntner", "comment_id": null, "datetime": 1580781010000, "masked_author": "username_0", "text": "I am currently working on an application where I am using the SVGOverlay component to draw a path from an array of coordinates. I am trying to access the map context to retrieve the point on the map when I either Hover/MouseOver the path, but currently it looks like this isn't available for SVG Overlays. Is there a way to accomplish this using the SVG Overlay? Or do I need to render the path a different way?\r\n\r\nThanks.", "title": "Hover events on SVG overlay", "type": "issue" }, { "action": "created", "author": "Pessimistress", "comment_id": 726175509, "datetime": 1605197397000, "masked_author": "username_1", "text": "You can construct a [WebMercatorViewport](http://visgl.github.io/react-map-gl/docs/api-reference/web-mercator-viewport) to perform unprojection.", "title": null, "type": "comment" }, { "action": "closed", "author": "Pessimistress", "comment_id": null, "datetime": 1605197403000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
566
false
false
566
false
SAP/yeoman-ui
SAP
548,307,017
87
null
[ { "action": "opened", "author": "ravi4j", "comment_id": null, "datetime": 1578692935000, "masked_author": "username_0", "text": "src/extension.ts:183:41 - error TS2339: Property 'asWebviewUri' does not exist on type 'Webview'.\r\n183 const scriptUri = this.panel.webview.asWebviewUri(scriptPathOnDisk); \r\n\r\nWe have also tried to install vscode on the machine.\r\n\r\nPlease let me know any idea to resolve this issue.", "title": "Not able to compile the backend on REL 7", "type": "issue" }, { "action": "created", "author": "tomer-epstein", "comment_id": 573290842, "datetime": 1578727329000, "masked_author": "username_1", "text": "This change has been done a month ago. We didn't experiance any issues.\r\nhttps://github.com/SAP/yeoman-ui/commit/3a4680be4ac42a6e84bb4bc0ff58c238b37cc8bd\r\nWhat is your development env ?", "title": null, "type": "comment" }, { "action": "created", "author": "ravi4j", "comment_id": 574723387, "datetime": 1579103611000, "masked_author": "username_0", "text": "We are trying to deploy backend server on Red Hat Linux server 7. We are not able run backend server.", "title": null, "type": "comment" }, { "action": "created", "author": "tomer-epstein", "comment_id": 574780001, "datetime": 1579111283000, "masked_author": "username_1", "text": "Please try to fork yeoman-ui repo.\r\nThen revert the change done in extension.ts at -> https://github.com/SAP/yeoman-ui/blob/3a4680be4ac42a6e84bb4bc0ff58c238b37cc8bd/backend/src/extension.ts", "title": null, "type": "comment" }, { "action": "closed", "author": "tomer-epstein", "comment_id": null, "datetime": 1579422655000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "tomer-epstein", "comment_id": 575979756, "datetime": 1579422655000, "masked_author": "username_1", "text": "Solution: https://github.com/SAP/yeoman-ui/pull/114", "title": null, "type": "comment" } ]
2
6
820
false
false
820
false