id
stringlengths
4
10
text
stringlengths
4
2.14M
source
stringclasses
2 values
created
timestamp[s]date
2001-05-16 21:05:09
2025-01-01 03:38:30
added
stringdate
2025-04-01 04:05:38
2025-04-01 07:14:06
metadata
dict
786586582
fix(runtime-core): inject function support self-inject Before this pull request, I have read #1818 and #2400. And I think self-inject feature is required. I wrote a vue3 plugin that depends on self-inject. Without self-inject feature, every container component must be splited into two components. We can learn from an...
gharchive/pull-request
2021-01-15T06:16:41
2025-04-01T04:58:43.004996
{ "authors": [ "LinusBorg", "huanggm", "posva" ], "repo": "vuejs/vue-next", "url": "https://github.com/vuejs/vue-next/pull/3022", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
328853114
Redirect old links in docs to new ones in VuePress Since a lot of courses, books, blog posts, etc still link to pages in the non-VuePress docs I'm thinking some redirects should be set up. Unfortunately, I don't have a complete list of links, but here's one. Yeah, same as https://github.com/vuejs/vue-router/issues/...
gharchive/issue
2018-06-03T19:01:33
2025-04-01T04:58:43.006825
{ "authors": [ "chrisvfritz", "posva" ], "repo": "vuejs/vue-router", "url": "https://github.com/vuejs/vue-router/issues/2241", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
186705963
vue-router如何实现异步动态加载路由呢?比如动态加载菜单 用户登录系统后,主页面发起异步请求系统初始化数据(例如此用户可以访问的菜单列表数据)。 请问在vue-router2.0中,如何异步加载路由表数据? 我看大多数的例子都是在routes.js里面把路由表写死的,但是大多数系统都是要根据用户权限来获取菜单和路由数据的,这个在vue2.0中应该怎么解决? 你好,请使用论坛或gitter提问,issue列表只用于提交bug和feature request,谢谢! 路由表一定是静态的。你需要的是鉴权:http://router.vuejs.org/zh-cn/advanced/meta.html @lampo10...
gharchive/issue
2016-11-02T03:48:18
2025-04-01T04:58:43.010308
{ "authors": [ "chaohuaGH", "fnlctrl", "jyjunyz", "lampo1024", "lomotony" ], "repo": "vuejs/vue-router", "url": "https://github.com/vuejs/vue-router/issues/858", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
189061095
examples warning Hi, all. resolve failed: { Error: Cannot find module 'nightwatch-helpers' at Function.Module._resolveFilename (module.js:472:15) at Function.requireRelative.resolve (/Users/xiecg/Desktop/vue-router/node_modules/.npminstall/require-relative/0.8.7/require-relative/index.js:30:17) at resolv...
gharchive/issue
2016-11-14T09:10:28
2025-04-01T04:58:43.018635
{ "authors": [ "posva", "xiecg" ], "repo": "vuejs/vue-router", "url": "https://github.com/vuejs/vue-router/issues/901", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
132343064
LESS Highlighting Less syntax breaks on some cases, especially when nesting. Hello @yyx990803, seems the culprit in the syntax highlighting is the [MaterialTheme] (https://github.com/equinusocio/material-theme) I've installed, not Vue syntax highlighting. Apologies for any inconvenience i've caused. I guess the th...
gharchive/issue
2016-02-09T06:33:10
2025-04-01T04:58:43.021964
{ "authors": [ "moe-szyslak", "prog-rajkamal" ], "repo": "vuejs/vue-syntax-highlight", "url": "https://github.com/vuejs/vue-syntax-highlight/issues/35", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
324618739
Remove ErrorWrapper What problem does this feature solve? ErrorWrapper is returned only in wrapper.find. I think there is no benefit of using it over returning null. What does the proposed API look like? wrapper.find returns null (or undefined) when no item is found, similarly to #Array.prototype.find The benefit o...
gharchive/issue
2018-05-19T10:13:28
2025-04-01T04:58:43.026937
{ "authors": [ "damoncp", "eddyerburgh", "lusarz" ], "repo": "vuejs/vue-test-utils", "url": "https://github.com/vuejs/vue-test-utils/issues/629", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
488111116
Shorthand for property passing :value vs :value="value" What problem does this feature solve? Subject pretty much sums it all up. More often than not a property name matches a variable name. Typing :value="value" :options="options" looks a bit excessive. Feature is strictly cosmetics but it would help us to write les...
gharchive/issue
2019-09-02T10:08:58
2025-04-01T04:58:43.029480
{ "authors": [ "buzdyk", "posva" ], "repo": "vuejs/vue", "url": "https://github.com/vuejs/vue/issues/10463", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
585210754
Can Vue.JS app run without index.html file? What problem does this feature solve? I want to know if it is possible to work with vue.js only working with javasript files. What does the proposed API look like? Vue.js working without using a index.html file Hi, thanks for your interest but Github issues are for bug re...
gharchive/issue
2020-03-20T17:09:24
2025-04-01T04:58:43.031611
{ "authors": [ "Justineo", "juancampuzano" ], "repo": "vuejs/vue", "url": "https://github.com/vuejs/vue/issues/11226", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
194364323
Transition with JS hooks and v-show – display: none removed too late Vue.js version 2.1.4 Reproduction Link https://jsfiddle.net/acies/6x2g6v02/ Steps to reproduce Create a <transition> tag. Set the transition tag to not rely on CSS with :css="false", as well as trigger on appear. Add a v-show for an element inside ...
gharchive/issue
2016-12-08T15:26:50
2025-04-01T04:58:43.037797
{ "authors": [ "TheDutchCoder", "acies" ], "repo": "vuejs/vue", "url": "https://github.com/vuejs/vue/issues/4418", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
201210577
using v-if and v-for with string, render result is unexpected Vue.js version 2.1.7 2.18 2.1.9 Reproduction Link https://jsfiddle.net/yreenchan/e1jw7qh0/ Steps to reproduce use v-if and v-for to render string when the value is not Array, v-else also render as v-for <div id="app"> <p v-if="Array.isArray(desc)" v-fo...
gharchive/issue
2017-01-17T08:59:24
2025-04-01T04:58:43.042163
{ "authors": [ "posva", "repsac-by", "yreenchan" ], "repo": "vuejs/vue", "url": "https://github.com/vuejs/vue/issues/4729", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
200855682
Use shields.io compliant badge for SauceLabs Just a small change to make the readme nicer. (I'm pushing to master since this change affects only the readme file) The badge I used supports multiple browsers and versions. Ah cool. It's showing Android only because I recently ran a single-browser test. done Th...
gharchive/pull-request
2017-01-15T08:13:52
2025-04-01T04:58:43.046192
{ "authors": [ "FezVrasta", "posva", "yyx990803" ], "repo": "vuejs/vue", "url": "https://github.com/vuejs/vue/pull/4714", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
326201169
Avoid the use of unnecessary images, particularly for code As a totally blind developer, the use of images for some of the code samples in the docs is rather annoying, to say the least. Is there a benefit to doing things this way? Would folks be open to considering alternatives? Or could there be a way to give access...
gharchive/issue
2018-05-24T16:35:31
2025-04-01T04:58:43.055953
{ "authors": [ "cannona", "chrisvfritz", "goelrohan6", "phanan", "sustained" ], "repo": "vuejs/vuejs.org", "url": "https://github.com/vuejs/vuejs.org/issues/1650", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
194895546
Add Vue + TypeScript guide I've wrote a beginner's guide of using Vue.js with TypeScript. It introduces official declaration files and vue-class-component briefly. I think readers can make simple applications after understanding this guide. I added this guide after SSR guide but not sure it is appropriate place. @kao...
gharchive/pull-request
2016-12-12T05:48:54
2025-04-01T04:58:43.060517
{ "authors": [ "STayinloves", "chrisvfritz", "kaorun343", "ktsn", "phanan" ], "repo": "vuejs/vuejs.org", "url": "https://github.com/vuejs/vuejs.org/pull/649", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
200315279
chagne Jade to Pug Closes #695 Guys, we at @translation-gang are waiting for this changes to be merged to merge our translations for the same thing )
gharchive/pull-request
2017-01-12T09:20:42
2025-04-01T04:58:43.061620
{ "authors": [ "gbezyuk", "kazupon" ], "repo": "vuejs/vuejs.org", "url": "https://github.com/vuejs/vuejs.org/pull/700", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
801477857
[BUG] Domains are not fetched from Shopware instance Describe the bug I followed the instructions on installing the pwa canary version and I get the following error when executing this command: npx @shopware-pwa/cli@canary init Error: Please provide username and password for plugins authentication. You can leave the...
gharchive/issue
2021-02-04T17:11:43
2025-04-01T04:58:43.086158
{ "authors": [ "elkmod", "willopez" ], "repo": "vuestorefront/shopware-pwa", "url": "https://github.com/vuestorefront/shopware-pwa/issues/1343", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
111956211
Allow finding servers by tag. Added functionality to query a list of servers based on tag. This is helpful when you want to know which backend the server came from eg. etcd or AWS ECS. Can you rebase to latest master? Closed due to inactivity
gharchive/pull-request
2015-10-17T10:31:27
2025-04-01T04:58:43.143181
{ "authors": [ "archisgore", "ldez", "nickschuch" ], "repo": "vulcand/oxy", "url": "https://github.com/vulcand/oxy/pull/24", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
846408355
[Troubleshooting] Migration to Version "0.22" ... "0.24" The recent releases had a lot of breaking, but important changes. The migration could be a bit confusing for the users at the beginning. Here is a summary of the most notable things in the high level API to review during migration: [Since 0.22.0] The Image an...
gharchive/issue
2021-03-31T10:46:59
2025-04-01T04:58:43.155084
{ "authors": [ "Eliah-Lakhin", "Rua" ], "repo": "vulkano-rs/vulkano", "url": "https://github.com/vulkano-rs/vulkano/issues/1527", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2605746204
Ignore vk.xml and spirv.core.grammar.json from editor search results Having these files be searched when one is doing a project-wide search is rather counter-productive. This fixes that for any editor that uses ripgrep e.g. vscode, Helix and Neovim with the Telescope plugin. Is there a way to un-ignore those files,...
gharchive/pull-request
2024-10-22T15:09:26
2025-04-01T04:58:43.156874
{ "authors": [ "Rua", "marc0246" ], "repo": "vulkano-rs/vulkano", "url": "https://github.com/vulkano-rs/vulkano/pull/2590", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
154454337
Discussion: create a helpers folder Is it a good idea to create a helpers folder instead of putting helpers into the views folder? Or is this the best way to do it? It might geht a bit cluttered in this folder after some time. Good thinking. Is there any naming convention for such a folder? Later
gharchive/issue
2016-05-12T10:56:13
2025-04-01T04:58:43.158191
{ "authors": [ "oa", "wintermeyer" ], "repo": "vutuv/vutuv", "url": "https://github.com/vutuv/vutuv/issues/38", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1915645150
🛑 Ecoindex.fr Backend API is down In 8983793, Ecoindex.fr Backend API (https://ecoindex.p.rapidapi.com/health) was down: HTTP code: 0 Response time: 0 ms Resolved: Ecoindex.fr Backend API is back up in 8cd125c after 8 minutes.
gharchive/issue
2023-09-27T13:53:26
2025-04-01T04:58:43.161269
{ "authors": [ "vvatelot" ], "repo": "vvatelot/upptime", "url": "https://github.com/vvatelot/upptime/issues/100", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2061085791
Migration away from withIronSessionApiRoute Upgrading from v6 to v8 of this package. What's the easiest way to migrate withIronSessionApiRoute? +1 on this. Is there an upgrade guide? in my cases, export default withIronSessionApiRoute( async function handler ( req: NextApiRequest, res: NextApiResponse, ...
gharchive/issue
2023-12-31T14:58:53
2025-04-01T04:58:43.179829
{ "authors": [ "elie222", "mattcasey", "mschilde", "sacru2red", "vvo" ], "repo": "vvo/iron-session", "url": "https://github.com/vvo/iron-session/issues/679", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1786032577
Ecoflow River 2 Max suddenly entities stopped working Until yesterday everything worked fine. And suddenly all entities stopped working. I'm doing an Ecoflow restart every 2 minutes so that I can monitor battery status. But now, nothing works. which logs should I sent to you? tnx! Just install this integration and...
gharchive/issue
2023-07-03T11:58:54
2025-04-01T04:58:43.184246
{ "authors": [ "allekss90", "vedranius" ], "repo": "vwt12eh8/hassio-ecoflow", "url": "https://github.com/vwt12eh8/hassio-ecoflow/issues/89", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
498735517
Support displaying branch information And take into account branch when deciding which build is old (i.e. the latest change on develop branch should show up as latest even if there is a feature branch build that is newer deployed to a different env I'd like to be able to scan the environments in the dashboard and k...
gharchive/issue
2019-09-26T08:25:29
2025-04-01T04:58:43.189144
{ "authors": [ "brimimc", "vyadh" ], "repo": "vyadh/teamcity-deployment-dashboard", "url": "https://github.com/vyadh/teamcity-deployment-dashboard/issues/21", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1859033708
which version KYPO Do you use the "KYPO CRP" or "KYPO-CRP-LITE" version? I use the latest KYPO CRP, haven't tested with KYPO CRP Lite, but I don't see why it would be any different. Hi support team, Ok, but I tried to install the latest version of KYPO-CRP many times but still got the "imageloopbackoff" error. Ca...
gharchive/issue
2023-08-21T10:02:19
2025-04-01T04:58:43.193616
{ "authors": [ "k1ll50m30n3", "vydrazde" ], "repo": "vydrazde/terraform-provider-kypo", "url": "https://github.com/vydrazde/terraform-provider-kypo/issues/33", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
238103918
Ale's prettier-eslint formatting different to command line I have Ale's Prettier-ESLint integration setup like so: let g:ale_fixers = {} let g:ale_fixers['javascript'] = [ \ 'prettier_eslint', \] let g:ale_fix_on_save = 1 let g:ale_javascript_prettier_eslint_options = '--single-quote --trailing-comma es5 --no-semi' ...
gharchive/issue
2017-06-23T10:29:36
2025-04-01T04:58:43.232173
{ "authors": [ "jackfranklin", "megalithic", "ricbermo", "w0rp" ], "repo": "w0rp/ale", "url": "https://github.com/w0rp/ale/issues/683", "license": "bsd-2-clause", "license_type": "permissive", "license_source": "bigquery" }
193769997
[new linter] add stylelint support add stylelint support for css scss sass Looks good to me. :+1: I'm having trouble getting stylelint to pick up my style violations. I've tried editing a file within a directory that has a .stylelintrc and a nested directory too, but I never see any violations in the gutter. Is...
gharchive/pull-request
2016-12-06T13:18:52
2025-04-01T04:58:43.236400
{ "authors": [ "aaronmcadam", "diartyz", "w0rp" ], "repo": "w0rp/ale", "url": "https://github.com/w0rp/ale/pull/207", "license": "bsd-2-clause", "license_type": "permissive", "license_source": "bigquery" }
965087682
Improvements by imaandrew @w84death , just letting you know about these improvements by @imaandrew (not tested by myself yet). And thank you so much for such a wonderful project! Here's why I am so interested: Even today the floppies are still being used, for example - as virtual floppies inside the coreboot open sou...
gharchive/pull-request
2021-08-10T15:12:03
2025-04-01T04:58:43.525218
{ "authors": [ "informer2016", "w84death" ], "repo": "w84death/floppinux", "url": "https://github.com/w84death/floppinux/pull/4", "license": "CC0-1.0", "license_type": "permissive", "license_source": "github-api" }
2062754157
Commonjs export is not working I have a module which depends on cal-heatmap. In this module, I'm importing cal-heatmap via esm import CalHeatmap from "cal-heatmap"; ... I'm bundling this module with webpack using the umd target and because I do not want the bundle size of the module to be large, I've externalize cal...
gharchive/issue
2024-01-02T17:52:31
2025-04-01T04:58:43.527598
{ "authors": [ "FallingEpiphany", "nkemcels" ], "repo": "wa0x6e/cal-heatmap", "url": "https://github.com/wa0x6e/cal-heatmap/issues/440", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
2254549283
Oculus Go (aka Android 7.0) support posible? Is your feature request related to a problem? Please describe. I hace tried installing the app in a Oculus Go VR headset, but the installation failed. After some research, it seems that the Oculus Go supports only Android 7.0 and the app requires Android 8.0 at minimum. De...
gharchive/issue
2024-04-20T13:18:13
2025-04-01T04:58:43.531735
{ "authors": [ "ariaththesage", "wa2c" ], "repo": "wa2c/cifs-documents-provider", "url": "https://github.com/wa2c/cifs-documents-provider/issues/75", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1552512520
您好,请问中文双语训练,能否给点思路? 您好,请问单角色中文双语训练,能否给点思路? 中文双语是什么意思?中英双语?
gharchive/issue
2023-01-23T04:48:20
2025-04-01T04:58:43.533889
{ "authors": [ "leeooo001", "wac81" ], "repo": "wac81/vits_chinese", "url": "https://github.com/wac81/vits_chinese/issues/4", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1703775601
wagtailadmin media should be added via JSContext().pack not statically included in the html Is your proposal related to a problem? currently the media that belongs to the wagtailadmin widgets like sidebar is correctly registered in the corresponding adapters, but the output of the adapters is not used to include the ...
gharchive/issue
2023-05-10T12:03:15
2025-04-01T04:58:43.556853
{ "authors": [ "gasman", "lb-", "specialunderwear" ], "repo": "wagtail/wagtail", "url": "https://github.com/wagtail/wagtail/issues/10422", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
2468710784
Add notice on email delivery to Getting Started tutorial Pertinent section of the Wagtail docs https://docs.wagtail.org/en/v6.2/tutorial/deployment.html#set-up-fly-io Details The tutorial guides new Wagtail users from developing locally to deploying a site with an email form to production, and it does a good job at i...
gharchive/issue
2024-08-15T18:41:32
2025-04-01T04:58:43.569877
{ "authors": [ "cnk", "garraflavatra", "harikrishnatp", "thibaudcolas" ], "repo": "wagtail/wagtail", "url": "https://github.com/wagtail/wagtail/issues/12235", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
212250148
Checkbox to toggle "noindex" for pages It would be good to have a "set noindex meta" flag, to be able to disable indexing of single pages easily. Similar to the "show in menu" toggle, and simply inserts <meta name="robots" content="noindex" /> It would fits the "promote" tab, somehow, as an "anti promotion". I am awa...
gharchive/issue
2017-03-06T21:07:35
2025-04-01T04:58:43.576728
{ "authors": [ "gasman", "kno10", "mikemonteith" ], "repo": "wagtail/wagtail", "url": "https://github.com/wagtail/wagtail/issues/3426", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1113644570
Add setting to activate comments toggle by default Is your proposal related to a problem? Our customer makes intensive use of the new commenting feature and they would like to avoid the repetitive task of always having to click on the comments toggle after starting to edit a Page. Describe the solution you'd like It ...
gharchive/issue
2022-01-25T09:34:01
2025-04-01T04:58:43.580130
{ "authors": [ "ralphdelfs", "th3hamm0r", "thibaudcolas" ], "repo": "wagtail/wagtail", "url": "https://github.com/wagtail/wagtail/issues/7892", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
2512505510
Fix typo advantage in docs/deploy/under_the_hood.md Fix typo in docs Thanks @smark-1!
gharchive/pull-request
2024-09-08T18:05:54
2025-04-01T04:58:43.581238
{ "authors": [ "gasman", "smark-1" ], "repo": "wagtail/wagtail", "url": "https://github.com/wagtail/wagtail/pull/12290", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
939627544
Support non-block validation errors on ListBlock Ref #5300 - allow non-field errors to be attached to ListBlock validation errors, as we do for StreamBlock. As it stands Wagtail will not generate any of these (but the next step will be to use this for min_num / max_num validation as per #3914). Tested against bakeryd...
gharchive/pull-request
2021-07-08T08:50:23
2025-04-01T04:58:43.583018
{ "authors": [ "gasman" ], "repo": "wagtail/wagtail", "url": "https://github.com/wagtail/wagtail/pull/7322", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
954615392
🛑 Gitlab is down In 25e5a93, Gitlab (https://$GITLAB_HOST) was down: HTTP code: 0 Response time: 0 ms Resolved: Gitlab is back up in 6f6b9ce.
gharchive/issue
2021-07-28T08:35:13
2025-04-01T04:58:43.591890
{ "authors": [ "waja" ], "repo": "waja/cyconet-upptime", "url": "https://github.com/waja/cyconet-upptime/issues/43", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
988200597
预训练模型 大佬,非常感谢您的项目,我学习到了很多,麻烦能不能再提供一些您的预训练模型,上面的百度网盘链接过期了。十分感谢 你好,链接已更新 作者你好,网盘链接过期了 Hello, We have an exciting opportunity for you! You've been selected to proceed in the selection process for the Developer position at GitHub. Congratulations on your achievement! As part of this position, you will be offered a ...
gharchive/issue
2021-09-04T03:40:58
2025-04-01T04:58:43.599438
{ "authors": [ "JackKuo666", "rarents1975", "wakafengfan", "xiewenqian" ], "repo": "wakafengfan/CDial-GPT-NEZHA", "url": "https://github.com/wakafengfan/CDial-GPT-NEZHA/issues/1", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1803105689
chore: testing pipelines junk PR why am I a reviewer? :D @fryorcraken you are the only reviewer we need :D
gharchive/pull-request
2023-07-13T14:04:39
2025-04-01T04:58:43.602856
{ "authors": [ "fryorcraken", "weboko" ], "repo": "waku-org/js-waku", "url": "https://github.com/waku-org/js-waku/pull/1426", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2319292242
fix: occasional failure to check published message for RLN tests Message propagation delay was increased for check_published_message_reaches_relay_peer() call. It helped to stabilize occasional failures during test_valid_payloads_at_slow_rate() execution. here's an example of the failures https://waku-org.github.i...
gharchive/pull-request
2024-05-27T14:27:38
2025-04-01T04:58:43.623631
{ "authors": [ "romanzac" ], "repo": "waku-org/waku-interop-tests", "url": "https://github.com/waku-org/waku-interop-tests/pull/44", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
714066382
Does this look more concise ? The signalHandler method in the Worker class, the original code: if($signal === \SIGQUIT) {    static::$_gracefulStop = true; } else {    static::$_gracefulStop = false; } More concise code: static::$_gracefulStop = ($signal === \SIGQUIT); This code looks more concise and beautiful! ! ! ...
gharchive/issue
2020-10-03T11:10:14
2025-04-01T04:58:43.643800
{ "authors": [ "twomiao", "walkor" ], "repo": "walkor/Workerman", "url": "https://github.com/walkor/Workerman/issues/570", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1433292672
Icon Type No response Info Here are some icons some are for web page. Feel free to keep or discard. Microsoft Hyper-V: Hypervisor Software Icon(s) Hey, Microsoft Hyper-V doesn't really have any particular icon, so I'm going to refer you to just using the Windows icon for this one.
gharchive/issue
2022-11-02T14:55:23
2025-04-01T04:58:43.645939
{ "authors": [ "Kilthor", "walkxcode" ], "repo": "walkxcode/Dashboard-Icons", "url": "https://github.com/walkxcode/Dashboard-Icons/issues/134", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2416972242
fix: Condition to create kms.aws_kms_grant.clickhouse was incorrect Fixes the conditional expression that controls whether we create aws_kms_grant.clickhouse This PR is included in version 4.21.2 :tada:
gharchive/pull-request
2024-07-18T17:22:10
2025-04-01T04:58:43.697864
{ "authors": [ "jsbroks", "nickpenaranda" ], "repo": "wandb/terraform-aws-wandb", "url": "https://github.com/wandb/terraform-aws-wandb/pull/245", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1446889101
[Feature]: please add data type for 3D voxel visualization like https://github.com/K3D-tools/K3D-jupyter Description please add data type for 3D voxel visualization like https://github.com/K3D-tools/K3D-jupyter 3D voxel data type (not 3D point data type) are not included in current supported data types example1 exam...
gharchive/issue
2022-11-13T11:53:16
2025-04-01T04:58:43.702361
{ "authors": [ "dirtycomputer", "thanos-wandb" ], "repo": "wandb/wandb", "url": "https://github.com/wandb/wandb/issues/4483", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1711057440
Rusty 3 Fixes Fixes WB-NNNN Fixes #NNNN Description What does the PR do? Testing How was this PR tested? Checklist [ ] Include reference to internal ticket "Fixes WB-NNNN" and/or GitHub issue "Fixes #NNNN" (if applicable) [ ] Ensure PR title compliance with the conventional commits standards 🤖 Generated by Copilo...
gharchive/pull-request
2023-05-16T01:17:36
2025-04-01T04:58:43.705743
{ "authors": [ "dmitryduev" ], "repo": "wandb/wandb", "url": "https://github.com/wandb/wandb/pull/5554", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1850726968
ci: avoid rebuilding ecosystem in docker when frontend changes This PR simplifies the way we build our dockerfile, consolidating everything into a single stage to produce an image that can be used for unit tests (which now also run ecosystem unit tests), linting, and frontend tests. I moved the ecosystem install to t...
gharchive/pull-request
2023-08-14T23:57:54
2025-04-01T04:58:43.706925
{ "authors": [ "dannygoldstein" ], "repo": "wandb/weave", "url": "https://github.com/wandb/weave/pull/350", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
105503175
关于多语言包的支持 因为项目使用在国际项目中,需要项目本身支持多语言的封装,我们现在的方案是自定义数组,去把几个ui上的文字遍历掉,希望项目本身能支持,这样有利于这个开源项目国际化的发展 多语言支持可以增加,其实就是需要开发者传入一个语言包。我已经记录下来了这个功能,近期将会增加上去。 注意群里的动态,增加完了,会再群里说。 多语言配置已经支持:http://www.wangeditor.com/wangEditor/docs/index.html#langs
gharchive/issue
2015-09-09T02:03:42
2025-04-01T04:58:43.723737
{ "authors": [ "jerry-he", "wangfupeng1988" ], "repo": "wangfupeng1988/wangEditor", "url": "https://github.com/wangfupeng1988/wangEditor/issues/36", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
244352171
多图上传顺序被打断,没有按返回的顺序显示 editor.customConfig.uploadImgHooks = { customInsert: function (insertImg, result, editor) { if(result.data && result.data.length > 0){ for(var i=0, j=result.data.length; i<j; i++){ editor.cmd.do("insertHTML", '<img src="' + result.data[i] + '" style="max-width:1...
gharchive/issue
2017-07-20T12:55:47
2025-04-01T04:58:43.725084
{ "authors": [ "he426100", "wangfupeng1988" ], "repo": "wangfupeng1988/wangEditor", "url": "https://github.com/wangfupeng1988/wangEditor/issues/855", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
469219902
数据表迁移报错 $ php artisan migrate Migration table created successfully. Migrating: 2014_10_12_000000_create_users_table Illuminate\Database\QueryException : SQLSTATE[42000]: Syntax error or access violation: 1071 Unknown error 1071 (SQL: alter table lara_users add unique lara_users_email_unique( email)) at E:\WWW\cms\ve...
gharchive/issue
2019-07-17T14:01:38
2025-04-01T04:58:43.731566
{ "authors": [ "fl306727280", "wanglelecc" ], "repo": "wanglelecc/laracms", "url": "https://github.com/wanglelecc/laracms/issues/30", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
123861200
快速左右滑動 Scroll to top 會失效 快速左右滑動Controller 點擊 status bar 發現 Scroll to top 會沒反應 Fixed, try it and tell me whether it works! Thx!~ :smiley:
gharchive/issue
2015-12-25T07:32:42
2025-04-01T04:58:43.732724
{ "authors": [ "wangmchn", "xjimi" ], "repo": "wangmchn/WMPageController", "url": "https://github.com/wangmchn/WMPageController/issues/46", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
783384603
Can it be used to handle other types of data? Can NAguideR be used to process other types of data? For example, RNAseq gene expression matrix, metabolome matrix, etc. Yes, the classic criteria can be used for RNAseq gene expression matrix, metabolome matrix, etc. So you can stop there. And the proteomic criteria ar...
gharchive/issue
2021-01-11T13:46:44
2025-04-01T04:58:43.734509
{ "authors": [ "ShuaiNIEgithub", "wangshisheng" ], "repo": "wangshisheng/NAguideR", "url": "https://github.com/wangshisheng/NAguideR/issues/1", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
323143020
持久化和命令行那节编译报错 java -jar blockchain-java-jar-with-dependencies.jar -h 这一行执行没问题。 执行如下命令 java -jar blockchain-java-jar-with-dependencies.jar -add "Send 1.5 BTC to wangwei" 发生如下错误 E:\Android\blockchain-java>java -jar target\blockchain-java-jar-with-dependencies.jar -print Exception in thread "main" java.lang.NoClassDefF...
gharchive/issue
2018-05-15T09:45:22
2025-04-01T04:58:43.737254
{ "authors": [ "jiyilanzhou", "wangweiX" ], "repo": "wangweiX/blockchain-java", "url": "https://github.com/wangweiX/blockchain-java/issues/3", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2741402106
🛑 shiftopie.org is down In 5662880, shiftopie.org (https://shiftopie.org) was down: HTTP code: 0 Response time: 0 ms Resolved: shiftopie.org is back up in c2eecde after 6 minutes.
gharchive/issue
2024-12-16T05:51:47
2025-04-01T04:58:43.763857
{ "authors": [ "warielon" ], "repo": "warielon/upptime", "url": "https://github.com/warielon/upptime/issues/91", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
194801563
91 toobig rejects transfers if the target directory doesn't appear to have enough free disk space will close #91 Current coverage is 85.63% (diff: 88.23%) Merging #96 into master will increase coverage by 0.07% @@ master #96 diff @@ ========================================== Files ...
gharchive/pull-request
2016-12-10T23:37:01
2025-04-01T04:58:43.789079
{ "authors": [ "codecov-io", "warner" ], "repo": "warner/magic-wormhole", "url": "https://github.com/warner/magic-wormhole/pull/96", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1734346091
[BUG] Unable to retrieve tx. 404. undefined For a lot of contracts, I'm getting the above error. At first I was seeing it and it made sense, for example with -xpuaVILHnSxMgYX3Oq1l0WKU1QBZjRT5LNmALZd7iA since the associated Contract-Src seems to be missing from the chain. This other interaction vLxXRooPhRxz4FGp0ZWihT3...
gharchive/issue
2023-05-31T14:20:39
2025-04-01T04:58:43.802216
{ "authors": [ "balthazar", "ppedziwiatr" ], "repo": "warp-contracts/warp", "url": "https://github.com/warp-contracts/warp/issues/422", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
117758349
Added getItemId Fixed the getItemId() to return the nested adapter item id @gabrielemariotti Thank you :shipit:
gharchive/pull-request
2015-11-19T07:33:38
2025-04-01T04:58:43.834456
{ "authors": [ "gabrielemariotti", "wasabeef" ], "repo": "wasabeef/recyclerview-animators", "url": "https://github.com/wasabeef/recyclerview-animators/pull/58", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
2052752932
Extend documentation on NATS connections to provide comprehensive recommendations We have one documentation page on our RPC/CTL connections https://wasmcloud.com/docs/deployment/security/nats, but it does not include examples on how to create a lattice with stronger security boundaries. As per https://github.com/wasm...
gharchive/issue
2023-12-21T16:43:40
2025-04-01T04:58:43.837414
{ "authors": [ "brooksmtownsend", "connorsmith256" ], "repo": "wasmCloud/wasmcloud.com", "url": "https://github.com/wasmCloud/wasmcloud.com/issues/247", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1420141811
🛑 Waspito Lab is down In b1b8d6b, Waspito Lab (https://lab.waspito.com) was down: HTTP code: 404 Response time: 796 ms Resolved: Waspito Lab is back up in 5e9104e.
gharchive/issue
2022-10-24T03:16:14
2025-04-01T04:58:43.847837
{ "authors": [ "muarachmann" ], "repo": "waspito/waspito-status", "url": "https://github.com/waspito/waspito-status/issues/57", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1354317832
Dockerhub image link is missing This tool is super awesome! I just wanted to mention that the README should link to the full Dockerhub image: wasserth/totalsegmentator_container:master Thank you for this hint. I updated the readme.
gharchive/issue
2022-08-29T13:36:46
2025-04-01T04:58:43.848862
{ "authors": [ "swederik", "wasserth" ], "repo": "wasserth/TotalSegmentator", "url": "https://github.com/wasserth/TotalSegmentator/issues/11", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
155006878
[Question] Applying custom CSS to HtmlViewer? I'm not a fan of the default CSS. But there's no option to add some CSS rules to the generated html. I tried to attach them in my html string using a <style></style> container. But the rules in it won't be applied because it's deleted by the JavaScript. Is there a hidden ...
gharchive/issue
2016-05-16T10:59:19
2025-04-01T04:58:43.850163
{ "authors": [ "javitosanchez", "jlnostr" ], "repo": "wasteam/waslibs", "url": "https://github.com/wasteam/waslibs/issues/25", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1229930905
Team Folder Upload Question about: Uploading a file / folder [ ] Specific command: file sync up [] Hi, I was wondering if it is possible to upload to a Team Folder? I have tried a few options, and it seems that I can list files/folder in the Team space, using the Business commands. But I cannot find anywhere how to...
gharchive/issue
2022-05-09T15:53:57
2025-04-01T04:58:43.864505
{ "authors": [ "KoenWindey", "watermint" ], "repo": "watermint/toolbox", "url": "https://github.com/watermint/toolbox/issues/597", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1080142409
Watir::Capabilities doesn't support camel case anymore, only supports snake case. Meta - Watir Version: 7.1 Selenium Version: 4.1 Browser Version: Chrome 96.0.4664.93 Browser Driver Version: ChromeDriver 96.0.4664.45 OS Version: OSX Monterey Expected Behavior - Watir::Capabilities use to support selenium capabilities...
gharchive/issue
2021-12-14T19:37:56
2025-04-01T04:58:43.869751
{ "authors": [ "sandeep-mm", "titusfortner" ], "repo": "watir/watir", "url": "https://github.com/watir/watir/issues/954", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
724045110
feat: implemented simplify_consecutive_duplicates() and export_to_png() use simplify_consecutive_duplicates to remove duplicate consecutive nodes from the graph export to PNG button can export and download the flow graph SVG to a file Thank you for your submission! We really appreciate it. Like many open source ...
gharchive/pull-request
2020-10-18T16:33:27
2025-04-01T04:58:43.872661
{ "authors": [ "CLAassistant", "ayaeli" ], "repo": "watson-developer-cloud/assistant-dialog-flow-analysis", "url": "https://github.com/watson-developer-cloud/assistant-dialog-flow-analysis/pull/24", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
157345448
Rank Status Failed Hi , I am developing the demo application of retrieve and rank for my organization and i am facing an interesting issue while i am creating a rank with the cranfield data csv file. Th rank is getting created and after some time ..its failing due to some data problem . I am using a java client to do...
gharchive/issue
2016-05-28T16:08:08
2025-04-01T04:58:43.878263
{ "authors": [ "germanattanasio", "pranireddy9" ], "repo": "watson-developer-cloud/retrieve-and-rank-java", "url": "https://github.com/watson-developer-cloud/retrieve-and-rank-java/issues/22", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
1460074556
Audio keeps playing after calling seekTo(1) Wavesurfer.js version(s): 6.4.0 Browser and operating system version(s): Chrome 107.0.5304.110 macOS 12.6 Code needed to reproduce the issue: https://codesandbox.io/s/dazzling-varahamihira-3lpn86?file=/src/_app.js Use behaviour needed to reproduce the issue: I have this is...
gharchive/issue
2022-11-22T15:20:30
2025-04-01T04:58:43.906609
{ "authors": [ "armiiis", "entonbiba", "katspaugh" ], "repo": "wavesurfer-js/wavesurfer.js", "url": "https://github.com/wavesurfer-js/wavesurfer.js/issues/2619", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
266348283
applictions/new 信息配置 https://github.com/settings/applications/new 页面的配置, homepageurl 和 authorizationcallbackurl分别是? homepageurl : 应用的主页 authorizationcallbackurl : 认证后,回调的URL authorizationcallbackurl :这个地址我试了很多回 都是报错 url mismatch ...,填写的效果怎么和您不一样, 我看您是跳转到了https://github.com 页面进行授权确认 @ninuxGithub 已经上传了截图,你...
gharchive/issue
2017-10-18T03:25:24
2025-04-01T04:58:43.938696
{ "authors": [ "ninuxGithub", "waylau" ], "repo": "waylau/spring-security-tutorial", "url": "https://github.com/waylau/spring-security-tutorial/issues/6", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1263842347
Can we find ego poses in motion dataset? Having read the website and tutorials of the latest released Motion Dataset, I can obtain the state information of other tracking objects. However, I didn't find any Field storing the pose of ego vehicle, which is quite important to my usage. Can someone tell me if it is avail...
gharchive/issue
2022-06-07T20:39:37
2025-04-01T04:58:43.941344
{ "authors": [ "ruixuanisuzu", "ruixuanz", "scott-ettinger" ], "repo": "waymo-research/waymo-open-dataset", "url": "https://github.com/waymo-research/waymo-open-dataset/issues/508", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
546714018
Finding tensorflow-gpu in configure.sh Configure.sh fails to find tensorflow if the gpu version is the one installed Thanks for your pull request. It looks like this may be your first contribution to a Google open source project (if not, look below for help). Before we can look at your pull request, you'll need to...
gharchive/pull-request
2020-01-08T08:28:52
2025-04-01T04:58:43.947978
{ "authors": [ "carranza96", "peisun1115" ], "repo": "waymo-research/waymo-open-dataset", "url": "https://github.com/waymo-research/waymo-open-dataset/pull/90", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
627598480
v1.1.10 Modify Schemas: tmz:ovp:node:video patch revision 1-0-3 Add xumo_enabled boolean field. @efjacobson it angers me but i accept it. you sure default false is good? prepare the kracken if so @gdbrown ready to go, i confirmed with Brent that the default should be false
gharchive/pull-request
2020-05-29T23:39:13
2025-04-01T04:58:44.272138
{ "authors": [ "efjacobson" ], "repo": "wb-apps/tmz-schemas", "url": "https://github.com/wb-apps/tmz-schemas/pull/13", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
837075208
Allow copy and paste nodes / edges Its possible allow copy and paste on dashboard the elements selected by shift? would be nice To copy a node with it's edges: Get the selected node's data Find the edge(s) that has the the node's ID as target or source Add the node again (with a new ID) and the edges again (with t...
gharchive/issue
2021-03-21T13:16:31
2025-04-01T04:58:44.279024
{ "authors": [ "CamboimGabriel", "DovahBrownies", "imvetri", "moklick", "sasimarudhuri" ], "repo": "wbkd/react-flow", "url": "https://github.com/wbkd/react-flow/issues/1018", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1193526254
Jest encountered unexpected token or SyntaxError: Cannot use import statement outside a module Describe the Bug I have issue when running simple test on my App component. It appeared when I added ReactFlow to the project, take a look on received error: Jest encountered an unexpected token This usually means that...
gharchive/issue
2022-04-05T17:49:15
2025-04-01T04:58:44.285969
{ "authors": [ "lisandro-jofre", "moklick", "pkawula" ], "repo": "wbkd/react-flow", "url": "https://github.com/wbkd/react-flow/issues/2051", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
219778086
when I want to clear cache by bust function, but the cache show more picture I want to clear the picture in cache, but show double number of picture in the cache .seens like copyed again the source in the path @firstBird-1 bust only re-downloads the image for the cache entry. It doesn't remove any files. Were you e...
gharchive/issue
2017-04-06T03:40:51
2025-04-01T04:58:44.332472
{ "authors": [ "firstBird-1", "wcandillon" ], "repo": "wcandillon/react-native-img-cache", "url": "https://github.com/wcandillon/react-native-img-cache/issues/30", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
200733130
Program stuck while running the following code package main import ( "fmt" "os" "github.com/wcharczuk/go-chart" ) func drawChart() { sbc := chart.BarChart{ Height: 512, BarWidth: 60, XAxis: chart.Style{ Show: true, }, YAxis: chart.YAxis{ Style: chart.Style{ Show: true, }, }, Bars: ...
gharchive/issue
2017-01-13T21:18:57
2025-04-01T04:58:44.336426
{ "authors": [ "dcu", "wcharczuk" ], "repo": "wcharczuk/go-chart", "url": "https://github.com/wcharczuk/go-chart/issues/19", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
202811111
wp-cli Issue Hi, @pedrovp123 when does this warning show? When i open the my Atom with the WordPress Suite: https://atom.io/packages/wordpress-suite I'm not familiar with the Atom WordPress Suite. I think WordPress Suite was finding WP-CLI from your host machine (Mac or Windows). However, when you are using Wo...
gharchive/issue
2017-01-24T12:57:48
2025-04-01T04:58:44.359187
{ "authors": [ "ixkaito", "pedrofilho20", "pedrovp123" ], "repo": "wckr/wocker", "url": "https://github.com/wckr/wocker/issues/58", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
293553836
Medals Contains all commits for medal subscriptions and medal tables Cherry-picking went wrong
gharchive/pull-request
2018-02-01T14:38:53
2025-04-01T04:58:44.372388
{ "authors": [ "jh0ker" ], "repo": "wdr-data/sportsfreund", "url": "https://github.com/wdr-data/sportsfreund/pull/4", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
217574032
Avoid registering same gossip twice Fixes crasher bug in alertmanager. During local testing, I came across a condition where we could crash the alertmanager. What would happen is that we'd create a NewAlertmanager, which creates a nflog, which creates a mesh.Gossip on the Router. If that alertmanager creation proces...
gharchive/pull-request
2017-03-28T14:13:37
2025-04-01T04:58:44.392035
{ "authors": [ "jml", "juliusv" ], "repo": "weaveworks/cortex", "url": "https://github.com/weaveworks/cortex/pull/376", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
192256920
Release Jobs are not recoverable In some circumstances a release job will never be marked as complete. We do report back if we see a failure, so a person can retry; however, we do not see all failures, and possibly worse, we do not see all successes. Here are some of the things that can go wrong during a release, and...
gharchive/issue
2016-11-29T11:29:43
2025-04-01T04:58:44.431410
{ "authors": [ "paulbellamy", "philwinder", "squaremo" ], "repo": "weaveworks/flux", "url": "https://github.com/weaveworks/flux/issues/256", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
752127564
Upload the image from tag automatically To make things simpler, we should probably push our docker images automatically when tagging the repository. See also https://github.com/weaveworks/kured/pull/241 This was done in https://github.com/weaveworks/kured/pull/258 This was done in https://github.com/weaveworks/ku...
gharchive/issue
2020-11-27T09:57:12
2025-04-01T04:58:44.433571
{ "authors": [ "evrardjp" ], "repo": "weaveworks/kured", "url": "https://github.com/weaveworks/kured/issues/245", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
141045603
Remove unused field in LocalConnection weaveworks/weave still builds fine with this, so I guess it was truly unused... LGTM
gharchive/pull-request
2016-03-15T17:32:03
2025-04-01T04:58:44.434335
{ "authors": [ "peterbourgon", "rade" ], "repo": "weaveworks/mesh", "url": "https://github.com/weaveworks/mesh/pull/24", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
156157762
Scope slow: improve error messages for debugging I often have the following error messages: Host reporter took longer than 1s Endpoint reporter took longer than 1s Process reporter took longer than 1s Docker reporter took longer than 1s With this patch, the messages are more descriptive. Examples: Process reporter t...
gharchive/pull-request
2016-05-22T15:38:08
2025-04-01T04:58:44.445271
{ "authors": [ "2opremio", "alban", "tomwilkie" ], "repo": "weaveworks/scope", "url": "https://github.com/weaveworks/scope/pull/1534", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
193503290
Fix all the npm library versions As @davkal proposed, we decided to not use ^ or ~ version selectors for any of our package.json libraries, but keep all the versions fixed instead: "react-tooltip": "~3.2.2" -> bad "react-tooltip": "^3.2.2" -> bad "react-tooltip": "3.2.2" -> good LGTM
gharchive/pull-request
2016-12-05T13:58:29
2025-04-01T04:58:44.447738
{ "authors": [ "davkal", "fbarl" ], "repo": "weaveworks/scope", "url": "https://github.com/weaveworks/scope/pull/2057", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1183887758
Specify docker file in release job The gitops-server dockerfile name has been changed, and the release job didn't get changed to reflect that Looks like this will fix up #1812 nicely.
gharchive/pull-request
2022-03-28T19:27:05
2025-04-01T04:58:44.448568
{ "authors": [ "dhwthompson", "jpellizzari" ], "repo": "weaveworks/weave-gitops", "url": "https://github.com/weaveworks/weave-gitops/pull/1820", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
874762001
FE: Hotswap models in In-Game Preview Currently it looks like the rendering context is completely reset when a new card is selected. It would be much faster to retain the rendering context and environment, and hotswap the model. This is true, and probably a good idea. However, the problem is that old NFT state can ...
gharchive/issue
2021-05-03T17:28:22
2025-04-01T04:58:44.684803
{ "authors": [ "avaer", "soulofmischief" ], "repo": "webaverse/app", "url": "https://github.com/webaverse/app/issues/1192", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2430098766
[TASK] Update Chain selection menu dropdown Description Update the UI for the Chain Selection Dropdown based on the Figma design just FYI this chain selection list is pertaining to chain selection modal, which I believe has already been added in the UI kit here: https://webb-tools.github.io/webb-dapp/?path=/docs/d...
gharchive/issue
2024-07-25T14:20:01
2025-04-01T04:58:44.686851
{ "authors": [ "monaiuu", "vutuanlinh2k2" ], "repo": "webb-tools/webb-dapp", "url": "https://github.com/webb-tools/webb-dapp/issues/2458", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
639174923
Add support for android builds The emoji in the github action name exposed as a env variable through docker was causing a gradle crash 😢. This PR depends on #105, DO NOT MERGE until after #105 is landed. This one now has conflicts because of last merge. @webbertakken rebased and addressed the feedback. Thanks fo...
gharchive/pull-request
2020-06-15T21:24:10
2025-04-01T04:58:44.688110
{ "authors": [ "benoitdion", "webbertakken" ], "repo": "webbertakken/unity-builder", "url": "https://github.com/webbertakken/unity-builder/pull/106", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
643305765
Post-run actions on multi-usage First of all, thanks for this GH-Action :-) I'm using this action twice in my workflow because using a ssh-agent with multiple keys doesn't seem to work with the Gradle-plugin I'm using to push some data to Git-Repositories over ssh. [...] - uses: webfactory/ssh-agent@v0.3.0 ...
gharchive/issue
2020-06-22T19:21:33
2025-04-01T04:58:44.840028
{ "authors": [ "chkpnt", "mpdude" ], "repo": "webfactory/ssh-agent", "url": "https://github.com/webfactory/ssh-agent/issues/32", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2727949279
Project does not compile This project does not compile. I can debug and try to get this to work if you would like? This is only a template project, but if you want to dig into why it does not compile you can PR with fix here: https://github.com/webgoprojects/go-gin-template/pull/2 Thank you
gharchive/issue
2024-12-09T18:42:18
2025-04-01T04:58:44.853454
{ "authors": [ "Linesmerrill", "webgoproject" ], "repo": "webgoprojects/go-gin-template", "url": "https://github.com/webgoprojects/go-gin-template/issues/1", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1117801677
Improve README.md Suggest improving README.md as a jumping in point and lite documentation for the context Things that may be included [ ] Badges [ ] Introduction [ ] Status of work [ ] Vocabs used [ ] Terms used in each vocab [ ] Links to spec, community group and mailing list etc. Add links to the following exi...
gharchive/issue
2022-01-28T20:00:53
2025-04-01T04:58:44.993321
{ "authors": [ "melvincarvalho" ], "repo": "webidcg/webid-context", "url": "https://github.com/webidcg/webid-context/issues/3", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2382062390
CSS source code and build instructions for MIN files from https://forum.virtualmin.com/t/location-of-css-source-code-and-how-to-rebuild-min-css-files/119253 I have found many xxxx.min.css and xxx.min.js files in various folders – is it possible to view and download the source of these for analysis and education, as w...
gharchive/issue
2024-06-30T03:14:26
2025-04-01T04:58:45.028318
{ "authors": [ "iliajie", "verne-work" ], "repo": "webmin/authentic-theme", "url": "https://github.com/webmin/authentic-theme/issues/1696", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
259991919
TypeError: Object.observe is not a function TypeError: Object.observe is not a function at d:\Project\webofthings.js-master\plugins\corePlugin.js:68:12 at arrayEach (d:\Project\webofthings.js-master\node_modules\lodash\internal\arrayEach.js:15:9) at Object. (d:\Project\webofthings.js-master\node_modules\lodash\intern...
gharchive/issue
2017-09-23T08:08:58
2025-04-01T04:58:45.033648
{ "authors": [ "domguinard", "rozaq14996" ], "repo": "webofthings/webofthings.js", "url": "https://github.com/webofthings/webofthings.js/issues/9", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
1042575792
PHP 8.1 Return Type Inheritance Warnings Hey there, please add the mixed return type hint to the following so as to not generate a warning in PHP 8.1 (either that or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice). \GraphQL\Error\Error::jsonSerialize \GraphQL\Executor\Execut...
gharchive/issue
2021-11-02T16:28:21
2025-04-01T04:58:45.037414
{ "authors": [ "rhift", "spawnia", "vhenzl" ], "repo": "webonyx/graphql-php", "url": "https://github.com/webonyx/graphql-php/issues/1001", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
227386346
ExtractTextPlugin : No css file generated, no error Hello, I start out a stackoverflow post with this issue : http://stackoverflow.com/questions/43857784/webpack-extracttextplugin-no-css-file-generated-no-error . I found out it is a issue because I got no error when I start the build. Here is a basic copy of the post...
gharchive/issue
2017-05-09T14:30:01
2025-04-01T04:58:45.052319
{ "authors": [ "jy95", "michael-ciniawsky" ], "repo": "webpack-contrib/extract-text-webpack-plugin", "url": "https://github.com/webpack-contrib/extract-text-webpack-plugin/issues/498", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
338665544
fix: exitCodes, reporters and bail, better error logging This PR contains a: [x] bugfix [ ] new feature [ ] code refactor [ ] test update [ ] typo fix [ ] metadata update Motivation / Use-Case It's been reported that #35 didn't do enough to address exit codes in the event of a build failure or error. During disco...
gharchive/pull-request
2018-07-05T17:37:30
2025-04-01T04:58:45.062373
{ "authors": [ "ankurk91", "shellscape" ], "repo": "webpack-contrib/webpack-command", "url": "https://github.com/webpack-contrib/webpack-command/pull/44", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
424766976
how to set tree-shaking config A.js export function fa() { ... } export function fb() { ... } export function fc() { ... } .... *.worker.js import { fa } from 'A.js'; .... In *.worker.js,i import some function or method that i need, but when i build it, it include some other useless code (example:...
gharchive/issue
2019-03-25T07:56:20
2025-04-01T04:58:45.064882
{ "authors": [ "evilebottnawi", "zhu1033527427" ], "repo": "webpack-contrib/worker-loader", "url": "https://github.com/webpack-contrib/worker-loader/issues/196", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
47844922
0.8.2 breaks my tests running in the PhantomJS Hi, just a little bug i found: I'm using the style-loader (since 0.8.1) in the following manner (just this one line): require('!style!css!sass!./someFile.scss'); The version 0.8.2 seems to work under IE11, latest FF and latest Chrome, but it breaks execution of several t...
gharchive/issue
2014-11-05T15:01:35
2025-04-01T04:58:45.070091
{ "authors": [ "Ridermansb", "SpaceK33z", "That-David-Guy", "nmccready", "rbtbar", "sorrycc" ], "repo": "webpack/style-loader", "url": "https://github.com/webpack/style-loader/issues/31", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1241040948
ts-node docs tweaks Feature to document I noticed that the recommendations for using ts-node to load webpack.config.ts can be simplified: https://webpack.js.org/configuration/configuration-languages/ First, TS_NODE_PROJECT environment variable is supported natively by ts-node; no need to install tsconfig-paths Second...
gharchive/issue
2022-05-19T02:36:44
2025-04-01T04:58:45.080759
{ "authors": [ "cspotcode", "olyop", "snitin315" ], "repo": "webpack/webpack.js.org", "url": "https://github.com/webpack/webpack.js.org/issues/6154", "license": "CC-BY-4.0", "license_type": "permissive", "license_source": "github-api" }
313935565
docs(guides): update npx introduction I think npx is introduced in npm 5.2.0. I just double checked the changelog from npm: v5.2.0 (2017-07-05): It's only been a couple of days but we've got some bug fixes we wanted to get out to you all. We also believe that npx is ready to be bundled with npm, which we're real...
gharchive/pull-request
2018-04-13T01:01:37
2025-04-01T04:58:45.083765
{ "authors": [ "chenxsan", "montogeek" ], "repo": "webpack/webpack.js.org", "url": "https://github.com/webpack/webpack.js.org/pull/2032", "license": "CC-BY-4.0", "license_type": "permissive", "license_source": "github-api" }
322792532
Replace whitespaces with tabs in split-chunks-plugin.md This fixes incorrect indentation in code example in https://webpack.js.org/plugins/split-chunks-plugin/. I recommend using whitespaces instead of tabs for code example, because tab's indentation is invisible and fragile. And if possible, I think better to use...
gharchive/pull-request
2018-05-14T12:20:16
2025-04-01T04:58:45.086941
{ "authors": [ "byzyk", "ybiquitous" ], "repo": "webpack/webpack.js.org", "url": "https://github.com/webpack/webpack.js.org/pull/2150", "license": "CC-BY-4.0", "license_type": "permissive", "license_source": "github-api" }
1699061513
docs(Configuration): document new devServer.overlay options [x] Read and sign the CLA. PRs that haven't signed it won't be accepted. [x] Make sure your PR complies with the writer's guide. [x] Review the diff carefully as sometimes this can reveal issues. [x] Do not abandon your Pull Request: Stale Pull Requests. R...
gharchive/pull-request
2023-05-07T13:17:24
2025-04-01T04:58:45.093531
{ "authors": [ "TheLarkInn", "chenxsan", "malcolm-kee", "snitin315" ], "repo": "webpack/webpack.js.org", "url": "https://github.com/webpack/webpack.js.org/pull/6809", "license": "CC-BY-4.0", "license_type": "permissive", "license_source": "github-api" }
100562529
Cannot resolve module I've just gotten started with webpack and have trouble figuring out how to include a library called alloyeditor to use in one of my components. Here is my webpack config file. I set the main in my package.json to be the path to the alloy-editor core as well. Whenever I use require ("alloyeditor"...
gharchive/issue
2015-08-12T14:55:44
2025-04-01T04:58:45.097923
{ "authors": [ "bebraw", "kkotwal94", "shama" ], "repo": "webpack/webpack", "url": "https://github.com/webpack/webpack/issues/1346", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }